@alicloud/cs20151215 4.7.7 → 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 CHANGED
@@ -256,7 +256,7 @@ export declare class MaintenanceWindow extends $tea.Model {
256
256
  enable?: boolean;
257
257
  /**
258
258
  * @example
259
- * 03:00:00Z
259
+ * 2020-10-15T12:31:00.000+08:00
260
260
  */
261
261
  maintenanceTime?: string;
262
262
  /**
@@ -854,42 +854,6 @@ export declare class CancelTaskResponse extends $tea.Model {
854
854
  [key: string]: any;
855
855
  });
856
856
  }
857
- export declare class CancelWorkflowRequest extends $tea.Model {
858
- /**
859
- * @remarks
860
- * The operation that you want to perform. Set the value to cancel.
861
- *
862
- * This parameter is required.
863
- *
864
- * @example
865
- * cancel
866
- */
867
- action?: string;
868
- static names(): {
869
- [key: string]: string;
870
- };
871
- static types(): {
872
- [key: string]: any;
873
- };
874
- constructor(map?: {
875
- [key: string]: any;
876
- });
877
- }
878
- export declare class CancelWorkflowResponse extends $tea.Model {
879
- headers?: {
880
- [key: string]: string;
881
- };
882
- statusCode?: number;
883
- static names(): {
884
- [key: string]: string;
885
- };
886
- static types(): {
887
- [key: string]: any;
888
- };
889
- constructor(map?: {
890
- [key: string]: any;
891
- });
892
- }
893
857
  export declare class CheckControlPlaneLogEnableResponseBody extends $tea.Model {
894
858
  /**
895
859
  * @remarks
@@ -1713,6 +1677,7 @@ export declare class CreateClusterRequest extends $tea.Model {
1713
1677
  * Hello@1234
1714
1678
  */
1715
1679
  loginPassword?: string;
1680
+ maintenanceWindow?: MaintenanceWindow;
1716
1681
  /**
1717
1682
  * @remarks
1718
1683
  * Specifies whether to enable auto-renewal for master nodes. This parameter takes effect only when `master_instance_charge_type` is set to `PrePaid`. Valid values:
@@ -1910,6 +1875,7 @@ export declare class CreateClusterRequest extends $tea.Model {
1910
1875
  * @deprecated
1911
1876
  */
1912
1877
  numOfNodes?: number;
1878
+ operationPolicy?: CreateClusterRequestOperationPolicy;
1913
1879
  /**
1914
1880
  * @remarks
1915
1881
  * The type of OS. Valid values:
@@ -3716,121 +3682,6 @@ export declare class DeployPolicyInstanceResponse extends $tea.Model {
3716
3682
  [key: string]: any;
3717
3683
  });
3718
3684
  }
3719
- export declare class DescirbeWorkflowResponseBody extends $tea.Model {
3720
- /**
3721
- * @remarks
3722
- * The time when the workflow was created.
3723
- *
3724
- * @example
3725
- * 2020-01-15 16:30:25 +0800 CST
3726
- */
3727
- createTime?: string;
3728
- /**
3729
- * @remarks
3730
- * The duration of the workflow.
3731
- *
3732
- * @example
3733
- * 1h15m33.529968361s
3734
- */
3735
- duration?: string;
3736
- /**
3737
- * @remarks
3738
- * The end time of the task.
3739
- *
3740
- * @example
3741
- * 0001-01-01 00:00:00 +0000 UTC
3742
- */
3743
- finishTime?: string;
3744
- /**
3745
- * @remarks
3746
- * The size of the input data.
3747
- *
3748
- * @example
3749
- * 0
3750
- */
3751
- inputDataSize?: string;
3752
- /**
3753
- * @remarks
3754
- * The name of the workflow.
3755
- *
3756
- * @example
3757
- * wgs-gpu-97xfn
3758
- */
3759
- jobName?: string;
3760
- /**
3761
- * @remarks
3762
- * The namespace to which the workflow belongs.
3763
- *
3764
- * @example
3765
- * 1171330362041663
3766
- */
3767
- jobNamespace?: string;
3768
- /**
3769
- * @remarks
3770
- * The size of the output data.
3771
- *
3772
- * @example
3773
- * 0
3774
- */
3775
- outputDataSize?: string;
3776
- /**
3777
- * @remarks
3778
- * The current state of the workflow.
3779
- *
3780
- * @example
3781
- * Running
3782
- */
3783
- status?: string;
3784
- /**
3785
- * @remarks
3786
- * The number of base pairs.
3787
- *
3788
- * @example
3789
- * 0
3790
- */
3791
- totalBases?: string;
3792
- /**
3793
- * @remarks
3794
- * The number of reads.
3795
- *
3796
- * @example
3797
- * 0
3798
- */
3799
- totalReads?: string;
3800
- /**
3801
- * @remarks
3802
- * The user input parameters.
3803
- *
3804
- * @example
3805
- * {\\"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\\"}
3806
- */
3807
- userInputData?: string;
3808
- static names(): {
3809
- [key: string]: string;
3810
- };
3811
- static types(): {
3812
- [key: string]: any;
3813
- };
3814
- constructor(map?: {
3815
- [key: string]: any;
3816
- });
3817
- }
3818
- export declare class DescirbeWorkflowResponse extends $tea.Model {
3819
- headers?: {
3820
- [key: string]: string;
3821
- };
3822
- statusCode?: number;
3823
- body?: DescirbeWorkflowResponseBody;
3824
- static names(): {
3825
- [key: string]: string;
3826
- };
3827
- static types(): {
3828
- [key: string]: any;
3829
- };
3830
- constructor(map?: {
3831
- [key: string]: any;
3832
- });
3833
- }
3834
3685
  export declare class DescribeAddonRequest extends $tea.Model {
3835
3686
  /**
3836
3687
  * @remarks
@@ -4413,6 +4264,11 @@ export declare class DescribeClusterAttachScriptsResponse extends $tea.Model {
4413
4264
  });
4414
4265
  }
4415
4266
  export declare class DescribeClusterDetailResponseBody extends $tea.Model {
4267
+ /**
4268
+ * @example
4269
+ * cluster.local
4270
+ */
4271
+ clusterDomain?: string;
4416
4272
  /**
4417
4273
  * @remarks
4418
4274
  * The cluster ID.
@@ -4442,6 +4298,11 @@ export declare class DescribeClusterDetailResponseBody extends $tea.Model {
4442
4298
  * Kubernetes
4443
4299
  */
4444
4300
  clusterType?: string;
4301
+ /**
4302
+ * @example
4303
+ * 172.20.0.0/16
4304
+ */
4305
+ containerCidr?: string;
4445
4306
  /**
4446
4307
  * @remarks
4447
4308
  * The time when the cluster was created.
@@ -4490,6 +4351,11 @@ export declare class DescribeClusterDetailResponseBody extends $tea.Model {
4490
4351
  * 1.16.6-aliyun.1
4491
4352
  */
4492
4353
  initVersion?: string;
4354
+ /**
4355
+ * @example
4356
+ * ipv4
4357
+ */
4358
+ ipStack?: string;
4493
4359
  /**
4494
4360
  * @remarks
4495
4361
  * The maintenance window of the cluster. This feature is available only in ACK Pro clusters.
@@ -4531,6 +4397,12 @@ export declare class DescribeClusterDetailResponseBody extends $tea.Model {
4531
4397
  * 1.18.8-aliyun.1
4532
4398
  */
4533
4399
  nextVersion?: string;
4400
+ /**
4401
+ * @example
4402
+ * 26
4403
+ */
4404
+ nodeCidrMask?: string;
4405
+ operationPolicy?: DescribeClusterDetailResponseBodyOperationPolicy;
4534
4406
  /**
4535
4407
  * @remarks
4536
4408
  * The ROS parameters of the cluster.
@@ -4556,6 +4428,11 @@ export declare class DescribeClusterDetailResponseBody extends $tea.Model {
4556
4428
  * Default
4557
4429
  */
4558
4430
  profile?: string;
4431
+ /**
4432
+ * @example
4433
+ * ipvs
4434
+ */
4435
+ proxyMode?: string;
4559
4436
  /**
4560
4437
  * @remarks
4561
4438
  * The region ID of the cluster.
@@ -4580,6 +4457,14 @@ export declare class DescribeClusterDetailResponseBody extends $tea.Model {
4580
4457
  * sg-25yq****
4581
4458
  */
4582
4459
  securityGroupId?: string;
4460
+ /**
4461
+ * @remarks
4462
+ * This parameter is required.
4463
+ *
4464
+ * @example
4465
+ * 172.21.0.0/20
4466
+ */
4467
+ serviceCidr?: string;
4583
4468
  /**
4584
4469
  * @remarks
4585
4470
  * The number of nodes in the cluster. Master nodes and worker nodes are included.
@@ -4623,6 +4508,8 @@ export declare class DescribeClusterDetailResponseBody extends $tea.Model {
4623
4508
  *
4624
4509
  * @example
4625
4510
  * 172.20.0.0/16
4511
+ *
4512
+ * @deprecated
4626
4513
  */
4627
4514
  subnetCidr?: string;
4628
4515
  /**
@@ -4630,6 +4517,11 @@ export declare class DescribeClusterDetailResponseBody extends $tea.Model {
4630
4517
  * The resource tags of the cluster.
4631
4518
  */
4632
4519
  tags?: Tag[];
4520
+ /**
4521
+ * @example
4522
+ * Asia/Shanghai
4523
+ */
4524
+ timezone?: string;
4633
4525
  /**
4634
4526
  * @remarks
4635
4527
  * The time when the cluster was updated.
@@ -4652,8 +4544,11 @@ export declare class DescribeClusterDetailResponseBody extends $tea.Model {
4652
4544
  *
4653
4545
  * @example
4654
4546
  * vsw-2zete8s4qocqg0mf6****,vsw-2zete8s4qocqg0mf6****
4547
+ *
4548
+ * @deprecated
4655
4549
  */
4656
4550
  vswitchId?: string;
4551
+ vswitchIds?: string[];
4657
4552
  /**
4658
4553
  * @remarks
4659
4554
  * 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.
@@ -6871,38 +6766,6 @@ export declare class DescribeUserQuotaResponse extends $tea.Model {
6871
6766
  [key: string]: any;
6872
6767
  });
6873
6768
  }
6874
- export declare class DescribeWorkflowsResponseBody extends $tea.Model {
6875
- /**
6876
- * @remarks
6877
- * The list of jobs.
6878
- */
6879
- jobs?: DescribeWorkflowsResponseBodyJobs[];
6880
- static names(): {
6881
- [key: string]: string;
6882
- };
6883
- static types(): {
6884
- [key: string]: any;
6885
- };
6886
- constructor(map?: {
6887
- [key: string]: any;
6888
- });
6889
- }
6890
- export declare class DescribeWorkflowsResponse extends $tea.Model {
6891
- headers?: {
6892
- [key: string]: string;
6893
- };
6894
- statusCode?: number;
6895
- body?: DescribeWorkflowsResponseBody;
6896
- static names(): {
6897
- [key: string]: string;
6898
- };
6899
- static types(): {
6900
- [key: string]: any;
6901
- };
6902
- constructor(map?: {
6903
- [key: string]: any;
6904
- });
6905
- }
6906
6769
  export declare class EdgeClusterAddEdgeMachineRequest extends $tea.Model {
6907
6770
  /**
6908
6771
  * @remarks
@@ -8376,6 +8239,7 @@ export declare class ModifyClusterRequest extends $tea.Model {
8376
8239
  * The storage configurations of system events.
8377
8240
  */
8378
8241
  systemEventsLogging?: ModifyClusterRequestSystemEventsLogging;
8242
+ vswitchIds?: string[];
8379
8243
  static names(): {
8380
8244
  [key: string]: string;
8381
8245
  };
@@ -9093,21 +8957,6 @@ export declare class RemoveNodePoolNodesResponse extends $tea.Model {
9093
8957
  [key: string]: any;
9094
8958
  });
