ECS SDK Auto Released By hongsong.shs,Version:1.17.10

Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
This commit is contained in:
haowei.yao
2018-06-27 13:43:08 +08:00
parent 32f06474af
commit 9d5cbb556b
14 changed files with 127 additions and 9 deletions

View File

@@ -115,6 +115,8 @@ namespace AlibabaCloud
void setRequestId(const std::string& requestId);
std::string getTag2Value()const;
void setTag2Value(const std::string& tag2Value);
std::string getVpcId()const;
void setVpcId(const std::string& vpcId);
std::string getTag4Key()const;
void setTag4Key(const std::string& tag4Key);
std::string getPrimaryIpAddress()const;
@@ -163,6 +165,7 @@ namespace AlibabaCloud
std::string instanceId_;
std::string requestId_;
std::string tag2Value_;
std::string vpcId_;
std::string tag4Key_;
std::string primaryIpAddress_;
std::vector<std::string> networkInterfaceId_;

View File

@@ -41,6 +41,8 @@ namespace AlibabaCloud
void setResourceOwnerAccount(const std::string& resourceOwnerAccount);
std::string getOwnerAccount()const;
void setOwnerAccount(const std::string& ownerAccount);
std::string getAcceptLanguage()const;
void setAcceptLanguage(const std::string& acceptLanguage);
long getOwnerId()const;
void setOwnerId(long ownerId);
std::string getInstanceChargeType()const;
@@ -52,6 +54,7 @@ namespace AlibabaCloud
long resourceOwnerId_;
std::string resourceOwnerAccount_;
std::string ownerAccount_;
std::string acceptLanguage_;
long ownerId_;
std::string instanceChargeType_;
std::string resourceType_;

View File

@@ -36,6 +36,7 @@ namespace AlibabaCloud
{
std::string status;
std::string regionId;
std::string regionEndpoint;
std::string localName;
};

View File

@@ -67,8 +67,8 @@ namespace AlibabaCloud
void setApp_ip(const std::string& app_ip);
std::string getResourceOwnerAccount()const;
void setResourceOwnerAccount(const std::string& resourceOwnerAccount);
bool getWakeup()const;
void setWakeup(bool wakeup);
bool getWakeUp()const;
void setWakeUp(bool wakeUp);
std::string getOwnerAccount()const;
void setOwnerAccount(const std::string& ownerAccount);
std::string getCallerBid()const;
@@ -103,7 +103,7 @@ namespace AlibabaCloud
long callerUid_;
std::string app_ip_;
std::string resourceOwnerAccount_;
bool wakeup_;
bool wakeUp_;
std::string ownerAccount_;
std::string callerBid_;
long ownerId_;

View File

@@ -37,6 +37,8 @@ namespace AlibabaCloud
long getResourceOwnerId()const;
void setResourceOwnerId(long resourceOwnerId);
std::string getDiskChargeType()const;
void setDiskChargeType(const std::string& diskChargeType);
std::string getInstanceId()const;
void setInstanceId(const std::string& instanceId);
bool getAutoPay()const;
@@ -56,6 +58,7 @@ namespace AlibabaCloud
private:
long resourceOwnerId_;
std::string diskChargeType_;
std::string instanceId_;
bool autoPay_;
std::string resourceOwnerAccount_;

View File

@@ -95,6 +95,10 @@ namespace AlibabaCloud
void setTag(const std::vector<Tag>& tag);
long getCallerUid()const;
void setCallerUid(long callerUid);
int getAutoRenewPeriod()const;
void setAutoRenewPeriod(int autoRenewPeriod);
int getPeriod()const;
void setPeriod(int period);
bool getDryRun()const;
void setDryRun(bool dryRun);
std::string getLaunchTemplateId()const;
@@ -109,8 +113,12 @@ namespace AlibabaCloud
void setVSwitchId(const std::string& vSwitchId);
std::string getSpotStrategy()const;
void setSpotStrategy(const std::string& spotStrategy);
std::string getPeriodUnit()const;
void setPeriodUnit(const std::string& periodUnit);
std::string getInstanceName()const;
void setInstanceName(const std::string& instanceName);
bool getAutoRenew()const;
void setAutoRenew(bool autoRenew);
std::string getRequestId()const;
void setRequestId(const std::string& requestId);
std::string getInternetChargeType()const;
@@ -149,6 +157,8 @@ namespace AlibabaCloud
void setRequestContent(const std::string& requestContent);
std::string getInstanceType()const;
void setInstanceType(const std::string& instanceType);
std::string getInstanceChargeType()const;
void setInstanceChargeType(const std::string& instanceChargeType);
std::string getCallerUidEmail()const;
void setCallerUidEmail(const std::string& callerUidEmail);
std::vector<NetworkInterface> getNetworkInterface()const;
@@ -201,6 +211,8 @@ namespace AlibabaCloud
std::string callerBidEmail_;
std::vector<Tag> tag_;
long callerUid_;
int autoRenewPeriod_;
int period_;
bool dryRun_;
std::string launchTemplateId_;
long ownerId_;
@@ -208,7 +220,9 @@ namespace AlibabaCloud
bool security_transport_;
std::string vSwitchId_;
std::string spotStrategy_;
std::string periodUnit_;
std::string instanceName_;
bool autoRenew_;
std::string requestId_;
std::string internetChargeType_;
std::string zoneId_;
@@ -228,6 +242,7 @@ namespace AlibabaCloud
std::string regionId_;
std::string requestContent_;
std::string instanceType_;
std::string instanceChargeType_;
std::string callerUidEmail_;
std::vector<NetworkInterface> networkInterface_;
std::string app_ip_;