tencentcloud-sdk-nodejs-intl-en 3.0.918 → 3.0.920
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
CHANGED
|
@@ -7576,7 +7576,7 @@ class DescribeMachineGroupsResponse extends AbstractModel {
|
|
|
7576
7576
|
|
|
7577
7577
|
/**
|
|
7578
7578
|
* Machine group information list
|
|
7579
|
-
Note:
|
|
7579
|
+
Note: This field may return "null", indicating that no valid values can be obtained.
|
|
7580
7580
|
* @type {Array.<MachineGroupInfo> || null}
|
|
7581
7581
|
*/
|
|
7582
7582
|
this.MachineGroups = null;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.920";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -67,6 +67,7 @@ const MultiDisk = models.MultiDisk;
|
|
|
67
67
|
const PodNewParameter = models.PodNewParameter;
|
|
68
68
|
const SearchItem = models.SearchItem;
|
|
69
69
|
const ModifyResourcesTagsResponse = models.ModifyResourcesTagsResponse;
|
|
70
|
+
const ScaleOutServiceConfGroupsInfo = models.ScaleOutServiceConfGroupsInfo;
|
|
70
71
|
const MultiZoneSetting = models.MultiZoneSetting;
|
|
71
72
|
const TerminateInstanceResponse = models.TerminateInstanceResponse;
|
|
72
73
|
const InquiryPriceUpdateInstanceResponse = models.InquiryPriceUpdateInstanceResponse;
|
|
@@ -358,13 +358,13 @@ class ScaleOutClusterRequest extends AbstractModel {
|
|
|
358
358
|
this.ScriptBootstrapActionConfig = null;
|
|
359
359
|
|
|
360
360
|
/**
|
|
361
|
-
* The services to be deployed for new nodes. By default, new nodes will inherit services deployed for the current node type, including default optional services. This parameter only supports the inclusion of optional services. For example, if HDFS, YARN, and Impala have been deployed for existing task nodes, when using the API for task node scale-out without deploying Impala, only HDFS and YARN are included in with this parameter.
|
|
361
|
+
* The services to be deployed for new nodes. By default, new nodes will inherit services deployed for the current node type, including default optional services. This parameter only supports the inclusion of optional services. For example, if HDFS, YARN, and Impala have been deployed for existing task nodes, when using the API for task node scale-out without deploying Impala, only HDFS and YARN are included in with this parameter.
|
|
362
362
|
* @type {Array.<number> || null}
|
|
363
363
|
*/
|
|
364
364
|
this.SoftDeployInfo = null;
|
|
365
365
|
|
|
366
366
|
/**
|
|
367
|
-
* The processes to be deployed. All processes for services to be added are deployed by default. Deployed processes can be changed. For example, HDFS, YARN, and Impala have been deployed for current task nodes, and default services are DataNode, NodeManager, and ImpalaServer; if you want to change deployed processes, you can set this parameter to DataNode,NodeManager,ImpalaServerCoordinator or DataNode,NodeManager,ImpalaServerExecutor.
|
|
367
|
+
* The processes to be deployed. All processes for services to be added are deployed by default. Deployed processes can be changed. For example, HDFS, YARN, and Impala have been deployed for current task nodes, and default services are DataNode, NodeManager, and ImpalaServer; if you want to change deployed processes, you can set this parameter to DataNode,NodeManager,ImpalaServerCoordinator or DataNode,NodeManager,ImpalaServerExecutor.
|
|
368
368
|
* @type {Array.<number> || null}
|
|
369
369
|
*/
|
|
370
370
|
this.ServiceNodeInfo = null;
|
|
@@ -438,6 +438,12 @@ You can call the [DescribeDisasterRecoverGroups](https://intl.cloud.tencent.com/
|
|
|
438
438
|
*/
|
|
439
439
|
this.SubnetId = null;
|
|
440
440
|
|
|
441
|
+
/**
|
|
442
|
+
*
|
|
443
|
+
* @type {Array.<ScaleOutServiceConfGroupsInfo> || null}
|
|
444
|
+
*/
|
|
445
|
+
this.ScaleOutServiceConfGroupsInfo = null;
|
|
446
|
+
|
|
441
447
|
}
|
|
442
448
|
|
|
443
449
|
/**
|
|
@@ -503,6 +509,15 @@ You can call the [DescribeDisasterRecoverGroups](https://intl.cloud.tencent.com/
|
|
|
503
509
|
this.Zone = 'Zone' in params ? params.Zone : null;
|
|
504
510
|
this.SubnetId = 'SubnetId' in params ? params.SubnetId : null;
|
|
505
511
|
|
|
512
|
+
if (params.ScaleOutServiceConfGroupsInfo) {
|
|
513
|
+
this.ScaleOutServiceConfGroupsInfo = new Array();
|
|
514
|
+
for (let z in params.ScaleOutServiceConfGroupsInfo) {
|
|
515
|
+
let obj = new ScaleOutServiceConfGroupsInfo();
|
|
516
|
+
obj.deserialize(params.ScaleOutServiceConfGroupsInfo[z]);
|
|
517
|
+
this.ScaleOutServiceConfGroupsInfo.push(obj);
|
|
518
|
+
}
|
|
519
|
+
}
|
|
520
|
+
|
|
506
521
|
}
|
|
507
522
|
}
|
|
508
523
|
|
|
@@ -4045,6 +4060,41 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
4045
4060
|
}
|
|
4046
4061
|
}
|
|
4047
4062
|
|
|
4063
|
+
/**
|
|
4064
|
+
*
|
|
4065
|
+
* @class
|
|
4066
|
+
*/
|
|
4067
|
+
class ScaleOutServiceConfGroupsInfo extends AbstractModel {
|
|
4068
|
+
constructor(){
|
|
4069
|
+
super();
|
|
4070
|
+
|
|
4071
|
+
/**
|
|
4072
|
+
*
|
|
4073
|
+
* @type {string || null}
|
|
4074
|
+
*/
|
|
4075
|
+
this.ServiceComponentName = null;
|
|
4076
|
+
|
|
4077
|
+
/**
|
|
4078
|
+
*
|
|
4079
|
+
* @type {string || null}
|
|
4080
|
+
*/
|
|
4081
|
+
this.ConfGroupName = null;
|
|
4082
|
+
|
|
4083
|
+
}
|
|
4084
|
+
|
|
4085
|
+
/**
|
|
4086
|
+
* @private
|
|
4087
|
+
*/
|
|
4088
|
+
deserialize(params) {
|
|
4089
|
+
if (!params) {
|
|
4090
|
+
return;
|
|
4091
|
+
}
|
|
4092
|
+
this.ServiceComponentName = 'ServiceComponentName' in params ? params.ServiceComponentName : null;
|
|
4093
|
+
this.ConfGroupName = 'ConfGroupName' in params ? params.ConfGroupName : null;
|
|
4094
|
+
|
|
4095
|
+
}
|
|
4096
|
+
}
|
|
4097
|
+
|
|
4048
4098
|
/**
|
|
4049
4099
|
* Parameter information of each AZ
|
|
4050
4100
|
* @class
|
|
@@ -7394,7 +7444,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
7394
7444
|
this.FlowId = null;
|
|
7395
7445
|
|
|
7396
7446
|
/**
|
|
7397
|
-
* The unique request ID,
|
|
7447
|
+
* 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.
|
|
7398
7448
|
* @type {string || null}
|
|
7399
7449
|
*/
|
|
7400
7450
|
this.RequestId = null;
|
|
@@ -9075,6 +9125,7 @@ module.exports = {
|
|
|
9075
9125
|
PodNewParameter: PodNewParameter,
|
|
9076
9126
|
SearchItem: SearchItem,
|
|
9077
9127
|
ModifyResourcesTagsResponse: ModifyResourcesTagsResponse,
|
|
9128
|
+
ScaleOutServiceConfGroupsInfo: ScaleOutServiceConfGroupsInfo,
|
|
9078
9129
|
MultiZoneSetting: MultiZoneSetting,
|
|
9079
9130
|
TerminateInstanceResponse: TerminateInstanceResponse,
|
|
9080
9131
|
InquiryPriceUpdateInstanceResponse: InquiryPriceUpdateInstanceResponse,
|