@alicloud/cs20151215 4.7.8 → 4.7.9
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 +82 -538
- package/dist/client.js +45 -530
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +118 -877
package/src/client.ts
CHANGED
|
@@ -1170,56 +1170,6 @@ export class CancelTaskResponse extends $tea.Model {
|
|
|
1170
1170
|
}
|
|
1171
1171
|
}
|
|
1172
1172
|
|
|
1173
|
-
export class CancelWorkflowRequest extends $tea.Model {
|
|
1174
|
-
/**
|
|
1175
|
-
* @remarks
|
|
1176
|
-
* The operation that you want to perform. Set the value to cancel.
|
|
1177
|
-
*
|
|
1178
|
-
* This parameter is required.
|
|
1179
|
-
*
|
|
1180
|
-
* @example
|
|
1181
|
-
* cancel
|
|
1182
|
-
*/
|
|
1183
|
-
action?: string;
|
|
1184
|
-
static names(): { [key: string]: string } {
|
|
1185
|
-
return {
|
|
1186
|
-
action: 'action',
|
|
1187
|
-
};
|
|
1188
|
-
}
|
|
1189
|
-
|
|
1190
|
-
static types(): { [key: string]: any } {
|
|
1191
|
-
return {
|
|
1192
|
-
action: 'string',
|
|
1193
|
-
};
|
|
1194
|
-
}
|
|
1195
|
-
|
|
1196
|
-
constructor(map?: { [key: string]: any }) {
|
|
1197
|
-
super(map);
|
|
1198
|
-
}
|
|
1199
|
-
}
|
|
1200
|
-
|
|
1201
|
-
export class CancelWorkflowResponse extends $tea.Model {
|
|
1202
|
-
headers?: { [key: string]: string };
|
|
1203
|
-
statusCode?: number;
|
|
1204
|
-
static names(): { [key: string]: string } {
|
|
1205
|
-
return {
|
|
1206
|
-
headers: 'headers',
|
|
1207
|
-
statusCode: 'statusCode',
|
|
1208
|
-
};
|
|
1209
|
-
}
|
|
1210
|
-
|
|
1211
|
-
static types(): { [key: string]: any } {
|
|
1212
|
-
return {
|
|
1213
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1214
|
-
statusCode: 'number',
|
|
1215
|
-
};
|
|
1216
|
-
}
|
|
1217
|
-
|
|
1218
|
-
constructor(map?: { [key: string]: any }) {
|
|
1219
|
-
super(map);
|
|
1220
|
-
}
|
|
1221
|
-
}
|
|
1222
|
-
|
|
1223
1173
|
export class CheckControlPlaneLogEnableResponseBody extends $tea.Model {
|
|
1224
1174
|
/**
|
|
1225
1175
|
* @remarks
|
|
@@ -4841,157 +4791,6 @@ export class DeployPolicyInstanceResponse extends $tea.Model {
|
|
|
4841
4791
|
}
|
|
4842
4792
|
}
|
|
4843
4793
|
|
|
4844
|
-
export class DescirbeWorkflowResponseBody extends $tea.Model {
|
|
4845
|
-
/**
|
|
4846
|
-
* @remarks
|
|
4847
|
-
* The time when the workflow was created.
|
|
4848
|
-
*
|
|
4849
|
-
* @example
|
|
4850
|
-
* 2020-01-15 16:30:25 +0800 CST
|
|
4851
|
-
*/
|
|
4852
|
-
createTime?: string;
|
|
4853
|
-
/**
|
|
4854
|
-
* @remarks
|
|
4855
|
-
* The duration of the workflow.
|
|
4856
|
-
*
|
|
4857
|
-
* @example
|
|
4858
|
-
* 1h15m33.529968361s
|
|
4859
|
-
*/
|
|
4860
|
-
duration?: string;
|
|
4861
|
-
/**
|
|
4862
|
-
* @remarks
|
|
4863
|
-
* The end time of the task.
|
|
4864
|
-
*
|
|
4865
|
-
* @example
|
|
4866
|
-
* 0001-01-01 00:00:00 +0000 UTC
|
|
4867
|
-
*/
|
|
4868
|
-
finishTime?: string;
|
|
4869
|
-
/**
|
|
4870
|
-
* @remarks
|
|
4871
|
-
* The size of the input data.
|
|
4872
|
-
*
|
|
4873
|
-
* @example
|
|
4874
|
-
* 0
|
|
4875
|
-
*/
|
|
4876
|
-
inputDataSize?: string;
|
|
4877
|
-
/**
|
|
4878
|
-
* @remarks
|
|
4879
|
-
* The name of the workflow.
|
|
4880
|
-
*
|
|
4881
|
-
* @example
|
|
4882
|
-
* wgs-gpu-97xfn
|
|
4883
|
-
*/
|
|
4884
|
-
jobName?: string;
|
|
4885
|
-
/**
|
|
4886
|
-
* @remarks
|
|
4887
|
-
* The namespace to which the workflow belongs.
|
|
4888
|
-
*
|
|
4889
|
-
* @example
|
|
4890
|
-
* 1171330362041663
|
|
4891
|
-
*/
|
|
4892
|
-
jobNamespace?: string;
|
|
4893
|
-
/**
|
|
4894
|
-
* @remarks
|
|
4895
|
-
* The size of the output data.
|
|
4896
|
-
*
|
|
4897
|
-
* @example
|
|
4898
|
-
* 0
|
|
4899
|
-
*/
|
|
4900
|
-
outputDataSize?: string;
|
|
4901
|
-
/**
|
|
4902
|
-
* @remarks
|
|
4903
|
-
* The current state of the workflow.
|
|
4904
|
-
*
|
|
4905
|
-
* @example
|
|
4906
|
-
* Running
|
|
4907
|
-
*/
|
|
4908
|
-
status?: string;
|
|
4909
|
-
/**
|
|
4910
|
-
* @remarks
|
|
4911
|
-
* The number of base pairs.
|
|
4912
|
-
*
|
|
4913
|
-
* @example
|
|
4914
|
-
* 0
|
|
4915
|
-
*/
|
|
4916
|
-
totalBases?: string;
|
|
4917
|
-
/**
|
|
4918
|
-
* @remarks
|
|
4919
|
-
* The number of reads.
|
|
4920
|
-
*
|
|
4921
|
-
* @example
|
|
4922
|
-
* 0
|
|
4923
|
-
*/
|
|
4924
|
-
totalReads?: string;
|
|
4925
|
-
/**
|
|
4926
|
-
* @remarks
|
|
4927
|
-
* The user input parameters.
|
|
4928
|
-
*
|
|
4929
|
-
* @example
|
|
4930
|
-
* {\\"wgs_oss_region\\":\\"cn-shenzhen\\",\\"wgs_fastq_first_name\\":\\"fastq/huada/MGISEQ-200019SZ0002402\\",\\"wgs_fastq_second_name\\":\\"fastq/huada/MGISEQ-200019SZ0002402\\",\\"wgs_bucket_name\\":\\"gene-shenzhen\\",\\"wgs_vcf_file_name\\":\\"output/vcf/huada.vcf\\",\\"wgs_bam_file_name\\":\\"output/bam/huada.bam\\",\\"wgs_reference_file\\":\\"hg19\\",\\"wgs_service\\":\\"g\\"}
|
|
4931
|
-
*/
|
|
4932
|
-
userInputData?: string;
|
|
4933
|
-
static names(): { [key: string]: string } {
|
|
4934
|
-
return {
|
|
4935
|
-
createTime: 'create_time',
|
|
4936
|
-
duration: 'duration',
|
|
4937
|
-
finishTime: 'finish_time',
|
|
4938
|
-
inputDataSize: 'input_data_size',
|
|
4939
|
-
jobName: 'job_name',
|
|
4940
|
-
jobNamespace: 'job_namespace',
|
|
4941
|
-
outputDataSize: 'output_data_size',
|
|
4942
|
-
status: 'status',
|
|
4943
|
-
totalBases: 'total_bases',
|
|
4944
|
-
totalReads: 'total_reads',
|
|
4945
|
-
userInputData: 'user_input_data',
|
|
4946
|
-
};
|
|
4947
|
-
}
|
|
4948
|
-
|
|
4949
|
-
static types(): { [key: string]: any } {
|
|
4950
|
-
return {
|
|
4951
|
-
createTime: 'string',
|
|
4952
|
-
duration: 'string',
|
|
4953
|
-
finishTime: 'string',
|
|
4954
|
-
inputDataSize: 'string',
|
|
4955
|
-
jobName: 'string',
|
|
4956
|
-
jobNamespace: 'string',
|
|
4957
|
-
outputDataSize: 'string',
|
|
4958
|
-
status: 'string',
|
|
4959
|
-
totalBases: 'string',
|
|
4960
|
-
totalReads: 'string',
|
|
4961
|
-
userInputData: 'string',
|
|
4962
|
-
};
|
|
4963
|
-
}
|
|
4964
|
-
|
|
4965
|
-
constructor(map?: { [key: string]: any }) {
|
|
4966
|
-
super(map);
|
|
4967
|
-
}
|
|
4968
|
-
}
|
|
4969
|
-
|
|
4970
|
-
export class DescirbeWorkflowResponse extends $tea.Model {
|
|
4971
|
-
headers?: { [key: string]: string };
|
|
4972
|
-
statusCode?: number;
|
|
4973
|
-
body?: DescirbeWorkflowResponseBody;
|
|
4974
|
-
static names(): { [key: string]: string } {
|
|
4975
|
-
return {
|
|
4976
|
-
headers: 'headers',
|
|
4977
|
-
statusCode: 'statusCode',
|
|
4978
|
-
body: 'body',
|
|
4979
|
-
};
|
|
4980
|
-
}
|
|
4981
|
-
|
|
4982
|
-
static types(): { [key: string]: any } {
|
|
4983
|
-
return {
|
|
4984
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4985
|
-
statusCode: 'number',
|
|
4986
|
-
body: DescirbeWorkflowResponseBody,
|
|
4987
|
-
};
|
|
4988
|
-
}
|
|
4989
|
-
|
|
4990
|
-
constructor(map?: { [key: string]: any }) {
|
|
4991
|
-
super(map);
|
|
4992
|
-
}
|
|
4993
|
-
}
|
|
4994
|
-
|
|
4995
4794
|
export class DescribeAddonRequest extends $tea.Model {
|
|
4996
4795
|
/**
|
|
4997
4796
|
* @remarks
|
|
@@ -5766,6 +5565,11 @@ export class DescribeClusterAttachScriptsResponse extends $tea.Model {
|
|
|
5766
5565
|
}
|
|
5767
5566
|
|
|
5768
5567
|
export class DescribeClusterDetailResponseBody extends $tea.Model {
|
|
5568
|
+
/**
|
|
5569
|
+
* @example
|
|
5570
|
+
* cluster.local
|
|
5571
|
+
*/
|
|
5572
|
+
clusterDomain?: string;
|
|
5769
5573
|
/**
|
|
5770
5574
|
* @remarks
|
|
5771
5575
|
* The cluster ID.
|
|
@@ -5795,6 +5599,11 @@ export class DescribeClusterDetailResponseBody extends $tea.Model {
|
|
|
5795
5599
|
* Kubernetes
|
|
5796
5600
|
*/
|
|
5797
5601
|
clusterType?: string;
|
|
5602
|
+
/**
|
|
5603
|
+
* @example
|
|
5604
|
+
* 172.20.0.0/16
|
|
5605
|
+
*/
|
|
5606
|
+
containerCidr?: string;
|
|
5798
5607
|
/**
|
|
5799
5608
|
* @remarks
|
|
5800
5609
|
* The time when the cluster was created.
|
|
@@ -5843,6 +5652,11 @@ export class DescribeClusterDetailResponseBody extends $tea.Model {
|
|
|
5843
5652
|
* 1.16.6-aliyun.1
|
|
5844
5653
|
*/
|
|
5845
5654
|
initVersion?: string;
|
|
5655
|
+
/**
|
|
5656
|
+
* @example
|
|
5657
|
+
* ipv4
|
|
5658
|
+
*/
|
|
5659
|
+
ipStack?: string;
|
|
5846
5660
|
/**
|
|
5847
5661
|
* @remarks
|
|
5848
5662
|
* The maintenance window of the cluster. This feature is available only in ACK Pro clusters.
|
|
@@ -5884,6 +5698,11 @@ export class DescribeClusterDetailResponseBody extends $tea.Model {
|
|
|
5884
5698
|
* 1.18.8-aliyun.1
|
|
5885
5699
|
*/
|
|
5886
5700
|
nextVersion?: string;
|
|
5701
|
+
/**
|
|
5702
|
+
* @example
|
|
5703
|
+
* 26
|
|
5704
|
+
*/
|
|
5705
|
+
nodeCidrMask?: string;
|
|
5887
5706
|
operationPolicy?: DescribeClusterDetailResponseBodyOperationPolicy;
|
|
5888
5707
|
/**
|
|
5889
5708
|
* @remarks
|
|
@@ -5908,6 +5727,11 @@ export class DescribeClusterDetailResponseBody extends $tea.Model {
|
|
|
5908
5727
|
* Default
|
|
5909
5728
|
*/
|
|
5910
5729
|
profile?: string;
|
|
5730
|
+
/**
|
|
5731
|
+
* @example
|
|
5732
|
+
* ipvs
|
|
5733
|
+
*/
|
|
5734
|
+
proxyMode?: string;
|
|
5911
5735
|
/**
|
|
5912
5736
|
* @remarks
|
|
5913
5737
|
* The region ID of the cluster.
|
|
@@ -5932,6 +5756,14 @@ export class DescribeClusterDetailResponseBody extends $tea.Model {
|
|
|
5932
5756
|
* sg-25yq****
|
|
5933
5757
|
*/
|
|
5934
5758
|
securityGroupId?: string;
|
|
5759
|
+
/**
|
|
5760
|
+
* @remarks
|
|
5761
|
+
* This parameter is required.
|
|
5762
|
+
*
|
|
5763
|
+
* @example
|
|
5764
|
+
* 172.21.0.0/20
|
|
5765
|
+
*/
|
|
5766
|
+
serviceCidr?: string;
|
|
5935
5767
|
/**
|
|
5936
5768
|
* @remarks
|
|
5937
5769
|
* The number of nodes in the cluster. Master nodes and worker nodes are included.
|
|
@@ -5975,6 +5807,8 @@ export class DescribeClusterDetailResponseBody extends $tea.Model {
|
|
|
5975
5807
|
*
|
|
5976
5808
|
* @example
|
|
5977
5809
|
* 172.20.0.0/16
|
|
5810
|
+
*
|
|
5811
|
+
* @deprecated
|
|
5978
5812
|
*/
|
|
5979
5813
|
subnetCidr?: string;
|
|
5980
5814
|
/**
|
|
@@ -5982,6 +5816,11 @@ export class DescribeClusterDetailResponseBody extends $tea.Model {
|
|
|
5982
5816
|
* The resource tags of the cluster.
|
|
5983
5817
|
*/
|
|
5984
5818
|
tags?: Tag[];
|
|
5819
|
+
/**
|
|
5820
|
+
* @example
|
|
5821
|
+
* Asia/Shanghai
|
|
5822
|
+
*/
|
|
5823
|
+
timezone?: string;
|
|
5985
5824
|
/**
|
|
5986
5825
|
* @remarks
|
|
5987
5826
|
* The time when the cluster was updated.
|
|
@@ -6004,8 +5843,11 @@ export class DescribeClusterDetailResponseBody extends $tea.Model {
|
|
|
6004
5843
|
*
|
|
6005
5844
|
* @example
|
|
6006
5845
|
* vsw-2zete8s4qocqg0mf6****,vsw-2zete8s4qocqg0mf6****
|
|
5846
|
+
*
|
|
5847
|
+
* @deprecated
|
|
6007
5848
|
*/
|
|
6008
5849
|
vswitchId?: string;
|
|
5850
|
+
vswitchIds?: string[];
|
|
6009
5851
|
/**
|
|
6010
5852
|
* @remarks
|
|
6011
5853
|
* The name of the worker Resource Access Management (RAM) role. The RAM role is assigned to the worker nodes of the cluster to allow the worker nodes to manage Elastic Compute Service (ECS) instances.
|
|
@@ -6021,35 +5863,43 @@ export class DescribeClusterDetailResponseBody extends $tea.Model {
|
|
|
6021
5863
|
zoneId?: string;
|
|
6022
5864
|
static names(): { [key: string]: string } {
|
|
6023
5865
|
return {
|
|
5866
|
+
clusterDomain: 'cluster_domain',
|
|
6024
5867
|
clusterId: 'cluster_id',
|
|
6025
5868
|
clusterSpec: 'cluster_spec',
|
|
6026
5869
|
clusterType: 'cluster_type',
|
|
5870
|
+
containerCidr: 'container_cidr',
|
|
6027
5871
|
created: 'created',
|
|
6028
5872
|
currentVersion: 'current_version',
|
|
6029
5873
|
deletionProtection: 'deletion_protection',
|
|
6030
5874
|
dockerVersion: 'docker_version',
|
|
6031
5875
|
externalLoadbalancerId: 'external_loadbalancer_id',
|
|
6032
5876
|
initVersion: 'init_version',
|
|
5877
|
+
ipStack: 'ip_stack',
|
|
6033
5878
|
maintenanceWindow: 'maintenance_window',
|
|
6034
5879
|
masterUrl: 'master_url',
|
|
6035
5880
|
metaData: 'meta_data',
|
|
6036
5881
|
name: 'name',
|
|
6037
5882
|
networkMode: 'network_mode',
|
|
6038
5883
|
nextVersion: 'next_version',
|
|
5884
|
+
nodeCidrMask: 'node_cidr_mask',
|
|
6039
5885
|
operationPolicy: 'operation_policy',
|
|
6040
5886
|
parameters: 'parameters',
|
|
6041
5887
|
privateZone: 'private_zone',
|
|
6042
5888
|
profile: 'profile',
|
|
5889
|
+
proxyMode: 'proxy_mode',
|
|
6043
5890
|
regionId: 'region_id',
|
|
6044
5891
|
resourceGroupId: 'resource_group_id',
|
|
6045
5892
|
securityGroupId: 'security_group_id',
|
|
5893
|
+
serviceCidr: 'service_cidr',
|
|
6046
5894
|
size: 'size',
|
|
6047
5895
|
state: 'state',
|
|
6048
5896
|
subnetCidr: 'subnet_cidr',
|
|
6049
5897
|
tags: 'tags',
|
|
5898
|
+
timezone: 'timezone',
|
|
6050
5899
|
updated: 'updated',
|
|
6051
5900
|
vpcId: 'vpc_id',
|
|
6052
5901
|
vswitchId: 'vswitch_id',
|
|
5902
|
+
vswitchIds: 'vswitch_ids',
|
|
6053
5903
|
workerRamRoleName: 'worker_ram_role_name',
|
|
6054
5904
|
zoneId: 'zone_id',
|
|
6055
5905
|
};
|
|
@@ -6057,35 +5907,43 @@ export class DescribeClusterDetailResponseBody extends $tea.Model {
|
|
|
6057
5907
|
|
|
6058
5908
|
static types(): { [key: string]: any } {
|
|
6059
5909
|
return {
|
|
5910
|
+
clusterDomain: 'string',
|
|
6060
5911
|
clusterId: 'string',
|
|
6061
5912
|
clusterSpec: 'string',
|
|
6062
5913
|
clusterType: 'string',
|
|
5914
|
+
containerCidr: 'string',
|
|
6063
5915
|
created: 'string',
|
|
6064
5916
|
currentVersion: 'string',
|
|
6065
5917
|
deletionProtection: 'boolean',
|
|
6066
5918
|
dockerVersion: 'string',
|
|
6067
5919
|
externalLoadbalancerId: 'string',
|
|
6068
5920
|
initVersion: 'string',
|
|
5921
|
+
ipStack: 'string',
|
|
6069
5922
|
maintenanceWindow: MaintenanceWindow,
|
|
6070
5923
|
masterUrl: 'string',
|
|
6071
5924
|
metaData: 'string',
|
|
6072
5925
|
name: 'string',
|
|
6073
5926
|
networkMode: 'string',
|
|
6074
5927
|
nextVersion: 'string',
|
|
5928
|
+
nodeCidrMask: 'string',
|
|
6075
5929
|
operationPolicy: DescribeClusterDetailResponseBodyOperationPolicy,
|
|
6076
5930
|
parameters: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6077
5931
|
privateZone: 'boolean',
|
|
6078
5932
|
profile: 'string',
|
|
5933
|
+
proxyMode: 'string',
|
|
6079
5934
|
regionId: 'string',
|
|
6080
5935
|
resourceGroupId: 'string',
|
|
6081
5936
|
securityGroupId: 'string',
|
|
5937
|
+
serviceCidr: 'string',
|
|
6082
5938
|
size: 'number',
|
|
6083
5939
|
state: 'string',
|
|
6084
5940
|
subnetCidr: 'string',
|
|
6085
5941
|
tags: { 'type': 'array', 'itemType': Tag },
|
|
5942
|
+
timezone: 'string',
|
|
6086
5943
|
updated: 'string',
|
|
6087
5944
|
vpcId: 'string',
|
|
6088
5945
|
vswitchId: 'string',
|
|
5946
|
+
vswitchIds: { 'type': 'array', 'itemType': 'string' },
|
|
6089
5947
|
workerRamRoleName: 'string',
|
|
6090
5948
|
zoneId: 'string',
|
|
6091
5949
|
};
|
|
@@ -9098,54 +8956,6 @@ export class DescribeUserQuotaResponse extends $tea.Model {
|
|
|
9098
8956
|
}
|
|
9099
8957
|
}
|
|
9100
8958
|
|
|
9101
|
-
export class DescribeWorkflowsResponseBody extends $tea.Model {
|
|
9102
|
-
/**
|
|
9103
|
-
* @remarks
|
|
9104
|
-
* The list of jobs.
|
|
9105
|
-
*/
|
|
9106
|
-
jobs?: DescribeWorkflowsResponseBodyJobs[];
|
|
9107
|
-
static names(): { [key: string]: string } {
|
|
9108
|
-
return {
|
|
9109
|
-
jobs: 'jobs',
|
|
9110
|
-
};
|
|
9111
|
-
}
|
|
9112
|
-
|
|
9113
|
-
static types(): { [key: string]: any } {
|
|
9114
|
-
return {
|
|
9115
|
-
jobs: { 'type': 'array', 'itemType': DescribeWorkflowsResponseBodyJobs },
|
|
9116
|
-
};
|
|
9117
|
-
}
|
|
9118
|
-
|
|
9119
|
-
constructor(map?: { [key: string]: any }) {
|
|
9120
|
-
super(map);
|
|
9121
|
-
}
|
|
9122
|
-
}
|
|
9123
|
-
|
|
9124
|
-
export class DescribeWorkflowsResponse extends $tea.Model {
|
|
9125
|
-
headers?: { [key: string]: string };
|
|
9126
|
-
statusCode?: number;
|
|
9127
|
-
body?: DescribeWorkflowsResponseBody;
|
|
9128
|
-
static names(): { [key: string]: string } {
|
|
9129
|
-
return {
|
|
9130
|
-
headers: 'headers',
|
|
9131
|
-
statusCode: 'statusCode',
|
|
9132
|
-
body: 'body',
|
|
9133
|
-
};
|
|
9134
|
-
}
|
|
9135
|
-
|
|
9136
|
-
static types(): { [key: string]: any } {
|
|
9137
|
-
return {
|
|
9138
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9139
|
-
statusCode: 'number',
|
|
9140
|
-
body: DescribeWorkflowsResponseBody,
|
|
9141
|
-
};
|
|
9142
|
-
}
|
|
9143
|
-
|
|
9144
|
-
constructor(map?: { [key: string]: any }) {
|
|
9145
|
-
super(map);
|
|
9146
|
-
}
|
|
9147
|
-
}
|
|
9148
|
-
|
|
9149
8959
|
export class EdgeClusterAddEdgeMachineRequest extends $tea.Model {
|
|
9150
8960
|
/**
|
|
9151
8961
|
* @remarks
|
|
@@ -11103,6 +10913,7 @@ export class ModifyClusterRequest extends $tea.Model {
|
|
|
11103
10913
|
* The storage configurations of system events.
|
|
11104
10914
|
*/
|
|
11105
10915
|
systemEventsLogging?: ModifyClusterRequestSystemEventsLogging;
|
|
10916
|
+
vswitchIds?: string[];
|
|
11106
10917
|
static names(): { [key: string]: string } {
|
|
11107
10918
|
return {
|
|
11108
10919
|
accessControlList: 'access_control_list',
|
|
@@ -11119,6 +10930,7 @@ export class ModifyClusterRequest extends $tea.Model {
|
|
|
11119
10930
|
operationPolicy: 'operation_policy',
|
|
11120
10931
|
resourceGroupId: 'resource_group_id',
|
|
11121
10932
|
systemEventsLogging: 'system_events_logging',
|
|
10933
|
+
vswitchIds: 'vswitch_ids',
|
|
11122
10934
|
};
|
|
11123
10935
|
}
|
|
11124
10936
|
|
|
@@ -11138,6 +10950,7 @@ export class ModifyClusterRequest extends $tea.Model {
|
|
|
11138
10950
|
operationPolicy: ModifyClusterRequestOperationPolicy,
|
|
11139
10951
|
resourceGroupId: 'string',
|
|
11140
10952
|
systemEventsLogging: ModifyClusterRequestSystemEventsLogging,
|
|
10953
|
+
vswitchIds: { 'type': 'array', 'itemType': 'string' },
|
|
11141
10954
|
};
|
|
11142
10955
|
}
|
|
11143
10956
|
|
|
@@ -12126,28 +11939,6 @@ export class RemoveNodePoolNodesResponse extends $tea.Model {
|
|
|
12126
11939
|
}
|
|
12127
11940
|
}
|
|
12128
11941
|
|
|
12129
|
-
export class RemoveWorkflowResponse extends $tea.Model {
|
|
12130
|
-
headers?: { [key: string]: string };
|
|
12131
|
-
statusCode?: number;
|
|
12132
|
-
static names(): { [key: string]: string } {
|
|
12133
|
-
return {
|
|
12134
|
-
headers: 'headers',
|
|
12135
|
-
statusCode: 'statusCode',
|
|
12136
|
-
};
|
|
12137
|
-
}
|
|
12138
|
-
|
|
12139
|
-
static types(): { [key: string]: any } {
|
|
12140
|
-
return {
|
|
12141
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
12142
|
-
statusCode: 'number',
|
|
12143
|
-
};
|
|
12144
|
-
}
|
|
12145
|
-
|
|
12146
|
-
constructor(map?: { [key: string]: any }) {
|
|
12147
|
-
super(map);
|
|
12148
|
-
}
|
|
12149
|
-
}
|
|
12150
|
-
|
|
12151
11942
|
export class RepairClusterNodePoolRequest extends $tea.Model {
|
|
12152
11943
|
/**
|
|
12153
11944
|
* @remarks
|
|
@@ -13143,269 +12934,6 @@ export class StartAlertResponse extends $tea.Model {
|
|
|
13143
12934
|
}
|
|
13144
12935
|
}
|
|
13145
12936
|
|
|
13146
|
-
export class StartWorkflowRequest extends $tea.Model {
|
|
13147
|
-
/**
|
|
13148
|
-
* @remarks
|
|
13149
|
-
* The name of the output BAM file.
|
|
13150
|
-
*
|
|
13151
|
-
* @example
|
|
13152
|
-
* abc.bam
|
|
13153
|
-
*/
|
|
13154
|
-
mappingBamOutFilename?: string;
|
|
13155
|
-
/**
|
|
13156
|
-
* @remarks
|
|
13157
|
-
* The output path of the Binary Alignment Map (BAM) file.
|
|
13158
|
-
*
|
|
13159
|
-
* @example
|
|
13160
|
-
* output/bamDirName
|
|
13161
|
-
*/
|
|
13162
|
-
mappingBamOutPath?: string;
|
|
13163
|
-
/**
|
|
13164
|
-
* @remarks
|
|
13165
|
-
* The name of the OSS bucket that stores the data of the mapping workflow.
|
|
13166
|
-
*
|
|
13167
|
-
* @example
|
|
13168
|
-
* gene-shenzhen
|
|
13169
|
-
*/
|
|
13170
|
-
mappingBucketName?: string;
|
|
13171
|
-
/**
|
|
13172
|
-
* @remarks
|
|
13173
|
-
* The name of the first FASTQ file of the mapping workflow.
|
|
13174
|
-
*
|
|
13175
|
-
* @example
|
|
13176
|
-
* MGISEQ2000_PCR-free_NA12878_1_V100003043_L01_1.fq.gz
|
|
13177
|
-
*/
|
|
13178
|
-
mappingFastqFirstFilename?: string;
|
|
13179
|
-
/**
|
|
13180
|
-
* @remarks
|
|
13181
|
-
* The path of the FASTQ files of the mapping workflow.
|
|
13182
|
-
*
|
|
13183
|
-
* @example
|
|
13184
|
-
* fastq/MGISEQ2000
|
|
13185
|
-
*/
|
|
13186
|
-
mappingFastqPath?: string;
|
|
13187
|
-
/**
|
|
13188
|
-
* @remarks
|
|
13189
|
-
* The name of the second FASTQ file of the mapping workflow.
|
|
13190
|
-
*
|
|
13191
|
-
* @example
|
|
13192
|
-
* MGISEQ2000_PCR-free_NA12878_1_V100003043_L01_2.fq.gz
|
|
13193
|
-
*/
|
|
13194
|
-
mappingFastqSecondFilename?: string;
|
|
13195
|
-
/**
|
|
13196
|
-
* @remarks
|
|
13197
|
-
* Specifies whether to mark duplicate values.
|
|
13198
|
-
*
|
|
13199
|
-
* @example
|
|
13200
|
-
* true
|
|
13201
|
-
*/
|
|
13202
|
-
mappingIsMarkDup?: string;
|
|
13203
|
-
/**
|
|
13204
|
-
* @remarks
|
|
13205
|
-
* The region where the Object Storage Service (OSS) bucket that stores the data of the mapping workflow is deployed.
|
|
13206
|
-
*
|
|
13207
|
-
* @example
|
|
13208
|
-
* cn-hangzhou
|
|
13209
|
-
*/
|
|
13210
|
-
mappingOssRegion?: string;
|
|
13211
|
-
/**
|
|
13212
|
-
* @remarks
|
|
13213
|
-
* The path of the reference files of the mapping workflow.
|
|
13214
|
-
*
|
|
13215
|
-
* @example
|
|
13216
|
-
* reference/hg19
|
|
13217
|
-
*/
|
|
13218
|
-
mappingReferencePath?: string;
|
|
13219
|
-
/**
|
|
13220
|
-
* @remarks
|
|
13221
|
-
* The type of service-level agreement (SLA). Valid values:
|
|
13222
|
-
*
|
|
13223
|
-
* * s: the silver level (S-level). It requires 1 extra minute to process every 1.5 billion base pairs beyond the limit of 90 billion base pairs.
|
|
13224
|
-
* * g: the gold level (G-level). It requires 1 extra minute to process every 2 billion base pairs beyond the limit of 90 billion base pairs.
|
|
13225
|
-
* * p: the platinum level (P-level). It requires 1 extra minute to process every 3 billion base pairs beyond the limit of 90 billion base pairs.
|
|
13226
|
-
*
|
|
13227
|
-
* @example
|
|
13228
|
-
* s
|
|
13229
|
-
*/
|
|
13230
|
-
service?: string;
|
|
13231
|
-
/**
|
|
13232
|
-
* @remarks
|
|
13233
|
-
* The name of the OSS bucket that stores the data of the WGS workflow.
|
|
13234
|
-
*
|
|
13235
|
-
* @example
|
|
13236
|
-
* gene-shenzhen
|
|
13237
|
-
*/
|
|
13238
|
-
wgsBucketName?: string;
|
|
13239
|
-
/**
|
|
13240
|
-
* @remarks
|
|
13241
|
-
* The name of the first FASTQ file of the WGS workflow.
|
|
13242
|
-
*
|
|
13243
|
-
* @example
|
|
13244
|
-
* MGISEQ2000_PCR-free_NA12878_1_V100003043_L01_1.fq.gz
|
|
13245
|
-
*/
|
|
13246
|
-
wgsFastqFirstFilename?: string;
|
|
13247
|
-
/**
|
|
13248
|
-
* @remarks
|
|
13249
|
-
* The path of the FASTQ files of the WGS workflow.
|
|
13250
|
-
*
|
|
13251
|
-
* @example
|
|
13252
|
-
* fastq/MGISEQ2000
|
|
13253
|
-
*/
|
|
13254
|
-
wgsFastqPath?: string;
|
|
13255
|
-
/**
|
|
13256
|
-
* @remarks
|
|
13257
|
-
* The name of the second FASTQ file of the WGS workflow.
|
|
13258
|
-
*
|
|
13259
|
-
* @example
|
|
13260
|
-
* MGISEQ2000_PCR-free_NA12878_1_V100003043_L01_2.fq.gz
|
|
13261
|
-
*/
|
|
13262
|
-
wgsFastqSecondFilename?: string;
|
|
13263
|
-
/**
|
|
13264
|
-
* @remarks
|
|
13265
|
-
* The region where the OSS bucket that stores the data of the whole genome sequencing (WGS) workflow is deployed.
|
|
13266
|
-
*
|
|
13267
|
-
* @example
|
|
13268
|
-
* cn-shenzhen
|
|
13269
|
-
*/
|
|
13270
|
-
wgsOssRegion?: string;
|
|
13271
|
-
/**
|
|
13272
|
-
* @remarks
|
|
13273
|
-
* The path of the reference files of the WGS workflow.
|
|
13274
|
-
*
|
|
13275
|
-
* @example
|
|
13276
|
-
* reference/hg19
|
|
13277
|
-
*/
|
|
13278
|
-
wgsReferencePath?: string;
|
|
13279
|
-
/**
|
|
13280
|
-
* @remarks
|
|
13281
|
-
* The name of the output VCF file.
|
|
13282
|
-
*
|
|
13283
|
-
* @example
|
|
13284
|
-
* abc.vcf
|
|
13285
|
-
*/
|
|
13286
|
-
wgsVcfOutFilename?: string;
|
|
13287
|
-
/**
|
|
13288
|
-
* @remarks
|
|
13289
|
-
* The output path of the Variant Call Format (VCF) file.
|
|
13290
|
-
*
|
|
13291
|
-
* @example
|
|
13292
|
-
* output/vcf
|
|
13293
|
-
*/
|
|
13294
|
-
wgsVcfOutPath?: string;
|
|
13295
|
-
/**
|
|
13296
|
-
* @remarks
|
|
13297
|
-
* The type of workflow. Valid values: wgs and mapping.
|
|
13298
|
-
*
|
|
13299
|
-
* This parameter is required.
|
|
13300
|
-
*
|
|
13301
|
-
* @example
|
|
13302
|
-
* mapping
|
|
13303
|
-
*/
|
|
13304
|
-
workflowType?: string;
|
|
13305
|
-
static names(): { [key: string]: string } {
|
|
13306
|
-
return {
|
|
13307
|
-
mappingBamOutFilename: 'mapping_bam_out_filename',
|
|
13308
|
-
mappingBamOutPath: 'mapping_bam_out_path',
|
|
13309
|
-
mappingBucketName: 'mapping_bucket_name',
|
|
13310
|
-
mappingFastqFirstFilename: 'mapping_fastq_first_filename',
|
|
13311
|
-
mappingFastqPath: 'mapping_fastq_path',
|
|
13312
|
-
mappingFastqSecondFilename: 'mapping_fastq_second_filename',
|
|
13313
|
-
mappingIsMarkDup: 'mapping_is_mark_dup',
|
|
13314
|
-
mappingOssRegion: 'mapping_oss_region',
|
|
13315
|
-
mappingReferencePath: 'mapping_reference_path',
|
|
13316
|
-
service: 'service',
|
|
13317
|
-
wgsBucketName: 'wgs_bucket_name',
|
|
13318
|
-
wgsFastqFirstFilename: 'wgs_fastq_first_filename',
|
|
13319
|
-
wgsFastqPath: 'wgs_fastq_path',
|
|
13320
|
-
wgsFastqSecondFilename: 'wgs_fastq_second_filename',
|
|
13321
|
-
wgsOssRegion: 'wgs_oss_region',
|
|
13322
|
-
wgsReferencePath: 'wgs_reference_path',
|
|
13323
|
-
wgsVcfOutFilename: 'wgs_vcf_out_filename',
|
|
13324
|
-
wgsVcfOutPath: 'wgs_vcf_out_path',
|
|
13325
|
-
workflowType: 'workflow_type',
|
|
13326
|
-
};
|
|
13327
|
-
}
|
|
13328
|
-
|
|
13329
|
-
static types(): { [key: string]: any } {
|
|
13330
|
-
return {
|
|
13331
|
-
mappingBamOutFilename: 'string',
|
|
13332
|
-
mappingBamOutPath: 'string',
|
|
13333
|
-
mappingBucketName: 'string',
|
|
13334
|
-
mappingFastqFirstFilename: 'string',
|
|
13335
|
-
mappingFastqPath: 'string',
|
|
13336
|
-
mappingFastqSecondFilename: 'string',
|
|
13337
|
-
mappingIsMarkDup: 'string',
|
|
13338
|
-
mappingOssRegion: 'string',
|
|
13339
|
-
mappingReferencePath: 'string',
|
|
13340
|
-
service: 'string',
|
|
13341
|
-
wgsBucketName: 'string',
|
|
13342
|
-
wgsFastqFirstFilename: 'string',
|
|
13343
|
-
wgsFastqPath: 'string',
|
|
13344
|
-
wgsFastqSecondFilename: 'string',
|
|
13345
|
-
wgsOssRegion: 'string',
|
|
13346
|
-
wgsReferencePath: 'string',
|
|
13347
|
-
wgsVcfOutFilename: 'string',
|
|
13348
|
-
wgsVcfOutPath: 'string',
|
|
13349
|
-
workflowType: 'string',
|
|
13350
|
-
};
|
|
13351
|
-
}
|
|
13352
|
-
|
|
13353
|
-
constructor(map?: { [key: string]: any }) {
|
|
13354
|
-
super(map);
|
|
13355
|
-
}
|
|
13356
|
-
}
|
|
13357
|
-
|
|
13358
|
-
export class StartWorkflowResponseBody extends $tea.Model {
|
|
13359
|
-
/**
|
|
13360
|
-
* @remarks
|
|
13361
|
-
* The name of the workflow.
|
|
13362
|
-
*
|
|
13363
|
-
* @example
|
|
13364
|
-
* mapping-gpu-66xv7
|
|
13365
|
-
*/
|
|
13366
|
-
jobName?: string;
|
|
13367
|
-
static names(): { [key: string]: string } {
|
|
13368
|
-
return {
|
|
13369
|
-
jobName: 'JobName',
|
|
13370
|
-
};
|
|
13371
|
-
}
|
|
13372
|
-
|
|
13373
|
-
static types(): { [key: string]: any } {
|
|
13374
|
-
return {
|
|
13375
|
-
jobName: 'string',
|
|
13376
|
-
};
|
|
13377
|
-
}
|
|
13378
|
-
|
|
13379
|
-
constructor(map?: { [key: string]: any }) {
|
|
13380
|
-
super(map);
|
|
13381
|
-
}
|
|
13382
|
-
}
|
|
13383
|
-
|
|
13384
|
-
export class StartWorkflowResponse extends $tea.Model {
|
|
13385
|
-
headers?: { [key: string]: string };
|
|
13386
|
-
statusCode?: number;
|
|
13387
|
-
body?: StartWorkflowResponseBody;
|
|
13388
|
-
static names(): { [key: string]: string } {
|
|
13389
|
-
return {
|
|
13390
|
-
headers: 'headers',
|
|
13391
|
-
statusCode: 'statusCode',
|
|
13392
|
-
body: 'body',
|
|
13393
|
-
};
|
|
13394
|
-
}
|
|
13395
|
-
|
|
13396
|
-
static types(): { [key: string]: any } {
|
|
13397
|
-
return {
|
|
13398
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
13399
|
-
statusCode: 'number',
|
|
13400
|
-
body: StartWorkflowResponseBody,
|
|
13401
|
-
};
|
|
13402
|
-
}
|
|
13403
|
-
|
|
13404
|
-
constructor(map?: { [key: string]: any }) {
|
|
13405
|
-
super(map);
|
|
13406
|
-
}
|
|
13407
|
-
}
|
|
13408
|
-
|
|
13409
12937
|
export class StopAlertRequest extends $tea.Model {
|
|
13410
12938
|
/**
|
|
13411
12939
|
* @remarks
|
|
@@ -21847,6 +21375,11 @@ export class DescribeClustersV1ResponseBodyClustersOperationPolicy extends $tea.
|
|
|
21847
21375
|
}
|
|
21848
21376
|
|
|
21849
21377
|
export class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
|
|
21378
|
+
/**
|
|
21379
|
+
* @example
|
|
21380
|
+
* cluster.local
|
|
21381
|
+
*/
|
|
21382
|
+
clusterDomain?: string;
|
|
21850
21383
|
/**
|
|
21851
21384
|
* @remarks
|
|
21852
21385
|
* The cluster ID.
|
|
@@ -21876,6 +21409,11 @@ export class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
|
|
|
21876
21409
|
* Kubernetes
|
|
21877
21410
|
*/
|
|
21878
21411
|
clusterType?: string;
|
|
21412
|
+
/**
|
|
21413
|
+
* @example
|
|
21414
|
+
* 172.20.0.0/16
|
|
21415
|
+
*/
|
|
21416
|
+
containerCidr?: string;
|
|
21879
21417
|
/**
|
|
21880
21418
|
* @remarks
|
|
21881
21419
|
* The time when the cluster was created.
|
|
@@ -21931,6 +21469,11 @@ export class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
|
|
|
21931
21469
|
* 1.16.9-aliyun.1
|
|
21932
21470
|
*/
|
|
21933
21471
|
initVersion?: string;
|
|
21472
|
+
/**
|
|
21473
|
+
* @example
|
|
21474
|
+
* ipv4
|
|
21475
|
+
*/
|
|
21476
|
+
ipStack?: string;
|
|
21934
21477
|
/**
|
|
21935
21478
|
* @remarks
|
|
21936
21479
|
* The maintenance window of the cluster. This feature is available only for ACK managed clusters and ACK Serverless clusters.
|
|
@@ -22008,6 +21551,11 @@ export class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
|
|
|
22008
21551
|
* Default
|
|
22009
21552
|
*/
|
|
22010
21553
|
profile?: string;
|
|
21554
|
+
/**
|
|
21555
|
+
* @example
|
|
21556
|
+
* ipvs
|
|
21557
|
+
*/
|
|
21558
|
+
proxyMode?: string;
|
|
22011
21559
|
/**
|
|
22012
21560
|
* @remarks
|
|
22013
21561
|
* The region ID of the cluster.
|
|
@@ -22032,6 +21580,14 @@ export class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
|
|
|
22032
21580
|
* sg-2vcgwsrwgt5mp0yi****
|
|
22033
21581
|
*/
|
|
22034
21582
|
securityGroupId?: string;
|
|
21583
|
+
/**
|
|
21584
|
+
* @remarks
|
|
21585
|
+
* This parameter is required.
|
|
21586
|
+
*
|
|
21587
|
+
* @example
|
|
21588
|
+
* 172.21.0.0/20
|
|
21589
|
+
*/
|
|
21590
|
+
serviceCidr?: string;
|
|
22035
21591
|
/**
|
|
22036
21592
|
* @remarks
|
|
22037
21593
|
* The number of nodes in the cluster, including master nodes and worker nodes.
|
|
@@ -22073,6 +21629,8 @@ export class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
|
|
|
22073
21629
|
*
|
|
22074
21630
|
* @example
|
|
22075
21631
|
* 172.21.0.0/16
|
|
21632
|
+
*
|
|
21633
|
+
* @deprecated
|
|
22076
21634
|
*/
|
|
22077
21635
|
subnetCidr?: string;
|
|
22078
21636
|
/**
|
|
@@ -22080,6 +21638,11 @@ export class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
|
|
|
22080
21638
|
* The resource labels of the cluster.
|
|
22081
21639
|
*/
|
|
22082
21640
|
tags?: Tag[];
|
|
21641
|
+
/**
|
|
21642
|
+
* @example
|
|
21643
|
+
* Asia/Shanghai
|
|
21644
|
+
*/
|
|
21645
|
+
timezone?: string;
|
|
22083
21646
|
/**
|
|
22084
21647
|
* @remarks
|
|
22085
21648
|
* The time when the cluster was updated.
|
|
@@ -22102,8 +21665,11 @@ export class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
|
|
|
22102
21665
|
*
|
|
22103
21666
|
* @example
|
|
22104
21667
|
* vsw-2vc41xuumx5z2rdma****,vsw-2vc41xuumx5z2rdma****
|
|
21668
|
+
*
|
|
21669
|
+
* @deprecated
|
|
22105
21670
|
*/
|
|
22106
21671
|
vswitchId?: string;
|
|
21672
|
+
vswitchIds?: string[];
|
|
22107
21673
|
/**
|
|
22108
21674
|
* @remarks
|
|
22109
21675
|
* The name of the worker Resource Access Management (RAM) role. The RAM role is assigned to the worker nodes of the cluster to allow the worker nodes to manage ECS instances.
|
|
@@ -22122,15 +21688,18 @@ export class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
|
|
|
22122
21688
|
zoneId?: string;
|
|
22123
21689
|
static names(): { [key: string]: string } {
|
|
22124
21690
|
return {
|
|
21691
|
+
clusterDomain: 'cluster_domain',
|
|
22125
21692
|
clusterId: 'cluster_id',
|
|
22126
21693
|
clusterSpec: 'cluster_spec',
|
|
22127
21694
|
clusterType: 'cluster_type',
|
|
21695
|
+
containerCidr: 'container_cidr',
|
|
22128
21696
|
created: 'created',
|
|
22129
21697
|
currentVersion: 'current_version',
|
|
22130
21698
|
deletionProtection: 'deletion_protection',
|
|
22131
21699
|
dockerVersion: 'docker_version',
|
|
22132
21700
|
externalLoadbalancerId: 'external_loadbalancer_id',
|
|
22133
21701
|
initVersion: 'init_version',
|
|
21702
|
+
ipStack: 'ip_stack',
|
|
22134
21703
|
maintenanceWindow: 'maintenance_window',
|
|
22135
21704
|
masterUrl: 'master_url',
|
|
22136
21705
|
metaData: 'meta_data',
|
|
@@ -22140,16 +21709,20 @@ export class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
|
|
|
22140
21709
|
operationPolicy: 'operation_policy',
|
|
22141
21710
|
privateZone: 'private_zone',
|
|
22142
21711
|
profile: 'profile',
|
|
21712
|
+
proxyMode: 'proxy_mode',
|
|
22143
21713
|
regionId: 'region_id',
|
|
22144
21714
|
resourceGroupId: 'resource_group_id',
|
|
22145
21715
|
securityGroupId: 'security_group_id',
|
|
21716
|
+
serviceCidr: 'service_cidr',
|
|
22146
21717
|
size: 'size',
|
|
22147
21718
|
state: 'state',
|
|
22148
21719
|
subnetCidr: 'subnet_cidr',
|
|
22149
21720
|
tags: 'tags',
|
|
21721
|
+
timezone: 'timezone',
|
|
22150
21722
|
updated: 'updated',
|
|
22151
21723
|
vpcId: 'vpc_id',
|
|
22152
21724
|
vswitchId: 'vswitch_id',
|
|
21725
|
+
vswitchIds: 'vswitch_ids',
|
|
22153
21726
|
workerRamRoleName: 'worker_ram_role_name',
|
|
22154
21727
|
zoneId: 'zone_id',
|
|
22155
21728
|
};
|
|
@@ -22157,15 +21730,18 @@ export class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
|
|
|
22157
21730
|
|
|
22158
21731
|
static types(): { [key: string]: any } {
|
|
22159
21732
|
return {
|
|
21733
|
+
clusterDomain: 'string',
|
|
22160
21734
|
clusterId: 'string',
|
|
22161
21735
|
clusterSpec: 'string',
|
|
22162
21736
|
clusterType: 'string',
|
|
21737
|
+
containerCidr: 'string',
|
|
22163
21738
|
created: 'string',
|
|
22164
21739
|
currentVersion: 'string',
|
|
22165
21740
|
deletionProtection: 'boolean',
|
|
22166
21741
|
dockerVersion: 'string',
|
|
22167
21742
|
externalLoadbalancerId: 'string',
|
|
22168
21743
|
initVersion: 'string',
|
|
21744
|
+
ipStack: 'string',
|
|
22169
21745
|
maintenanceWindow: MaintenanceWindow,
|
|
22170
21746
|
masterUrl: 'string',
|
|
22171
21747
|
metaData: 'string',
|
|
@@ -22175,16 +21751,20 @@ export class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
|
|
|
22175
21751
|
operationPolicy: DescribeClustersV1ResponseBodyClustersOperationPolicy,
|
|
22176
21752
|
privateZone: 'boolean',
|
|
22177
21753
|
profile: 'string',
|
|
21754
|
+
proxyMode: 'string',
|
|
22178
21755
|
regionId: 'string',
|
|
22179
21756
|
resourceGroupId: 'string',
|
|
22180
21757
|
securityGroupId: 'string',
|
|
21758
|
+
serviceCidr: 'string',
|
|
22181
21759
|
size: 'number',
|
|
22182
21760
|
state: 'string',
|
|
22183
21761
|
subnetCidr: 'string',
|
|
22184
21762
|
tags: { 'type': 'array', 'itemType': Tag },
|
|
21763
|
+
timezone: 'string',
|
|
22185
21764
|
updated: 'string',
|
|
22186
21765
|
vpcId: 'string',
|
|
22187
21766
|
vswitchId: 'string',
|
|
21767
|
+
vswitchIds: { 'type': 'array', 'itemType': 'string' },
|
|
22188
21768
|
workerRamRoleName: 'string',
|
|
22189
21769
|
zoneId: 'string',
|
|
22190
21770
|
};
|
|
@@ -24466,52 +24046,6 @@ export class DescribeUserQuotaResponseBodyEdgeImprovedNodepoolQuota extends $tea
|
|
|
24466
24046
|
}
|
|
24467
24047
|
}
|
|
24468
24048
|
|
|
24469
|
-
export class DescribeWorkflowsResponseBodyJobs extends $tea.Model {
|
|
24470
|
-
/**
|
|
24471
|
-
* @remarks
|
|
24472
|
-
* The cluster ID.
|
|
24473
|
-
*
|
|
24474
|
-
* @example
|
|
24475
|
-
* cb1a7214cfc0b41d9bb086affc2d8f51c
|
|
24476
|
-
*/
|
|
24477
|
-
clusterId?: string;
|
|
24478
|
-
/**
|
|
24479
|
-
* @remarks
|
|
24480
|
-
* The time when the workflow was created.
|
|
24481
|
-
*
|
|
24482
|
-
* @example
|
|
24483
|
-
* 2020-01-15T13:18:52Z
|
|
24484
|
-
*/
|
|
24485
|
-
createTime?: string;
|
|
24486
|
-
/**
|
|
24487
|
-
* @remarks
|
|
24488
|
-
* The name of the workflow.
|
|
24489
|
-
*
|
|
24490
|
-
* @example
|
|
24491
|
-
* wgs-gpu-qb4dk
|
|
24492
|
-
*/
|
|
24493
|
-
jobName?: string;
|
|
24494
|
-
static names(): { [key: string]: string } {
|
|
24495
|
-
return {
|
|
24496
|
-
clusterId: 'cluster_id',
|
|
24497
|
-
createTime: 'create_time',
|
|
24498
|
-
jobName: 'job_name',
|
|
24499
|
-
};
|
|
24500
|
-
}
|
|
24501
|
-
|
|
24502
|
-
static types(): { [key: string]: any } {
|
|
24503
|
-
return {
|
|
24504
|
-
clusterId: 'string',
|
|
24505
|
-
createTime: 'string',
|
|
24506
|
-
jobName: 'string',
|
|
24507
|
-
};
|
|
24508
|
-
}
|
|
24509
|
-
|
|
24510
|
-
constructor(map?: { [key: string]: any }) {
|
|
24511
|
-
super(map);
|
|
24512
|
-
}
|
|
24513
|
-
}
|
|
24514
|
-
|
|
24515
24049
|
export class FixNodePoolVulsRequestRolloutPolicy extends $tea.Model {
|
|
24516
24050
|
/**
|
|
24517
24051
|
* @remarks
|
|
@@ -27825,57 +27359,6 @@ export default class Client extends OpenApi {
|
|
|
27825
27359
|
return await this.cancelTaskWithOptions(taskId, headers, runtime);
|
|
27826
27360
|
}
|
|
27827
27361
|
|
|
27828
|
-
/**
|
|
27829
|
-
* You can call the CancelWorkflow operation to cancel an ongoing workflow.
|
|
27830
|
-
*
|
|
27831
|
-
* @deprecated OpenAPI CancelWorkflow is deprecated
|
|
27832
|
-
*
|
|
27833
|
-
* @param request - CancelWorkflowRequest
|
|
27834
|
-
* @param headers - map
|
|
27835
|
-
* @param runtime - runtime options for this request RuntimeOptions
|
|
27836
|
-
* @returns CancelWorkflowResponse
|
|
27837
|
-
*/
|
|
27838
|
-
// Deprecated
|
|
27839
|
-
async cancelWorkflowWithOptions(workflowName: string, request: CancelWorkflowRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CancelWorkflowResponse> {
|
|
27840
|
-
Util.validateModel(request);
|
|
27841
|
-
let body : {[key: string ]: any} = { };
|
|
27842
|
-
if (!Util.isUnset(request.action)) {
|
|
27843
|
-
body["action"] = request.action;
|
|
27844
|
-
}
|
|
27845
|
-
|
|
27846
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
27847
|
-
headers: headers,
|
|
27848
|
-
body: OpenApiUtil.parseToMap(body),
|
|
27849
|
-
});
|
|
27850
|
-
let params = new $OpenApi.Params({
|
|
27851
|
-
action: "CancelWorkflow",
|
|
27852
|
-
version: "2015-12-15",
|
|
27853
|
-
protocol: "HTTPS",
|
|
27854
|
-
pathname: `/gs/workflow/${OpenApiUtil.getEncodeParam(workflowName)}`,
|
|
27855
|
-
method: "PUT",
|
|
27856
|
-
authType: "AK",
|
|
27857
|
-
style: "ROA",
|
|
27858
|
-
reqBodyType: "json",
|
|
27859
|
-
bodyType: "none",
|
|
27860
|
-
});
|
|
27861
|
-
return $tea.cast<CancelWorkflowResponse>(await this.callApi(params, req, runtime), new CancelWorkflowResponse({}));
|
|
27862
|
-
}
|
|
27863
|
-
|
|
27864
|
-
/**
|
|
27865
|
-
* You can call the CancelWorkflow operation to cancel an ongoing workflow.
|
|
27866
|
-
*
|
|
27867
|
-
* @deprecated OpenAPI CancelWorkflow is deprecated
|
|
27868
|
-
*
|
|
27869
|
-
* @param request - CancelWorkflowRequest
|
|
27870
|
-
* @returns CancelWorkflowResponse
|
|
27871
|
-
*/
|
|
27872
|
-
// Deprecated
|
|
27873
|
-
async cancelWorkflow(workflowName: string, request: CancelWorkflowRequest): Promise<CancelWorkflowResponse> {
|
|
27874
|
-
let runtime = new $Util.RuntimeOptions({ });
|
|
27875
|
-
let headers : {[key: string ]: string} = { };
|
|
27876
|
-
return await this.cancelWorkflowWithOptions(workflowName, request, headers, runtime);
|
|
27877
|
-
}
|
|
27878
|
-
|
|
27879
27362
|
/**
|
|
27880
27363
|
* Queries the current log configuration of control plane components, including the log retention period and the log collection component. Container Service for Kubernetes (ACK) managed clusters can collect the logs of control plane components and deliver the logs to projects in Simple Log Service. These control plane components include Kube API Server, Kube Scheduler, Kube Controller Manager, and Cloud Controller Manager.
|
|
27881
27364
|
*
|
|
@@ -29511,47 +28994,6 @@ export default class Client extends OpenApi {
|
|
|
29511
28994
|
return await this.deployPolicyInstanceWithOptions(clusterId, policyName, request, headers, runtime);
|
|
29512
28995
|
}
|
|
29513
28996
|
|
|
29514
|
-
/**
|
|
29515
|
-
* You can call the DescirbeWorkflow operation to query detailed information about a workflow.
|
|
29516
|
-
*
|
|
29517
|
-
* @deprecated OpenAPI DescirbeWorkflow is deprecated
|
|
29518
|
-
*
|
|
29519
|
-
* @param headers - map
|
|
29520
|
-
* @param runtime - runtime options for this request RuntimeOptions
|
|
29521
|
-
* @returns DescirbeWorkflowResponse
|
|
29522
|
-
*/
|
|
29523
|
-
// Deprecated
|
|
29524
|
-
async descirbeWorkflowWithOptions(workflowName: string, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescirbeWorkflowResponse> {
|
|
29525
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
29526
|
-
headers: headers,
|
|
29527
|
-
});
|
|
29528
|
-
let params = new $OpenApi.Params({
|
|
29529
|
-
action: "DescirbeWorkflow",
|
|
29530
|
-
version: "2015-12-15",
|
|
29531
|
-
protocol: "HTTPS",
|
|
29532
|
-
pathname: `/gs/workflow/${OpenApiUtil.getEncodeParam(workflowName)}`,
|
|
29533
|
-
method: "GET",
|
|
29534
|
-
authType: "AK",
|
|
29535
|
-
style: "ROA",
|
|
29536
|
-
reqBodyType: "json",
|
|
29537
|
-
bodyType: "json",
|
|
29538
|
-
});
|
|
29539
|
-
return $tea.cast<DescirbeWorkflowResponse>(await this.callApi(params, req, runtime), new DescirbeWorkflowResponse({}));
|
|
29540
|
-
}
|
|
29541
|
-
|
|
29542
|
-
/**
|
|
29543
|
-
* You can call the DescirbeWorkflow operation to query detailed information about a workflow.
|
|
29544
|
-
*
|
|
29545
|
-
* @deprecated OpenAPI DescirbeWorkflow is deprecated
|
|
29546
|
-
* @returns DescirbeWorkflowResponse
|
|
29547
|
-
*/
|
|
29548
|
-
// Deprecated
|
|
29549
|
-
async descirbeWorkflow(workflowName: string): Promise<DescirbeWorkflowResponse> {
|
|
29550
|
-
let runtime = new $Util.RuntimeOptions({ });
|
|
29551
|
-
let headers : {[key: string ]: string} = { };
|
|
29552
|
-
return await this.descirbeWorkflowWithOptions(workflowName, headers, runtime);
|
|
29553
|
-
}
|
|
29554
|
-
|
|
29555
28997
|
/**
|
|
29556
28998
|
* Queries the information about a component based on specific conditions such as the region, cluster type, cluster subtype defined by cluster profile, cluster version, and component name. The information includes whether the component is managed, the component type, supported custom parameter schema, compatible operating system architecture, and earliest supported cluster version.
|
|
29557
28999
|
*
|
|
@@ -31609,47 +31051,6 @@ export default class Client extends OpenApi {
|
|
|
31609
31051
|
return await this.describeUserQuotaWithOptions(headers, runtime);
|
|
31610
31052
|
}
|
|
31611
31053
|
|
|
31612
|
-
/**
|
|
31613
|
-
* You can call the DescribeWorkflows operation to query all workflows.
|
|
31614
|
-
*
|
|
31615
|
-
* @deprecated OpenAPI DescribeWorkflows is deprecated
|
|
31616
|
-
*
|
|
31617
|
-
* @param headers - map
|
|
31618
|
-
* @param runtime - runtime options for this request RuntimeOptions
|
|
31619
|
-
* @returns DescribeWorkflowsResponse
|
|
31620
|
-
*/
|
|
31621
|
-
// Deprecated
|
|
31622
|
-
async describeWorkflowsWithOptions(headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeWorkflowsResponse> {
|
|
31623
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
31624
|
-
headers: headers,
|
|
31625
|
-
});
|
|
31626
|
-
let params = new $OpenApi.Params({
|
|
31627
|
-
action: "DescribeWorkflows",
|
|
31628
|
-
version: "2015-12-15",
|
|
31629
|
-
protocol: "HTTPS",
|
|
31630
|
-
pathname: `/gs/workflows`,
|
|
31631
|
-
method: "GET",
|
|
31632
|
-
authType: "AK",
|
|
31633
|
-
style: "ROA",
|
|
31634
|
-
reqBodyType: "json",
|
|
31635
|
-
bodyType: "json",
|
|
31636
|
-
});
|
|
31637
|
-
return $tea.cast<DescribeWorkflowsResponse>(await this.callApi(params, req, runtime), new DescribeWorkflowsResponse({}));
|
|
31638
|
-
}
|
|
31639
|
-
|
|
31640
|
-
/**
|
|
31641
|
-
* You can call the DescribeWorkflows operation to query all workflows.
|
|
31642
|
-
*
|
|
31643
|
-
* @deprecated OpenAPI DescribeWorkflows is deprecated
|
|
31644
|
-
* @returns DescribeWorkflowsResponse
|
|
31645
|
-
*/
|
|
31646
|
-
// Deprecated
|
|
31647
|
-
async describeWorkflows(): Promise<DescribeWorkflowsResponse> {
|
|
31648
|
-
let runtime = new $Util.RuntimeOptions({ });
|
|
31649
|
-
let headers : {[key: string ]: string} = { };
|
|
31650
|
-
return await this.describeWorkflowsWithOptions(headers, runtime);
|
|
31651
|
-
}
|
|
31652
|
-
|
|
31653
31054
|
/**
|
|
31654
31055
|
* You can call the EdgeClusterAddEdgeMachine operation to add a cloud-native box to a Container Service for Kubernetes (ACK) Edge cluster.
|
|
31655
31056
|
*
|
|
@@ -32631,6 +32032,10 @@ export default class Client extends OpenApi {
|
|
|
32631
32032
|
body["system_events_logging"] = request.systemEventsLogging;
|
|
32632
32033
|
}
|
|
32633
32034
|
|
|
32035
|
+
if (!Util.isUnset(request.vswitchIds)) {
|
|
32036
|
+
body["vswitch_ids"] = request.vswitchIds;
|
|
32037
|
+
}
|
|
32038
|
+
|
|
32634
32039
|
let req = new $OpenApi.OpenApiRequest({
|
|
32635
32040
|
headers: headers,
|
|
32636
32041
|
body: OpenApiUtil.parseToMap(body),
|
|
@@ -33316,47 +32721,6 @@ export default class Client extends OpenApi {
|
|
|
33316
32721
|
return await this.removeNodePoolNodesWithOptions(ClusterId, NodepoolId, request, headers, runtime);
|
|
33317
32722
|
}
|
|
33318
32723
|
|
|
33319
|
-
/**
|
|
33320
|
-
* You can call the RemoveWorkflow operation to delete a workflow.
|
|
33321
|
-
*
|
|
33322
|
-
* @deprecated OpenAPI RemoveWorkflow is deprecated
|
|
33323
|
-
*
|
|
33324
|
-
* @param headers - map
|
|
33325
|
-
* @param runtime - runtime options for this request RuntimeOptions
|
|
33326
|
-
* @returns RemoveWorkflowResponse
|
|
33327
|
-
*/
|
|
33328
|
-
// Deprecated
|
|
33329
|
-
async removeWorkflowWithOptions(workflowName: string, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<RemoveWorkflowResponse> {
|
|
33330
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
33331
|
-
headers: headers,
|
|
33332
|
-
});
|
|
33333
|
-
let params = new $OpenApi.Params({
|
|
33334
|
-
action: "RemoveWorkflow",
|
|
33335
|
-
version: "2015-12-15",
|
|
33336
|
-
protocol: "HTTPS",
|
|
33337
|
-
pathname: `/gs/workflow/${OpenApiUtil.getEncodeParam(workflowName)}`,
|
|
33338
|
-
method: "DELETE",
|
|
33339
|
-
authType: "AK",
|
|
33340
|
-
style: "ROA",
|
|
33341
|
-
reqBodyType: "json",
|
|
33342
|
-
bodyType: "none",
|
|
33343
|
-
});
|
|
33344
|
-
return $tea.cast<RemoveWorkflowResponse>(await this.callApi(params, req, runtime), new RemoveWorkflowResponse({}));
|
|
33345
|
-
}
|
|
33346
|
-
|
|
33347
|
-
/**
|
|
33348
|
-
* You can call the RemoveWorkflow operation to delete a workflow.
|
|
33349
|
-
*
|
|
33350
|
-
* @deprecated OpenAPI RemoveWorkflow is deprecated
|
|
33351
|
-
* @returns RemoveWorkflowResponse
|
|
33352
|
-
*/
|
|
33353
|
-
// Deprecated
|
|
33354
|
-
async removeWorkflow(workflowName: string): Promise<RemoveWorkflowResponse> {
|
|
33355
|
-
let runtime = new $Util.RuntimeOptions({ });
|
|
33356
|
-
let headers : {[key: string ]: string} = { };
|
|
33357
|
-
return await this.removeWorkflowWithOptions(workflowName, headers, runtime);
|
|
33358
|
-
}
|
|
33359
|
-
|
|
33360
32724
|
/**
|
|
33361
32725
|
* Fixes issues on abnormal nodes in a node pool to ensure that the nodes can run as normal.
|
|
33362
32726
|
*
|
|
@@ -33996,129 +33360,6 @@ export default class Client extends OpenApi {
|
|
|
33996
33360
|
return await this.startAlertWithOptions(ClusterId, request, headers, runtime);
|
|
33997
33361
|
}
|
|
33998
33362
|
|
|
33999
|
-
/**
|
|
34000
|
-
* You can call the StartWorkflow operation to create a workflow.
|
|
34001
|
-
*
|
|
34002
|
-
* @deprecated OpenAPI StartWorkflow is deprecated
|
|
34003
|
-
*
|
|
34004
|
-
* @param request - StartWorkflowRequest
|
|
34005
|
-
* @param headers - map
|
|
34006
|
-
* @param runtime - runtime options for this request RuntimeOptions
|
|
34007
|
-
* @returns StartWorkflowResponse
|
|
34008
|
-
*/
|
|
34009
|
-
// Deprecated
|
|
34010
|
-
async startWorkflowWithOptions(request: StartWorkflowRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<StartWorkflowResponse> {
|
|
34011
|
-
Util.validateModel(request);
|
|
34012
|
-
let body : {[key: string ]: any} = { };
|
|
34013
|
-
if (!Util.isUnset(request.mappingBamOutFilename)) {
|
|
34014
|
-
body["mapping_bam_out_filename"] = request.mappingBamOutFilename;
|
|
34015
|
-
}
|
|
34016
|
-
|
|
34017
|
-
if (!Util.isUnset(request.mappingBamOutPath)) {
|
|
34018
|
-
body["mapping_bam_out_path"] = request.mappingBamOutPath;
|
|
34019
|
-
}
|
|
34020
|
-
|
|
34021
|
-
if (!Util.isUnset(request.mappingBucketName)) {
|
|
34022
|
-
body["mapping_bucket_name"] = request.mappingBucketName;
|
|
34023
|
-
}
|
|
34024
|
-
|
|
34025
|
-
if (!Util.isUnset(request.mappingFastqFirstFilename)) {
|
|
34026
|
-
body["mapping_fastq_first_filename"] = request.mappingFastqFirstFilename;
|
|
34027
|
-
}
|
|
34028
|
-
|
|
34029
|
-
if (!Util.isUnset(request.mappingFastqPath)) {
|
|
34030
|
-
body["mapping_fastq_path"] = request.mappingFastqPath;
|
|
34031
|
-
}
|
|
34032
|
-
|
|
34033
|
-
if (!Util.isUnset(request.mappingFastqSecondFilename)) {
|
|
34034
|
-
body["mapping_fastq_second_filename"] = request.mappingFastqSecondFilename;
|
|
34035
|
-
}
|
|
34036
|
-
|
|
34037
|
-
if (!Util.isUnset(request.mappingIsMarkDup)) {
|
|
34038
|
-
body["mapping_is_mark_dup"] = request.mappingIsMarkDup;
|
|
34039
|
-
}
|
|
34040
|
-
|
|
34041
|
-
if (!Util.isUnset(request.mappingOssRegion)) {
|
|
34042
|
-
body["mapping_oss_region"] = request.mappingOssRegion;
|
|
34043
|
-
}
|
|
34044
|
-
|
|
34045
|
-
if (!Util.isUnset(request.mappingReferencePath)) {
|
|
34046
|
-
body["mapping_reference_path"] = request.mappingReferencePath;
|
|
34047
|
-
}
|
|
34048
|
-
|
|
34049
|
-
if (!Util.isUnset(request.service)) {
|
|
34050
|
-
body["service"] = request.service;
|
|
34051
|
-
}
|
|
34052
|
-
|
|
34053
|
-
if (!Util.isUnset(request.wgsBucketName)) {
|
|
34054
|
-
body["wgs_bucket_name"] = request.wgsBucketName;
|
|
34055
|
-
}
|
|
34056
|
-
|
|
34057
|
-
if (!Util.isUnset(request.wgsFastqFirstFilename)) {
|
|
34058
|
-
body["wgs_fastq_first_filename"] = request.wgsFastqFirstFilename;
|
|
34059
|
-
}
|
|
34060
|
-
|
|
34061
|
-
if (!Util.isUnset(request.wgsFastqPath)) {
|
|
34062
|
-
body["wgs_fastq_path"] = request.wgsFastqPath;
|
|
34063
|
-
}
|
|
34064
|
-
|
|
34065
|
-
if (!Util.isUnset(request.wgsFastqSecondFilename)) {
|
|
34066
|
-
body["wgs_fastq_second_filename"] = request.wgsFastqSecondFilename;
|
|
34067
|
-
}
|
|
34068
|
-
|
|
34069
|
-
if (!Util.isUnset(request.wgsOssRegion)) {
|
|
34070
|
-
body["wgs_oss_region"] = request.wgsOssRegion;
|
|
34071
|
-
}
|
|
34072
|
-
|
|
34073
|
-
if (!Util.isUnset(request.wgsReferencePath)) {
|
|
34074
|
-
body["wgs_reference_path"] = request.wgsReferencePath;
|
|
34075
|
-
}
|
|
34076
|
-
|
|
34077
|
-
if (!Util.isUnset(request.wgsVcfOutFilename)) {
|
|
34078
|
-
body["wgs_vcf_out_filename"] = request.wgsVcfOutFilename;
|
|
34079
|
-
}
|
|
34080
|
-
|
|
34081
|
-
if (!Util.isUnset(request.wgsVcfOutPath)) {
|
|
34082
|
-
body["wgs_vcf_out_path"] = request.wgsVcfOutPath;
|
|
34083
|
-
}
|
|
34084
|
-
|
|
34085
|
-
if (!Util.isUnset(request.workflowType)) {
|
|
34086
|
-
body["workflow_type"] = request.workflowType;
|
|
34087
|
-
}
|
|
34088
|
-
|
|
34089
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
34090
|
-
headers: headers,
|
|
34091
|
-
body: OpenApiUtil.parseToMap(body),
|
|
34092
|
-
});
|
|
34093
|
-
let params = new $OpenApi.Params({
|
|
34094
|
-
action: "StartWorkflow",
|
|
34095
|
-
version: "2015-12-15",
|
|
34096
|
-
protocol: "HTTPS",
|
|
34097
|
-
pathname: `/gs/workflow`,
|
|
34098
|
-
method: "POST",
|
|
34099
|
-
authType: "AK",
|
|
34100
|
-
style: "ROA",
|
|
34101
|
-
reqBodyType: "json",
|
|
34102
|
-
bodyType: "json",
|
|
34103
|
-
});
|
|
34104
|
-
return $tea.cast<StartWorkflowResponse>(await this.callApi(params, req, runtime), new StartWorkflowResponse({}));
|
|
34105
|
-
}
|
|
34106
|
-
|
|
34107
|
-
/**
|
|
34108
|
-
* You can call the StartWorkflow operation to create a workflow.
|
|
34109
|
-
*
|
|
34110
|
-
* @deprecated OpenAPI StartWorkflow is deprecated
|
|
34111
|
-
*
|
|
34112
|
-
* @param request - StartWorkflowRequest
|
|
34113
|
-
* @returns StartWorkflowResponse
|
|
34114
|
-
*/
|
|
34115
|
-
// Deprecated
|
|
34116
|
-
async startWorkflow(request: StartWorkflowRequest): Promise<StartWorkflowResponse> {
|
|
34117
|
-
let runtime = new $Util.RuntimeOptions({ });
|
|
34118
|
-
let headers : {[key: string ]: string} = { };
|
|
34119
|
-
return await this.startWorkflowWithOptions(request, headers, runtime);
|
|
34120
|
-
}
|
|
34121
|
-
|
|
34122
33363
|
/**
|
|
34123
33364
|
* You can call the StopAlert operation to disable an alert rule or an alert rule set in the alert center of Container Service for Kubernetes (ACK).
|
|
34124
33365
|
*
|