@alicloud/cs20151215 4.7.8 → 4.7.10
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 +116 -542
- package/dist/client.js +59 -534
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +172 -891
package/src/client.ts
CHANGED
|
@@ -1105,6 +1105,13 @@ export class CancelComponentUpgradeResponse extends $tea.Model {
|
|
|
1105
1105
|
}
|
|
1106
1106
|
|
|
1107
1107
|
export class CancelOperationPlanResponseBody extends $tea.Model {
|
|
1108
|
+
/**
|
|
1109
|
+
* @remarks
|
|
1110
|
+
* The request ID.
|
|
1111
|
+
*
|
|
1112
|
+
* @example
|
|
1113
|
+
* db82195b-75a8-40e5-9be4-16f1829dc624
|
|
1114
|
+
*/
|
|
1108
1115
|
requestId?: string;
|
|
1109
1116
|
static names(): { [key: string]: string } {
|
|
1110
1117
|
return {
|
|
@@ -1170,56 +1177,6 @@ export class CancelTaskResponse extends $tea.Model {
|
|
|
1170
1177
|
}
|
|
1171
1178
|
}
|
|
1172
1179
|
|
|
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
1180
|
export class CheckControlPlaneLogEnableResponseBody extends $tea.Model {
|
|
1224
1181
|
/**
|
|
1225
1182
|
* @remarks
|
|
@@ -4378,6 +4335,9 @@ export class DeleteClusterNodepoolResponseBody extends $tea.Model {
|
|
|
4378
4335
|
*/
|
|
4379
4336
|
requestId?: string;
|
|
4380
4337
|
/**
|
|
4338
|
+
* @remarks
|
|
4339
|
+
* task IDs
|
|
4340
|
+
*
|
|
4381
4341
|
* @example
|
|
4382
4342
|
* T-655ace947e0e6603af000004
|
|
4383
4343
|
*/
|
|
@@ -4841,157 +4801,6 @@ export class DeployPolicyInstanceResponse extends $tea.Model {
|
|
|
4841
4801
|
}
|
|
4842
4802
|
}
|
|
4843
4803
|
|
|
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
4804
|
export class DescribeAddonRequest extends $tea.Model {
|
|
4996
4805
|
/**
|
|
4997
4806
|
* @remarks
|
|
@@ -5766,6 +5575,11 @@ export class DescribeClusterAttachScriptsResponse extends $tea.Model {
|
|
|
5766
5575
|
}
|
|
5767
5576
|
|
|
5768
5577
|
export class DescribeClusterDetailResponseBody extends $tea.Model {
|
|
5578
|
+
/**
|
|
5579
|
+
* @example
|
|
5580
|
+
* cluster.local
|
|
5581
|
+
*/
|
|
5582
|
+
clusterDomain?: string;
|
|
5769
5583
|
/**
|
|
5770
5584
|
* @remarks
|
|
5771
5585
|
* The cluster ID.
|
|
@@ -5795,6 +5609,11 @@ export class DescribeClusterDetailResponseBody extends $tea.Model {
|
|
|
5795
5609
|
* Kubernetes
|
|
5796
5610
|
*/
|
|
5797
5611
|
clusterType?: string;
|
|
5612
|
+
/**
|
|
5613
|
+
* @example
|
|
5614
|
+
* 172.20.0.0/16
|
|
5615
|
+
*/
|
|
5616
|
+
containerCidr?: string;
|
|
5798
5617
|
/**
|
|
5799
5618
|
* @remarks
|
|
5800
5619
|
* The time when the cluster was created.
|
|
@@ -5843,6 +5662,11 @@ export class DescribeClusterDetailResponseBody extends $tea.Model {
|
|
|
5843
5662
|
* 1.16.6-aliyun.1
|
|
5844
5663
|
*/
|
|
5845
5664
|
initVersion?: string;
|
|
5665
|
+
/**
|
|
5666
|
+
* @example
|
|
5667
|
+
* ipv4
|
|
5668
|
+
*/
|
|
5669
|
+
ipStack?: string;
|
|
5846
5670
|
/**
|
|
5847
5671
|
* @remarks
|
|
5848
5672
|
* The maintenance window of the cluster. This feature is available only in ACK Pro clusters.
|
|
@@ -5884,6 +5708,11 @@ export class DescribeClusterDetailResponseBody extends $tea.Model {
|
|
|
5884
5708
|
* 1.18.8-aliyun.1
|
|
5885
5709
|
*/
|
|
5886
5710
|
nextVersion?: string;
|
|
5711
|
+
/**
|
|
5712
|
+
* @example
|
|
5713
|
+
* 26
|
|
5714
|
+
*/
|
|
5715
|
+
nodeCidrMask?: string;
|
|
5887
5716
|
operationPolicy?: DescribeClusterDetailResponseBodyOperationPolicy;
|
|
5888
5717
|
/**
|
|
5889
5718
|
* @remarks
|
|
@@ -5908,6 +5737,11 @@ export class DescribeClusterDetailResponseBody extends $tea.Model {
|
|
|
5908
5737
|
* Default
|
|
5909
5738
|
*/
|
|
5910
5739
|
profile?: string;
|
|
5740
|
+
/**
|
|
5741
|
+
* @example
|
|
5742
|
+
* ipvs
|
|
5743
|
+
*/
|
|
5744
|
+
proxyMode?: string;
|
|
5911
5745
|
/**
|
|
5912
5746
|
* @remarks
|
|
5913
5747
|
* The region ID of the cluster.
|
|
@@ -5932,6 +5766,14 @@ export class DescribeClusterDetailResponseBody extends $tea.Model {
|
|
|
5932
5766
|
* sg-25yq****
|
|
5933
5767
|
*/
|
|
5934
5768
|
securityGroupId?: string;
|
|
5769
|
+
/**
|
|
5770
|
+
* @remarks
|
|
5771
|
+
* This parameter is required.
|
|
5772
|
+
*
|
|
5773
|
+
* @example
|
|
5774
|
+
* 172.21.0.0/20
|
|
5775
|
+
*/
|
|
5776
|
+
serviceCidr?: string;
|
|
5935
5777
|
/**
|
|
5936
5778
|
* @remarks
|
|
5937
5779
|
* The number of nodes in the cluster. Master nodes and worker nodes are included.
|
|
@@ -5975,6 +5817,8 @@ export class DescribeClusterDetailResponseBody extends $tea.Model {
|
|
|
5975
5817
|
*
|
|
5976
5818
|
* @example
|
|
5977
5819
|
* 172.20.0.0/16
|
|
5820
|
+
*
|
|
5821
|
+
* @deprecated
|
|
5978
5822
|
*/
|
|
5979
5823
|
subnetCidr?: string;
|
|
5980
5824
|
/**
|
|
@@ -5982,6 +5826,11 @@ export class DescribeClusterDetailResponseBody extends $tea.Model {
|
|
|
5982
5826
|
* The resource tags of the cluster.
|
|
5983
5827
|
*/
|
|
5984
5828
|
tags?: Tag[];
|
|
5829
|
+
/**
|
|
5830
|
+
* @example
|
|
5831
|
+
* Asia/Shanghai
|
|
5832
|
+
*/
|
|
5833
|
+
timezone?: string;
|
|
5985
5834
|
/**
|
|
5986
5835
|
* @remarks
|
|
5987
5836
|
* The time when the cluster was updated.
|
|
@@ -6004,8 +5853,11 @@ export class DescribeClusterDetailResponseBody extends $tea.Model {
|
|
|
6004
5853
|
*
|
|
6005
5854
|
* @example
|
|
6006
5855
|
* vsw-2zete8s4qocqg0mf6****,vsw-2zete8s4qocqg0mf6****
|
|
5856
|
+
*
|
|
5857
|
+
* @deprecated
|
|
6007
5858
|
*/
|
|
6008
5859
|
vswitchId?: string;
|
|
5860
|
+
vswitchIds?: string[];
|
|
6009
5861
|
/**
|
|
6010
5862
|
* @remarks
|
|
6011
5863
|
* 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 +5873,43 @@ export class DescribeClusterDetailResponseBody extends $tea.Model {
|
|
|
6021
5873
|
zoneId?: string;
|
|
6022
5874
|
static names(): { [key: string]: string } {
|
|
6023
5875
|
return {
|
|
5876
|
+
clusterDomain: 'cluster_domain',
|
|
6024
5877
|
clusterId: 'cluster_id',
|
|
6025
5878
|
clusterSpec: 'cluster_spec',
|
|
6026
5879
|
clusterType: 'cluster_type',
|
|
5880
|
+
containerCidr: 'container_cidr',
|
|
6027
5881
|
created: 'created',
|
|
6028
5882
|
currentVersion: 'current_version',
|
|
6029
5883
|
deletionProtection: 'deletion_protection',
|
|
6030
5884
|
dockerVersion: 'docker_version',
|
|
6031
5885
|
externalLoadbalancerId: 'external_loadbalancer_id',
|
|
6032
5886
|
initVersion: 'init_version',
|
|
5887
|
+
ipStack: 'ip_stack',
|
|
6033
5888
|
maintenanceWindow: 'maintenance_window',
|
|
6034
5889
|
masterUrl: 'master_url',
|
|
6035
5890
|
metaData: 'meta_data',
|
|
6036
5891
|
name: 'name',
|
|
6037
5892
|
networkMode: 'network_mode',
|
|
6038
5893
|
nextVersion: 'next_version',
|
|
5894
|
+
nodeCidrMask: 'node_cidr_mask',
|
|
6039
5895
|
operationPolicy: 'operation_policy',
|
|
6040
5896
|
parameters: 'parameters',
|
|
6041
5897
|
privateZone: 'private_zone',
|
|
6042
5898
|
profile: 'profile',
|
|
5899
|
+
proxyMode: 'proxy_mode',
|
|
6043
5900
|
regionId: 'region_id',
|
|
6044
5901
|
resourceGroupId: 'resource_group_id',
|
|
6045
5902
|
securityGroupId: 'security_group_id',
|
|
5903
|
+
serviceCidr: 'service_cidr',
|
|
6046
5904
|
size: 'size',
|
|
6047
5905
|
state: 'state',
|
|
6048
5906
|
subnetCidr: 'subnet_cidr',
|
|
6049
5907
|
tags: 'tags',
|
|
5908
|
+
timezone: 'timezone',
|
|
6050
5909
|
updated: 'updated',
|
|
6051
5910
|
vpcId: 'vpc_id',
|
|
6052
5911
|
vswitchId: 'vswitch_id',
|
|
5912
|
+
vswitchIds: 'vswitch_ids',
|
|
6053
5913
|
workerRamRoleName: 'worker_ram_role_name',
|
|
6054
5914
|
zoneId: 'zone_id',
|
|
6055
5915
|
};
|
|
@@ -6057,35 +5917,43 @@ export class DescribeClusterDetailResponseBody extends $tea.Model {
|
|
|
6057
5917
|
|
|
6058
5918
|
static types(): { [key: string]: any } {
|
|
6059
5919
|
return {
|
|
5920
|
+
clusterDomain: 'string',
|
|
6060
5921
|
clusterId: 'string',
|
|
6061
5922
|
clusterSpec: 'string',
|
|
6062
5923
|
clusterType: 'string',
|
|
5924
|
+
containerCidr: 'string',
|
|
6063
5925
|
created: 'string',
|
|
6064
5926
|
currentVersion: 'string',
|
|
6065
5927
|
deletionProtection: 'boolean',
|
|
6066
5928
|
dockerVersion: 'string',
|
|
6067
5929
|
externalLoadbalancerId: 'string',
|
|
6068
5930
|
initVersion: 'string',
|
|
5931
|
+
ipStack: 'string',
|
|
6069
5932
|
maintenanceWindow: MaintenanceWindow,
|
|
6070
5933
|
masterUrl: 'string',
|
|
6071
5934
|
metaData: 'string',
|
|
6072
5935
|
name: 'string',
|
|
6073
5936
|
networkMode: 'string',
|
|
6074
5937
|
nextVersion: 'string',
|
|
5938
|
+
nodeCidrMask: 'string',
|
|
6075
5939
|
operationPolicy: DescribeClusterDetailResponseBodyOperationPolicy,
|
|
6076
5940
|
parameters: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6077
5941
|
privateZone: 'boolean',
|
|
6078
5942
|
profile: 'string',
|
|
5943
|
+
proxyMode: 'string',
|
|
6079
5944
|
regionId: 'string',
|
|
6080
5945
|
resourceGroupId: 'string',
|
|
6081
5946
|
securityGroupId: 'string',
|
|
5947
|
+
serviceCidr: 'string',
|
|
6082
5948
|
size: 'number',
|
|
6083
5949
|
state: 'string',
|
|
6084
5950
|
subnetCidr: 'string',
|
|
6085
5951
|
tags: { 'type': 'array', 'itemType': Tag },
|
|
5952
|
+
timezone: 'string',
|
|
6086
5953
|
updated: 'string',
|
|
6087
5954
|
vpcId: 'string',
|
|
6088
5955
|
vswitchId: 'string',
|
|
5956
|
+
vswitchIds: { 'type': 'array', 'itemType': 'string' },
|
|
6089
5957
|
workerRamRoleName: 'string',
|
|
6090
5958
|
zoneId: 'string',
|
|
6091
5959
|
};
|
|
@@ -9098,54 +8966,6 @@ export class DescribeUserQuotaResponse extends $tea.Model {
|
|
|
9098
8966
|
}
|
|
9099
8967
|
}
|
|
9100
8968
|
|
|
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
8969
|
export class EdgeClusterAddEdgeMachineRequest extends $tea.Model {
|
|
9150
8970
|
/**
|
|
9151
8971
|
* @remarks
|
|
@@ -11103,6 +10923,7 @@ export class ModifyClusterRequest extends $tea.Model {
|
|
|
11103
10923
|
* The storage configurations of system events.
|
|
11104
10924
|
*/
|
|
11105
10925
|
systemEventsLogging?: ModifyClusterRequestSystemEventsLogging;
|
|
10926
|
+
vswitchIds?: string[];
|
|
11106
10927
|
static names(): { [key: string]: string } {
|
|
11107
10928
|
return {
|
|
11108
10929
|
accessControlList: 'access_control_list',
|
|
@@ -11119,6 +10940,7 @@ export class ModifyClusterRequest extends $tea.Model {
|
|
|
11119
10940
|
operationPolicy: 'operation_policy',
|
|
11120
10941
|
resourceGroupId: 'resource_group_id',
|
|
11121
10942
|
systemEventsLogging: 'system_events_logging',
|
|
10943
|
+
vswitchIds: 'vswitch_ids',
|
|
11122
10944
|
};
|
|
11123
10945
|
}
|
|
11124
10946
|
|
|
@@ -11138,6 +10960,7 @@ export class ModifyClusterRequest extends $tea.Model {
|
|
|
11138
10960
|
operationPolicy: ModifyClusterRequestOperationPolicy,
|
|
11139
10961
|
resourceGroupId: 'string',
|
|
11140
10962
|
systemEventsLogging: ModifyClusterRequestSystemEventsLogging,
|
|
10963
|
+
vswitchIds: { 'type': 'array', 'itemType': 'string' },
|
|
11141
10964
|
};
|
|
11142
10965
|
}
|
|
11143
10966
|
|
|
@@ -12126,28 +11949,6 @@ export class RemoveNodePoolNodesResponse extends $tea.Model {
|
|
|
12126
11949
|
}
|
|
12127
11950
|
}
|
|
12128
11951
|
|
|
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
11952
|
export class RepairClusterNodePoolRequest extends $tea.Model {
|
|
12152
11953
|
/**
|
|
12153
11954
|
* @remarks
|
|
@@ -13143,269 +12944,6 @@ export class StartAlertResponse extends $tea.Model {
|
|
|
13143
12944
|
}
|
|
13144
12945
|
}
|
|
13145
12946
|
|
|
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
12947
|
export class StopAlertRequest extends $tea.Model {
|
|
13410
12948
|
/**
|
|
13411
12949
|
* @remarks
|
|
@@ -21847,6 +21385,11 @@ export class DescribeClustersV1ResponseBodyClustersOperationPolicy extends $tea.
|
|
|
21847
21385
|
}
|
|
21848
21386
|
|
|
21849
21387
|
export class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
|
|
21388
|
+
/**
|
|
21389
|
+
* @example
|
|
21390
|
+
* cluster.local
|
|
21391
|
+
*/
|
|
21392
|
+
clusterDomain?: string;
|
|
21850
21393
|
/**
|
|
21851
21394
|
* @remarks
|
|
21852
21395
|
* The cluster ID.
|
|
@@ -21876,6 +21419,11 @@ export class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
|
|
|
21876
21419
|
* Kubernetes
|
|
21877
21420
|
*/
|
|
21878
21421
|
clusterType?: string;
|
|
21422
|
+
/**
|
|
21423
|
+
* @example
|
|
21424
|
+
* 172.20.0.0/16
|
|
21425
|
+
*/
|
|
21426
|
+
containerCidr?: string;
|
|
21879
21427
|
/**
|
|
21880
21428
|
* @remarks
|
|
21881
21429
|
* The time when the cluster was created.
|
|
@@ -21931,6 +21479,11 @@ export class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
|
|
|
21931
21479
|
* 1.16.9-aliyun.1
|
|
21932
21480
|
*/
|
|
21933
21481
|
initVersion?: string;
|
|
21482
|
+
/**
|
|
21483
|
+
* @example
|
|
21484
|
+
* ipv4
|
|
21485
|
+
*/
|
|
21486
|
+
ipStack?: string;
|
|
21934
21487
|
/**
|
|
21935
21488
|
* @remarks
|
|
21936
21489
|
* The maintenance window of the cluster. This feature is available only for ACK managed clusters and ACK Serverless clusters.
|
|
@@ -22008,6 +21561,11 @@ export class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
|
|
|
22008
21561
|
* Default
|
|
22009
21562
|
*/
|
|
22010
21563
|
profile?: string;
|
|
21564
|
+
/**
|
|
21565
|
+
* @example
|
|
21566
|
+
* ipvs
|
|
21567
|
+
*/
|
|
21568
|
+
proxyMode?: string;
|
|
22011
21569
|
/**
|
|
22012
21570
|
* @remarks
|
|
22013
21571
|
* The region ID of the cluster.
|
|
@@ -22032,6 +21590,14 @@ export class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
|
|
|
22032
21590
|
* sg-2vcgwsrwgt5mp0yi****
|
|
22033
21591
|
*/
|
|
22034
21592
|
securityGroupId?: string;
|
|
21593
|
+
/**
|
|
21594
|
+
* @remarks
|
|
21595
|
+
* This parameter is required.
|
|
21596
|
+
*
|
|
21597
|
+
* @example
|
|
21598
|
+
* 172.21.0.0/20
|
|
21599
|
+
*/
|
|
21600
|
+
serviceCidr?: string;
|
|
22035
21601
|
/**
|
|
22036
21602
|
* @remarks
|
|
22037
21603
|
* The number of nodes in the cluster, including master nodes and worker nodes.
|
|
@@ -22073,6 +21639,8 @@ export class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
|
|
|
22073
21639
|
*
|
|
22074
21640
|
* @example
|
|
22075
21641
|
* 172.21.0.0/16
|
|
21642
|
+
*
|
|
21643
|
+
* @deprecated
|
|
22076
21644
|
*/
|
|
22077
21645
|
subnetCidr?: string;
|
|
22078
21646
|
/**
|
|
@@ -22080,6 +21648,11 @@ export class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
|
|
|
22080
21648
|
* The resource labels of the cluster.
|
|
22081
21649
|
*/
|
|
22082
21650
|
tags?: Tag[];
|
|
21651
|
+
/**
|
|
21652
|
+
* @example
|
|
21653
|
+
* Asia/Shanghai
|
|
21654
|
+
*/
|
|
21655
|
+
timezone?: string;
|
|
22083
21656
|
/**
|
|
22084
21657
|
* @remarks
|
|
22085
21658
|
* The time when the cluster was updated.
|
|
@@ -22102,8 +21675,11 @@ export class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
|
|
|
22102
21675
|
*
|
|
22103
21676
|
* @example
|
|
22104
21677
|
* vsw-2vc41xuumx5z2rdma****,vsw-2vc41xuumx5z2rdma****
|
|
21678
|
+
*
|
|
21679
|
+
* @deprecated
|
|
22105
21680
|
*/
|
|
22106
21681
|
vswitchId?: string;
|
|
21682
|
+
vswitchIds?: string[];
|
|
22107
21683
|
/**
|
|
22108
21684
|
* @remarks
|
|
22109
21685
|
* 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 +21698,18 @@ export class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
|
|
|
22122
21698
|
zoneId?: string;
|
|
22123
21699
|
static names(): { [key: string]: string } {
|
|
22124
21700
|
return {
|
|
21701
|
+
clusterDomain: 'cluster_domain',
|
|
22125
21702
|
clusterId: 'cluster_id',
|
|
22126
21703
|
clusterSpec: 'cluster_spec',
|
|
22127
21704
|
clusterType: 'cluster_type',
|
|
21705
|
+
containerCidr: 'container_cidr',
|
|
22128
21706
|
created: 'created',
|
|
22129
21707
|
currentVersion: 'current_version',
|
|
22130
21708
|
deletionProtection: 'deletion_protection',
|
|
22131
21709
|
dockerVersion: 'docker_version',
|
|
22132
21710
|
externalLoadbalancerId: 'external_loadbalancer_id',
|
|
22133
21711
|
initVersion: 'init_version',
|
|
21712
|
+
ipStack: 'ip_stack',
|
|
22134
21713
|
maintenanceWindow: 'maintenance_window',
|
|
22135
21714
|
masterUrl: 'master_url',
|
|
22136
21715
|
metaData: 'meta_data',
|
|
@@ -22140,16 +21719,20 @@ export class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
|
|
|
22140
21719
|
operationPolicy: 'operation_policy',
|
|
22141
21720
|
privateZone: 'private_zone',
|
|
22142
21721
|
profile: 'profile',
|
|
21722
|
+
proxyMode: 'proxy_mode',
|
|
22143
21723
|
regionId: 'region_id',
|
|
22144
21724
|
resourceGroupId: 'resource_group_id',
|
|
22145
21725
|
securityGroupId: 'security_group_id',
|
|
21726
|
+
serviceCidr: 'service_cidr',
|
|
22146
21727
|
size: 'size',
|
|
22147
21728
|
state: 'state',
|
|
22148
21729
|
subnetCidr: 'subnet_cidr',
|
|
22149
21730
|
tags: 'tags',
|
|
21731
|
+
timezone: 'timezone',
|
|
22150
21732
|
updated: 'updated',
|
|
22151
21733
|
vpcId: 'vpc_id',
|
|
22152
21734
|
vswitchId: 'vswitch_id',
|
|
21735
|
+
vswitchIds: 'vswitch_ids',
|
|
22153
21736
|
workerRamRoleName: 'worker_ram_role_name',
|
|
22154
21737
|
zoneId: 'zone_id',
|
|
22155
21738
|
};
|
|
@@ -22157,15 +21740,18 @@ export class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
|
|
|
22157
21740
|
|
|
22158
21741
|
static types(): { [key: string]: any } {
|
|
22159
21742
|
return {
|
|
21743
|
+
clusterDomain: 'string',
|
|
22160
21744
|
clusterId: 'string',
|
|
22161
21745
|
clusterSpec: 'string',
|
|
22162
21746
|
clusterType: 'string',
|
|
21747
|
+
containerCidr: 'string',
|
|
22163
21748
|
created: 'string',
|
|
22164
21749
|
currentVersion: 'string',
|
|
22165
21750
|
deletionProtection: 'boolean',
|
|
22166
21751
|
dockerVersion: 'string',
|
|
22167
21752
|
externalLoadbalancerId: 'string',
|
|
22168
21753
|
initVersion: 'string',
|
|
21754
|
+
ipStack: 'string',
|
|
22169
21755
|
maintenanceWindow: MaintenanceWindow,
|
|
22170
21756
|
masterUrl: 'string',
|
|
22171
21757
|
metaData: 'string',
|
|
@@ -22175,16 +21761,20 @@ export class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
|
|
|
22175
21761
|
operationPolicy: DescribeClustersV1ResponseBodyClustersOperationPolicy,
|
|
22176
21762
|
privateZone: 'boolean',
|
|
22177
21763
|
profile: 'string',
|
|
21764
|
+
proxyMode: 'string',
|
|
22178
21765
|
regionId: 'string',
|
|
22179
21766
|
resourceGroupId: 'string',
|
|
22180
21767
|
securityGroupId: 'string',
|
|
21768
|
+
serviceCidr: 'string',
|
|
22181
21769
|
size: 'number',
|
|
22182
21770
|
state: 'string',
|
|
22183
21771
|
subnetCidr: 'string',
|
|
22184
21772
|
tags: { 'type': 'array', 'itemType': Tag },
|
|
21773
|
+
timezone: 'string',
|
|
22185
21774
|
updated: 'string',
|
|
22186
21775
|
vpcId: 'string',
|
|
22187
21776
|
vswitchId: 'string',
|
|
21777
|
+
vswitchIds: { 'type': 'array', 'itemType': 'string' },
|
|
22188
21778
|
workerRamRoleName: 'string',
|
|
22189
21779
|
zoneId: 'string',
|
|
22190
21780
|
};
|
|
@@ -23499,18 +23089,38 @@ export class DescribePolicyInstancesResponseBody extends $tea.Model {
|
|
|
23499
23089
|
* @example
|
|
23500
23090
|
* *
|
|
23501
23091
|
*/
|
|
23502
|
-
policyScope?: string;
|
|
23092
|
+
policyScope?: string;
|
|
23093
|
+
/**
|
|
23094
|
+
* @remarks
|
|
23095
|
+
* The action of the policy. Valid values:
|
|
23096
|
+
*
|
|
23097
|
+
* * `deny`: Deployments that match the policy are denied.
|
|
23098
|
+
* * `warn`: Alerts are generated for deployments that match the policy.
|
|
23099
|
+
*
|
|
23100
|
+
* @example
|
|
23101
|
+
* deny
|
|
23102
|
+
*/
|
|
23103
|
+
policyAction?: string;
|
|
23104
|
+
/**
|
|
23105
|
+
* @deprecated
|
|
23106
|
+
*/
|
|
23107
|
+
created?: string;
|
|
23108
|
+
/**
|
|
23109
|
+
* @deprecated
|
|
23110
|
+
*/
|
|
23111
|
+
updated?: string;
|
|
23112
|
+
/**
|
|
23113
|
+
* @deprecated
|
|
23114
|
+
*/
|
|
23115
|
+
resourceId?: string;
|
|
23116
|
+
/**
|
|
23117
|
+
* @deprecated
|
|
23118
|
+
*/
|
|
23119
|
+
totalViolations?: number;
|
|
23503
23120
|
/**
|
|
23504
|
-
* @
|
|
23505
|
-
* The action of the policy. Valid values:
|
|
23506
|
-
*
|
|
23507
|
-
* * `deny`: Deployments that match the policy are denied.
|
|
23508
|
-
* * `warn`: Alerts are generated for deployments that match the policy.
|
|
23509
|
-
*
|
|
23510
|
-
* @example
|
|
23511
|
-
* deny
|
|
23121
|
+
* @deprecated
|
|
23512
23122
|
*/
|
|
23513
|
-
|
|
23123
|
+
isDeleted?: number;
|
|
23514
23124
|
static names(): { [key: string]: string } {
|
|
23515
23125
|
return {
|
|
23516
23126
|
aliUid: 'ali_uid',
|
|
@@ -23523,6 +23133,11 @@ export class DescribePolicyInstancesResponseBody extends $tea.Model {
|
|
|
23523
23133
|
policySeverity: 'policy_severity',
|
|
23524
23134
|
policyScope: 'policy_scope',
|
|
23525
23135
|
policyAction: 'policy_action',
|
|
23136
|
+
created: 'Created',
|
|
23137
|
+
updated: 'Updated',
|
|
23138
|
+
resourceId: 'resource_id',
|
|
23139
|
+
totalViolations: 'total_violations',
|
|
23140
|
+
isDeleted: 'is_deleted',
|
|
23526
23141
|
};
|
|
23527
23142
|
}
|
|
23528
23143
|
|
|
@@ -23538,6 +23153,11 @@ export class DescribePolicyInstancesResponseBody extends $tea.Model {
|
|
|
23538
23153
|
policySeverity: 'string',
|
|
23539
23154
|
policyScope: 'string',
|
|
23540
23155
|
policyAction: 'string',
|
|
23156
|
+
created: 'string',
|
|
23157
|
+
updated: 'string',
|
|
23158
|
+
resourceId: 'string',
|
|
23159
|
+
totalViolations: 'number',
|
|
23160
|
+
isDeleted: 'number',
|
|
23541
23161
|
};
|
|
23542
23162
|
}
|
|
23543
23163
|
|
|
@@ -24466,52 +24086,6 @@ export class DescribeUserQuotaResponseBodyEdgeImprovedNodepoolQuota extends $tea
|
|
|
24466
24086
|
}
|
|
24467
24087
|
}
|
|
24468
24088
|
|
|
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
24089
|
export class FixNodePoolVulsRequestRolloutPolicy extends $tea.Model {
|
|
24516
24090
|
/**
|
|
24517
24091
|
* @remarks
|
|
@@ -27756,7 +27330,7 @@ export default class Client extends OpenApi {
|
|
|
27756
27330
|
}
|
|
27757
27331
|
|
|
27758
27332
|
/**
|
|
27759
|
-
* You can call the CancelOperationPlan operation to cancel a pending auto O
|
|
27333
|
+
* You can call the CancelOperationPlan operation to cancel a pending auto O\\\\\\\\\\\\&M plan.
|
|
27760
27334
|
*
|
|
27761
27335
|
* @param headers - map
|
|
27762
27336
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -27781,7 +27355,7 @@ export default class Client extends OpenApi {
|
|
|
27781
27355
|
}
|
|
27782
27356
|
|
|
27783
27357
|
/**
|
|
27784
|
-
* You can call the CancelOperationPlan operation to cancel a pending auto O
|
|
27358
|
+
* You can call the CancelOperationPlan operation to cancel a pending auto O\\\\\\\\\\\\&M plan.
|
|
27785
27359
|
* @returns CancelOperationPlanResponse
|
|
27786
27360
|
*/
|
|
27787
27361
|
async cancelOperationPlan(planId: string): Promise<CancelOperationPlanResponse> {
|
|
@@ -27825,57 +27399,6 @@ export default class Client extends OpenApi {
|
|
|
27825
27399
|
return await this.cancelTaskWithOptions(taskId, headers, runtime);
|
|
27826
27400
|
}
|
|
27827
27401
|
|
|
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
27402
|
/**
|
|
27880
27403
|
* 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
27404
|
*
|
|
@@ -29154,7 +28677,7 @@ export default class Client extends OpenApi {
|
|
|
29154
28677
|
}
|
|
29155
28678
|
|
|
29156
28679
|
/**
|
|
29157
|
-
*
|
|
28680
|
+
* null
|
|
29158
28681
|
*
|
|
29159
28682
|
* @param request - DeleteClusterNodepoolRequest
|
|
29160
28683
|
* @param headers - map
|
|
@@ -29187,7 +28710,7 @@ export default class Client extends OpenApi {
|
|
|
29187
28710
|
}
|
|
29188
28711
|
|
|
29189
28712
|
/**
|
|
29190
|
-
*
|
|
28713
|
+
* null
|
|
29191
28714
|
*
|
|
29192
28715
|
* @param request - DeleteClusterNodepoolRequest
|
|
29193
28716
|
* @returns DeleteClusterNodepoolResponse
|
|
@@ -29511,47 +29034,6 @@ export default class Client extends OpenApi {
|
|
|
29511
29034
|
return await this.deployPolicyInstanceWithOptions(clusterId, policyName, request, headers, runtime);
|
|
29512
29035
|
}
|
|
29513
29036
|
|
|
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
29037
|
/**
|
|
29556
29038
|
* 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
29039
|
*
|
|
@@ -31609,47 +31091,6 @@ export default class Client extends OpenApi {
|
|
|
31609
31091
|
return await this.describeUserQuotaWithOptions(headers, runtime);
|
|
31610
31092
|
}
|
|
31611
31093
|
|
|
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
31094
|
/**
|
|
31654
31095
|
* You can call the EdgeClusterAddEdgeMachine operation to add a cloud-native box to a Container Service for Kubernetes (ACK) Edge cluster.
|
|
31655
31096
|
*
|
|
@@ -32631,6 +32072,10 @@ export default class Client extends OpenApi {
|
|
|
32631
32072
|
body["system_events_logging"] = request.systemEventsLogging;
|
|
32632
32073
|
}
|
|
32633
32074
|
|
|
32075
|
+
if (!Util.isUnset(request.vswitchIds)) {
|
|
32076
|
+
body["vswitch_ids"] = request.vswitchIds;
|
|
32077
|
+
}
|
|
32078
|
+
|
|
32634
32079
|
let req = new $OpenApi.OpenApiRequest({
|
|
32635
32080
|
headers: headers,
|
|
32636
32081
|
body: OpenApiUtil.parseToMap(body),
|
|
@@ -33316,47 +32761,6 @@ export default class Client extends OpenApi {
|
|
|
33316
32761
|
return await this.removeNodePoolNodesWithOptions(ClusterId, NodepoolId, request, headers, runtime);
|
|
33317
32762
|
}
|
|
33318
32763
|
|
|
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
32764
|
/**
|
|
33361
32765
|
* Fixes issues on abnormal nodes in a node pool to ensure that the nodes can run as normal.
|
|
33362
32766
|
*
|
|
@@ -33996,129 +33400,6 @@ export default class Client extends OpenApi {
|
|
|
33996
33400
|
return await this.startAlertWithOptions(ClusterId, request, headers, runtime);
|
|
33997
33401
|
}
|
|
33998
33402
|
|
|
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
33403
|
/**
|
|
34123
33404
|
* 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
33405
|
*
|