@alicloud/cs20151215 3.0.17 → 3.0.19
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 +1 -0
- package/dist/client.js +5 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +7 -0
package/dist/client.d.ts
CHANGED
package/dist/client.js
CHANGED
|
@@ -406,6 +406,7 @@ class CreateClusterRequest extends $tea.Model {
|
|
|
406
406
|
imageId: 'image_id',
|
|
407
407
|
imageType: 'image_type',
|
|
408
408
|
instances: 'instances',
|
|
409
|
+
ipStack: 'ip_stack',
|
|
409
410
|
isEnterpriseSecurityGroup: 'is_enterprise_security_group',
|
|
410
411
|
keepInstanceName: 'keep_instance_name',
|
|
411
412
|
keyPair: 'key_pair',
|
|
@@ -497,6 +498,7 @@ class CreateClusterRequest extends $tea.Model {
|
|
|
497
498
|
imageId: 'string',
|
|
498
499
|
imageType: 'string',
|
|
499
500
|
instances: { 'type': 'array', 'itemType': 'string' },
|
|
501
|
+
ipStack: 'string',
|
|
500
502
|
isEnterpriseSecurityGroup: 'boolean',
|
|
501
503
|
keepInstanceName: 'boolean',
|
|
502
504
|
keyPair: 'string',
|
|
@@ -7933,6 +7935,9 @@ class Client extends openapi_client_1.default {
|
|
|
7933
7935
|
if (!tea_util_1.default.isUnset(request.instances)) {
|
|
7934
7936
|
body["instances"] = request.instances;
|
|
7935
7937
|
}
|
|
7938
|
+
if (!tea_util_1.default.isUnset(request.ipStack)) {
|
|
7939
|
+
body["ip_stack"] = request.ipStack;
|
|
7940
|
+
}
|
|
7936
7941
|
if (!tea_util_1.default.isUnset(request.isEnterpriseSecurityGroup)) {
|
|
7937
7942
|
body["is_enterprise_security_group"] = request.isEnterpriseSecurityGroup;
|
|
7938
7943
|
}
|