9095
8959
  }
9096
- export declare class RemoveWorkflowResponse extends $tea.Model {
9097
- headers?: {
9098
- [key: string]: string;
9099
- };
9100
- statusCode?: number;
9101
- static names(): {
9102
- [key: string]: string;
9103
- };
9104
- static types(): {
9105
- [key: string]: any;
9106
- };
9107
- constructor(map?: {
9108
- [key: string]: any;
9109
- });
9110
- }
9111
8960
  export declare class RepairClusterNodePoolRequest extends $tea.Model {
9112
8961
  /**
9113
8962
  * @remarks
@@ -9691,288 +9540,76 @@ export declare class ScaleOutClusterResponseBody extends $tea.Model {
9691
9540
  [key: string]: any;
9692
9541
  });
9693
9542
  }
9694
- export declare class ScaleOutClusterResponse extends $tea.Model {
9695
- headers?: {
9696
- [key: string]: string;
9697
- };
9698
- statusCode?: number;
9699
- body?: ScaleOutClusterResponseBody;
9700
- static names(): {
9701
- [key: string]: string;
9702
- };
9703
- static types(): {
9704
- [key: string]: any;
9705
- };
9706
- constructor(map?: {
9707
- [key: string]: any;
9708
- });
9709
- }
9710
- export declare class ScanClusterVulsResponseBody extends $tea.Model {
9711
- /**
9712
- * @remarks
9713
- * Request ID.
9714
- *
9715
- * @example
9716
- * 687C5BAA-D103-4993-884B-C35E4314A1E1
9717
- */
9718
- requestId?: string;
9719
- /**
9720
- * @remarks
9721
- * Task ID.
9722
- *
9723
- * @example
9724
- * T-xascadasd*****
9725
- */
9726
- taskId?: string;
9727
- static names(): {
9728
- [key: string]: string;
9729
- };
9730
- static types(): {
9731
- [key: string]: any;
9732
- };
9733
- constructor(map?: {
9734
- [key: string]: any;
9735
- });
9736
- }
9737
- export declare class ScanClusterVulsResponse extends $tea.Model {
9738
- headers?: {
9739
- [key: string]: string;
9740
- };
9741
- statusCode?: number;
9742
- body?: ScanClusterVulsResponseBody;
9743
- static names(): {
9744
- [key: string]: string;
9745
- };
9746
- static types(): {
9747
- [key: string]: any;
9748
- };
9749
- constructor(map?: {
9750
- [key: string]: any;
9751
- });
9752
- }
9753
- export declare class StartAlertRequest extends $tea.Model {
9754
- /**
9755
- * @remarks
9756
- * The name of the alert rule set to be enabled.
9757
- */
9758
- alertRuleGroupName?: string;
9759
- /**
9760
- * @remarks
9761
- * The name of the alert rule to be enabled. If you do not specify an alert rule name, the alert rule set is enabled.
9762
- */
9763
- alertRuleName?: string;
9764
- static names(): {
9765
- [key: string]: string;
9766
- };
9767
- static types(): {
9768
- [key: string]: any;
9769
- };
9770
- constructor(map?: {
9771
- [key: string]: any;
9772
- });
9773
- }
9774
- export declare class StartAlertResponseBody extends $tea.Model {
9775
- /**
9776
- * @remarks
9777
- * The message returned.
9778
- *
9779
- * @example
9780
- * success
9781
- */
9782
- msg?: string;
9783
- /**
9784
- * @remarks
9785
- * The status.
9786
- *
9787
- * @example
9788
- * true
9789
- */
9790
- status?: boolean;
9791
- static names(): {
9792
- [key: string]: string;
9793
- };
9794
- static types(): {
9795
- [key: string]: any;
9796
- };
9797
- constructor(map?: {
9798
- [key: string]: any;
9799
- });
9800
- }
9801
- export declare class StartAlertResponse extends $tea.Model {
9802
- headers?: {
9803
- [key: string]: string;
9804
- };
9805
- statusCode?: number;
9806
- body?: StartAlertResponseBody;
9807
- static names(): {
9808
- [key: string]: string;
9809
- };
9810
- static types(): {
9811
- [key: string]: any;
9812
- };
9813
- constructor(map?: {
9814
- [key: string]: any;
9815
- });
9816
- }
9817
- export declare class StartWorkflowRequest extends $tea.Model {
9818
- /**
9819
- * @remarks
9820
- * The name of the output BAM file.
9821
- *
9822
- * @example
9823
- * abc.bam
9824
- */
9825
- mappingBamOutFilename?: string;
9826
- /**
9827
- * @remarks
9828
- * The output path of the Binary Alignment Map (BAM) file.
9829
- *
9830
- * @example
9831
- * output/bamDirName
9832
- */
9833
- mappingBamOutPath?: string;
9834
- /**
9835
- * @remarks
9836
- * The name of the OSS bucket that stores the data of the mapping workflow.
9837
- *
9838
- * @example
9839
- * gene-shenzhen
9840
- */
9841
- mappingBucketName?: string;
9842
- /**
9843
- * @remarks
9844
- * The name of the first FASTQ file of the mapping workflow.
9845
- *
9846
- * @example
9847
- * MGISEQ2000_PCR-free_NA12878_1_V100003043_L01_1.fq.gz
9848
- */
9849
- mappingFastqFirstFilename?: string;
9850
- /**
9851
- * @remarks
9852
- * The path of the FASTQ files of the mapping workflow.
9853
- *
9854
- * @example
9855
- * fastq/MGISEQ2000
9856
- */
9857
- mappingFastqPath?: string;
9858
- /**
9859
- * @remarks
9860
- * The name of the second FASTQ file of the mapping workflow.
9861
- *
9862
- * @example
9863
- * MGISEQ2000_PCR-free_NA12878_1_V100003043_L01_2.fq.gz
9864
- */
9865
- mappingFastqSecondFilename?: string;
9866
- /**
9867
- * @remarks
9868
- * Specifies whether to mark duplicate values.
9869
- *
9870
- * @example
9871
- * true
9872
- */
9873
- mappingIsMarkDup?: string;
9874
- /**
9875
- * @remarks
9876
- * The region where the Object Storage Service (OSS) bucket that stores the data of the mapping workflow is deployed.
9877
- *
9878
- * @example
9879
- * cn-hangzhou
9880
- */
9881
- mappingOssRegion?: string;
9882
- /**
9883
- * @remarks
9884
- * The path of the reference files of the mapping workflow.
9885
- *
9886
- * @example
9887
- * reference/hg19
9888
- */
9889
- mappingReferencePath?: string;
9890
- /**
9891
- * @remarks
9892
- * The type of service-level agreement (SLA). Valid values:
9893
- *
9894
- * * 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.
9895
- * * 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.
9896
- * * 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.
9897
- *
9898
- * @example
9899
- * s
9900
- */
9901
- service?: string;
9902
- /**
9903
- * @remarks
9904
- * The name of the OSS bucket that stores the data of the WGS workflow.
9905
- *
9906
- * @example
9907
- * gene-shenzhen
9908
- */
9909
- wgsBucketName?: string;
9910
- /**
9911
- * @remarks
9912
- * The name of the first FASTQ file of the WGS workflow.
9913
- *
9914
- * @example
9915
- * MGISEQ2000_PCR-free_NA12878_1_V100003043_L01_1.fq.gz
9916
- */
9917
- wgsFastqFirstFilename?: string;
9918
- /**
9919
- * @remarks
9920
- * The path of the FASTQ files of the WGS workflow.
9921
- *
9922
- * @example
9923
- * fastq/MGISEQ2000
9924
- */
9925
- wgsFastqPath?: string;
9926
- /**
9927
- * @remarks
9928
- * The name of the second FASTQ file of the WGS workflow.
9929
- *
9930
- * @example
9931
- * MGISEQ2000_PCR-free_NA12878_1_V100003043_L01_2.fq.gz
9932
- */
9933
- wgsFastqSecondFilename?: string;
9934
- /**
9935
- * @remarks
9936
- * The region where the OSS bucket that stores the data of the whole genome sequencing (WGS) workflow is deployed.
9937
- *
9938
- * @example
9939
- * cn-shenzhen
9940
- */
9941
- wgsOssRegion?: string;
9543
+ export declare class ScaleOutClusterResponse extends $tea.Model {
9544
+ headers?: {
9545
+ [key: string]: string;
9546
+ };
9547
+ statusCode?: number;
9548
+ body?: ScaleOutClusterResponseBody;
9549
+ static names(): {
9550
+ [key: string]: string;
9551
+ };
9552
+ static types(): {
9553
+ [key: string]: any;
9554
+ };
9555
+ constructor(map?: {
9556
+ [key: string]: any;
9557
+ });
9558
+ }
9559
+ export declare class ScanClusterVulsResponseBody extends $tea.Model {
9942
9560
  /**
9943
9561
  * @remarks
9944
- * The path of the reference files of the WGS workflow.
9562
+ * Request ID.
9945
9563
  *
9946
9564
  * @example
9947
- * reference/hg19
9565
+ * 687C5BAA-D103-4993-884B-C35E4314A1E1
9948
9566
  */
9949
- wgsReferencePath?: string;
9567
+ requestId?: string;
9950
9568
  /**
9951
9569
  * @remarks
9952
- * The name of the output VCF file.
9570
+ * Task ID.
9953
9571
  *
9954
9572
  * @example
9955
- * abc.vcf
9573
+ * T-xascadasd*****
9956
9574
  */
9957
- wgsVcfOutFilename?: string;
9575
+ taskId?: string;
9576
+ static names(): {
9577
+ [key: string]: string;
9578
+ };
9579
+ static types(): {
9580
+ [key: string]: any;
9581
+ };
9582
+ constructor(map?: {
9583
+ [key: string]: any;
9584
+ });
9585
+ }
9586
+ export declare class ScanClusterVulsResponse extends $tea.Model {
9587
+ headers?: {
9588
+ [key: string]: string;
9589
+ };
9590
+ statusCode?: number;
9591
+ body?: ScanClusterVulsResponseBody;
9592
+ static names(): {
9593
+ [key: string]: string;
9594
+ };
9595
+ static types(): {
9596
+ [key: string]: any;
9597
+ };
9598
+ constructor(map?: {
9599
+ [key: string]: any;
9600
+ });
9601
+ }
9602
+ export declare class StartAlertRequest extends $tea.Model {
9958
9603
  /**
9959
9604
  * @remarks
9960
- * The output path of the Variant Call Format (VCF) file.
9961
- *
9962
- * @example
9963
- * output/vcf
9605
+ * The name of the alert rule set to be enabled.
9964
9606
  */
9965
- wgsVcfOutPath?: string;
9607
+ alertRuleGroupName?: string;
9966
9608
  /**
9967
9609
  * @remarks
9968
- * The type of workflow. Valid values: wgs and mapping.
9969
- *
9970
- * This parameter is required.
9971
- *
9972
- * @example
9973
- * mapping
9610
+ * The name of the alert rule to be enabled. If you do not specify an alert rule name, the alert rule set is enabled.
9974
9611
  */
9975
- workflowType?: string;
9612
+ alertRuleName?: string;
9976
9613
  static names(): {
9977
9614
  [key: string]: string;
9978
9615
  };
@@ -9983,15 +9620,23 @@ export declare class StartWorkflowRequest extends $tea.Model {
9983
9620
  [key: string]: any;
9984
9621
  });
9985
9622
  }
