@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/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -484,6 +484,7 @@ export class CreateClusterRequest extends $tea.Model {
|
|
|
484
484
|
imageId?: string;
|
|
485
485
|
imageType?: string;
|
|
486
486
|
instances?: string[];
|
|
487
|
+
ipStack?: string;
|
|
487
488
|
isEnterpriseSecurityGroup?: boolean;
|
|
488
489
|
keepInstanceName?: boolean;
|
|
489
490
|
keyPair?: string;
|
|
@@ -573,6 +574,7 @@ export class CreateClusterRequest extends $tea.Model {
|
|
|
573
574
|
imageId: 'image_id',
|
|
574
575
|
imageType: 'image_type',
|
|
575
576
|
instances: 'instances',
|
|
577
|
+
ipStack: 'ip_stack',
|
|
576
578
|
isEnterpriseSecurityGroup: 'is_enterprise_security_group',
|
|
577
579
|
keepInstanceName: 'keep_instance_name',
|
|
578
580
|
keyPair: 'key_pair',
|
|
@@ -665,6 +667,7 @@ export class CreateClusterRequest extends $tea.Model {
|
|
|
665
667
|
imageId: 'string',
|
|
666
668
|
imageType: 'string',
|
|
667
669
|
instances: { 'type': 'array', 'itemType': 'string' },
|
|
670
|
+
ipStack: 'string',
|
|
668
671
|
isEnterpriseSecurityGroup: 'boolean',
|
|
669
672
|
keepInstanceName: 'boolean',
|
|
670
673
|
keyPair: 'string',
|
|
@@ -10113,6 +10116,10 @@ export default class Client extends OpenApi {
|
|
|
10113
10116
|
body["instances"] = request.instances;
|
|
10114
10117
|
}
|
|
10115
10118
|
|
|
10119
|
+
if (!Util.isUnset(request.ipStack)) {
|
|
10120
|
+
body["ip_stack"] = request.ipStack;
|
|
10121
|
+
}
|
|
10122
|
+
|
|
10116
10123
|
if (!Util.isUnset(request.isEnterpriseSecurityGroup)) {
|
|
10117
10124
|
body["is_enterprise_security_group"] = request.isEnterpriseSecurityGroup;
|
|
10118
10125
|
}
|