Add Request Param Ipv6AddressCount For API CreateLaunchTemplate AND CreateLaunchTemplateVersion.

This commit is contained in:
sdk-team
2021-12-20 12:20:55 +00:00
parent 85b4b44446
commit 52cbb112ba
8 changed files with 32 additions and 1 deletions

View File

@@ -82,6 +82,8 @@ public:
void setTag(const std::vector<Tag> &tag);
int getPeriod() const;
void setPeriod(int period);
int getIpv6AddressCount() const;
void setIpv6AddressCount(int ipv6AddressCount);
std::string getTemplateResourceGroupId() const;
void setTemplateResourceGroupId(const std::string &templateResourceGroupId);
long getOwnerId() const;
@@ -171,6 +173,7 @@ private:
std::vector<TemplateTag> templateTag_;
std::vector<Tag> tag_;
int period_;
int ipv6AddressCount_;
std::string templateResourceGroupId_;
long ownerId_;
std::string vSwitchId_;

View File

@@ -78,6 +78,8 @@ public:
void setPeriod(int period);
std::string getLaunchTemplateId() const;
void setLaunchTemplateId(const std::string &launchTemplateId);
int getIpv6AddressCount() const;
void setIpv6AddressCount(int ipv6AddressCount);
long getOwnerId() const;
void setOwnerId(long ownerId);
std::string getVSwitchId() const;
@@ -165,6 +167,7 @@ private:
std::vector<Tag> tag_;
int period_;
std::string launchTemplateId_;
int ipv6AddressCount_;
long ownerId_;
std::string vSwitchId_;
std::string spotStrategy_;

View File

@@ -75,6 +75,7 @@ namespace AlibabaCloud
std::string ramRoleName;
std::string systemDiskPerformanceLevel;
std::string networkType;
int ipv6AddressCount;
std::vector<NetworkInterface> networkInterfaces;
std::string imageId;
std::string systemDiskDiskName;