9986
- export declare class StartWorkflowResponseBody extends $tea.Model {
9623
+ export declare class StartAlertResponseBody extends $tea.Model {
9624
+ /**
9625
+ * @remarks
9626
+ * The message returned.
9627
+ *
9628
+ * @example
9629
+ * success
9630
+ */
9631
+ msg?: string;
9987
9632
  /**
9988
9633
  * @remarks
9989
- * The name of the workflow.
9634
+ * The status.
9990
9635
  *
9991
9636
  * @example
9992
- * mapping-gpu-66xv7
9637
+ * true
9993
9638
  */
9994
- jobName?: string;
9639
+ status?: boolean;
9995
9640
  static names(): {
9996
9641
  [key: string]: string;
9997
9642
  };
@@ -10002,12 +9647,12 @@ export declare class StartWorkflowResponseBody extends $tea.Model {
10002
9647
  [key: string]: any;
10003
9648
  });
10004
9649
  }
10005
- export declare class StartWorkflowResponse extends $tea.Model {
9650
+ export declare class StartAlertResponse extends $tea.Model {
10006
9651
  headers?: {
10007
9652
  [key: string]: string;
10008
9653
  };
10009
9654
  statusCode?: number;
10010
- body?: StartWorkflowResponseBody;
9655
+ body?: StartAlertResponseBody;
10011
9656
  static names(): {
10012
9657
  [key: string]: string;
10013
9658
  };
@@ -11840,6 +11485,31 @@ export declare class CheckServiceRoleResponseBodyRoles extends $tea.Model {
11840
11485
  [key: string]: any;
11841
11486
  });
11842
11487
  }
