tencentcloud-sdk-nodejs-intl-en 3.0.1209 → 3.0.1211
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/package.json +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/emr/v20190103/emr_client.js +100 -18
- package/tencentcloud/emr/v20190103/models.js +1131 -171
- package/tencentcloud/mongodb/v20190725/models.js +653 -277
- package/tencentcloud/mongodb/v20190725/mongodb_client.js +34 -20
|
@@ -708,78 +708,38 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
708
708
|
}
|
|
709
709
|
|
|
710
710
|
/**
|
|
711
|
-
*
|
|
711
|
+
* DescribeInstances response structure.
|
|
712
712
|
* @class
|
|
713
713
|
*/
|
|
714
|
-
class
|
|
714
|
+
class DescribeInstancesResponse extends AbstractModel {
|
|
715
715
|
constructor(){
|
|
716
716
|
super();
|
|
717
717
|
|
|
718
718
|
/**
|
|
719
|
-
*
|
|
720
|
-
* @type {string || null}
|
|
721
|
-
*/
|
|
722
|
-
this.InstanceId = null;
|
|
723
|
-
|
|
724
|
-
/**
|
|
725
|
-
* Start time in the format of timestamp. Unit: seconds.
|
|
726
|
-
* @type {number || null}
|
|
727
|
-
*/
|
|
728
|
-
this.StartTime = null;
|
|
729
|
-
|
|
730
|
-
/**
|
|
731
|
-
* End time in the format of timestamp. Unit: seconds.
|
|
719
|
+
* Number of eligible instances.
|
|
732
720
|
* @type {number || null}
|
|
733
721
|
*/
|
|
734
|
-
this.
|
|
735
|
-
|
|
736
|
-
/**
|
|
737
|
-
* Queue name used for filtering
|
|
738
|
-
* @type {Array.<string> || null}
|
|
739
|
-
*/
|
|
740
|
-
this.Queues = null;
|
|
741
|
-
|
|
742
|
-
/**
|
|
743
|
-
* Username used for filtering
|
|
744
|
-
* @type {Array.<string> || null}
|
|
745
|
-
*/
|
|
746
|
-
this.Users = null;
|
|
722
|
+
this.TotalCnt = null;
|
|
747
723
|
|
|
748
724
|
/**
|
|
749
|
-
*
|
|
750
|
-
|
|
725
|
+
* List of EMR instance details.
|
|
726
|
+
Note: this field may return null, indicating that no valid values can be obtained.
|
|
727
|
+
* @type {Array.<ClusterInstancesInfo> || null}
|
|
751
728
|
*/
|
|
752
|
-
this.
|
|
729
|
+
this.ClusterList = null;
|
|
753
730
|
|
|
754
731
|
/**
|
|
755
|
-
*
|
|
732
|
+
* List of tag keys associated to an instance.
|
|
733
|
+
Note: this field may return null, indicating that no valid values can be obtained.
|
|
756
734
|
* @type {Array.<string> || null}
|
|
757
735
|
*/
|
|
758
|
-
this.
|
|
736
|
+
this.TagKeys = null;
|
|
759
737
|
|
|
760
738
|
/**
|
|
761
|
-
*
|
|
739
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
762
740
|
* @type {string || null}
|
|
763
741
|
*/
|
|
764
|
-
this.
|
|
765
|
-
|
|
766
|
-
/**
|
|
767
|
-
* Order type. Valid values: `0` (descending) and `1`(ascending).
|
|
768
|
-
* @type {number || null}
|
|
769
|
-
*/
|
|
770
|
-
this.IsAsc = null;
|
|
771
|
-
|
|
772
|
-
/**
|
|
773
|
-
* Page number
|
|
774
|
-
* @type {number || null}
|
|
775
|
-
*/
|
|
776
|
-
this.Offset = null;
|
|
777
|
-
|
|
778
|
-
/**
|
|
779
|
-
* Page limit
|
|
780
|
-
* @type {number || null}
|
|
781
|
-
*/
|
|
782
|
-
this.Limit = null;
|
|
742
|
+
this.RequestId = null;
|
|
783
743
|
|
|
784
744
|
}
|
|
785
745
|
|
|
@@ -790,17 +750,18 @@ class DescribeEmrApplicationStaticsRequest extends AbstractModel {
|
|
|
790
750
|
if (!params) {
|
|
791
751
|
return;
|
|
792
752
|
}
|
|
793
|
-
this.
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
this.
|
|
753
|
+
this.TotalCnt = 'TotalCnt' in params ? params.TotalCnt : null;
|
|
754
|
+
|
|
755
|
+
if (params.ClusterList) {
|
|
756
|
+
this.ClusterList = new Array();
|
|
757
|
+
for (let z in params.ClusterList) {
|
|
758
|
+
let obj = new ClusterInstancesInfo();
|
|
759
|
+
obj.deserialize(params.ClusterList[z]);
|
|
760
|
+
this.ClusterList.push(obj);
|
|
761
|
+
}
|
|
762
|
+
}
|
|
763
|
+
this.TagKeys = 'TagKeys' in params ? params.TagKeys : null;
|
|
764
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
804
765
|
|
|
805
766
|
}
|
|
806
767
|
}
|
|
@@ -883,6 +844,213 @@ class DynamicPodSpec extends AbstractModel {
|
|
|
883
844
|
}
|
|
884
845
|
}
|
|
885
846
|
|
|
847
|
+
/**
|
|
848
|
+
* ModifySLInstanceBasic request structure.
|
|
849
|
+
* @class
|
|
850
|
+
*/
|
|
851
|
+
class ModifySLInstanceBasicRequest extends AbstractModel {
|
|
852
|
+
constructor(){
|
|
853
|
+
super();
|
|
854
|
+
|
|
855
|
+
/**
|
|
856
|
+
* Instance ID.
|
|
857
|
+
* @type {string || null}
|
|
858
|
+
*/
|
|
859
|
+
this.InstanceId = null;
|
|
860
|
+
|
|
861
|
+
/**
|
|
862
|
+
* Instance name.
|
|
863
|
+
* @type {string || null}
|
|
864
|
+
*/
|
|
865
|
+
this.ClusterName = null;
|
|
866
|
+
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
/**
|
|
870
|
+
* @private
|
|
871
|
+
*/
|
|
872
|
+
deserialize(params) {
|
|
873
|
+
if (!params) {
|
|
874
|
+
return;
|
|
875
|
+
}
|
|
876
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
877
|
+
this.ClusterName = 'ClusterName' in params ? params.ClusterName : null;
|
|
878
|
+
|
|
879
|
+
}
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
/**
|
|
883
|
+
* Serverless HBase instance information
|
|
884
|
+
* @class
|
|
885
|
+
*/
|
|
886
|
+
class SLInstanceInfo extends AbstractModel {
|
|
887
|
+
constructor(){
|
|
888
|
+
super();
|
|
889
|
+
|
|
890
|
+
/**
|
|
891
|
+
* Instance string ID.
|
|
892
|
+
* @type {string || null}
|
|
893
|
+
*/
|
|
894
|
+
this.ClusterId = null;
|
|
895
|
+
|
|
896
|
+
/**
|
|
897
|
+
* Instance numeric ID
|
|
898
|
+
* @type {number || null}
|
|
899
|
+
*/
|
|
900
|
+
this.Id = null;
|
|
901
|
+
|
|
902
|
+
/**
|
|
903
|
+
* Status description.
|
|
904
|
+
* @type {string || null}
|
|
905
|
+
*/
|
|
906
|
+
this.StatusDesc = null;
|
|
907
|
+
|
|
908
|
+
/**
|
|
909
|
+
* Health status.
|
|
910
|
+
* @type {string || null}
|
|
911
|
+
*/
|
|
912
|
+
this.HealthStatus = null;
|
|
913
|
+
|
|
914
|
+
/**
|
|
915
|
+
* Instance name
|
|
916
|
+
* @type {string || null}
|
|
917
|
+
*/
|
|
918
|
+
this.ClusterName = null;
|
|
919
|
+
|
|
920
|
+
/**
|
|
921
|
+
* Region ID
|
|
922
|
+
* @type {number || null}
|
|
923
|
+
*/
|
|
924
|
+
this.RegionId = null;
|
|
925
|
+
|
|
926
|
+
/**
|
|
927
|
+
* Primary AZ ID.
|
|
928
|
+
* @type {number || null}
|
|
929
|
+
*/
|
|
930
|
+
this.ZoneId = null;
|
|
931
|
+
|
|
932
|
+
/**
|
|
933
|
+
* Primary AZ.
|
|
934
|
+
* @type {string || null}
|
|
935
|
+
*/
|
|
936
|
+
this.Zone = null;
|
|
937
|
+
|
|
938
|
+
/**
|
|
939
|
+
* User APP ID.
|
|
940
|
+
* @type {number || null}
|
|
941
|
+
*/
|
|
942
|
+
this.AppId = null;
|
|
943
|
+
|
|
944
|
+
/**
|
|
945
|
+
* Primary AZ VPC ID.
|
|
946
|
+
* @type {number || null}
|
|
947
|
+
*/
|
|
948
|
+
this.VpcId = null;
|
|
949
|
+
|
|
950
|
+
/**
|
|
951
|
+
* Primary AZ subnet ID.
|
|
952
|
+
* @type {number || null}
|
|
953
|
+
*/
|
|
954
|
+
this.SubnetId = null;
|
|
955
|
+
|
|
956
|
+
/**
|
|
957
|
+
* Status code
|
|
958
|
+
* @type {number || null}
|
|
959
|
+
*/
|
|
960
|
+
this.Status = null;
|
|
961
|
+
|
|
962
|
+
/**
|
|
963
|
+
* Creation time.
|
|
964
|
+
* @type {string || null}
|
|
965
|
+
*/
|
|
966
|
+
this.AddTime = null;
|
|
967
|
+
|
|
968
|
+
/**
|
|
969
|
+
* Cluster billing type. 0 indicates pay-as-you-go. 1 indicates monthly subscription.
|
|
970
|
+
* @type {number || null}
|
|
971
|
+
*/
|
|
972
|
+
this.PayMode = null;
|
|
973
|
+
|
|
974
|
+
/**
|
|
975
|
+
* Multi-AZ information.
|
|
976
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
977
|
+
* @type {Array.<ZoneSetting> || null}
|
|
978
|
+
*/
|
|
979
|
+
this.ZoneSettings = null;
|
|
980
|
+
|
|
981
|
+
/**
|
|
982
|
+
* Instance tag.
|
|
983
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
984
|
+
* @type {Array.<Tag> || null}
|
|
985
|
+
*/
|
|
986
|
+
this.Tags = null;
|
|
987
|
+
|
|
988
|
+
/**
|
|
989
|
+
* Auto-renewal flag. 0: notify before expiration but do not auto-renew; 1: notify before expiration and auto-renew; and 2: do not notify before expiration and do not auto-renew. If the business does not support renewal, the value is set to 0.
|
|
990
|
+
* @type {number || null}
|
|
991
|
+
*/
|
|
992
|
+
this.AutoRenewFlag = null;
|
|
993
|
+
|
|
994
|
+
/**
|
|
995
|
+
* Isolation time. For instances that are not isolated, the API returns 0000-00-00 00:00:00.
|
|
996
|
+
* @type {string || null}
|
|
997
|
+
*/
|
|
998
|
+
this.IsolateTime = null;
|
|
999
|
+
|
|
1000
|
+
/**
|
|
1001
|
+
* Expiration time. For post-paid instances, the API returns 0000-00-00 00:00:00.
|
|
1002
|
+
* @type {string || null}
|
|
1003
|
+
*/
|
|
1004
|
+
this.ExpireTime = null;
|
|
1005
|
+
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
/**
|
|
1009
|
+
* @private
|
|
1010
|
+
*/
|
|
1011
|
+
deserialize(params) {
|
|
1012
|
+
if (!params) {
|
|
1013
|
+
return;
|
|
1014
|
+
}
|
|
1015
|
+
this.ClusterId = 'ClusterId' in params ? params.ClusterId : null;
|
|
1016
|
+
this.Id = 'Id' in params ? params.Id : null;
|
|
1017
|
+
this.StatusDesc = 'StatusDesc' in params ? params.StatusDesc : null;
|
|
1018
|
+
this.HealthStatus = 'HealthStatus' in params ? params.HealthStatus : null;
|
|
1019
|
+
this.ClusterName = 'ClusterName' in params ? params.ClusterName : null;
|
|
1020
|
+
this.RegionId = 'RegionId' in params ? params.RegionId : null;
|
|
1021
|
+
this.ZoneId = 'ZoneId' in params ? params.ZoneId : null;
|
|
1022
|
+
this.Zone = 'Zone' in params ? params.Zone : null;
|
|
1023
|
+
this.AppId = 'AppId' in params ? params.AppId : null;
|
|
1024
|
+
this.VpcId = 'VpcId' in params ? params.VpcId : null;
|
|
1025
|
+
this.SubnetId = 'SubnetId' in params ? params.SubnetId : null;
|
|
1026
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
1027
|
+
this.AddTime = 'AddTime' in params ? params.AddTime : null;
|
|
1028
|
+
this.PayMode = 'PayMode' in params ? params.PayMode : null;
|
|
1029
|
+
|
|
1030
|
+
if (params.ZoneSettings) {
|
|
1031
|
+
this.ZoneSettings = new Array();
|
|
1032
|
+
for (let z in params.ZoneSettings) {
|
|
1033
|
+
let obj = new ZoneSetting();
|
|
1034
|
+
obj.deserialize(params.ZoneSettings[z]);
|
|
1035
|
+
this.ZoneSettings.push(obj);
|
|
1036
|
+
}
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
if (params.Tags) {
|
|
1040
|
+
this.Tags = new Array();
|
|
1041
|
+
for (let z in params.Tags) {
|
|
1042
|
+
let obj = new Tag();
|
|
1043
|
+
obj.deserialize(params.Tags[z]);
|
|
1044
|
+
this.Tags.push(obj);
|
|
1045
|
+
}
|
|
1046
|
+
}
|
|
1047
|
+
this.AutoRenewFlag = 'AutoRenewFlag' in params ? params.AutoRenewFlag : null;
|
|
1048
|
+
this.IsolateTime = 'IsolateTime' in params ? params.IsolateTime : null;
|
|
1049
|
+
this.ExpireTime = 'ExpireTime' in params ? params.ExpireTime : null;
|
|
1050
|
+
|
|
1051
|
+
}
|
|
1052
|
+
}
|
|
1053
|
+
|
|
886
1054
|
/**
|
|
887
1055
|
* ModifyUserManagerPwd request structure.
|
|
888
1056
|
* @class
|
|
@@ -1381,26 +1549,66 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
1381
1549
|
}
|
|
1382
1550
|
|
|
1383
1551
|
/**
|
|
1384
|
-
*
|
|
1552
|
+
* CreateSLInstance request structure.
|
|
1385
1553
|
* @class
|
|
1386
1554
|
*/
|
|
1387
|
-
class
|
|
1555
|
+
class CreateSLInstanceRequest extends AbstractModel {
|
|
1388
1556
|
constructor(){
|
|
1389
1557
|
super();
|
|
1390
1558
|
|
|
1391
1559
|
/**
|
|
1392
|
-
*
|
|
1393
|
-
Note: This field may return `null`, indicating that no valid value can be obtained.
|
|
1560
|
+
* Instance name.
|
|
1394
1561
|
* @type {string || null}
|
|
1395
1562
|
*/
|
|
1396
|
-
this.
|
|
1563
|
+
this.InstanceName = null;
|
|
1397
1564
|
|
|
1398
1565
|
/**
|
|
1399
|
-
*
|
|
1400
|
-
|
|
1566
|
+
* Instance billing mode. 0 indicates postpaid, i.e., pay-as-you-go.
|
|
1567
|
+
* @type {number || null}
|
|
1568
|
+
*/
|
|
1569
|
+
this.PayMode = null;
|
|
1570
|
+
|
|
1571
|
+
/**
|
|
1572
|
+
* Instance storage type. Fill in CLOUD_HSSD to represent high-performance cloud storage.
|
|
1401
1573
|
* @type {string || null}
|
|
1402
1574
|
*/
|
|
1403
|
-
this.
|
|
1575
|
+
this.DiskType = null;
|
|
1576
|
+
|
|
1577
|
+
/**
|
|
1578
|
+
* The disk capacity of a single node of the instance, in GB. The disk capacity of a single node should be greater than or equal to 100 and less than or equal to 250 x the number of CPU cores. The capacity adjustment step is 100.
|
|
1579
|
+
* @type {number || null}
|
|
1580
|
+
*/
|
|
1581
|
+
this.DiskSize = null;
|
|
1582
|
+
|
|
1583
|
+
/**
|
|
1584
|
+
* Instance node specification. You can fill in 4C16G, 8C32G, 16C64G, or 32C128G, which is case-insensitive.
|
|
1585
|
+
* @type {string || null}
|
|
1586
|
+
*/
|
|
1587
|
+
this.NodeType = null;
|
|
1588
|
+
|
|
1589
|
+
/**
|
|
1590
|
+
* Detailed configuration of the instance AZ. Currently, multiple availability zones are supported. The number of AZs must be 1 or 3, including the region names, VPC information, and number of nodes. The total number of nodes across all zones must be greater than or equal to 3 and less than or equal to 50.
|
|
1591
|
+
* @type {Array.<ZoneSetting> || null}
|
|
1592
|
+
*/
|
|
1593
|
+
this.ZoneSettings = null;
|
|
1594
|
+
|
|
1595
|
+
/**
|
|
1596
|
+
* List of tags to be bound to the instance.
|
|
1597
|
+
* @type {Array.<Tag> || null}
|
|
1598
|
+
*/
|
|
1599
|
+
this.Tags = null;
|
|
1600
|
+
|
|
1601
|
+
/**
|
|
1602
|
+
* Prepaid parameter.
|
|
1603
|
+
* @type {PrePaySetting || null}
|
|
1604
|
+
*/
|
|
1605
|
+
this.PrePaySetting = null;
|
|
1606
|
+
|
|
1607
|
+
/**
|
|
1608
|
+
* The unique random identifier with a time efficiency of 5 minutes, which needs to be specified by the caller to prevent the client from creating resources repeatedly. For example: a9a90aa6-****-****-****-fae360632808.
|
|
1609
|
+
* @type {string || null}
|
|
1610
|
+
*/
|
|
1611
|
+
this.ClientToken = null;
|
|
1404
1612
|
|
|
1405
1613
|
}
|
|
1406
1614
|
|
|
@@ -1411,8 +1619,36 @@ Note: This field may return `null`, indicating that no valid value can be obtain
|
|
|
1411
1619
|
if (!params) {
|
|
1412
1620
|
return;
|
|
1413
1621
|
}
|
|
1414
|
-
this.
|
|
1415
|
-
this.
|
|
1622
|
+
this.InstanceName = 'InstanceName' in params ? params.InstanceName : null;
|
|
1623
|
+
this.PayMode = 'PayMode' in params ? params.PayMode : null;
|
|
1624
|
+
this.DiskType = 'DiskType' in params ? params.DiskType : null;
|
|
1625
|
+
this.DiskSize = 'DiskSize' in params ? params.DiskSize : null;
|
|
1626
|
+
this.NodeType = 'NodeType' in params ? params.NodeType : null;
|
|
1627
|
+
|
|
1628
|
+
if (params.ZoneSettings) {
|
|
1629
|
+
this.ZoneSettings = new Array();
|
|
1630
|
+
for (let z in params.ZoneSettings) {
|
|
1631
|
+
let obj = new ZoneSetting();
|
|
1632
|
+
obj.deserialize(params.ZoneSettings[z]);
|
|
1633
|
+
this.ZoneSettings.push(obj);
|
|
1634
|
+
}
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
if (params.Tags) {
|
|
1638
|
+
this.Tags = new Array();
|
|
1639
|
+
for (let z in params.Tags) {
|
|
1640
|
+
let obj = new Tag();
|
|
1641
|
+
obj.deserialize(params.Tags[z]);
|
|
1642
|
+
this.Tags.push(obj);
|
|
1643
|
+
}
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1646
|
+
if (params.PrePaySetting) {
|
|
1647
|
+
let obj = new PrePaySetting();
|
|
1648
|
+
obj.deserialize(params.PrePaySetting)
|
|
1649
|
+
this.PrePaySetting = obj;
|
|
1650
|
+
}
|
|
1651
|
+
this.ClientToken = 'ClientToken' in params ? params.ClientToken : null;
|
|
1416
1652
|
|
|
1417
1653
|
}
|
|
1418
1654
|
}
|
|
@@ -2640,16 +2876,51 @@ Note: This field may return `null`, indicating that no valid values can be obtai
|
|
|
2640
2876
|
obj.deserialize(params.ComResource)
|
|
2641
2877
|
this.ComResource = obj;
|
|
2642
2878
|
}
|
|
2643
|
-
this.OnCos = 'OnCos' in params ? params.OnCos : null;
|
|
2644
|
-
this.ChargeType = 'ChargeType' in params ? params.ChargeType : null;
|
|
2645
|
-
this.RouterNodeSize = 'RouterNodeSize' in params ? params.RouterNodeSize : null;
|
|
2646
|
-
this.SupportHA = 'SupportHA' in params ? params.SupportHA : null;
|
|
2647
|
-
this.SecurityOn = 'SecurityOn' in params ? params.SecurityOn : null;
|
|
2648
|
-
this.SecurityGroup = 'SecurityGroup' in params ? params.SecurityGroup : null;
|
|
2649
|
-
this.CbsEncrypt = 'CbsEncrypt' in params ? params.CbsEncrypt : null;
|
|
2650
|
-
this.ApplicationRole = 'ApplicationRole' in params ? params.ApplicationRole : null;
|
|
2651
|
-
this.SecurityGroups = 'SecurityGroups' in params ? params.SecurityGroups : null;
|
|
2652
|
-
this.PublicKeyId = 'PublicKeyId' in params ? params.PublicKeyId : null;
|
|
2879
|
+
this.OnCos = 'OnCos' in params ? params.OnCos : null;
|
|
2880
|
+
this.ChargeType = 'ChargeType' in params ? params.ChargeType : null;
|
|
2881
|
+
this.RouterNodeSize = 'RouterNodeSize' in params ? params.RouterNodeSize : null;
|
|
2882
|
+
this.SupportHA = 'SupportHA' in params ? params.SupportHA : null;
|
|
2883
|
+
this.SecurityOn = 'SecurityOn' in params ? params.SecurityOn : null;
|
|
2884
|
+
this.SecurityGroup = 'SecurityGroup' in params ? params.SecurityGroup : null;
|
|
2885
|
+
this.CbsEncrypt = 'CbsEncrypt' in params ? params.CbsEncrypt : null;
|
|
2886
|
+
this.ApplicationRole = 'ApplicationRole' in params ? params.ApplicationRole : null;
|
|
2887
|
+
this.SecurityGroups = 'SecurityGroups' in params ? params.SecurityGroups : null;
|
|
2888
|
+
this.PublicKeyId = 'PublicKeyId' in params ? params.PublicKeyId : null;
|
|
2889
|
+
|
|
2890
|
+
}
|
|
2891
|
+
}
|
|
2892
|
+
|
|
2893
|
+
/**
|
|
2894
|
+
* VPC parameters
|
|
2895
|
+
* @class
|
|
2896
|
+
*/
|
|
2897
|
+
class VPCSettings extends AbstractModel {
|
|
2898
|
+
constructor(){
|
|
2899
|
+
super();
|
|
2900
|
+
|
|
2901
|
+
/**
|
|
2902
|
+
* VPC ID
|
|
2903
|
+
* @type {string || null}
|
|
2904
|
+
*/
|
|
2905
|
+
this.VpcId = null;
|
|
2906
|
+
|
|
2907
|
+
/**
|
|
2908
|
+
* Subnet ID
|
|
2909
|
+
* @type {string || null}
|
|
2910
|
+
*/
|
|
2911
|
+
this.SubnetId = null;
|
|
2912
|
+
|
|
2913
|
+
}
|
|
2914
|
+
|
|
2915
|
+
/**
|
|
2916
|
+
* @private
|
|
2917
|
+
*/
|
|
2918
|
+
deserialize(params) {
|
|
2919
|
+
if (!params) {
|
|
2920
|
+
return;
|
|
2921
|
+
}
|
|
2922
|
+
this.VpcId = 'VpcId' in params ? params.VpcId : null;
|
|
2923
|
+
this.SubnetId = 'SubnetId' in params ? params.SubnetId : null;
|
|
2653
2924
|
|
|
2654
2925
|
}
|
|
2655
2926
|
}
|
|
@@ -2717,6 +2988,47 @@ class TerminateTasksResponse extends AbstractModel {
|
|
|
2717
2988
|
}
|
|
2718
2989
|
}
|
|
2719
2990
|
|
|
2991
|
+
/**
|
|
2992
|
+
* Serverless HBase prepaid settings
|
|
2993
|
+
* @class
|
|
2994
|
+
*/
|
|
2995
|
+
class PrePaySetting extends AbstractModel {
|
|
2996
|
+
constructor(){
|
|
2997
|
+
super();
|
|
2998
|
+
|
|
2999
|
+
/**
|
|
3000
|
+
* Time.
|
|
3001
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
3002
|
+
* @type {Period || null}
|
|
3003
|
+
*/
|
|
3004
|
+
this.Period = null;
|
|
3005
|
+
|
|
3006
|
+
/**
|
|
3007
|
+
* Auto-renewal flag. 0: notify before expiration but do not auto-renew; 1: notify before expiration and auto-renew; and 2: do not notify before expiration and do not auto-renew.
|
|
3008
|
+
* @type {number || null}
|
|
3009
|
+
*/
|
|
3010
|
+
this.AutoRenewFlag = null;
|
|
3011
|
+
|
|
3012
|
+
}
|
|
3013
|
+
|
|
3014
|
+
/**
|
|
3015
|
+
* @private
|
|
3016
|
+
*/
|
|
3017
|
+
deserialize(params) {
|
|
3018
|
+
if (!params) {
|
|
3019
|
+
return;
|
|
3020
|
+
}
|
|
3021
|
+
|
|
3022
|
+
if (params.Period) {
|
|
3023
|
+
let obj = new Period();
|
|
3024
|
+
obj.deserialize(params.Period)
|
|
3025
|
+
this.Period = obj;
|
|
3026
|
+
}
|
|
3027
|
+
this.AutoRenewFlag = 'AutoRenewFlag' in params ? params.AutoRenewFlag : null;
|
|
3028
|
+
|
|
3029
|
+
}
|
|
3030
|
+
}
|
|
3031
|
+
|
|
2720
3032
|
/**
|
|
2721
3033
|
* Price details by node part, used for creating the cluster price list
|
|
2722
3034
|
* @class
|
|
@@ -3358,6 +3670,53 @@ class DescribeResourceScheduleRequest extends AbstractModel {
|
|
|
3358
3670
|
}
|
|
3359
3671
|
}
|
|
3360
3672
|
|
|
3673
|
+
/**
|
|
3674
|
+
* AZ configuration description.
|
|
3675
|
+
* @class
|
|
3676
|
+
*/
|
|
3677
|
+
class ZoneSetting extends AbstractModel {
|
|
3678
|
+
constructor(){
|
|
3679
|
+
super();
|
|
3680
|
+
|
|
3681
|
+
/**
|
|
3682
|
+
* Availability zone name
|
|
3683
|
+
* @type {string || null}
|
|
3684
|
+
*/
|
|
3685
|
+
this.Zone = null;
|
|
3686
|
+
|
|
3687
|
+
/**
|
|
3688
|
+
* AZ VPC and subnet.
|
|
3689
|
+
* @type {VPCSettings || null}
|
|
3690
|
+
*/
|
|
3691
|
+
this.VPCSettings = null;
|
|
3692
|
+
|
|
3693
|
+
/**
|
|
3694
|
+
* Number of AZ nodes.
|
|
3695
|
+
* @type {number || null}
|
|
3696
|
+
*/
|
|
3697
|
+
this.NodeNum = null;
|
|
3698
|
+
|
|
3699
|
+
}
|
|
3700
|
+
|
|
3701
|
+
/**
|
|
3702
|
+
* @private
|
|
3703
|
+
*/
|
|
3704
|
+
deserialize(params) {
|
|
3705
|
+
if (!params) {
|
|
3706
|
+
return;
|
|
3707
|
+
}
|
|
3708
|
+
this.Zone = 'Zone' in params ? params.Zone : null;
|
|
3709
|
+
|
|
3710
|
+
if (params.VPCSettings) {
|
|
3711
|
+
let obj = new VPCSettings();
|
|
3712
|
+
obj.deserialize(params.VPCSettings)
|
|
3713
|
+
this.VPCSettings = obj;
|
|
3714
|
+
}
|
|
3715
|
+
this.NodeNum = 'NodeNum' in params ? params.NodeNum : null;
|
|
3716
|
+
|
|
3717
|
+
}
|
|
3718
|
+
}
|
|
3719
|
+
|
|
3361
3720
|
/**
|
|
3362
3721
|
* Location information of cluster instance
|
|
3363
3722
|
* @class
|
|
@@ -4160,6 +4519,41 @@ class ScaleOutServiceConfGroupsInfo extends AbstractModel {
|
|
|
4160
4519
|
}
|
|
4161
4520
|
}
|
|
4162
4521
|
|
|
4522
|
+
/**
|
|
4523
|
+
* CreateSLInstance response structure.
|
|
4524
|
+
* @class
|
|
4525
|
+
*/
|
|
4526
|
+
class CreateSLInstanceResponse extends AbstractModel {
|
|
4527
|
+
constructor(){
|
|
4528
|
+
super();
|
|
4529
|
+
|
|
4530
|
+
/**
|
|
4531
|
+
* Instance unique identifier (string).
|
|
4532
|
+
* @type {string || null}
|
|
4533
|
+
*/
|
|
4534
|
+
this.InstanceId = null;
|
|
4535
|
+
|
|
4536
|
+
/**
|
|
4537
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
4538
|
+
* @type {string || null}
|
|
4539
|
+
*/
|
|
4540
|
+
this.RequestId = null;
|
|
4541
|
+
|
|
4542
|
+
}
|
|
4543
|
+
|
|
4544
|
+
/**
|
|
4545
|
+
* @private
|
|
4546
|
+
*/
|
|
4547
|
+
deserialize(params) {
|
|
4548
|
+
if (!params) {
|
|
4549
|
+
return;
|
|
4550
|
+
}
|
|
4551
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
4552
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
4553
|
+
|
|
4554
|
+
}
|
|
4555
|
+
}
|
|
4556
|
+
|
|
4163
4557
|
/**
|
|
4164
4558
|
* Parameter information of each AZ
|
|
4165
4559
|
* @class
|
|
@@ -4613,24 +5007,36 @@ class ModifyResourceTags extends AbstractModel {
|
|
|
4613
5007
|
}
|
|
4614
5008
|
|
|
4615
5009
|
/**
|
|
4616
|
-
*
|
|
5010
|
+
* Pricing details
|
|
4617
5011
|
* @class
|
|
4618
5012
|
*/
|
|
4619
|
-
class
|
|
5013
|
+
class PriceDetail extends AbstractModel {
|
|
4620
5014
|
constructor(){
|
|
4621
5015
|
super();
|
|
4622
5016
|
|
|
4623
5017
|
/**
|
|
4624
|
-
*
|
|
5018
|
+
* The node ID
|
|
4625
5019
|
* @type {string || null}
|
|
4626
5020
|
*/
|
|
4627
|
-
this.
|
|
5021
|
+
this.ResourceId = null;
|
|
4628
5022
|
|
|
4629
5023
|
/**
|
|
4630
|
-
*
|
|
4631
|
-
* @type {
|
|
5024
|
+
* The price formula
|
|
5025
|
+
* @type {string || null}
|
|
4632
5026
|
*/
|
|
4633
|
-
this.
|
|
5027
|
+
this.Formula = null;
|
|
5028
|
+
|
|
5029
|
+
/**
|
|
5030
|
+
* The original price
|
|
5031
|
+
* @type {number || null}
|
|
5032
|
+
*/
|
|
5033
|
+
this.OriginalCost = null;
|
|
5034
|
+
|
|
5035
|
+
/**
|
|
5036
|
+
* The discount price
|
|
5037
|
+
* @type {number || null}
|
|
5038
|
+
*/
|
|
5039
|
+
this.DiscountCost = null;
|
|
4634
5040
|
|
|
4635
5041
|
}
|
|
4636
5042
|
|
|
@@ -4641,16 +5047,10 @@ class ModifyResourcesTagsRequest extends AbstractModel {
|
|
|
4641
5047
|
if (!params) {
|
|
4642
5048
|
return;
|
|
4643
5049
|
}
|
|
4644
|
-
this.
|
|
4645
|
-
|
|
4646
|
-
|
|
4647
|
-
|
|
4648
|
-
for (let z in params.ModifyResourceTagsInfoList) {
|
|
4649
|
-
let obj = new ModifyResourceTags();
|
|
4650
|
-
obj.deserialize(params.ModifyResourceTagsInfoList[z]);
|
|
4651
|
-
this.ModifyResourceTagsInfoList.push(obj);
|
|
4652
|
-
}
|
|
4653
|
-
}
|
|
5050
|
+
this.ResourceId = 'ResourceId' in params ? params.ResourceId : null;
|
|
5051
|
+
this.Formula = 'Formula' in params ? params.Formula : null;
|
|
5052
|
+
this.OriginalCost = 'OriginalCost' in params ? params.OriginalCost : null;
|
|
5053
|
+
this.DiscountCost = 'DiscountCost' in params ? params.DiscountCost : null;
|
|
4654
5054
|
|
|
4655
5055
|
}
|
|
4656
5056
|
}
|
|
@@ -5120,6 +5520,55 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
5120
5520
|
}
|
|
5121
5521
|
}
|
|
5122
5522
|
|
|
5523
|
+
/**
|
|
5524
|
+
* ModifySLInstance request structure.
|
|
5525
|
+
* @class
|
|
5526
|
+
*/
|
|
5527
|
+
class ModifySLInstanceRequest extends AbstractModel {
|
|
5528
|
+
constructor(){
|
|
5529
|
+
super();
|
|
5530
|
+
|
|
5531
|
+
/**
|
|
5532
|
+
* Instance unique identifier (string).
|
|
5533
|
+
* @type {string || null}
|
|
5534
|
+
*/
|
|
5535
|
+
this.InstanceId = null;
|
|
5536
|
+
|
|
5537
|
+
/**
|
|
5538
|
+
* Region name to be changed.
|
|
5539
|
+
* @type {string || null}
|
|
5540
|
+
*/
|
|
5541
|
+
this.Zone = null;
|
|
5542
|
+
|
|
5543
|
+
/**
|
|
5544
|
+
* Target node count after configuration change in this region. The total number of nodes across all regions should be greater than or equal to 3 and less than or equal to 50.
|
|
5545
|
+
* @type {number || null}
|
|
5546
|
+
*/
|
|
5547
|
+
this.NodeNum = null;
|
|
5548
|
+
|
|
5549
|
+
/**
|
|
5550
|
+
* The unique random identifier with a time efficiency of 5 minutes, which needs to be specified by the caller to prevent the client from creating resources repeatedly. For example: a9a90aa6-****-****-****-fae360632808.
|
|
5551
|
+
* @type {string || null}
|
|
5552
|
+
*/
|
|
5553
|
+
this.ClientToken = null;
|
|
5554
|
+
|
|
5555
|
+
}
|
|
5556
|
+
|
|
5557
|
+
/**
|
|
5558
|
+
* @private
|
|
5559
|
+
*/
|
|
5560
|
+
deserialize(params) {
|
|
5561
|
+
if (!params) {
|
|
5562
|
+
return;
|
|
5563
|
+
}
|
|
5564
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
5565
|
+
this.Zone = 'Zone' in params ? params.Zone : null;
|
|
5566
|
+
this.NodeNum = 'NodeNum' in params ? params.NodeNum : null;
|
|
5567
|
+
this.ClientToken = 'ClientToken' in params ? params.ClientToken : null;
|
|
5568
|
+
|
|
5569
|
+
}
|
|
5570
|
+
}
|
|
5571
|
+
|
|
5123
5572
|
/**
|
|
5124
5573
|
* DescribeHiveQueries request structure.
|
|
5125
5574
|
* @class
|
|
@@ -5249,15 +5698,86 @@ class DescribeAutoScaleRecordsResponse extends AbstractModel {
|
|
|
5249
5698
|
}
|
|
5250
5699
|
this.TotalCount = 'TotalCount' in params ? params.TotalCount : null;
|
|
5251
5700
|
|
|
5252
|
-
if (params.RecordList) {
|
|
5253
|
-
this.RecordList = new Array();
|
|
5254
|
-
for (let z in params.RecordList) {
|
|
5255
|
-
let obj = new AutoScaleRecord();
|
|
5256
|
-
obj.deserialize(params.RecordList[z]);
|
|
5257
|
-
this.RecordList.push(obj);
|
|
5701
|
+
if (params.RecordList) {
|
|
5702
|
+
this.RecordList = new Array();
|
|
5703
|
+
for (let z in params.RecordList) {
|
|
5704
|
+
let obj = new AutoScaleRecord();
|
|
5705
|
+
obj.deserialize(params.RecordList[z]);
|
|
5706
|
+
this.RecordList.push(obj);
|
|
5707
|
+
}
|
|
5708
|
+
}
|
|
5709
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
5710
|
+
|
|
5711
|
+
}
|
|
5712
|
+
}
|
|
5713
|
+
|
|
5714
|
+
/**
|
|
5715
|
+
* DescribeSLInstanceList request structure.
|
|
5716
|
+
* @class
|
|
5717
|
+
*/
|
|
5718
|
+
class DescribeSLInstanceListRequest extends AbstractModel {
|
|
5719
|
+
constructor(){
|
|
5720
|
+
super();
|
|
5721
|
+
|
|
5722
|
+
/**
|
|
5723
|
+
* Instance filtering policy. Valid values: <li>clusterList: Query the list of instances except for those that have been terminated.</li> <li>monitorManage: Query the list of instances except for those that have been terminated, are being created, or fail to be created.</li>
|
|
5724
|
+
* @type {string || null}
|
|
5725
|
+
*/
|
|
5726
|
+
this.DisplayStrategy = null;
|
|
5727
|
+
|
|
5728
|
+
/**
|
|
5729
|
+
* Page number. The default value is 0, indicating the first page.
|
|
5730
|
+
* @type {number || null}
|
|
5731
|
+
*/
|
|
5732
|
+
this.Offset = null;
|
|
5733
|
+
|
|
5734
|
+
/**
|
|
5735
|
+
* Number of records to be returned per page. The default value is 10, and the maximum value is 100.
|
|
5736
|
+
* @type {number || null}
|
|
5737
|
+
*/
|
|
5738
|
+
this.Limit = null;
|
|
5739
|
+
|
|
5740
|
+
/**
|
|
5741
|
+
* Sorting field. Valid values: <li>clusterId: Sort by instance ID.</li> <li>addTime: Sort by instance creation time.</li> <li>status: Sort by instance status code.</li>
|
|
5742
|
+
* @type {string || null}
|
|
5743
|
+
*/
|
|
5744
|
+
this.OrderField = null;
|
|
5745
|
+
|
|
5746
|
+
/**
|
|
5747
|
+
* Sorts by OrderField in ascending or descending order. Valid values: <li>0: ascending order;</li> <li>1: descending order.</li> The default value is 0.
|
|
5748
|
+
* @type {number || null}
|
|
5749
|
+
*/
|
|
5750
|
+
this.Asc = null;
|
|
5751
|
+
|
|
5752
|
+
/**
|
|
5753
|
+
* Custom search filters. Examples: <li>Filter instances by ClusterId: [{"Name":"ClusterId","Values":["emr-xxxxxxxx"]}]</li><li> Filter instances by clusterName: [{"Name": "ClusterName","Values": ["cluster_name"]}]</li><li>Filter instances by ClusterStatus: [{"Name": "ClusterStatus","Values": ["2"]}]</li>
|
|
5754
|
+
* @type {Array.<Filters> || null}
|
|
5755
|
+
*/
|
|
5756
|
+
this.Filters = null;
|
|
5757
|
+
|
|
5758
|
+
}
|
|
5759
|
+
|
|
5760
|
+
/**
|
|
5761
|
+
* @private
|
|
5762
|
+
*/
|
|
5763
|
+
deserialize(params) {
|
|
5764
|
+
if (!params) {
|
|
5765
|
+
return;
|
|
5766
|
+
}
|
|
5767
|
+
this.DisplayStrategy = 'DisplayStrategy' in params ? params.DisplayStrategy : null;
|
|
5768
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
5769
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
5770
|
+
this.OrderField = 'OrderField' in params ? params.OrderField : null;
|
|
5771
|
+
this.Asc = 'Asc' in params ? params.Asc : null;
|
|
5772
|
+
|
|
5773
|
+
if (params.Filters) {
|
|
5774
|
+
this.Filters = new Array();
|
|
5775
|
+
for (let z in params.Filters) {
|
|
5776
|
+
let obj = new Filters();
|
|
5777
|
+
obj.deserialize(params.Filters[z]);
|
|
5778
|
+
this.Filters.push(obj);
|
|
5258
5779
|
}
|
|
5259
5780
|
}
|
|
5260
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
5261
5781
|
|
|
5262
5782
|
}
|
|
5263
5783
|
}
|
|
@@ -5493,6 +6013,43 @@ If `MetaType` is `USER_CUSTOM_META`, `MetaDataJdbcUrl`, `MetaDataUser`, and `Met
|
|
|
5493
6013
|
}
|
|
5494
6014
|
}
|
|
5495
6015
|
|
|
6016
|
+
/**
|
|
6017
|
+
* Subnet information
|
|
6018
|
+
* @class
|
|
6019
|
+
*/
|
|
6020
|
+
class SubnetInfo extends AbstractModel {
|
|
6021
|
+
constructor(){
|
|
6022
|
+
super();
|
|
6023
|
+
|
|
6024
|
+
/**
|
|
6025
|
+
* Subnet information (name)
|
|
6026
|
+
Note: This field may return `null`, indicating that no valid value can be obtained.
|
|
6027
|
+
* @type {string || null}
|
|
6028
|
+
*/
|
|
6029
|
+
this.SubnetName = null;
|
|
6030
|
+
|
|
6031
|
+
/**
|
|
6032
|
+
* Subnet information (ID)
|
|
6033
|
+
Note: This field may return `null`, indicating that no valid value can be obtained.
|
|
6034
|
+
* @type {string || null}
|
|
6035
|
+
*/
|
|
6036
|
+
this.SubnetId = null;
|
|
6037
|
+
|
|
6038
|
+
}
|
|
6039
|
+
|
|
6040
|
+
/**
|
|
6041
|
+
* @private
|
|
6042
|
+
*/
|
|
6043
|
+
deserialize(params) {
|
|
6044
|
+
if (!params) {
|
|
6045
|
+
return;
|
|
6046
|
+
}
|
|
6047
|
+
this.SubnetName = 'SubnetName' in params ? params.SubnetName : null;
|
|
6048
|
+
this.SubnetId = 'SubnetId' in params ? params.SubnetId : null;
|
|
6049
|
+
|
|
6050
|
+
}
|
|
6051
|
+
}
|
|
6052
|
+
|
|
5496
6053
|
/**
|
|
5497
6054
|
* DescribeClusterNodes request structure.
|
|
5498
6055
|
* @class
|
|
@@ -5968,6 +6525,56 @@ Hadoop-Hbase
|
|
|
5968
6525
|
}
|
|
5969
6526
|
}
|
|
5970
6527
|
|
|
6528
|
+
/**
|
|
6529
|
+
* DescribeSLInstanceList response structure.
|
|
6530
|
+
* @class
|
|
6531
|
+
*/
|
|
6532
|
+
class DescribeSLInstanceListResponse extends AbstractModel {
|
|
6533
|
+
constructor(){
|
|
6534
|
+
super();
|
|
6535
|
+
|
|
6536
|
+
/**
|
|
6537
|
+
* Total number of qualified instances .
|
|
6538
|
+
* @type {number || null}
|
|
6539
|
+
*/
|
|
6540
|
+
this.TotalCnt = null;
|
|
6541
|
+
|
|
6542
|
+
/**
|
|
6543
|
+
* Instance information list. If pagination is applied, only the current page's instance information list is displayed.
|
|
6544
|
+
* @type {Array.<SLInstanceInfo> || null}
|
|
6545
|
+
*/
|
|
6546
|
+
this.InstancesList = null;
|
|
6547
|
+
|
|
6548
|
+
/**
|
|
6549
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
6550
|
+
* @type {string || null}
|
|
6551
|
+
*/
|
|
6552
|
+
this.RequestId = null;
|
|
6553
|
+
|
|
6554
|
+
}
|
|
6555
|
+
|
|
6556
|
+
/**
|
|
6557
|
+
* @private
|
|
6558
|
+
*/
|
|
6559
|
+
deserialize(params) {
|
|
6560
|
+
if (!params) {
|
|
6561
|
+
return;
|
|
6562
|
+
}
|
|
6563
|
+
this.TotalCnt = 'TotalCnt' in params ? params.TotalCnt : null;
|
|
6564
|
+
|
|
6565
|
+
if (params.InstancesList) {
|
|
6566
|
+
this.InstancesList = new Array();
|
|
6567
|
+
for (let z in params.InstancesList) {
|
|
6568
|
+
let obj = new SLInstanceInfo();
|
|
6569
|
+
obj.deserialize(params.InstancesList[z]);
|
|
6570
|
+
this.InstancesList.push(obj);
|
|
6571
|
+
}
|
|
6572
|
+
}
|
|
6573
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
6574
|
+
|
|
6575
|
+
}
|
|
6576
|
+
}
|
|
6577
|
+
|
|
5971
6578
|
/**
|
|
5972
6579
|
* Target resource specification
|
|
5973
6580
|
* @class
|
|
@@ -6017,6 +6624,170 @@ class UpdateInstanceSettings extends AbstractModel {
|
|
|
6017
6624
|
}
|
|
6018
6625
|
}
|
|
6019
6626
|
|
|
6627
|
+
/**
|
|
6628
|
+
* DescribeSLInstance response structure.
|
|
6629
|
+
* @class
|
|
6630
|
+
*/
|
|
6631
|
+
class DescribeSLInstanceResponse extends AbstractModel {
|
|
6632
|
+
constructor(){
|
|
6633
|
+
super();
|
|
6634
|
+
|
|
6635
|
+
/**
|
|
6636
|
+
* Character string identifier of the instance.
|
|
6637
|
+
* @type {string || null}
|
|
6638
|
+
*/
|
|
6639
|
+
this.InstanceId = null;
|
|
6640
|
+
|
|
6641
|
+
/**
|
|
6642
|
+
* Instance name.
|
|
6643
|
+
* @type {string || null}
|
|
6644
|
+
*/
|
|
6645
|
+
this.InstanceName = null;
|
|
6646
|
+
|
|
6647
|
+
/**
|
|
6648
|
+
* Instance billing mode. 0 indicates postpaid, i.e., pay-as-you-go; 1 indicates prepaid, i.e., monthly subscription.
|
|
6649
|
+
* @type {number || null}
|
|
6650
|
+
*/
|
|
6651
|
+
this.PayMode = null;
|
|
6652
|
+
|
|
6653
|
+
/**
|
|
6654
|
+
* Instance storage type.
|
|
6655
|
+
* @type {string || null}
|
|
6656
|
+
*/
|
|
6657
|
+
this.DiskType = null;
|
|
6658
|
+
|
|
6659
|
+
/**
|
|
6660
|
+
* Instance single-node disk capacity, in GB.
|
|
6661
|
+
* @type {number || null}
|
|
6662
|
+
*/
|
|
6663
|
+
this.DiskSize = null;
|
|
6664
|
+
|
|
6665
|
+
/**
|
|
6666
|
+
* Instance node specifications.
|
|
6667
|
+
* @type {string || null}
|
|
6668
|
+
*/
|
|
6669
|
+
this.NodeType = null;
|
|
6670
|
+
|
|
6671
|
+
/**
|
|
6672
|
+
* Detailed configuration of the instance AZ, including the AZ name, VPC information, and number of nodes.
|
|
6673
|
+
* @type {Array.<ZoneSetting> || null}
|
|
6674
|
+
*/
|
|
6675
|
+
this.ZoneSettings = null;
|
|
6676
|
+
|
|
6677
|
+
/**
|
|
6678
|
+
* List of tags bound to the instance.
|
|
6679
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6680
|
+
* @type {Array.<Tag> || null}
|
|
6681
|
+
*/
|
|
6682
|
+
this.Tags = null;
|
|
6683
|
+
|
|
6684
|
+
/**
|
|
6685
|
+
* Numeric identifier of the instance.
|
|
6686
|
+
* @type {number || null}
|
|
6687
|
+
*/
|
|
6688
|
+
this.ClusterId = null;
|
|
6689
|
+
|
|
6690
|
+
/**
|
|
6691
|
+
* Instance region ID.
|
|
6692
|
+
* @type {number || null}
|
|
6693
|
+
*/
|
|
6694
|
+
this.RegionId = null;
|
|
6695
|
+
|
|
6696
|
+
/**
|
|
6697
|
+
* Primary AZ of the instance.
|
|
6698
|
+
* @type {string || null}
|
|
6699
|
+
*/
|
|
6700
|
+
this.Zone = null;
|
|
6701
|
+
|
|
6702
|
+
/**
|
|
6703
|
+
* Instance expiration time. For post-paid instances, the API returns 0000-00-00 00:00:00.
|
|
6704
|
+
* @type {string || null}
|
|
6705
|
+
*/
|
|
6706
|
+
this.ExpireTime = null;
|
|
6707
|
+
|
|
6708
|
+
/**
|
|
6709
|
+
* Instance isolation time. For instances that are not isolated, the API returns 0000-00-00 00:00:00.
|
|
6710
|
+
* @type {string || null}
|
|
6711
|
+
*/
|
|
6712
|
+
this.IsolateTime = null;
|
|
6713
|
+
|
|
6714
|
+
/**
|
|
6715
|
+
* Instance creation time.
|
|
6716
|
+
* @type {string || null}
|
|
6717
|
+
*/
|
|
6718
|
+
this.CreateTime = null;
|
|
6719
|
+
|
|
6720
|
+
/**
|
|
6721
|
+
* Instance status code: -2: "TERMINATED", 2: "RUNNING", 14: "TERMINATING", 19: "ISOLATING", 22: "ADJUSTING", and 201: "ISOLATED".
|
|
6722
|
+
* @type {number || null}
|
|
6723
|
+
*/
|
|
6724
|
+
this.Status = null;
|
|
6725
|
+
|
|
6726
|
+
/**
|
|
6727
|
+
* Auto-renewal flag. 0: notify before expiration but do not auto-renew; 1: notify before expiration and auto-renew; and 2: do not notify before expiration and do not auto-renew. If the business does not support renewal, the value is 0.
|
|
6728
|
+
* @type {number || null}
|
|
6729
|
+
*/
|
|
6730
|
+
this.AutoRenewFlag = null;
|
|
6731
|
+
|
|
6732
|
+
/**
|
|
6733
|
+
* Total number of instance nodes.
|
|
6734
|
+
* @type {number || null}
|
|
6735
|
+
*/
|
|
6736
|
+
this.NodeNum = null;
|
|
6737
|
+
|
|
6738
|
+
/**
|
|
6739
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
6740
|
+
* @type {string || null}
|
|
6741
|
+
*/
|
|
6742
|
+
this.RequestId = null;
|
|
6743
|
+
|
|
6744
|
+
}
|
|
6745
|
+
|
|
6746
|
+
/**
|
|
6747
|
+
* @private
|
|
6748
|
+
*/
|
|
6749
|
+
deserialize(params) {
|
|
6750
|
+
if (!params) {
|
|
6751
|
+
return;
|
|
6752
|
+
}
|
|
6753
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
6754
|
+
this.InstanceName = 'InstanceName' in params ? params.InstanceName : null;
|
|
6755
|
+
this.PayMode = 'PayMode' in params ? params.PayMode : null;
|
|
6756
|
+
this.DiskType = 'DiskType' in params ? params.DiskType : null;
|
|
6757
|
+
this.DiskSize = 'DiskSize' in params ? params.DiskSize : null;
|
|
6758
|
+
this.NodeType = 'NodeType' in params ? params.NodeType : null;
|
|
6759
|
+
|
|
6760
|
+
if (params.ZoneSettings) {
|
|
6761
|
+
this.ZoneSettings = new Array();
|
|
6762
|
+
for (let z in params.ZoneSettings) {
|
|
6763
|
+
let obj = new ZoneSetting();
|
|
6764
|
+
obj.deserialize(params.ZoneSettings[z]);
|
|
6765
|
+
this.ZoneSettings.push(obj);
|
|
6766
|
+
}
|
|
6767
|
+
}
|
|
6768
|
+
|
|
6769
|
+
if (params.Tags) {
|
|
6770
|
+
this.Tags = new Array();
|
|
6771
|
+
for (let z in params.Tags) {
|
|
6772
|
+
let obj = new Tag();
|
|
6773
|
+
obj.deserialize(params.Tags[z]);
|
|
6774
|
+
this.Tags.push(obj);
|
|
6775
|
+
}
|
|
6776
|
+
}
|
|
6777
|
+
this.ClusterId = 'ClusterId' in params ? params.ClusterId : null;
|
|
6778
|
+
this.RegionId = 'RegionId' in params ? params.RegionId : null;
|
|
6779
|
+
this.Zone = 'Zone' in params ? params.Zone : null;
|
|
6780
|
+
this.ExpireTime = 'ExpireTime' in params ? params.ExpireTime : null;
|
|
6781
|
+
this.IsolateTime = 'IsolateTime' in params ? params.IsolateTime : null;
|
|
6782
|
+
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
6783
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
6784
|
+
this.AutoRenewFlag = 'AutoRenewFlag' in params ? params.AutoRenewFlag : null;
|
|
6785
|
+
this.NodeNum = 'NodeNum' in params ? params.NodeNum : null;
|
|
6786
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
6787
|
+
|
|
6788
|
+
}
|
|
6789
|
+
}
|
|
6790
|
+
|
|
6020
6791
|
/**
|
|
6021
6792
|
* The bootstrap action.
|
|
6022
6793
|
* @class
|
|
@@ -6147,6 +6918,34 @@ class DescribeInstancesRequest extends AbstractModel {
|
|
|
6147
6918
|
}
|
|
6148
6919
|
}
|
|
6149
6920
|
|
|
6921
|
+
/**
|
|
6922
|
+
* TerminateSLInstance response structure.
|
|
6923
|
+
* @class
|
|
6924
|
+
*/
|
|
6925
|
+
class TerminateSLInstanceResponse extends AbstractModel {
|
|
6926
|
+
constructor(){
|
|
6927
|
+
super();
|
|
6928
|
+
|
|
6929
|
+
/**
|
|
6930
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
6931
|
+
* @type {string || null}
|
|
6932
|
+
*/
|
|
6933
|
+
this.RequestId = null;
|
|
6934
|
+
|
|
6935
|
+
}
|
|
6936
|
+
|
|
6937
|
+
/**
|
|
6938
|
+
* @private
|
|
6939
|
+
*/
|
|
6940
|
+
deserialize(params) {
|
|
6941
|
+
if (!params) {
|
|
6942
|
+
return;
|
|
6943
|
+
}
|
|
6944
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
6945
|
+
|
|
6946
|
+
}
|
|
6947
|
+
}
|
|
6948
|
+
|
|
6150
6949
|
/**
|
|
6151
6950
|
* InquiryPriceUpdateInstance request structure.
|
|
6152
6951
|
* @class
|
|
@@ -6544,24 +7343,24 @@ class DescribeInstancesListResponse extends AbstractModel {
|
|
|
6544
7343
|
}
|
|
6545
7344
|
|
|
6546
7345
|
/**
|
|
6547
|
-
*
|
|
7346
|
+
* Serverless HBase monthly subscription duration
|
|
6548
7347
|
* @class
|
|
6549
7348
|
*/
|
|
6550
|
-
class
|
|
7349
|
+
class Period extends AbstractModel {
|
|
6551
7350
|
constructor(){
|
|
6552
7351
|
super();
|
|
6553
7352
|
|
|
6554
7353
|
/**
|
|
6555
|
-
*
|
|
6556
|
-
* @type {
|
|
7354
|
+
* Time span.
|
|
7355
|
+
* @type {number || null}
|
|
6557
7356
|
*/
|
|
6558
|
-
this.
|
|
7357
|
+
this.TimeSpan = null;
|
|
6559
7358
|
|
|
6560
7359
|
/**
|
|
6561
|
-
*
|
|
7360
|
+
* Time unit, "m" stands for month.
|
|
6562
7361
|
* @type {string || null}
|
|
6563
7362
|
*/
|
|
6564
|
-
this.
|
|
7363
|
+
this.TimeUnit = null;
|
|
6565
7364
|
|
|
6566
7365
|
}
|
|
6567
7366
|
|
|
@@ -6572,45 +7371,85 @@ class VPCSettings extends AbstractModel {
|
|
|
6572
7371
|
if (!params) {
|
|
6573
7372
|
return;
|
|
6574
7373
|
}
|
|
6575
|
-
this.
|
|
6576
|
-
this.
|
|
7374
|
+
this.TimeSpan = 'TimeSpan' in params ? params.TimeSpan : null;
|
|
7375
|
+
this.TimeUnit = 'TimeUnit' in params ? params.TimeUnit : null;
|
|
6577
7376
|
|
|
6578
7377
|
}
|
|
6579
7378
|
}
|
|
6580
7379
|
|
|
6581
7380
|
/**
|
|
6582
|
-
*
|
|
7381
|
+
* DescribeEmrApplicationStatics request structure.
|
|
6583
7382
|
* @class
|
|
6584
7383
|
*/
|
|
6585
|
-
class
|
|
7384
|
+
class DescribeEmrApplicationStaticsRequest extends AbstractModel {
|
|
6586
7385
|
constructor(){
|
|
6587
7386
|
super();
|
|
6588
7387
|
|
|
6589
7388
|
/**
|
|
6590
|
-
*
|
|
7389
|
+
* Cluster ID
|
|
7390
|
+
* @type {string || null}
|
|
7391
|
+
*/
|
|
7392
|
+
this.InstanceId = null;
|
|
7393
|
+
|
|
7394
|
+
/**
|
|
7395
|
+
* Start time in the format of timestamp. Unit: seconds.
|
|
6591
7396
|
* @type {number || null}
|
|
6592
7397
|
*/
|
|
6593
|
-
this.
|
|
7398
|
+
this.StartTime = null;
|
|
6594
7399
|
|
|
6595
7400
|
/**
|
|
6596
|
-
*
|
|
6597
|
-
|
|
6598
|
-
* @type {Array.<ClusterInstancesInfo> || null}
|
|
7401
|
+
* End time in the format of timestamp. Unit: seconds.
|
|
7402
|
+
* @type {number || null}
|
|
6599
7403
|
*/
|
|
6600
|
-
this.
|
|
7404
|
+
this.EndTime = null;
|
|
6601
7405
|
|
|
6602
7406
|
/**
|
|
6603
|
-
*
|
|
6604
|
-
Note: this field may return null, indicating that no valid values can be obtained.
|
|
7407
|
+
* Queue name used for filtering
|
|
6605
7408
|
* @type {Array.<string> || null}
|
|
6606
7409
|
*/
|
|
6607
|
-
this.
|
|
7410
|
+
this.Queues = null;
|
|
6608
7411
|
|
|
6609
7412
|
/**
|
|
6610
|
-
*
|
|
7413
|
+
* Username used for filtering
|
|
7414
|
+
* @type {Array.<string> || null}
|
|
7415
|
+
*/
|
|
7416
|
+
this.Users = null;
|
|
7417
|
+
|
|
7418
|
+
/**
|
|
7419
|
+
* Application type used for filtering
|
|
7420
|
+
* @type {Array.<string> || null}
|
|
7421
|
+
*/
|
|
7422
|
+
this.ApplicationTypes = null;
|
|
7423
|
+
|
|
7424
|
+
/**
|
|
7425
|
+
* Group field. Valid values: `queue`, `user`, and `applicationType`.
|
|
7426
|
+
* @type {Array.<string> || null}
|
|
7427
|
+
*/
|
|
7428
|
+
this.GroupBy = null;
|
|
7429
|
+
|
|
7430
|
+
/**
|
|
7431
|
+
* Sorting field. Valid values: `sumMemorySeconds`, `sumVCoreSeconds`, `sumHDFSBytesWritten`, and `sumHDFSBytesRead`.
|
|
6611
7432
|
* @type {string || null}
|
|
6612
7433
|
*/
|
|
6613
|
-
this.
|
|
7434
|
+
this.OrderBy = null;
|
|
7435
|
+
|
|
7436
|
+
/**
|
|
7437
|
+
* Order type. Valid values: `0` (descending) and `1`(ascending).
|
|
7438
|
+
* @type {number || null}
|
|
7439
|
+
*/
|
|
7440
|
+
this.IsAsc = null;
|
|
7441
|
+
|
|
7442
|
+
/**
|
|
7443
|
+
* Page number
|
|
7444
|
+
* @type {number || null}
|
|
7445
|
+
*/
|
|
7446
|
+
this.Offset = null;
|
|
7447
|
+
|
|
7448
|
+
/**
|
|
7449
|
+
* Page limit
|
|
7450
|
+
* @type {number || null}
|
|
7451
|
+
*/
|
|
7452
|
+
this.Limit = null;
|
|
6614
7453
|
|
|
6615
7454
|
}
|
|
6616
7455
|
|
|
@@ -6621,18 +7460,17 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
6621
7460
|
if (!params) {
|
|
6622
7461
|
return;
|
|
6623
7462
|
}
|
|
6624
|
-
this.
|
|
6625
|
-
|
|
6626
|
-
|
|
6627
|
-
|
|
6628
|
-
|
|
6629
|
-
|
|
6630
|
-
|
|
6631
|
-
|
|
6632
|
-
|
|
6633
|
-
|
|
6634
|
-
this.
|
|
6635
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
7463
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
7464
|
+
this.StartTime = 'StartTime' in params ? params.StartTime : null;
|
|
7465
|
+
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
7466
|
+
this.Queues = 'Queues' in params ? params.Queues : null;
|
|
7467
|
+
this.Users = 'Users' in params ? params.Users : null;
|
|
7468
|
+
this.ApplicationTypes = 'ApplicationTypes' in params ? params.ApplicationTypes : null;
|
|
7469
|
+
this.GroupBy = 'GroupBy' in params ? params.GroupBy : null;
|
|
7470
|
+
this.OrderBy = 'OrderBy' in params ? params.OrderBy : null;
|
|
7471
|
+
this.IsAsc = 'IsAsc' in params ? params.IsAsc : null;
|
|
7472
|
+
this.Offset = 'Offset' in params ? params.Offset : null;
|
|
7473
|
+
this.Limit = 'Limit' in params ? params.Limit : null;
|
|
6636
7474
|
|
|
6637
7475
|
}
|
|
6638
7476
|
}
|
|
@@ -6919,36 +7757,24 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
6919
7757
|
}
|
|
6920
7758
|
|
|
6921
7759
|
/**
|
|
6922
|
-
*
|
|
7760
|
+
* ModifyResourcesTags request structure.
|
|
6923
7761
|
* @class
|
|
6924
7762
|
*/
|
|
6925
|
-
class
|
|
7763
|
+
class ModifyResourcesTagsRequest extends AbstractModel {
|
|
6926
7764
|
constructor(){
|
|
6927
7765
|
super();
|
|
6928
7766
|
|
|
6929
7767
|
/**
|
|
6930
|
-
*
|
|
6931
|
-
* @type {string || null}
|
|
6932
|
-
*/
|
|
6933
|
-
this.ResourceId = null;
|
|
6934
|
-
|
|
6935
|
-
/**
|
|
6936
|
-
* The price formula
|
|
7768
|
+
* Tag type. Valid values: Cluster and Node
|
|
6937
7769
|
* @type {string || null}
|
|
6938
7770
|
*/
|
|
6939
|
-
this.
|
|
6940
|
-
|
|
6941
|
-
/**
|
|
6942
|
-
* The original price
|
|
6943
|
-
* @type {number || null}
|
|
6944
|
-
*/
|
|
6945
|
-
this.OriginalCost = null;
|
|
7771
|
+
this.ModifyType = null;
|
|
6946
7772
|
|
|
6947
7773
|
/**
|
|
6948
|
-
*
|
|
6949
|
-
* @type {
|
|
7774
|
+
* Tag information
|
|
7775
|
+
* @type {Array.<ModifyResourceTags> || null}
|
|
6950
7776
|
*/
|
|
6951
|
-
this.
|
|
7777
|
+
this.ModifyResourceTagsInfoList = null;
|
|
6952
7778
|
|
|
6953
7779
|
}
|
|
6954
7780
|
|
|
@@ -6959,10 +7785,16 @@ class PriceDetail extends AbstractModel {
|
|
|
6959
7785
|
if (!params) {
|
|
6960
7786
|
return;
|
|
6961
7787
|
}
|
|
6962
|
-
this.
|
|
6963
|
-
|
|
6964
|
-
|
|
6965
|
-
|
|
7788
|
+
this.ModifyType = 'ModifyType' in params ? params.ModifyType : null;
|
|
7789
|
+
|
|
7790
|
+
if (params.ModifyResourceTagsInfoList) {
|
|
7791
|
+
this.ModifyResourceTagsInfoList = new Array();
|
|
7792
|
+
for (let z in params.ModifyResourceTagsInfoList) {
|
|
7793
|
+
let obj = new ModifyResourceTags();
|
|
7794
|
+
obj.deserialize(params.ModifyResourceTagsInfoList[z]);
|
|
7795
|
+
this.ModifyResourceTagsInfoList.push(obj);
|
|
7796
|
+
}
|
|
7797
|
+
}
|
|
6966
7798
|
|
|
6967
7799
|
}
|
|
6968
7800
|
}
|
|
@@ -7126,6 +7958,34 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
7126
7958
|
}
|
|
7127
7959
|
}
|
|
7128
7960
|
|
|
7961
|
+
/**
|
|
7962
|
+
* DescribeSLInstance request structure.
|
|
7963
|
+
* @class
|
|
7964
|
+
*/
|
|
7965
|
+
class DescribeSLInstanceRequest extends AbstractModel {
|
|
7966
|
+
constructor(){
|
|
7967
|
+
super();
|
|
7968
|
+
|
|
7969
|
+
/**
|
|
7970
|
+
* Instance unique identifier (string).
|
|
7971
|
+
* @type {string || null}
|
|
7972
|
+
*/
|
|
7973
|
+
this.InstanceId = null;
|
|
7974
|
+
|
|
7975
|
+
}
|
|
7976
|
+
|
|
7977
|
+
/**
|
|
7978
|
+
* @private
|
|
7979
|
+
*/
|
|
7980
|
+
deserialize(params) {
|
|
7981
|
+
if (!params) {
|
|
7982
|
+
return;
|
|
7983
|
+
}
|
|
7984
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
7985
|
+
|
|
7986
|
+
}
|
|
7987
|
+
}
|
|
7988
|
+
|
|
7129
7989
|
/**
|
|
7130
7990
|
* User-created Hive-MetaDB instance information
|
|
7131
7991
|
* @class
|
|
@@ -7908,6 +8768,34 @@ class SoftDependInfo extends AbstractModel {
|
|
|
7908
8768
|
}
|
|
7909
8769
|
}
|
|
7910
8770
|
|
|
8771
|
+
/**
|
|
8772
|
+
* TerminateSLInstance request structure.
|
|
8773
|
+
* @class
|
|
8774
|
+
*/
|
|
8775
|
+
class TerminateSLInstanceRequest extends AbstractModel {
|
|
8776
|
+
constructor(){
|
|
8777
|
+
super();
|
|
8778
|
+
|
|
8779
|
+
/**
|
|
8780
|
+
* Instance unique identifier (string).
|
|
8781
|
+
* @type {string || null}
|
|
8782
|
+
*/
|
|
8783
|
+
this.InstanceId = null;
|
|
8784
|
+
|
|
8785
|
+
}
|
|
8786
|
+
|
|
8787
|
+
/**
|
|
8788
|
+
* @private
|
|
8789
|
+
*/
|
|
8790
|
+
deserialize(params) {
|
|
8791
|
+
if (!params) {
|
|
8792
|
+
return;
|
|
8793
|
+
}
|
|
8794
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
8795
|
+
|
|
8796
|
+
}
|
|
8797
|
+
}
|
|
8798
|
+
|
|
7911
8799
|
/**
|
|
7912
8800
|
* InquiryPriceScaleOutInstance request structure.
|
|
7913
8801
|
* @class
|
|
@@ -8023,6 +8911,34 @@ class InquiryPriceScaleOutInstanceRequest extends AbstractModel {
|
|
|
8023
8911
|
}
|
|
8024
8912
|
}
|
|
8025
8913
|
|
|
8914
|
+
/**
|
|
8915
|
+
* ModifySLInstance response structure.
|
|
8916
|
+
* @class
|
|
8917
|
+
*/
|
|
8918
|
+
class ModifySLInstanceResponse extends AbstractModel {
|
|
8919
|
+
constructor(){
|
|
8920
|
+
super();
|
|
8921
|
+
|
|
8922
|
+
/**
|
|
8923
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
8924
|
+
* @type {string || null}
|
|
8925
|
+
*/
|
|
8926
|
+
this.RequestId = null;
|
|
8927
|
+
|
|
8928
|
+
}
|
|
8929
|
+
|
|
8930
|
+
/**
|
|
8931
|
+
* @private
|
|
8932
|
+
*/
|
|
8933
|
+
deserialize(params) {
|
|
8934
|
+
if (!params) {
|
|
8935
|
+
return;
|
|
8936
|
+
}
|
|
8937
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
8938
|
+
|
|
8939
|
+
}
|
|
8940
|
+
}
|
|
8941
|
+
|
|
8026
8942
|
/**
|
|
8027
8943
|
* Resource details
|
|
8028
8944
|
* @class
|
|
@@ -8361,6 +9277,34 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
8361
9277
|
}
|
|
8362
9278
|
}
|
|
8363
9279
|
|
|
9280
|
+
/**
|
|
9281
|
+
* ModifySLInstanceBasic response structure.
|
|
9282
|
+
* @class
|
|
9283
|
+
*/
|
|
9284
|
+
class ModifySLInstanceBasicResponse extends AbstractModel {
|
|
9285
|
+
constructor(){
|
|
9286
|
+
super();
|
|
9287
|
+
|
|
9288
|
+
/**
|
|
9289
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
9290
|
+
* @type {string || null}
|
|
9291
|
+
*/
|
|
9292
|
+
this.RequestId = null;
|
|
9293
|
+
|
|
9294
|
+
}
|
|
9295
|
+
|
|
9296
|
+
/**
|
|
9297
|
+
* @private
|
|
9298
|
+
*/
|
|
9299
|
+
deserialize(params) {
|
|
9300
|
+
if (!params) {
|
|
9301
|
+
return;
|
|
9302
|
+
}
|
|
9303
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
9304
|
+
|
|
9305
|
+
}
|
|
9306
|
+
}
|
|
9307
|
+
|
|
8364
9308
|
/**
|
|
8365
9309
|
* InquiryPriceScaleOutInstance response structure.
|
|
8366
9310
|
* @class
|
|
@@ -9291,13 +10235,15 @@ module.exports = {
|
|
|
9291
10235
|
DiskSpecInfo: DiskSpecInfo,
|
|
9292
10236
|
HiveQuery: HiveQuery,
|
|
9293
10237
|
KeyValue: KeyValue,
|
|
9294
|
-
|
|
10238
|
+
DescribeInstancesResponse: DescribeInstancesResponse,
|
|
9295
10239
|
UserManagerFilter: UserManagerFilter,
|
|
9296
10240
|
DynamicPodSpec: DynamicPodSpec,
|
|
10241
|
+
ModifySLInstanceBasicRequest: ModifySLInstanceBasicRequest,
|
|
10242
|
+
SLInstanceInfo: SLInstanceInfo,
|
|
9297
10243
|
ModifyUserManagerPwdRequest: ModifyUserManagerPwdRequest,
|
|
9298
10244
|
COSSettings: COSSettings,
|
|
9299
10245
|
ClusterInstancesInfo: ClusterInstancesInfo,
|
|
9300
|
-
|
|
10246
|
+
CreateSLInstanceRequest: CreateSLInstanceRequest,
|
|
9301
10247
|
ScaleOutInstanceRequest: ScaleOutInstanceRequest,
|
|
9302
10248
|
ZoneDetailPriceResult: ZoneDetailPriceResult,
|
|
9303
10249
|
PodNewSpec: PodNewSpec,
|
|
@@ -9310,8 +10256,10 @@ module.exports = {
|
|
|
9310
10256
|
EmrListInstance: EmrListInstance,
|
|
9311
10257
|
AddUsersForUserManagerResponse: AddUsersForUserManagerResponse,
|
|
9312
10258
|
EmrProductConfigOutter: EmrProductConfigOutter,
|
|
10259
|
+
VPCSettings: VPCSettings,
|
|
9313
10260
|
CustomServiceDefine: CustomServiceDefine,
|
|
9314
10261
|
TerminateTasksResponse: TerminateTasksResponse,
|
|
10262
|
+
PrePaySetting: PrePaySetting,
|
|
9315
10263
|
PartDetailPriceItem: PartDetailPriceItem,
|
|
9316
10264
|
DependService: DependService,
|
|
9317
10265
|
PodSpec: PodSpec,
|
|
@@ -9321,6 +10269,7 @@ module.exports = {
|
|
|
9321
10269
|
TerminateInstanceRequest: TerminateInstanceRequest,
|
|
9322
10270
|
AutoScaleRecord: AutoScaleRecord,
|
|
9323
10271
|
DescribeResourceScheduleRequest: DescribeResourceScheduleRequest,
|
|
10272
|
+
ZoneSetting: ZoneSetting,
|
|
9324
10273
|
Placement: Placement,
|
|
9325
10274
|
PodParameter: PodParameter,
|
|
9326
10275
|
AllNodeResourceSpec: AllNodeResourceSpec,
|
|
@@ -9333,6 +10282,7 @@ module.exports = {
|
|
|
9333
10282
|
SearchItem: SearchItem,
|
|
9334
10283
|
ModifyResourcesTagsResponse: ModifyResourcesTagsResponse,
|
|
9335
10284
|
ScaleOutServiceConfGroupsInfo: ScaleOutServiceConfGroupsInfo,
|
|
10285
|
+
CreateSLInstanceResponse: CreateSLInstanceResponse,
|
|
9336
10286
|
MultiZoneSetting: MultiZoneSetting,
|
|
9337
10287
|
TerminateInstanceResponse: TerminateInstanceResponse,
|
|
9338
10288
|
InquiryPriceUpdateInstanceResponse: InquiryPriceUpdateInstanceResponse,
|
|
@@ -9340,7 +10290,7 @@ module.exports = {
|
|
|
9340
10290
|
PersistentVolumeContext: PersistentVolumeContext,
|
|
9341
10291
|
ScaleOutNodeConfig: ScaleOutNodeConfig,
|
|
9342
10292
|
ModifyResourceTags: ModifyResourceTags,
|
|
9343
|
-
|
|
10293
|
+
PriceDetail: PriceDetail,
|
|
9344
10294
|
DescribeResourceScheduleResponse: DescribeResourceScheduleResponse,
|
|
9345
10295
|
DescribeHiveQueriesResponse: DescribeHiveQueriesResponse,
|
|
9346
10296
|
NodeRenewPriceDetail: NodeRenewPriceDetail,
|
|
@@ -9348,31 +10298,38 @@ module.exports = {
|
|
|
9348
10298
|
ModifyResourceSchedulerRequest: ModifyResourceSchedulerRequest,
|
|
9349
10299
|
LoginSettings: LoginSettings,
|
|
9350
10300
|
PriceResource: PriceResource,
|
|
10301
|
+
ModifySLInstanceRequest: ModifySLInstanceRequest,
|
|
9351
10302
|
DescribeHiveQueriesRequest: DescribeHiveQueriesRequest,
|
|
9352
10303
|
CreateClusterResponse: CreateClusterResponse,
|
|
9353
10304
|
DescribeAutoScaleRecordsResponse: DescribeAutoScaleRecordsResponse,
|
|
10305
|
+
DescribeSLInstanceListRequest: DescribeSLInstanceListRequest,
|
|
9354
10306
|
CreateClusterRequest: CreateClusterRequest,
|
|
10307
|
+
SubnetInfo: SubnetInfo,
|
|
9355
10308
|
DescribeClusterNodesRequest: DescribeClusterNodesRequest,
|
|
9356
10309
|
ComponentBasicRestartInfo: ComponentBasicRestartInfo,
|
|
9357
10310
|
CreateInstanceRequest: CreateInstanceRequest,
|
|
10311
|
+
DescribeSLInstanceListResponse: DescribeSLInstanceListResponse,
|
|
9358
10312
|
UpdateInstanceSettings: UpdateInstanceSettings,
|
|
10313
|
+
DescribeSLInstanceResponse: DescribeSLInstanceResponse,
|
|
9359
10314
|
ScriptBootstrapActionConfig: ScriptBootstrapActionConfig,
|
|
9360
10315
|
DescribeInstancesRequest: DescribeInstancesRequest,
|
|
10316
|
+
TerminateSLInstanceResponse: TerminateSLInstanceResponse,
|
|
9361
10317
|
InquiryPriceUpdateInstanceRequest: InquiryPriceUpdateInstanceRequest,
|
|
9362
10318
|
TerminateClusterNodesRequest: TerminateClusterNodesRequest,
|
|
9363
10319
|
DescribeInstancesListRequest: DescribeInstancesListRequest,
|
|
9364
10320
|
OutterResource: OutterResource,
|
|
9365
10321
|
OpScope: OpScope,
|
|
9366
10322
|
DescribeInstancesListResponse: DescribeInstancesListResponse,
|
|
9367
|
-
|
|
9368
|
-
|
|
10323
|
+
Period: Period,
|
|
10324
|
+
DescribeEmrApplicationStaticsRequest: DescribeEmrApplicationStaticsRequest,
|
|
9369
10325
|
DescribeUsersForUserManagerResponse: DescribeUsersForUserManagerResponse,
|
|
9370
10326
|
InquiryPriceRenewInstanceRequest: InquiryPriceRenewInstanceRequest,
|
|
9371
10327
|
CdbInfo: CdbInfo,
|
|
9372
|
-
|
|
10328
|
+
ModifyResourcesTagsRequest: ModifyResourcesTagsRequest,
|
|
9373
10329
|
MultiDiskMC: MultiDiskMC,
|
|
9374
10330
|
AddUsersForUserManagerRequest: AddUsersForUserManagerRequest,
|
|
9375
10331
|
ZoneResourceConfiguration: ZoneResourceConfiguration,
|
|
10332
|
+
DescribeSLInstanceRequest: DescribeSLInstanceRequest,
|
|
9376
10333
|
CustomMetaInfo: CustomMetaInfo,
|
|
9377
10334
|
ApplicationStatics: ApplicationStatics,
|
|
9378
10335
|
InquiryPriceCreateInstanceRequest: InquiryPriceCreateInstanceRequest,
|
|
@@ -9384,11 +10341,14 @@ module.exports = {
|
|
|
9384
10341
|
PreExecuteFileSettings: PreExecuteFileSettings,
|
|
9385
10342
|
ClusterExternalServiceInfo: ClusterExternalServiceInfo,
|
|
9386
10343
|
SoftDependInfo: SoftDependInfo,
|
|
10344
|
+
TerminateSLInstanceRequest: TerminateSLInstanceRequest,
|
|
9387
10345
|
InquiryPriceScaleOutInstanceRequest: InquiryPriceScaleOutInstanceRequest,
|
|
10346
|
+
ModifySLInstanceResponse: ModifySLInstanceResponse,
|
|
9388
10347
|
Resource: Resource,
|
|
9389
10348
|
DescribeEmrApplicationStaticsResponse: DescribeEmrApplicationStaticsResponse,
|
|
9390
10349
|
CustomMetaDBInfo: CustomMetaDBInfo,
|
|
9391
10350
|
UserManagerUserBriefInfo: UserManagerUserBriefInfo,
|
|
10351
|
+
ModifySLInstanceBasicResponse: ModifySLInstanceBasicResponse,
|
|
9392
10352
|
InquiryPriceScaleOutInstanceResponse: InquiryPriceScaleOutInstanceResponse,
|
|
9393
10353
|
ModifyResourceSchedulerResponse: ModifyResourceSchedulerResponse,
|
|
9394
10354
|
VirtualPrivateCloud: VirtualPrivateCloud,
|