11488
+ export declare class CreateClusterRequestOperationPolicyClusterAutoUpgrade extends $tea.Model {
11489
+ channel?: string;
11490
+ enabled?: boolean;
11491
+ static names(): {
11492
+ [key: string]: string;
11493
+ };
11494
+ static types(): {
11495
+ [key: string]: any;
11496
+ };
11497
+ constructor(map?: {
11498
+ [key: string]: any;
11499
+ });
11500
+ }
11501
+ export declare class CreateClusterRequestOperationPolicy extends $tea.Model {
11502
+ clusterAutoUpgrade?: CreateClusterRequestOperationPolicyClusterAutoUpgrade;
11503
+ static names(): {
11504
+ [key: string]: string;
11505
+ };
11506
+ static types(): {
11507
+ [key: string]: any;
11508
+ };
11509
+ constructor(map?: {
11510
+ [key: string]: any;
11511
+ });
11512
+ }
11843
11513
  export declare class CreateClusterRequestWorkerDataDisks extends $tea.Model {
11844
11514
  /**
11845
11515
  * @remarks
@@ -13204,6 +12874,31 @@ export declare class DescribeAddonsResponseBodyComponentGroups extends $tea.Mode
13204
12874
  [key: string]: any;
13205
12875
  });
13206
12876
  }
12877
+ export declare class DescribeClusterDetailResponseBodyOperationPolicyClusterAutoUpgrade extends $tea.Model {
12878
+ channel?: string;
12879
+ enabled?: boolean;
12880
+ static names(): {
12881
+ [key: string]: string;
12882
+ };
12883
+ static types(): {
12884
+ [key: string]: any;
12885
+ };
12886
+ constructor(map?: {
12887
+ [key: string]: any;
12888
+ });
12889
+ }
12890
+ export declare class DescribeClusterDetailResponseBodyOperationPolicy extends $tea.Model {
12891
+ clusterAutoUpgrade?: DescribeClusterDetailResponseBodyOperationPolicyClusterAutoUpgrade;
12892
+ static names(): {
12893
+ [key: string]: string;
12894
+ };
12895
+ static types(): {
12896
+ [key: string]: any;
12897
+ };
12898
+ constructor(map?: {
12899
+ [key: string]: any;
12900
+ });
12901
+ }
13207
12902
  export declare class DescribeClusterEventsResponseBodyEventsData extends $tea.Model {
13208
12903
  /**
13209
12904
  * @remarks
@@ -16382,7 +16077,37 @@ export declare class DescribeClustersResponseBody extends $tea.Model {
16382
16077
  [key: string]: any;
16383
16078
  });
16384
16079
  }
16080
+ export declare class DescribeClustersV1ResponseBodyClustersOperationPolicyClusterAutoUpgrade extends $tea.Model {
16081
+ channel?: string;
16082
+ enabled?: boolean;
16083
+ static names(): {
16084
+ [key: string]: string;
16085
+ };
16086
+ static types(): {
16087
+ [key: string]: any;
16088
+ };
16089
+ constructor(map?: {
16090
+ [key: string]: any;
16091
+ });
16092
+ }
16093
+ export declare class DescribeClustersV1ResponseBodyClustersOperationPolicy extends $tea.Model {
16094
+ clusterAutoUpgrade?: DescribeClustersV1ResponseBodyClustersOperationPolicyClusterAutoUpgrade;
16095
+ static names(): {
16096
+ [key: string]: string;
16097
+ };
16098
+ static types(): {
16099
+ [key: string]: any;
16100
+ };
16101
+ constructor(map?: {
16102
+ [key: string]: any;
16103
+ });
16104
+ }
16385
16105
  export declare class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
16106
+ /**
16107
+ * @example
16108
+ * cluster.local
16109
+ */
16110
+ clusterDomain?: string;
16386
16111
  /**
16387
16112
  * @remarks
16388
16113
  * The cluster ID.
@@ -16412,6 +16137,11 @@ export declare class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
16412
16137
  * Kubernetes
16413
16138
  */
16414
16139
  clusterType?: string;
16140
+ /**
16141
+ * @example
16142
+ * 172.20.0.0/16
16143
+ */
16144
+ containerCidr?: string;
16415
16145
  /**
16416
16146
  * @remarks
16417
16147
  * The time when the cluster was created.
@@ -16467,6 +16197,11 @@ export declare class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
16467
16197
  * 1.16.9-aliyun.1
16468
16198
  */
16469
16199
  initVersion?: string;
16200
+ /**
16201
+ * @example
16202
+ * ipv4
16203
+ */
16204
+ ipStack?: string;
16470
16205
  /**
16471
16206
  * @remarks
16472
16207
  * The maintenance window of the cluster. This feature is available only for ACK managed clusters and ACK Serverless clusters.
@@ -16519,6 +16254,7 @@ export declare class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
16519
16254
  * 1.18.8-aliyun.1
16520
16255
  */
16521
16256
  nextVersion?: string;
16257
+ operationPolicy?: DescribeClustersV1ResponseBodyClustersOperationPolicy;
16522
16258
  /**
16523
16259
  * @remarks
16524
16260
  * Indicates whether Alibaba Cloud DNS PrivateZone is enabled. Valid values:
@@ -16543,6 +16279,11 @@ export declare class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
16543
16279
  * Default
16544
16280
  */
16545
16281
  profile?: string;
16282
+ /**
16283
+ * @example
16284
+ * ipvs
16285
+ */
16286
+ proxyMode?: string;
16546
16287
  /**
16547
16288
  * @remarks
16548
16289
  * The region ID of the cluster.
@@ -16567,6 +16308,14 @@ export declare class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
16567
16308
  * sg-2vcgwsrwgt5mp0yi****
16568
16309
  */
16569
16310
  securityGroupId?: string;
16311
+ /**
16312
+ * @remarks
16313
+ * This parameter is required.
16314
+ *
16315
+ * @example
16316
+ * 172.21.0.0/20
16317
+ */
16318
+ serviceCidr?: string;
16570
16319
  /**
16571
16320
  * @remarks
16572
16321
  * The number of nodes in the cluster, including master nodes and worker nodes.
@@ -16608,6 +16357,8 @@ export declare class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
16608
16357
  *
16609
16358
  * @example
16610
16359
  * 172.21.0.0/16
16360
+ *
16361
+ * @deprecated
16611
16362
  */
16612
16363
  subnetCidr?: string;
16613
16364
  /**
@@ -16615,6 +16366,11 @@ export declare class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
16615
16366
  * The resource labels of the cluster.
16616
16367
  */
16617
16368
  tags?: Tag[];
16369
+ /**
16370
+ * @example
16371
+ * Asia/Shanghai
16372
+ */
16373
+ timezone?: string;
16618
16374
  /**
16619
16375
  * @remarks
16620
16376
  * The time when the cluster was updated.
@@ -16637,8 +16393,11 @@ export declare class DescribeClustersV1ResponseBodyClusters extends $tea.Model {
16637
16393
  *
16638
16394
  * @example
16639
16395
  * vsw-2vc41xuumx5z2rdma****,vsw-2vc41xuumx5z2rdma****
16396
+ *
16397
+ * @deprecated
16640
16398
  */
16641
16399
  vswitchId?: string;
16400
+ vswitchIds?: string[];
16642
16401
  /**
16643
16402
  * @remarks
16644
16403
  * 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.
@@ -18442,41 +18201,6 @@ export declare class DescribeUserQuotaResponseBodyEdgeImprovedNodepoolQuota exte
18442
18201
  [key: string]: any;
18443
18202
  });
18444
18203
  }
18445
- export declare class DescribeWorkflowsResponseBodyJobs extends $tea.Model {
18446
- /**
18447
- * @remarks
18448
- * The cluster ID.
18449
- *
18450
- * @example
18451
- * cb1a7214cfc0b41d9bb086affc2d8f51c
18452
- */
18453
- clusterId?: string;
18454
- /**
18455
- * @remarks
18456
- * The time when the workflow was created.
18457
- *
18458
- * @example
18459
- * 2020-01-15T13:18:52Z
18460
- */
18461
- createTime?: string;
18462
- /**
18463
- * @remarks
18464
- * The name of the workflow.
18465
- *
18466
- * @example
18467
- * wgs-gpu-qb4dk
18468
- */
18469
- jobName?: string;
18470
- static names(): {
18471
- [key: string]: string;
18472
- };
18473
- static types(): {
18474
- [key: string]: any;
18475
- };
18476
- constructor(map?: {
18477
- [key: string]: any;
18478
- });
18479
- }
18480
18204
  export declare class FixNodePoolVulsRequestRolloutPolicy extends $tea.Model {
18481
18205
  /**
18482
18206
  * @remarks
@@ -20902,28 +20626,6 @@ export default class Client extends OpenApi {
20902
20626
  * @returns CancelTaskResponse
20903
20627
  */
20904
20628
  cancelTask(taskId: string): Promise<CancelTaskResponse>;
20905
- /**
20906
- * You can call the CancelWorkflow operation to cancel an ongoing workflow.
20907
- *
20908
- * @deprecated OpenAPI CancelWorkflow is deprecated
20909
- *
20910
- * @param request - CancelWorkflowRequest
20911
- * @param headers - map
20912
- * @param runtime - runtime options for this request RuntimeOptions
20913
- * @returns CancelWorkflowResponse
20914
- */
20915
- cancelWorkflowWithOptions(workflowName: string, request: CancelWorkflowRequest, headers: {
20916
- [key: string]: string;
20917
- }, runtime: $Util.RuntimeOptions): Promise<CancelWorkflowResponse>;
20918
- /**
20919
- * You can call the CancelWorkflow operation to cancel an ongoing workflow.
20920
- *
20921
- * @deprecated OpenAPI CancelWorkflow is deprecated
20922
- *
20923
- * @param request - CancelWorkflowRequest
20924
- * @returns CancelWorkflowResponse
20925
- */
20926
- cancelWorkflow(workflowName: string, request: CancelWorkflowRequest): Promise<CancelWorkflowResponse>;
20927
20629
  /**
20928
20630
  * 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.
20929
20631
  *
@@ -21378,25 +21080,6 @@ export default class Client extends OpenApi {
21378
21080
  * @returns DeployPolicyInstanceResponse
21379
21081
  */
21380
21082
  deployPolicyInstance(clusterId: string, policyName: string, request: DeployPolicyInstanceRequest): Promise<DeployPolicyInstanceResponse>;
21381
- /**
21382
- * You can call the DescirbeWorkflow operation to query detailed information about a workflow.
21383
- *
21384
- * @deprecated OpenAPI DescirbeWorkflow is deprecated
21385
- *
21386
- * @param headers - map
21387
- * @param runtime - runtime options for this request RuntimeOptions
21388
- * @returns DescirbeWorkflowResponse
21389
- */
21390
- descirbeWorkflowWithOptions(workflowName: string, headers: {
21391
- [key: string]: string;
21392
- }, runtime: $Util.RuntimeOptions): Promise<DescirbeWorkflowResponse>;
21393
- /**
21394
- * You can call the DescirbeWorkflow operation to query detailed information about a workflow.
21395
- *
21396
- * @deprecated OpenAPI DescirbeWorkflow is deprecated
21397
- * @returns DescirbeWorkflowResponse
21398
- */
21399
- descirbeWorkflow(workflowName: string): Promise<DescirbeWorkflowResponse>;
21400
21083
  /**
21401
21084
  * 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.
21402
21085
  *
@@ -22177,25 +21860,6 @@ export default class Client extends OpenApi {
22177
21860
  * @returns DescribeUserQuotaResponse
22178
21861
  */
22179
21862
  describeUserQuota(): Promise<DescribeUserQuotaResponse>;
22180
- /**
22181
- * You can call the DescribeWorkflows operation to query all workflows.
22182
- *
22183
- * @deprecated OpenAPI DescribeWorkflows is deprecated
22184
- *
22185
- * @param headers - map
22186
- * @param runtime - runtime options for this request RuntimeOptions
22187
- * @returns DescribeWorkflowsResponse
22188
- */
22189
- describeWorkflowsWithOptions(headers: {
22190
- [key: string]: string;
22191
- }, runtime: $Util.RuntimeOptions): Promise<DescribeWorkflowsResponse>;
22192
- /**
22193
- * You can call the DescribeWorkflows operation to query all workflows.
22194
- *
22195
- * @deprecated OpenAPI DescribeWorkflows is deprecated
22196
- * @returns DescribeWorkflowsResponse
22197
- */
22198
- describeWorkflows(): Promise<DescribeWorkflowsResponse>;
22199
21863
  /**
22200
21864
  * You can call the EdgeClusterAddEdgeMachine operation to add a cloud-native box to a Container Service for Kubernetes (ACK) Edge cluster.
22201
21865
  *
@@ -22843,25 +22507,6 @@ export default class Client extends OpenApi {
22843
22507
  * @returns RemoveNodePoolNodesResponse
22844
22508
  */
22845
22509
  removeNodePoolNodes(ClusterId: string, NodepoolId: string, request: RemoveNodePoolNodesRequest): Promise<RemoveNodePoolNodesResponse>;
22846
- /**
22847
- * You can call the RemoveWorkflow operation to delete a workflow.
22848
- *
22849
- * @deprecated OpenAPI RemoveWorkflow is deprecated
22850
- *
22851
- * @param headers - map
22852
- * @param runtime - runtime options for this request RuntimeOptions
22853
- * @returns RemoveWorkflowResponse
22854
- */
22855
- removeWorkflowWithOptions(workflowName: string, headers: {
22856
- [key: string]: string;
22857
- }, runtime: $Util.RuntimeOptions): Promise<RemoveWorkflowResponse>;
22858
- /**
22859
- * You can call the RemoveWorkflow operation to delete a workflow.
22860
- *
22861
- * @deprecated OpenAPI RemoveWorkflow is deprecated
22862
- * @returns RemoveWorkflowResponse
22863
- */
22864
- removeWorkflow(workflowName: string): Promise<RemoveWorkflowResponse>;
22865
22510
  /**
22866
22511
  * Fixes issues on abnormal nodes in a node pool to ensure that the nodes can run as normal.
22867
22512
  *
@@ -23061,28 +22706,6 @@ export default class Client extends OpenApi {
23061
22706
  * @returns StartAlertResponse
23062
22707
  */
23063
22708
  startAlert(ClusterId: string, request: StartAlertRequest): Promise<StartAlertResponse>;
23064
- /**
23065
- * You can call the StartWorkflow operation to create a workflow.
23066
- *
23067
- * @deprecated OpenAPI StartWorkflow is deprecated
23068
- *
23069
- * @param request - StartWorkflowRequest
23070
- * @param headers - map
23071
- * @param runtime - runtime options for this request RuntimeOptions
23072
- * @returns StartWorkflowResponse
23073
- */
23074
- startWorkflowWithOptions(request: StartWorkflowRequest, headers: {
23075
- [key: string]: string;
23076
- }, runtime: $Util.RuntimeOptions): Promise<StartWorkflowResponse>;
23077
- /**
23078
- * You can call the StartWorkflow operation to create a workflow.
23079
- *
23080
- * @deprecated OpenAPI StartWorkflow is deprecated
23081
- *
23082
- * @param request - StartWorkflowRequest
23083
- * @returns StartWorkflowResponse
23084
- */
23085
- startWorkflow(request: StartWorkflowRequest): Promise<StartWorkflowResponse>;
23086
22709
  /**
23087
22710
  * 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).
23088
22711
  *