ECS SDK Auto Released By hongchen,Version:1.35.1
Signed-off-by: haowei.yao <haowei.yao@alibaba-inc.com>
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2019-03-28 Version: 1.35.1
|
||||
1, Add multiple language support in DescribeZones
|
||||
2, Add gray parameter in CreateDisk
|
||||
|
||||
2019-03-28 Version: 1.35.0
|
||||
1, Add logo detect.
|
||||
|
||||
|
||||
@@ -74,6 +74,8 @@ namespace AlibabaCloud
|
||||
void setTag(const std::vector<Tag>& tag);
|
||||
std::string getKMSKeyId()const;
|
||||
void setKMSKeyId(const std::string& kMSKeyId);
|
||||
std::string getAdvancedFeatures()const;
|
||||
void setAdvancedFeatures(const std::string& advancedFeatures);
|
||||
|
||||
private:
|
||||
long resourceOwnerId_;
|
||||
@@ -93,6 +95,7 @@ namespace AlibabaCloud
|
||||
std::string zoneId_;
|
||||
std::vector<Tag> tag_;
|
||||
std::string kMSKeyId_;
|
||||
std::string advancedFeatures_;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -35,6 +35,8 @@ namespace AlibabaCloud
|
||||
DeleteSecurityGroupRequest();
|
||||
~DeleteSecurityGroupRequest();
|
||||
|
||||
std::string getSourceRegionId()const;
|
||||
void setSourceRegionId(const std::string& sourceRegionId);
|
||||
long getResourceOwnerId()const;
|
||||
void setResourceOwnerId(long resourceOwnerId);
|
||||
std::string getResourceOwnerAccount()const;
|
||||
@@ -49,6 +51,7 @@ namespace AlibabaCloud
|
||||
void setOwnerId(long ownerId);
|
||||
|
||||
private:
|
||||
std::string sourceRegionId_;
|
||||
long resourceOwnerId_;
|
||||
std::string resourceOwnerAccount_;
|
||||
std::string regionId_;
|
||||
|
||||
@@ -35,6 +35,8 @@ namespace AlibabaCloud
|
||||
DescribeZonesRequest();
|
||||
~DescribeZonesRequest();
|
||||
|
||||
std::string getSourceRegionId()const;
|
||||
void setSourceRegionId(const std::string& sourceRegionId);
|
||||
std::string getSpotStrategy()const;
|
||||
void setSpotStrategy(const std::string& spotStrategy);
|
||||
long getResourceOwnerId()const;
|
||||
@@ -45,6 +47,8 @@ namespace AlibabaCloud
|
||||
void setRegionId(const std::string& regionId);
|
||||
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;
|
||||
@@ -53,11 +57,13 @@ namespace AlibabaCloud
|
||||
void setVerbose(bool verbose);
|
||||
|
||||
private:
|
||||
std::string sourceRegionId_;
|
||||
std::string spotStrategy_;
|
||||
long resourceOwnerId_;
|
||||
std::string resourceOwnerAccount_;
|
||||
std::string regionId_;
|
||||
std::string ownerAccount_;
|
||||
std::string acceptLanguage_;
|
||||
long ownerId_;
|
||||
std::string instanceChargeType_;
|
||||
bool verbose_;
|
||||
|
||||
@@ -31,21 +31,21 @@ EcsClient::EcsClient(const Credentials &credentials, const ClientConfiguration &
|
||||
RpcServiceClient(SERVICE_NAME, std::make_shared<SimpleCredentialsProvider>(credentials), configuration)
|
||||
{
|
||||
auto locationClient = std::make_shared<LocationClient>(credentials, configuration);
|
||||
endpointProvider_ = std::make_shared<EndpointProvider>(locationClient, configuration.regionId(), SERVICE_NAME, "");
|
||||
endpointProvider_ = std::make_shared<EndpointProvider>(locationClient, configuration.regionId(), SERVICE_NAME, "ecs");
|
||||
}
|
||||
|
||||
EcsClient::EcsClient(const std::shared_ptr<CredentialsProvider>& credentialsProvider, const ClientConfiguration & configuration) :
|
||||
RpcServiceClient(SERVICE_NAME, credentialsProvider, configuration)
|
||||
{
|
||||
auto locationClient = std::make_shared<LocationClient>(credentialsProvider, configuration);
|
||||
endpointProvider_ = std::make_shared<EndpointProvider>(locationClient, configuration.regionId(), SERVICE_NAME, "");
|
||||
endpointProvider_ = std::make_shared<EndpointProvider>(locationClient, configuration.regionId(), SERVICE_NAME, "ecs");
|
||||
}
|
||||
|
||||
EcsClient::EcsClient(const std::string & accessKeyId, const std::string & accessKeySecret, const ClientConfiguration & configuration) :
|
||||
RpcServiceClient(SERVICE_NAME, std::make_shared<SimpleCredentialsProvider>(accessKeyId, accessKeySecret), configuration)
|
||||
{
|
||||
auto locationClient = std::make_shared<LocationClient>(accessKeyId, accessKeySecret, configuration);
|
||||
endpointProvider_ = std::make_shared<EndpointProvider>(locationClient, configuration.regionId(), SERVICE_NAME, "");
|
||||
endpointProvider_ = std::make_shared<EndpointProvider>(locationClient, configuration.regionId(), SERVICE_NAME, "ecs");
|
||||
}
|
||||
|
||||
EcsClient::~EcsClient()
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string AcceptInquiredSystemEventRequest::getEventId()const
|
||||
void AcceptInquiredSystemEventRequest::setEventId(const std::string& eventId)
|
||||
{
|
||||
eventId_ = eventId;
|
||||
setParameter("EventId", eventId);
|
||||
setCoreParameter("EventId", eventId);
|
||||
}
|
||||
|
||||
long AcceptInquiredSystemEventRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long AcceptInquiredSystemEventRequest::getResourceOwnerId()const
|
||||
void AcceptInquiredSystemEventRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long AcceptInquiredSystemEventRequest::getCallerParentId()const
|
||||
@@ -55,7 +55,7 @@ long AcceptInquiredSystemEventRequest::getCallerParentId()const
|
||||
void AcceptInquiredSystemEventRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
bool AcceptInquiredSystemEventRequest::getProxy_original_security_transport()const
|
||||
@@ -66,7 +66,7 @@ bool AcceptInquiredSystemEventRequest::getProxy_original_security_transport()con
|
||||
void AcceptInquiredSystemEventRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string AcceptInquiredSystemEventRequest::getProxy_original_source_ip()const
|
||||
@@ -77,7 +77,7 @@ std::string AcceptInquiredSystemEventRequest::getProxy_original_source_ip()const
|
||||
void AcceptInquiredSystemEventRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string AcceptInquiredSystemEventRequest::getOwnerIdLoginEmail()const
|
||||
@@ -88,7 +88,7 @@ std::string AcceptInquiredSystemEventRequest::getOwnerIdLoginEmail()const
|
||||
void AcceptInquiredSystemEventRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string AcceptInquiredSystemEventRequest::getCallerType()const
|
||||
@@ -99,7 +99,7 @@ std::string AcceptInquiredSystemEventRequest::getCallerType()const
|
||||
void AcceptInquiredSystemEventRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string AcceptInquiredSystemEventRequest::getAccessKeyId()const
|
||||
@@ -110,7 +110,7 @@ std::string AcceptInquiredSystemEventRequest::getAccessKeyId()const
|
||||
void AcceptInquiredSystemEventRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string AcceptInquiredSystemEventRequest::getResourceGroupId()const
|
||||
@@ -121,7 +121,7 @@ std::string AcceptInquiredSystemEventRequest::getResourceGroupId()const
|
||||
void AcceptInquiredSystemEventRequest::setResourceGroupId(const std::string& resourceGroupId)
|
||||
{
|
||||
resourceGroupId_ = resourceGroupId;
|
||||
setParameter("ResourceGroupId", resourceGroupId);
|
||||
setCoreParameter("ResourceGroupId", resourceGroupId);
|
||||
}
|
||||
|
||||
std::string AcceptInquiredSystemEventRequest::getSecurityToken()const
|
||||
@@ -132,7 +132,7 @@ std::string AcceptInquiredSystemEventRequest::getSecurityToken()const
|
||||
void AcceptInquiredSystemEventRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string AcceptInquiredSystemEventRequest::getRegionId()const
|
||||
@@ -143,7 +143,7 @@ std::string AcceptInquiredSystemEventRequest::getRegionId()const
|
||||
void AcceptInquiredSystemEventRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool AcceptInquiredSystemEventRequest::getEnable()const
|
||||
@@ -154,7 +154,7 @@ bool AcceptInquiredSystemEventRequest::getEnable()const
|
||||
void AcceptInquiredSystemEventRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string AcceptInquiredSystemEventRequest::getRequestContent()const
|
||||
@@ -165,7 +165,7 @@ std::string AcceptInquiredSystemEventRequest::getRequestContent()const
|
||||
void AcceptInquiredSystemEventRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string AcceptInquiredSystemEventRequest::getCallerBidEmail()const
|
||||
@@ -176,7 +176,7 @@ std::string AcceptInquiredSystemEventRequest::getCallerBidEmail()const
|
||||
void AcceptInquiredSystemEventRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string AcceptInquiredSystemEventRequest::getCallerUidEmail()const
|
||||
@@ -187,7 +187,7 @@ std::string AcceptInquiredSystemEventRequest::getCallerUidEmail()const
|
||||
void AcceptInquiredSystemEventRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long AcceptInquiredSystemEventRequest::getCallerUid()const
|
||||
@@ -198,7 +198,7 @@ long AcceptInquiredSystemEventRequest::getCallerUid()const
|
||||
void AcceptInquiredSystemEventRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string AcceptInquiredSystemEventRequest::getApp_ip()const
|
||||
@@ -209,7 +209,7 @@ std::string AcceptInquiredSystemEventRequest::getApp_ip()const
|
||||
void AcceptInquiredSystemEventRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string AcceptInquiredSystemEventRequest::getResourceOwnerAccount()const
|
||||
@@ -220,7 +220,7 @@ std::string AcceptInquiredSystemEventRequest::getResourceOwnerAccount()const
|
||||
void AcceptInquiredSystemEventRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string AcceptInquiredSystemEventRequest::getOwnerAccount()const
|
||||
@@ -231,7 +231,7 @@ std::string AcceptInquiredSystemEventRequest::getOwnerAccount()const
|
||||
void AcceptInquiredSystemEventRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string AcceptInquiredSystemEventRequest::getCallerBid()const
|
||||
@@ -242,7 +242,7 @@ std::string AcceptInquiredSystemEventRequest::getCallerBid()const
|
||||
void AcceptInquiredSystemEventRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long AcceptInquiredSystemEventRequest::getOwnerId()const
|
||||
@@ -253,7 +253,7 @@ long AcceptInquiredSystemEventRequest::getOwnerId()const
|
||||
void AcceptInquiredSystemEventRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool AcceptInquiredSystemEventRequest::getProxy_trust_transport_info()const
|
||||
@@ -264,7 +264,7 @@ bool AcceptInquiredSystemEventRequest::getProxy_trust_transport_info()const
|
||||
void AcceptInquiredSystemEventRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool AcceptInquiredSystemEventRequest::getAk_mfa_present()const
|
||||
@@ -275,7 +275,7 @@ bool AcceptInquiredSystemEventRequest::getAk_mfa_present()const
|
||||
void AcceptInquiredSystemEventRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool AcceptInquiredSystemEventRequest::getSecurity_transport()const
|
||||
@@ -286,7 +286,7 @@ bool AcceptInquiredSystemEventRequest::getSecurity_transport()const
|
||||
void AcceptInquiredSystemEventRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string AcceptInquiredSystemEventRequest::getRequestId()const
|
||||
@@ -297,6 +297,6 @@ std::string AcceptInquiredSystemEventRequest::getRequestId()const
|
||||
void AcceptInquiredSystemEventRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long ActivateRouterInterfaceRequest::getResourceOwnerId()const
|
||||
void ActivateRouterInterfaceRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string ActivateRouterInterfaceRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +44,7 @@ std::string ActivateRouterInterfaceRequest::getResourceOwnerAccount()const
|
||||
void ActivateRouterInterfaceRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string ActivateRouterInterfaceRequest::getRegionId()const
|
||||
@@ -55,7 +55,7 @@ std::string ActivateRouterInterfaceRequest::getRegionId()const
|
||||
void ActivateRouterInterfaceRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
long ActivateRouterInterfaceRequest::getOwnerId()const
|
||||
@@ -66,7 +66,7 @@ long ActivateRouterInterfaceRequest::getOwnerId()const
|
||||
void ActivateRouterInterfaceRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string ActivateRouterInterfaceRequest::getRouterInterfaceId()const
|
||||
@@ -77,6 +77,6 @@ std::string ActivateRouterInterfaceRequest::getRouterInterfaceId()const
|
||||
void ActivateRouterInterfaceRequest::setRouterInterfaceId(const std::string& routerInterfaceId)
|
||||
{
|
||||
routerInterfaceId_ = routerInterfaceId;
|
||||
setParameter("RouterInterfaceId", routerInterfaceId);
|
||||
setCoreParameter("RouterInterfaceId", routerInterfaceId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long AddBandwidthPackageIpsRequest::getResourceOwnerId()const
|
||||
void AddBandwidthPackageIpsRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string AddBandwidthPackageIpsRequest::getBandwidthPackageId()const
|
||||
@@ -44,7 +44,7 @@ std::string AddBandwidthPackageIpsRequest::getBandwidthPackageId()const
|
||||
void AddBandwidthPackageIpsRequest::setBandwidthPackageId(const std::string& bandwidthPackageId)
|
||||
{
|
||||
bandwidthPackageId_ = bandwidthPackageId;
|
||||
setParameter("BandwidthPackageId", bandwidthPackageId);
|
||||
setCoreParameter("BandwidthPackageId", bandwidthPackageId);
|
||||
}
|
||||
|
||||
std::string AddBandwidthPackageIpsRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string AddBandwidthPackageIpsRequest::getResourceOwnerAccount()const
|
||||
void AddBandwidthPackageIpsRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string AddBandwidthPackageIpsRequest::getRegionId()const
|
||||
@@ -66,7 +66,7 @@ std::string AddBandwidthPackageIpsRequest::getRegionId()const
|
||||
void AddBandwidthPackageIpsRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string AddBandwidthPackageIpsRequest::getClientToken()const
|
||||
@@ -77,7 +77,7 @@ std::string AddBandwidthPackageIpsRequest::getClientToken()const
|
||||
void AddBandwidthPackageIpsRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string AddBandwidthPackageIpsRequest::getOwnerAccount()const
|
||||
@@ -88,7 +88,7 @@ std::string AddBandwidthPackageIpsRequest::getOwnerAccount()const
|
||||
void AddBandwidthPackageIpsRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
long AddBandwidthPackageIpsRequest::getOwnerId()const
|
||||
@@ -99,7 +99,7 @@ long AddBandwidthPackageIpsRequest::getOwnerId()const
|
||||
void AddBandwidthPackageIpsRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string AddBandwidthPackageIpsRequest::getIpCount()const
|
||||
@@ -110,6 +110,6 @@ std::string AddBandwidthPackageIpsRequest::getIpCount()const
|
||||
void AddBandwidthPackageIpsRequest::setIpCount(const std::string& ipCount)
|
||||
{
|
||||
ipCount_ = ipCount;
|
||||
setParameter("IpCount", ipCount);
|
||||
setCoreParameter("IpCount", ipCount);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string AddTagsRequest::getSourceRegionId()const
|
||||
void AddTagsRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
long AddTagsRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long AddTagsRequest::getResourceOwnerId()const
|
||||
void AddTagsRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string AddTagsRequest::getResourceId()const
|
||||
@@ -55,7 +55,7 @@ std::string AddTagsRequest::getResourceId()const
|
||||
void AddTagsRequest::setResourceId(const std::string& resourceId)
|
||||
{
|
||||
resourceId_ = resourceId;
|
||||
setParameter("ResourceId", resourceId);
|
||||
setCoreParameter("ResourceId", resourceId);
|
||||
}
|
||||
|
||||
std::string AddTagsRequest::getResourceOwnerAccount()const
|
||||
@@ -66,7 +66,7 @@ std::string AddTagsRequest::getResourceOwnerAccount()const
|
||||
void AddTagsRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string AddTagsRequest::getRegionId()const
|
||||
@@ -77,7 +77,7 @@ std::string AddTagsRequest::getRegionId()const
|
||||
void AddTagsRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::vector<AddTagsRequest::Tag> AddTagsRequest::getTag()const
|
||||
@@ -92,8 +92,8 @@ void AddTagsRequest::setTag(const std::vector<Tag>& tag)
|
||||
for(int i = 0; i!= tag.size(); i++) {
|
||||
auto obj = tag.at(i);
|
||||
std::string str ="Tag."+ std::to_string(i);
|
||||
setParameter(str + ".Value", obj.value);
|
||||
setParameter(str + ".Key", obj.key);
|
||||
setCoreParameter(str + ".Value", obj.value);
|
||||
setCoreParameter(str + ".Key", obj.key);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -105,7 +105,7 @@ long AddTagsRequest::getOwnerId()const
|
||||
void AddTagsRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string AddTagsRequest::getResourceType()const
|
||||
@@ -116,6 +116,6 @@ std::string AddTagsRequest::getResourceType()const
|
||||
void AddTagsRequest::setResourceType(const std::string& resourceType)
|
||||
{
|
||||
resourceType_ = resourceType;
|
||||
setParameter("ResourceType", resourceType);
|
||||
setCoreParameter("ResourceType", resourceType);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long AllocateDedicatedHostsRequest::getResourceOwnerId()const
|
||||
void AllocateDedicatedHostsRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string AllocateDedicatedHostsRequest::getClientToken()const
|
||||
@@ -44,7 +44,7 @@ std::string AllocateDedicatedHostsRequest::getClientToken()const
|
||||
void AllocateDedicatedHostsRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
long AllocateDedicatedHostsRequest::getCallerParentId()const
|
||||
@@ -55,7 +55,7 @@ long AllocateDedicatedHostsRequest::getCallerParentId()const
|
||||
void AllocateDedicatedHostsRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
bool AllocateDedicatedHostsRequest::getProxy_original_security_transport()const
|
||||
@@ -66,7 +66,7 @@ bool AllocateDedicatedHostsRequest::getProxy_original_security_transport()const
|
||||
void AllocateDedicatedHostsRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string AllocateDedicatedHostsRequest::getDescription()const
|
||||
@@ -77,7 +77,7 @@ std::string AllocateDedicatedHostsRequest::getDescription()const
|
||||
void AllocateDedicatedHostsRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setParameter("Description", description);
|
||||
setCoreParameter("Description", description);
|
||||
}
|
||||
|
||||
std::string AllocateDedicatedHostsRequest::getProxy_original_source_ip()const
|
||||
@@ -88,7 +88,7 @@ std::string AllocateDedicatedHostsRequest::getProxy_original_source_ip()const
|
||||
void AllocateDedicatedHostsRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string AllocateDedicatedHostsRequest::getOwnerIdLoginEmail()const
|
||||
@@ -99,7 +99,7 @@ std::string AllocateDedicatedHostsRequest::getOwnerIdLoginEmail()const
|
||||
void AllocateDedicatedHostsRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string AllocateDedicatedHostsRequest::getCallerType()const
|
||||
@@ -110,7 +110,7 @@ std::string AllocateDedicatedHostsRequest::getCallerType()const
|
||||
void AllocateDedicatedHostsRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string AllocateDedicatedHostsRequest::getAccessKeyId()const
|
||||
@@ -121,7 +121,7 @@ std::string AllocateDedicatedHostsRequest::getAccessKeyId()const
|
||||
void AllocateDedicatedHostsRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string AllocateDedicatedHostsRequest::getSourceRegionId()const
|
||||
@@ -132,7 +132,7 @@ std::string AllocateDedicatedHostsRequest::getSourceRegionId()const
|
||||
void AllocateDedicatedHostsRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string AllocateDedicatedHostsRequest::getResourceGroupId()const
|
||||
@@ -143,7 +143,7 @@ std::string AllocateDedicatedHostsRequest::getResourceGroupId()const
|
||||
void AllocateDedicatedHostsRequest::setResourceGroupId(const std::string& resourceGroupId)
|
||||
{
|
||||
resourceGroupId_ = resourceGroupId;
|
||||
setParameter("ResourceGroupId", resourceGroupId);
|
||||
setCoreParameter("ResourceGroupId", resourceGroupId);
|
||||
}
|
||||
|
||||
std::string AllocateDedicatedHostsRequest::getSecurityToken()const
|
||||
@@ -154,7 +154,7 @@ std::string AllocateDedicatedHostsRequest::getSecurityToken()const
|
||||
void AllocateDedicatedHostsRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string AllocateDedicatedHostsRequest::getRegionId()const
|
||||
@@ -165,7 +165,7 @@ std::string AllocateDedicatedHostsRequest::getRegionId()const
|
||||
void AllocateDedicatedHostsRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool AllocateDedicatedHostsRequest::getEnable()const
|
||||
@@ -176,7 +176,7 @@ bool AllocateDedicatedHostsRequest::getEnable()const
|
||||
void AllocateDedicatedHostsRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string AllocateDedicatedHostsRequest::getRequestContent()const
|
||||
@@ -187,7 +187,7 @@ std::string AllocateDedicatedHostsRequest::getRequestContent()const
|
||||
void AllocateDedicatedHostsRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string AllocateDedicatedHostsRequest::getActionOnMaintenance()const
|
||||
@@ -198,7 +198,7 @@ std::string AllocateDedicatedHostsRequest::getActionOnMaintenance()const
|
||||
void AllocateDedicatedHostsRequest::setActionOnMaintenance(const std::string& actionOnMaintenance)
|
||||
{
|
||||
actionOnMaintenance_ = actionOnMaintenance;
|
||||
setParameter("ActionOnMaintenance", actionOnMaintenance);
|
||||
setCoreParameter("ActionOnMaintenance", actionOnMaintenance);
|
||||
}
|
||||
|
||||
std::string AllocateDedicatedHostsRequest::getCallerBidEmail()const
|
||||
@@ -209,7 +209,7 @@ std::string AllocateDedicatedHostsRequest::getCallerBidEmail()const
|
||||
void AllocateDedicatedHostsRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::vector<AllocateDedicatedHostsRequest::Tag> AllocateDedicatedHostsRequest::getTag()const
|
||||
@@ -224,8 +224,8 @@ void AllocateDedicatedHostsRequest::setTag(const std::vector<Tag>& tag)
|
||||
for(int i = 0; i!= tag.size(); i++) {
|
||||
auto obj = tag.at(i);
|
||||
std::string str ="Tag."+ std::to_string(i);
|
||||
setParameter(str + ".Key", obj.key);
|
||||
setParameter(str + ".Value", obj.value);
|
||||
setCoreParameter(str + ".Key", obj.key);
|
||||
setCoreParameter(str + ".Value", obj.value);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -237,7 +237,7 @@ std::string AllocateDedicatedHostsRequest::getDedicatedHostType()const
|
||||
void AllocateDedicatedHostsRequest::setDedicatedHostType(const std::string& dedicatedHostType)
|
||||
{
|
||||
dedicatedHostType_ = dedicatedHostType;
|
||||
setParameter("DedicatedHostType", dedicatedHostType);
|
||||
setCoreParameter("DedicatedHostType", dedicatedHostType);
|
||||
}
|
||||
|
||||
std::string AllocateDedicatedHostsRequest::getCallerUidEmail()const
|
||||
@@ -248,7 +248,7 @@ std::string AllocateDedicatedHostsRequest::getCallerUidEmail()const
|
||||
void AllocateDedicatedHostsRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long AllocateDedicatedHostsRequest::getCallerUid()const
|
||||
@@ -259,7 +259,7 @@ long AllocateDedicatedHostsRequest::getCallerUid()const
|
||||
void AllocateDedicatedHostsRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string AllocateDedicatedHostsRequest::getApp_ip()const
|
||||
@@ -270,7 +270,7 @@ std::string AllocateDedicatedHostsRequest::getApp_ip()const
|
||||
void AllocateDedicatedHostsRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
int AllocateDedicatedHostsRequest::getAutoRenewPeriod()const
|
||||
@@ -281,7 +281,7 @@ int AllocateDedicatedHostsRequest::getAutoRenewPeriod()const
|
||||
void AllocateDedicatedHostsRequest::setAutoRenewPeriod(int autoRenewPeriod)
|
||||
{
|
||||
autoRenewPeriod_ = autoRenewPeriod;
|
||||
setParameter("AutoRenewPeriod", std::to_string(autoRenewPeriod));
|
||||
setCoreParameter("AutoRenewPeriod", std::to_string(autoRenewPeriod));
|
||||
}
|
||||
|
||||
int AllocateDedicatedHostsRequest::getPeriod()const
|
||||
@@ -292,7 +292,7 @@ int AllocateDedicatedHostsRequest::getPeriod()const
|
||||
void AllocateDedicatedHostsRequest::setPeriod(int period)
|
||||
{
|
||||
period_ = period;
|
||||
setParameter("Period", std::to_string(period));
|
||||
setCoreParameter("Period", std::to_string(period));
|
||||
}
|
||||
|
||||
int AllocateDedicatedHostsRequest::getQuantity()const
|
||||
@@ -303,7 +303,7 @@ int AllocateDedicatedHostsRequest::getQuantity()const
|
||||
void AllocateDedicatedHostsRequest::setQuantity(int quantity)
|
||||
{
|
||||
quantity_ = quantity;
|
||||
setParameter("Quantity", std::to_string(quantity));
|
||||
setCoreParameter("Quantity", std::to_string(quantity));
|
||||
}
|
||||
|
||||
std::string AllocateDedicatedHostsRequest::getDedicatedHostName()const
|
||||
@@ -314,7 +314,7 @@ std::string AllocateDedicatedHostsRequest::getDedicatedHostName()const
|
||||
void AllocateDedicatedHostsRequest::setDedicatedHostName(const std::string& dedicatedHostName)
|
||||
{
|
||||
dedicatedHostName_ = dedicatedHostName;
|
||||
setParameter("DedicatedHostName", dedicatedHostName);
|
||||
setCoreParameter("DedicatedHostName", dedicatedHostName);
|
||||
}
|
||||
|
||||
std::string AllocateDedicatedHostsRequest::getResourceOwnerAccount()const
|
||||
@@ -325,7 +325,7 @@ std::string AllocateDedicatedHostsRequest::getResourceOwnerAccount()const
|
||||
void AllocateDedicatedHostsRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string AllocateDedicatedHostsRequest::getOwnerAccount()const
|
||||
@@ -336,7 +336,7 @@ std::string AllocateDedicatedHostsRequest::getOwnerAccount()const
|
||||
void AllocateDedicatedHostsRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string AllocateDedicatedHostsRequest::getAutoReleaseTime()const
|
||||
@@ -347,7 +347,7 @@ std::string AllocateDedicatedHostsRequest::getAutoReleaseTime()const
|
||||
void AllocateDedicatedHostsRequest::setAutoReleaseTime(const std::string& autoReleaseTime)
|
||||
{
|
||||
autoReleaseTime_ = autoReleaseTime;
|
||||
setParameter("AutoReleaseTime", autoReleaseTime);
|
||||
setCoreParameter("AutoReleaseTime", autoReleaseTime);
|
||||
}
|
||||
|
||||
std::string AllocateDedicatedHostsRequest::getCallerBid()const
|
||||
@@ -358,7 +358,7 @@ std::string AllocateDedicatedHostsRequest::getCallerBid()const
|
||||
void AllocateDedicatedHostsRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long AllocateDedicatedHostsRequest::getOwnerId()const
|
||||
@@ -369,7 +369,7 @@ long AllocateDedicatedHostsRequest::getOwnerId()const
|
||||
void AllocateDedicatedHostsRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool AllocateDedicatedHostsRequest::getProxy_trust_transport_info()const
|
||||
@@ -380,7 +380,7 @@ bool AllocateDedicatedHostsRequest::getProxy_trust_transport_info()const
|
||||
void AllocateDedicatedHostsRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool AllocateDedicatedHostsRequest::getAk_mfa_present()const
|
||||
@@ -391,7 +391,7 @@ bool AllocateDedicatedHostsRequest::getAk_mfa_present()const
|
||||
void AllocateDedicatedHostsRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool AllocateDedicatedHostsRequest::getSecurity_transport()const
|
||||
@@ -402,7 +402,7 @@ bool AllocateDedicatedHostsRequest::getSecurity_transport()const
|
||||
void AllocateDedicatedHostsRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string AllocateDedicatedHostsRequest::getPeriodUnit()const
|
||||
@@ -413,7 +413,7 @@ std::string AllocateDedicatedHostsRequest::getPeriodUnit()const
|
||||
void AllocateDedicatedHostsRequest::setPeriodUnit(const std::string& periodUnit)
|
||||
{
|
||||
periodUnit_ = periodUnit;
|
||||
setParameter("PeriodUnit", periodUnit);
|
||||
setCoreParameter("PeriodUnit", periodUnit);
|
||||
}
|
||||
|
||||
bool AllocateDedicatedHostsRequest::getAutoRenew()const
|
||||
@@ -424,7 +424,7 @@ bool AllocateDedicatedHostsRequest::getAutoRenew()const
|
||||
void AllocateDedicatedHostsRequest::setAutoRenew(bool autoRenew)
|
||||
{
|
||||
autoRenew_ = autoRenew;
|
||||
setParameter("AutoRenew", autoRenew ? "true" : "false");
|
||||
setCoreParameter("AutoRenew", autoRenew ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string AllocateDedicatedHostsRequest::getRequestId()const
|
||||
@@ -435,7 +435,7 @@ std::string AllocateDedicatedHostsRequest::getRequestId()const
|
||||
void AllocateDedicatedHostsRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
int AllocateDedicatedHostsRequest::getNetworkAttributesSlbUdpTimeout()const
|
||||
@@ -446,7 +446,7 @@ int AllocateDedicatedHostsRequest::getNetworkAttributesSlbUdpTimeout()const
|
||||
void AllocateDedicatedHostsRequest::setNetworkAttributesSlbUdpTimeout(int networkAttributesSlbUdpTimeout)
|
||||
{
|
||||
networkAttributesSlbUdpTimeout_ = networkAttributesSlbUdpTimeout;
|
||||
setParameter("NetworkAttributesSlbUdpTimeout", std::to_string(networkAttributesSlbUdpTimeout));
|
||||
setCoreParameter("NetworkAttributesSlbUdpTimeout", std::to_string(networkAttributesSlbUdpTimeout));
|
||||
}
|
||||
|
||||
std::string AllocateDedicatedHostsRequest::getZoneId()const
|
||||
@@ -457,7 +457,7 @@ std::string AllocateDedicatedHostsRequest::getZoneId()const
|
||||
void AllocateDedicatedHostsRequest::setZoneId(const std::string& zoneId)
|
||||
{
|
||||
zoneId_ = zoneId;
|
||||
setParameter("ZoneId", zoneId);
|
||||
setCoreParameter("ZoneId", zoneId);
|
||||
}
|
||||
|
||||
std::string AllocateDedicatedHostsRequest::getChargeType()const
|
||||
@@ -468,7 +468,7 @@ std::string AllocateDedicatedHostsRequest::getChargeType()const
|
||||
void AllocateDedicatedHostsRequest::setChargeType(const std::string& chargeType)
|
||||
{
|
||||
chargeType_ = chargeType;
|
||||
setParameter("ChargeType", chargeType);
|
||||
setCoreParameter("ChargeType", chargeType);
|
||||
}
|
||||
|
||||
int AllocateDedicatedHostsRequest::getNetworkAttributesUdpTimeout()const
|
||||
@@ -479,6 +479,6 @@ int AllocateDedicatedHostsRequest::getNetworkAttributesUdpTimeout()const
|
||||
void AllocateDedicatedHostsRequest::setNetworkAttributesUdpTimeout(int networkAttributesUdpTimeout)
|
||||
{
|
||||
networkAttributesUdpTimeout_ = networkAttributesUdpTimeout;
|
||||
setParameter("NetworkAttributesUdpTimeout", std::to_string(networkAttributesUdpTimeout));
|
||||
setCoreParameter("NetworkAttributesUdpTimeout", std::to_string(networkAttributesUdpTimeout));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long AllocateEipAddressRequest::getResourceOwnerId()const
|
||||
void AllocateEipAddressRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string AllocateEipAddressRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +44,7 @@ std::string AllocateEipAddressRequest::getResourceOwnerAccount()const
|
||||
void AllocateEipAddressRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string AllocateEipAddressRequest::getRegionId()const
|
||||
@@ -55,7 +55,7 @@ std::string AllocateEipAddressRequest::getRegionId()const
|
||||
void AllocateEipAddressRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string AllocateEipAddressRequest::getBandwidth()const
|
||||
@@ -66,7 +66,7 @@ std::string AllocateEipAddressRequest::getBandwidth()const
|
||||
void AllocateEipAddressRequest::setBandwidth(const std::string& bandwidth)
|
||||
{
|
||||
bandwidth_ = bandwidth;
|
||||
setParameter("Bandwidth", bandwidth);
|
||||
setCoreParameter("Bandwidth", bandwidth);
|
||||
}
|
||||
|
||||
std::string AllocateEipAddressRequest::getClientToken()const
|
||||
@@ -77,7 +77,7 @@ std::string AllocateEipAddressRequest::getClientToken()const
|
||||
void AllocateEipAddressRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string AllocateEipAddressRequest::getInternetChargeType()const
|
||||
@@ -88,7 +88,7 @@ std::string AllocateEipAddressRequest::getInternetChargeType()const
|
||||
void AllocateEipAddressRequest::setInternetChargeType(const std::string& internetChargeType)
|
||||
{
|
||||
internetChargeType_ = internetChargeType;
|
||||
setParameter("InternetChargeType", internetChargeType);
|
||||
setCoreParameter("InternetChargeType", internetChargeType);
|
||||
}
|
||||
|
||||
std::string AllocateEipAddressRequest::getISP()const
|
||||
@@ -99,7 +99,7 @@ std::string AllocateEipAddressRequest::getISP()const
|
||||
void AllocateEipAddressRequest::setISP(const std::string& iSP)
|
||||
{
|
||||
iSP_ = iSP;
|
||||
setParameter("ISP", iSP);
|
||||
setCoreParameter("ISP", iSP);
|
||||
}
|
||||
|
||||
std::string AllocateEipAddressRequest::getOwnerAccount()const
|
||||
@@ -110,7 +110,7 @@ std::string AllocateEipAddressRequest::getOwnerAccount()const
|
||||
void AllocateEipAddressRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
long AllocateEipAddressRequest::getOwnerId()const
|
||||
@@ -121,6 +121,6 @@ long AllocateEipAddressRequest::getOwnerId()const
|
||||
void AllocateEipAddressRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string AllocatePublicIpAddressRequest::getSourceRegionId()const
|
||||
void AllocatePublicIpAddressRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string AllocatePublicIpAddressRequest::getIpAddress()const
|
||||
@@ -44,7 +44,7 @@ std::string AllocatePublicIpAddressRequest::getIpAddress()const
|
||||
void AllocatePublicIpAddressRequest::setIpAddress(const std::string& ipAddress)
|
||||
{
|
||||
ipAddress_ = ipAddress;
|
||||
setParameter("IpAddress", ipAddress);
|
||||
setCoreParameter("IpAddress", ipAddress);
|
||||
}
|
||||
|
||||
long AllocatePublicIpAddressRequest::getResourceOwnerId()const
|
||||
@@ -55,7 +55,7 @@ long AllocatePublicIpAddressRequest::getResourceOwnerId()const
|
||||
void AllocatePublicIpAddressRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string AllocatePublicIpAddressRequest::getInstanceId()const
|
||||
@@ -66,7 +66,7 @@ std::string AllocatePublicIpAddressRequest::getInstanceId()const
|
||||
void AllocatePublicIpAddressRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string AllocatePublicIpAddressRequest::getResourceOwnerAccount()const
|
||||
@@ -77,7 +77,7 @@ std::string AllocatePublicIpAddressRequest::getResourceOwnerAccount()const
|
||||
void AllocatePublicIpAddressRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string AllocatePublicIpAddressRequest::getVlanId()const
|
||||
@@ -88,7 +88,7 @@ std::string AllocatePublicIpAddressRequest::getVlanId()const
|
||||
void AllocatePublicIpAddressRequest::setVlanId(const std::string& vlanId)
|
||||
{
|
||||
vlanId_ = vlanId;
|
||||
setParameter("VlanId", vlanId);
|
||||
setCoreParameter("VlanId", vlanId);
|
||||
}
|
||||
|
||||
std::string AllocatePublicIpAddressRequest::getOwnerAccount()const
|
||||
@@ -99,7 +99,7 @@ std::string AllocatePublicIpAddressRequest::getOwnerAccount()const
|
||||
void AllocatePublicIpAddressRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
long AllocatePublicIpAddressRequest::getOwnerId()const
|
||||
@@ -110,6 +110,6 @@ long AllocatePublicIpAddressRequest::getOwnerId()const
|
||||
void AllocatePublicIpAddressRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string ApplyAutoSnapshotPolicyRequest::getSourceRegionId()const
|
||||
void ApplyAutoSnapshotPolicyRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
long ApplyAutoSnapshotPolicyRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long ApplyAutoSnapshotPolicyRequest::getResourceOwnerId()const
|
||||
void ApplyAutoSnapshotPolicyRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string ApplyAutoSnapshotPolicyRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string ApplyAutoSnapshotPolicyRequest::getResourceOwnerAccount()const
|
||||
void ApplyAutoSnapshotPolicyRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string ApplyAutoSnapshotPolicyRequest::getRegionId()const
|
||||
@@ -66,7 +66,7 @@ std::string ApplyAutoSnapshotPolicyRequest::getRegionId()const
|
||||
void ApplyAutoSnapshotPolicyRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string ApplyAutoSnapshotPolicyRequest::getAutoSnapshotPolicyId()const
|
||||
@@ -77,7 +77,7 @@ std::string ApplyAutoSnapshotPolicyRequest::getAutoSnapshotPolicyId()const
|
||||
void ApplyAutoSnapshotPolicyRequest::setAutoSnapshotPolicyId(const std::string& autoSnapshotPolicyId)
|
||||
{
|
||||
autoSnapshotPolicyId_ = autoSnapshotPolicyId;
|
||||
setParameter("AutoSnapshotPolicyId", autoSnapshotPolicyId);
|
||||
setCoreParameter("AutoSnapshotPolicyId", autoSnapshotPolicyId);
|
||||
}
|
||||
|
||||
std::string ApplyAutoSnapshotPolicyRequest::getDiskIds()const
|
||||
@@ -88,7 +88,7 @@ std::string ApplyAutoSnapshotPolicyRequest::getDiskIds()const
|
||||
void ApplyAutoSnapshotPolicyRequest::setDiskIds(const std::string& diskIds)
|
||||
{
|
||||
diskIds_ = diskIds;
|
||||
setParameter("DiskIds", diskIds);
|
||||
setCoreParameter("DiskIds", diskIds);
|
||||
}
|
||||
|
||||
long ApplyAutoSnapshotPolicyRequest::getOwnerId()const
|
||||
@@ -99,6 +99,6 @@ long ApplyAutoSnapshotPolicyRequest::getOwnerId()const
|
||||
void ApplyAutoSnapshotPolicyRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long AssignIpv6AddressesRequest::getResourceOwnerId()const
|
||||
void AssignIpv6AddressesRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long AssignIpv6AddressesRequest::getCallerParentId()const
|
||||
@@ -44,7 +44,7 @@ long AssignIpv6AddressesRequest::getCallerParentId()const
|
||||
void AssignIpv6AddressesRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
bool AssignIpv6AddressesRequest::getProxy_original_security_transport()const
|
||||
@@ -55,7 +55,7 @@ bool AssignIpv6AddressesRequest::getProxy_original_security_transport()const
|
||||
void AssignIpv6AddressesRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string AssignIpv6AddressesRequest::getProxy_original_source_ip()const
|
||||
@@ -66,7 +66,7 @@ std::string AssignIpv6AddressesRequest::getProxy_original_source_ip()const
|
||||
void AssignIpv6AddressesRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string AssignIpv6AddressesRequest::getOwnerIdLoginEmail()const
|
||||
@@ -77,7 +77,7 @@ std::string AssignIpv6AddressesRequest::getOwnerIdLoginEmail()const
|
||||
void AssignIpv6AddressesRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string AssignIpv6AddressesRequest::getCallerType()const
|
||||
@@ -88,7 +88,7 @@ std::string AssignIpv6AddressesRequest::getCallerType()const
|
||||
void AssignIpv6AddressesRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string AssignIpv6AddressesRequest::getAccessKeyId()const
|
||||
@@ -99,7 +99,7 @@ std::string AssignIpv6AddressesRequest::getAccessKeyId()const
|
||||
void AssignIpv6AddressesRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string AssignIpv6AddressesRequest::getResourceGroupId()const
|
||||
@@ -110,7 +110,7 @@ std::string AssignIpv6AddressesRequest::getResourceGroupId()const
|
||||
void AssignIpv6AddressesRequest::setResourceGroupId(const std::string& resourceGroupId)
|
||||
{
|
||||
resourceGroupId_ = resourceGroupId;
|
||||
setParameter("ResourceGroupId", resourceGroupId);
|
||||
setCoreParameter("ResourceGroupId", resourceGroupId);
|
||||
}
|
||||
|
||||
std::string AssignIpv6AddressesRequest::getSecurityToken()const
|
||||
@@ -121,7 +121,7 @@ std::string AssignIpv6AddressesRequest::getSecurityToken()const
|
||||
void AssignIpv6AddressesRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string AssignIpv6AddressesRequest::getRegionId()const
|
||||
@@ -132,7 +132,7 @@ std::string AssignIpv6AddressesRequest::getRegionId()const
|
||||
void AssignIpv6AddressesRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool AssignIpv6AddressesRequest::getEnable()const
|
||||
@@ -143,7 +143,7 @@ bool AssignIpv6AddressesRequest::getEnable()const
|
||||
void AssignIpv6AddressesRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string AssignIpv6AddressesRequest::getRequestContent()const
|
||||
@@ -154,7 +154,7 @@ std::string AssignIpv6AddressesRequest::getRequestContent()const
|
||||
void AssignIpv6AddressesRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string AssignIpv6AddressesRequest::getCallerBidEmail()const
|
||||
@@ -165,7 +165,7 @@ std::string AssignIpv6AddressesRequest::getCallerBidEmail()const
|
||||
void AssignIpv6AddressesRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string AssignIpv6AddressesRequest::getCallerUidEmail()const
|
||||
@@ -176,7 +176,7 @@ std::string AssignIpv6AddressesRequest::getCallerUidEmail()const
|
||||
void AssignIpv6AddressesRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long AssignIpv6AddressesRequest::getCallerUid()const
|
||||
@@ -187,7 +187,7 @@ long AssignIpv6AddressesRequest::getCallerUid()const
|
||||
void AssignIpv6AddressesRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string AssignIpv6AddressesRequest::getApp_ip()const
|
||||
@@ -198,7 +198,7 @@ std::string AssignIpv6AddressesRequest::getApp_ip()const
|
||||
void AssignIpv6AddressesRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string AssignIpv6AddressesRequest::getResourceOwnerAccount()const
|
||||
@@ -209,7 +209,7 @@ std::string AssignIpv6AddressesRequest::getResourceOwnerAccount()const
|
||||
void AssignIpv6AddressesRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
int AssignIpv6AddressesRequest::getIpv6AddressCount()const
|
||||
@@ -220,7 +220,7 @@ int AssignIpv6AddressesRequest::getIpv6AddressCount()const
|
||||
void AssignIpv6AddressesRequest::setIpv6AddressCount(int ipv6AddressCount)
|
||||
{
|
||||
ipv6AddressCount_ = ipv6AddressCount;
|
||||
setParameter("Ipv6AddressCount", std::to_string(ipv6AddressCount));
|
||||
setCoreParameter("Ipv6AddressCount", std::to_string(ipv6AddressCount));
|
||||
}
|
||||
|
||||
std::string AssignIpv6AddressesRequest::getOwnerAccount()const
|
||||
@@ -231,7 +231,7 @@ std::string AssignIpv6AddressesRequest::getOwnerAccount()const
|
||||
void AssignIpv6AddressesRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string AssignIpv6AddressesRequest::getCallerBid()const
|
||||
@@ -242,7 +242,7 @@ std::string AssignIpv6AddressesRequest::getCallerBid()const
|
||||
void AssignIpv6AddressesRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long AssignIpv6AddressesRequest::getOwnerId()const
|
||||
@@ -253,7 +253,7 @@ long AssignIpv6AddressesRequest::getOwnerId()const
|
||||
void AssignIpv6AddressesRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool AssignIpv6AddressesRequest::getProxy_trust_transport_info()const
|
||||
@@ -264,7 +264,7 @@ bool AssignIpv6AddressesRequest::getProxy_trust_transport_info()const
|
||||
void AssignIpv6AddressesRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool AssignIpv6AddressesRequest::getAk_mfa_present()const
|
||||
@@ -275,7 +275,7 @@ bool AssignIpv6AddressesRequest::getAk_mfa_present()const
|
||||
void AssignIpv6AddressesRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool AssignIpv6AddressesRequest::getSecurity_transport()const
|
||||
@@ -286,7 +286,7 @@ bool AssignIpv6AddressesRequest::getSecurity_transport()const
|
||||
void AssignIpv6AddressesRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string AssignIpv6AddressesRequest::getRequestId()const
|
||||
@@ -297,7 +297,7 @@ std::string AssignIpv6AddressesRequest::getRequestId()const
|
||||
void AssignIpv6AddressesRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
std::string AssignIpv6AddressesRequest::getNetworkInterfaceId()const
|
||||
@@ -308,7 +308,7 @@ std::string AssignIpv6AddressesRequest::getNetworkInterfaceId()const
|
||||
void AssignIpv6AddressesRequest::setNetworkInterfaceId(const std::string& networkInterfaceId)
|
||||
{
|
||||
networkInterfaceId_ = networkInterfaceId;
|
||||
setParameter("NetworkInterfaceId", networkInterfaceId);
|
||||
setCoreParameter("NetworkInterfaceId", networkInterfaceId);
|
||||
}
|
||||
|
||||
std::vector<std::string> AssignIpv6AddressesRequest::getIpv6Address()const
|
||||
@@ -320,6 +320,6 @@ void AssignIpv6AddressesRequest::setIpv6Address(const std::vector<std::string>&
|
||||
{
|
||||
ipv6Address_ = ipv6Address;
|
||||
for(int i = 0; i!= ipv6Address.size(); i++)
|
||||
setParameter("Ipv6Address."+ std::to_string(i), ipv6Address.at(i));
|
||||
setCoreParameter("Ipv6Address."+ std::to_string(i), ipv6Address.at(i));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long AssignPrivateIpAddressesRequest::getResourceOwnerId()const
|
||||
void AssignPrivateIpAddressesRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long AssignPrivateIpAddressesRequest::getCallerParentId()const
|
||||
@@ -44,7 +44,7 @@ long AssignPrivateIpAddressesRequest::getCallerParentId()const
|
||||
void AssignPrivateIpAddressesRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
bool AssignPrivateIpAddressesRequest::getProxy_original_security_transport()const
|
||||
@@ -55,7 +55,7 @@ bool AssignPrivateIpAddressesRequest::getProxy_original_security_transport()cons
|
||||
void AssignPrivateIpAddressesRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
int AssignPrivateIpAddressesRequest::getSecondaryPrivateIpAddressCount()const
|
||||
@@ -66,7 +66,7 @@ int AssignPrivateIpAddressesRequest::getSecondaryPrivateIpAddressCount()const
|
||||
void AssignPrivateIpAddressesRequest::setSecondaryPrivateIpAddressCount(int secondaryPrivateIpAddressCount)
|
||||
{
|
||||
secondaryPrivateIpAddressCount_ = secondaryPrivateIpAddressCount;
|
||||
setParameter("SecondaryPrivateIpAddressCount", std::to_string(secondaryPrivateIpAddressCount));
|
||||
setCoreParameter("SecondaryPrivateIpAddressCount", std::to_string(secondaryPrivateIpAddressCount));
|
||||
}
|
||||
|
||||
std::string AssignPrivateIpAddressesRequest::getProxy_original_source_ip()const
|
||||
@@ -77,7 +77,7 @@ std::string AssignPrivateIpAddressesRequest::getProxy_original_source_ip()const
|
||||
void AssignPrivateIpAddressesRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string AssignPrivateIpAddressesRequest::getOwnerIdLoginEmail()const
|
||||
@@ -88,7 +88,7 @@ std::string AssignPrivateIpAddressesRequest::getOwnerIdLoginEmail()const
|
||||
void AssignPrivateIpAddressesRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string AssignPrivateIpAddressesRequest::getCallerType()const
|
||||
@@ -99,7 +99,7 @@ std::string AssignPrivateIpAddressesRequest::getCallerType()const
|
||||
void AssignPrivateIpAddressesRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string AssignPrivateIpAddressesRequest::getAccessKeyId()const
|
||||
@@ -110,7 +110,7 @@ std::string AssignPrivateIpAddressesRequest::getAccessKeyId()const
|
||||
void AssignPrivateIpAddressesRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string AssignPrivateIpAddressesRequest::getSecurityToken()const
|
||||
@@ -121,7 +121,7 @@ std::string AssignPrivateIpAddressesRequest::getSecurityToken()const
|
||||
void AssignPrivateIpAddressesRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string AssignPrivateIpAddressesRequest::getRegionId()const
|
||||
@@ -132,7 +132,7 @@ std::string AssignPrivateIpAddressesRequest::getRegionId()const
|
||||
void AssignPrivateIpAddressesRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool AssignPrivateIpAddressesRequest::getEnable()const
|
||||
@@ -143,7 +143,7 @@ bool AssignPrivateIpAddressesRequest::getEnable()const
|
||||
void AssignPrivateIpAddressesRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string AssignPrivateIpAddressesRequest::getRequestContent()const
|
||||
@@ -154,7 +154,7 @@ std::string AssignPrivateIpAddressesRequest::getRequestContent()const
|
||||
void AssignPrivateIpAddressesRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string AssignPrivateIpAddressesRequest::getCallerBidEmail()const
|
||||
@@ -165,7 +165,7 @@ std::string AssignPrivateIpAddressesRequest::getCallerBidEmail()const
|
||||
void AssignPrivateIpAddressesRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string AssignPrivateIpAddressesRequest::getCallerUidEmail()const
|
||||
@@ -176,7 +176,7 @@ std::string AssignPrivateIpAddressesRequest::getCallerUidEmail()const
|
||||
void AssignPrivateIpAddressesRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long AssignPrivateIpAddressesRequest::getCallerUid()const
|
||||
@@ -187,7 +187,7 @@ long AssignPrivateIpAddressesRequest::getCallerUid()const
|
||||
void AssignPrivateIpAddressesRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string AssignPrivateIpAddressesRequest::getApp_ip()const
|
||||
@@ -198,7 +198,7 @@ std::string AssignPrivateIpAddressesRequest::getApp_ip()const
|
||||
void AssignPrivateIpAddressesRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string AssignPrivateIpAddressesRequest::getResourceOwnerAccount()const
|
||||
@@ -209,7 +209,7 @@ std::string AssignPrivateIpAddressesRequest::getResourceOwnerAccount()const
|
||||
void AssignPrivateIpAddressesRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string AssignPrivateIpAddressesRequest::getOwnerAccount()const
|
||||
@@ -220,7 +220,7 @@ std::string AssignPrivateIpAddressesRequest::getOwnerAccount()const
|
||||
void AssignPrivateIpAddressesRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string AssignPrivateIpAddressesRequest::getCallerBid()const
|
||||
@@ -231,7 +231,7 @@ std::string AssignPrivateIpAddressesRequest::getCallerBid()const
|
||||
void AssignPrivateIpAddressesRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long AssignPrivateIpAddressesRequest::getOwnerId()const
|
||||
@@ -242,7 +242,7 @@ long AssignPrivateIpAddressesRequest::getOwnerId()const
|
||||
void AssignPrivateIpAddressesRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool AssignPrivateIpAddressesRequest::getProxy_trust_transport_info()const
|
||||
@@ -253,7 +253,7 @@ bool AssignPrivateIpAddressesRequest::getProxy_trust_transport_info()const
|
||||
void AssignPrivateIpAddressesRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool AssignPrivateIpAddressesRequest::getAk_mfa_present()const
|
||||
@@ -264,7 +264,7 @@ bool AssignPrivateIpAddressesRequest::getAk_mfa_present()const
|
||||
void AssignPrivateIpAddressesRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool AssignPrivateIpAddressesRequest::getSecurity_transport()const
|
||||
@@ -275,7 +275,7 @@ bool AssignPrivateIpAddressesRequest::getSecurity_transport()const
|
||||
void AssignPrivateIpAddressesRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::vector<std::string> AssignPrivateIpAddressesRequest::getPrivateIpAddress()const
|
||||
@@ -287,7 +287,7 @@ void AssignPrivateIpAddressesRequest::setPrivateIpAddress(const std::vector<std:
|
||||
{
|
||||
privateIpAddress_ = privateIpAddress;
|
||||
for(int i = 0; i!= privateIpAddress.size(); i++)
|
||||
setParameter("PrivateIpAddress."+ std::to_string(i), privateIpAddress.at(i));
|
||||
setCoreParameter("PrivateIpAddress."+ std::to_string(i), privateIpAddress.at(i));
|
||||
}
|
||||
|
||||
std::string AssignPrivateIpAddressesRequest::getRequestId()const
|
||||
@@ -298,7 +298,7 @@ std::string AssignPrivateIpAddressesRequest::getRequestId()const
|
||||
void AssignPrivateIpAddressesRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
std::string AssignPrivateIpAddressesRequest::getNetworkInterfaceId()const
|
||||
@@ -309,6 +309,6 @@ std::string AssignPrivateIpAddressesRequest::getNetworkInterfaceId()const
|
||||
void AssignPrivateIpAddressesRequest::setNetworkInterfaceId(const std::string& networkInterfaceId)
|
||||
{
|
||||
networkInterfaceId_ = networkInterfaceId;
|
||||
setParameter("NetworkInterfaceId", networkInterfaceId);
|
||||
setCoreParameter("NetworkInterfaceId", networkInterfaceId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long AssociateEipAddressRequest::getResourceOwnerId()const
|
||||
void AssociateEipAddressRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string AssociateEipAddressRequest::getInstanceId()const
|
||||
@@ -44,7 +44,7 @@ std::string AssociateEipAddressRequest::getInstanceId()const
|
||||
void AssociateEipAddressRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string AssociateEipAddressRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string AssociateEipAddressRequest::getResourceOwnerAccount()const
|
||||
void AssociateEipAddressRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string AssociateEipAddressRequest::getRegionId()const
|
||||
@@ -66,7 +66,7 @@ std::string AssociateEipAddressRequest::getRegionId()const
|
||||
void AssociateEipAddressRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string AssociateEipAddressRequest::getOwnerAccount()const
|
||||
@@ -77,7 +77,7 @@ std::string AssociateEipAddressRequest::getOwnerAccount()const
|
||||
void AssociateEipAddressRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string AssociateEipAddressRequest::getInstanceType()const
|
||||
@@ -88,7 +88,7 @@ std::string AssociateEipAddressRequest::getInstanceType()const
|
||||
void AssociateEipAddressRequest::setInstanceType(const std::string& instanceType)
|
||||
{
|
||||
instanceType_ = instanceType;
|
||||
setParameter("InstanceType", instanceType);
|
||||
setCoreParameter("InstanceType", instanceType);
|
||||
}
|
||||
|
||||
std::string AssociateEipAddressRequest::getAllocationId()const
|
||||
@@ -99,7 +99,7 @@ std::string AssociateEipAddressRequest::getAllocationId()const
|
||||
void AssociateEipAddressRequest::setAllocationId(const std::string& allocationId)
|
||||
{
|
||||
allocationId_ = allocationId;
|
||||
setParameter("AllocationId", allocationId);
|
||||
setCoreParameter("AllocationId", allocationId);
|
||||
}
|
||||
|
||||
long AssociateEipAddressRequest::getOwnerId()const
|
||||
@@ -110,6 +110,6 @@ long AssociateEipAddressRequest::getOwnerId()const
|
||||
void AssociateEipAddressRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string AssociateHaVipRequest::getHaVipId()const
|
||||
void AssociateHaVipRequest::setHaVipId(const std::string& haVipId)
|
||||
{
|
||||
haVipId_ = haVipId;
|
||||
setParameter("HaVipId", haVipId);
|
||||
setCoreParameter("HaVipId", haVipId);
|
||||
}
|
||||
|
||||
long AssociateHaVipRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long AssociateHaVipRequest::getResourceOwnerId()const
|
||||
void AssociateHaVipRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string AssociateHaVipRequest::getInstanceId()const
|
||||
@@ -55,7 +55,7 @@ std::string AssociateHaVipRequest::getInstanceId()const
|
||||
void AssociateHaVipRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string AssociateHaVipRequest::getResourceOwnerAccount()const
|
||||
@@ -66,7 +66,7 @@ std::string AssociateHaVipRequest::getResourceOwnerAccount()const
|
||||
void AssociateHaVipRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string AssociateHaVipRequest::getClientToken()const
|
||||
@@ -77,7 +77,7 @@ std::string AssociateHaVipRequest::getClientToken()const
|
||||
void AssociateHaVipRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string AssociateHaVipRequest::getRegionId()const
|
||||
@@ -88,7 +88,7 @@ std::string AssociateHaVipRequest::getRegionId()const
|
||||
void AssociateHaVipRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string AssociateHaVipRequest::getOwnerAccount()const
|
||||
@@ -99,7 +99,7 @@ std::string AssociateHaVipRequest::getOwnerAccount()const
|
||||
void AssociateHaVipRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
long AssociateHaVipRequest::getOwnerId()const
|
||||
@@ -110,6 +110,6 @@ long AssociateHaVipRequest::getOwnerId()const
|
||||
void AssociateHaVipRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string AttachClassicLinkVpcRequest::getSourceRegionId()const
|
||||
void AttachClassicLinkVpcRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
long AttachClassicLinkVpcRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long AttachClassicLinkVpcRequest::getResourceOwnerId()const
|
||||
void AttachClassicLinkVpcRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string AttachClassicLinkVpcRequest::getInstanceId()const
|
||||
@@ -55,7 +55,7 @@ std::string AttachClassicLinkVpcRequest::getInstanceId()const
|
||||
void AttachClassicLinkVpcRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string AttachClassicLinkVpcRequest::getResourceOwnerAccount()const
|
||||
@@ -66,7 +66,7 @@ std::string AttachClassicLinkVpcRequest::getResourceOwnerAccount()const
|
||||
void AttachClassicLinkVpcRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string AttachClassicLinkVpcRequest::getRegionId()const
|
||||
@@ -77,7 +77,7 @@ std::string AttachClassicLinkVpcRequest::getRegionId()const
|
||||
void AttachClassicLinkVpcRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string AttachClassicLinkVpcRequest::getVpcId()const
|
||||
@@ -88,7 +88,7 @@ std::string AttachClassicLinkVpcRequest::getVpcId()const
|
||||
void AttachClassicLinkVpcRequest::setVpcId(const std::string& vpcId)
|
||||
{
|
||||
vpcId_ = vpcId;
|
||||
setParameter("VpcId", vpcId);
|
||||
setCoreParameter("VpcId", vpcId);
|
||||
}
|
||||
|
||||
long AttachClassicLinkVpcRequest::getOwnerId()const
|
||||
@@ -99,6 +99,6 @@ long AttachClassicLinkVpcRequest::getOwnerId()const
|
||||
void AttachClassicLinkVpcRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string AttachDiskRequest::getSourceRegionId()const
|
||||
void AttachDiskRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
long AttachDiskRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long AttachDiskRequest::getResourceOwnerId()const
|
||||
void AttachDiskRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string AttachDiskRequest::getInstanceId()const
|
||||
@@ -55,7 +55,7 @@ std::string AttachDiskRequest::getInstanceId()const
|
||||
void AttachDiskRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string AttachDiskRequest::getResourceOwnerAccount()const
|
||||
@@ -66,7 +66,7 @@ std::string AttachDiskRequest::getResourceOwnerAccount()const
|
||||
void AttachDiskRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string AttachDiskRequest::getOwnerAccount()const
|
||||
@@ -77,7 +77,7 @@ std::string AttachDiskRequest::getOwnerAccount()const
|
||||
void AttachDiskRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string AttachDiskRequest::getDiskId()const
|
||||
@@ -88,7 +88,7 @@ std::string AttachDiskRequest::getDiskId()const
|
||||
void AttachDiskRequest::setDiskId(const std::string& diskId)
|
||||
{
|
||||
diskId_ = diskId;
|
||||
setParameter("DiskId", diskId);
|
||||
setCoreParameter("DiskId", diskId);
|
||||
}
|
||||
|
||||
long AttachDiskRequest::getOwnerId()const
|
||||
@@ -99,7 +99,7 @@ long AttachDiskRequest::getOwnerId()const
|
||||
void AttachDiskRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string AttachDiskRequest::getDevice()const
|
||||
@@ -110,7 +110,7 @@ std::string AttachDiskRequest::getDevice()const
|
||||
void AttachDiskRequest::setDevice(const std::string& device)
|
||||
{
|
||||
device_ = device;
|
||||
setParameter("Device", device);
|
||||
setCoreParameter("Device", device);
|
||||
}
|
||||
|
||||
bool AttachDiskRequest::getDeleteWithInstance()const
|
||||
@@ -121,6 +121,6 @@ bool AttachDiskRequest::getDeleteWithInstance()const
|
||||
void AttachDiskRequest::setDeleteWithInstance(bool deleteWithInstance)
|
||||
{
|
||||
deleteWithInstance_ = deleteWithInstance;
|
||||
setParameter("DeleteWithInstance", deleteWithInstance ? "true" : "false");
|
||||
setCoreParameter("DeleteWithInstance", deleteWithInstance ? "true" : "false");
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long AttachInstanceRamRoleRequest::getResourceOwnerId()const
|
||||
void AttachInstanceRamRoleRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string AttachInstanceRamRoleRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +44,7 @@ std::string AttachInstanceRamRoleRequest::getResourceOwnerAccount()const
|
||||
void AttachInstanceRamRoleRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string AttachInstanceRamRoleRequest::getRegionId()const
|
||||
@@ -55,7 +55,7 @@ std::string AttachInstanceRamRoleRequest::getRegionId()const
|
||||
void AttachInstanceRamRoleRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string AttachInstanceRamRoleRequest::getInstanceIds()const
|
||||
@@ -66,7 +66,7 @@ std::string AttachInstanceRamRoleRequest::getInstanceIds()const
|
||||
void AttachInstanceRamRoleRequest::setInstanceIds(const std::string& instanceIds)
|
||||
{
|
||||
instanceIds_ = instanceIds;
|
||||
setParameter("InstanceIds", instanceIds);
|
||||
setCoreParameter("InstanceIds", instanceIds);
|
||||
}
|
||||
|
||||
std::string AttachInstanceRamRoleRequest::getRamRoleName()const
|
||||
@@ -77,7 +77,7 @@ std::string AttachInstanceRamRoleRequest::getRamRoleName()const
|
||||
void AttachInstanceRamRoleRequest::setRamRoleName(const std::string& ramRoleName)
|
||||
{
|
||||
ramRoleName_ = ramRoleName;
|
||||
setParameter("RamRoleName", ramRoleName);
|
||||
setCoreParameter("RamRoleName", ramRoleName);
|
||||
}
|
||||
|
||||
long AttachInstanceRamRoleRequest::getOwnerId()const
|
||||
@@ -88,6 +88,6 @@ long AttachInstanceRamRoleRequest::getOwnerId()const
|
||||
void AttachInstanceRamRoleRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long AttachKeyPairRequest::getResourceOwnerId()const
|
||||
void AttachKeyPairRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string AttachKeyPairRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +44,7 @@ std::string AttachKeyPairRequest::getResourceOwnerAccount()const
|
||||
void AttachKeyPairRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string AttachKeyPairRequest::getRegionId()const
|
||||
@@ -55,7 +55,7 @@ std::string AttachKeyPairRequest::getRegionId()const
|
||||
void AttachKeyPairRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string AttachKeyPairRequest::getInstanceIds()const
|
||||
@@ -66,7 +66,7 @@ std::string AttachKeyPairRequest::getInstanceIds()const
|
||||
void AttachKeyPairRequest::setInstanceIds(const std::string& instanceIds)
|
||||
{
|
||||
instanceIds_ = instanceIds;
|
||||
setParameter("InstanceIds", instanceIds);
|
||||
setCoreParameter("InstanceIds", instanceIds);
|
||||
}
|
||||
|
||||
std::string AttachKeyPairRequest::getKeyPairName()const
|
||||
@@ -77,7 +77,7 @@ std::string AttachKeyPairRequest::getKeyPairName()const
|
||||
void AttachKeyPairRequest::setKeyPairName(const std::string& keyPairName)
|
||||
{
|
||||
keyPairName_ = keyPairName;
|
||||
setParameter("KeyPairName", keyPairName);
|
||||
setCoreParameter("KeyPairName", keyPairName);
|
||||
}
|
||||
|
||||
long AttachKeyPairRequest::getOwnerId()const
|
||||
@@ -88,6 +88,6 @@ long AttachKeyPairRequest::getOwnerId()const
|
||||
void AttachKeyPairRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long AttachNetworkInterfaceRequest::getResourceOwnerId()const
|
||||
void AttachNetworkInterfaceRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long AttachNetworkInterfaceRequest::getCallerParentId()const
|
||||
@@ -44,7 +44,7 @@ long AttachNetworkInterfaceRequest::getCallerParentId()const
|
||||
void AttachNetworkInterfaceRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
bool AttachNetworkInterfaceRequest::getProxy_original_security_transport()const
|
||||
@@ -55,7 +55,7 @@ bool AttachNetworkInterfaceRequest::getProxy_original_security_transport()const
|
||||
void AttachNetworkInterfaceRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string AttachNetworkInterfaceRequest::getProxy_original_source_ip()const
|
||||
@@ -66,7 +66,7 @@ std::string AttachNetworkInterfaceRequest::getProxy_original_source_ip()const
|
||||
void AttachNetworkInterfaceRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string AttachNetworkInterfaceRequest::getOwnerIdLoginEmail()const
|
||||
@@ -77,7 +77,7 @@ std::string AttachNetworkInterfaceRequest::getOwnerIdLoginEmail()const
|
||||
void AttachNetworkInterfaceRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string AttachNetworkInterfaceRequest::getCallerType()const
|
||||
@@ -88,7 +88,7 @@ std::string AttachNetworkInterfaceRequest::getCallerType()const
|
||||
void AttachNetworkInterfaceRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string AttachNetworkInterfaceRequest::getAccessKeyId()const
|
||||
@@ -99,7 +99,7 @@ std::string AttachNetworkInterfaceRequest::getAccessKeyId()const
|
||||
void AttachNetworkInterfaceRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string AttachNetworkInterfaceRequest::getSourceRegionId()const
|
||||
@@ -110,7 +110,7 @@ std::string AttachNetworkInterfaceRequest::getSourceRegionId()const
|
||||
void AttachNetworkInterfaceRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string AttachNetworkInterfaceRequest::getSecurityToken()const
|
||||
@@ -121,7 +121,7 @@ std::string AttachNetworkInterfaceRequest::getSecurityToken()const
|
||||
void AttachNetworkInterfaceRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string AttachNetworkInterfaceRequest::getRegionId()const
|
||||
@@ -132,7 +132,7 @@ std::string AttachNetworkInterfaceRequest::getRegionId()const
|
||||
void AttachNetworkInterfaceRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool AttachNetworkInterfaceRequest::getEnable()const
|
||||
@@ -143,7 +143,7 @@ bool AttachNetworkInterfaceRequest::getEnable()const
|
||||
void AttachNetworkInterfaceRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string AttachNetworkInterfaceRequest::getRequestContent()const
|
||||
@@ -154,7 +154,7 @@ std::string AttachNetworkInterfaceRequest::getRequestContent()const
|
||||
void AttachNetworkInterfaceRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string AttachNetworkInterfaceRequest::getCallerBidEmail()const
|
||||
@@ -165,7 +165,7 @@ std::string AttachNetworkInterfaceRequest::getCallerBidEmail()const
|
||||
void AttachNetworkInterfaceRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string AttachNetworkInterfaceRequest::getCallerUidEmail()const
|
||||
@@ -176,7 +176,7 @@ std::string AttachNetworkInterfaceRequest::getCallerUidEmail()const
|
||||
void AttachNetworkInterfaceRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long AttachNetworkInterfaceRequest::getCallerUid()const
|
||||
@@ -187,7 +187,7 @@ long AttachNetworkInterfaceRequest::getCallerUid()const
|
||||
void AttachNetworkInterfaceRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string AttachNetworkInterfaceRequest::getApp_ip()const
|
||||
@@ -198,7 +198,7 @@ std::string AttachNetworkInterfaceRequest::getApp_ip()const
|
||||
void AttachNetworkInterfaceRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string AttachNetworkInterfaceRequest::getResourceOwnerAccount()const
|
||||
@@ -209,7 +209,7 @@ std::string AttachNetworkInterfaceRequest::getResourceOwnerAccount()const
|
||||
void AttachNetworkInterfaceRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string AttachNetworkInterfaceRequest::getOwnerAccount()const
|
||||
@@ -220,7 +220,7 @@ std::string AttachNetworkInterfaceRequest::getOwnerAccount()const
|
||||
void AttachNetworkInterfaceRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string AttachNetworkInterfaceRequest::getCallerBid()const
|
||||
@@ -231,7 +231,7 @@ std::string AttachNetworkInterfaceRequest::getCallerBid()const
|
||||
void AttachNetworkInterfaceRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long AttachNetworkInterfaceRequest::getOwnerId()const
|
||||
@@ -242,7 +242,7 @@ long AttachNetworkInterfaceRequest::getOwnerId()const
|
||||
void AttachNetworkInterfaceRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool AttachNetworkInterfaceRequest::getProxy_trust_transport_info()const
|
||||
@@ -253,7 +253,7 @@ bool AttachNetworkInterfaceRequest::getProxy_trust_transport_info()const
|
||||
void AttachNetworkInterfaceRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool AttachNetworkInterfaceRequest::getAk_mfa_present()const
|
||||
@@ -264,7 +264,7 @@ bool AttachNetworkInterfaceRequest::getAk_mfa_present()const
|
||||
void AttachNetworkInterfaceRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool AttachNetworkInterfaceRequest::getSecurity_transport()const
|
||||
@@ -275,7 +275,7 @@ bool AttachNetworkInterfaceRequest::getSecurity_transport()const
|
||||
void AttachNetworkInterfaceRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string AttachNetworkInterfaceRequest::getInstanceId()const
|
||||
@@ -286,7 +286,7 @@ std::string AttachNetworkInterfaceRequest::getInstanceId()const
|
||||
void AttachNetworkInterfaceRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string AttachNetworkInterfaceRequest::getRequestId()const
|
||||
@@ -297,7 +297,7 @@ std::string AttachNetworkInterfaceRequest::getRequestId()const
|
||||
void AttachNetworkInterfaceRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
std::string AttachNetworkInterfaceRequest::getNetworkInterfaceId()const
|
||||
@@ -308,6 +308,6 @@ std::string AttachNetworkInterfaceRequest::getNetworkInterfaceId()const
|
||||
void AttachNetworkInterfaceRequest::setNetworkInterfaceId(const std::string& networkInterfaceId)
|
||||
{
|
||||
networkInterfaceId_ = networkInterfaceId;
|
||||
setParameter("NetworkInterfaceId", networkInterfaceId);
|
||||
setCoreParameter("NetworkInterfaceId", networkInterfaceId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getNicType()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setNicType(const std::string& nicType)
|
||||
{
|
||||
nicType_ = nicType;
|
||||
setParameter("NicType", nicType);
|
||||
setCoreParameter("NicType", nicType);
|
||||
}
|
||||
|
||||
long AuthorizeSecurityGroupEgressRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long AuthorizeSecurityGroupEgressRequest::getResourceOwnerId()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getSourcePortRange()const
|
||||
@@ -55,7 +55,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getSourcePortRange()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setSourcePortRange(const std::string& sourcePortRange)
|
||||
{
|
||||
sourcePortRange_ = sourcePortRange;
|
||||
setParameter("SourcePortRange", sourcePortRange);
|
||||
setCoreParameter("SourcePortRange", sourcePortRange);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getClientToken()const
|
||||
@@ -66,7 +66,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getClientToken()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
long AuthorizeSecurityGroupEgressRequest::getCallerParentId()const
|
||||
@@ -77,7 +77,7 @@ long AuthorizeSecurityGroupEgressRequest::getCallerParentId()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getSecurityGroupId()const
|
||||
@@ -88,7 +88,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getSecurityGroupId()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setSecurityGroupId(const std::string& securityGroupId)
|
||||
{
|
||||
securityGroupId_ = securityGroupId;
|
||||
setParameter("SecurityGroupId", securityGroupId);
|
||||
setCoreParameter("SecurityGroupId", securityGroupId);
|
||||
}
|
||||
|
||||
bool AuthorizeSecurityGroupEgressRequest::getProxy_original_security_transport()const
|
||||
@@ -99,7 +99,7 @@ bool AuthorizeSecurityGroupEgressRequest::getProxy_original_security_transport()
|
||||
void AuthorizeSecurityGroupEgressRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getDescription()const
|
||||
@@ -110,7 +110,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getDescription()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setParameter("Description", description);
|
||||
setCoreParameter("Description", description);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getProxy_original_source_ip()const
|
||||
@@ -121,7 +121,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getProxy_original_source_ip()co
|
||||
void AuthorizeSecurityGroupEgressRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getOwnerIdLoginEmail()const
|
||||
@@ -132,7 +132,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getOwnerIdLoginEmail()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getCallerType()const
|
||||
@@ -143,7 +143,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getCallerType()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getAccessKeyId()const
|
||||
@@ -154,7 +154,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getAccessKeyId()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getSourceRegionId()const
|
||||
@@ -165,7 +165,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getSourceRegionId()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getSecurityToken()const
|
||||
@@ -176,7 +176,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getSecurityToken()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getRegionId()const
|
||||
@@ -187,7 +187,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getRegionId()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool AuthorizeSecurityGroupEgressRequest::getEnable()const
|
||||
@@ -198,7 +198,7 @@ bool AuthorizeSecurityGroupEgressRequest::getEnable()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getRequestContent()const
|
||||
@@ -209,7 +209,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getRequestContent()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getCallerBidEmail()const
|
||||
@@ -220,7 +220,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getCallerBidEmail()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getCallerUidEmail()const
|
||||
@@ -231,7 +231,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getCallerUidEmail()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long AuthorizeSecurityGroupEgressRequest::getCallerUid()const
|
||||
@@ -242,7 +242,7 @@ long AuthorizeSecurityGroupEgressRequest::getCallerUid()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getIpv6DestCidrIp()const
|
||||
@@ -253,7 +253,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getIpv6DestCidrIp()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setIpv6DestCidrIp(const std::string& ipv6DestCidrIp)
|
||||
{
|
||||
ipv6DestCidrIp_ = ipv6DestCidrIp;
|
||||
setParameter("Ipv6DestCidrIp", ipv6DestCidrIp);
|
||||
setCoreParameter("Ipv6DestCidrIp", ipv6DestCidrIp);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getIpv6SourceCidrIp()const
|
||||
@@ -264,7 +264,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getIpv6SourceCidrIp()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setIpv6SourceCidrIp(const std::string& ipv6SourceCidrIp)
|
||||
{
|
||||
ipv6SourceCidrIp_ = ipv6SourceCidrIp;
|
||||
setParameter("Ipv6SourceCidrIp", ipv6SourceCidrIp);
|
||||
setCoreParameter("Ipv6SourceCidrIp", ipv6SourceCidrIp);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getPolicy()const
|
||||
@@ -275,7 +275,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getPolicy()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setPolicy(const std::string& policy)
|
||||
{
|
||||
policy_ = policy;
|
||||
setParameter("Policy", policy);
|
||||
setCoreParameter("Policy", policy);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getApp_ip()const
|
||||
@@ -286,7 +286,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getApp_ip()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getPortRange()const
|
||||
@@ -297,7 +297,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getPortRange()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setPortRange(const std::string& portRange)
|
||||
{
|
||||
portRange_ = portRange;
|
||||
setParameter("PortRange", portRange);
|
||||
setCoreParameter("PortRange", portRange);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getResourceOwnerAccount()const
|
||||
@@ -308,7 +308,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getResourceOwnerAccount()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getIpProtocol()const
|
||||
@@ -319,7 +319,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getIpProtocol()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setIpProtocol(const std::string& ipProtocol)
|
||||
{
|
||||
ipProtocol_ = ipProtocol;
|
||||
setParameter("IpProtocol", ipProtocol);
|
||||
setCoreParameter("IpProtocol", ipProtocol);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getOwnerAccount()const
|
||||
@@ -330,7 +330,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getOwnerAccount()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getSourceCidrIp()const
|
||||
@@ -341,7 +341,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getSourceCidrIp()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setSourceCidrIp(const std::string& sourceCidrIp)
|
||||
{
|
||||
sourceCidrIp_ = sourceCidrIp;
|
||||
setParameter("SourceCidrIp", sourceCidrIp);
|
||||
setCoreParameter("SourceCidrIp", sourceCidrIp);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getCallerBid()const
|
||||
@@ -352,7 +352,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getCallerBid()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getDestGroupId()const
|
||||
@@ -363,7 +363,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getDestGroupId()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setDestGroupId(const std::string& destGroupId)
|
||||
{
|
||||
destGroupId_ = destGroupId;
|
||||
setParameter("DestGroupId", destGroupId);
|
||||
setCoreParameter("DestGroupId", destGroupId);
|
||||
}
|
||||
|
||||
long AuthorizeSecurityGroupEgressRequest::getOwnerId()const
|
||||
@@ -374,7 +374,7 @@ long AuthorizeSecurityGroupEgressRequest::getOwnerId()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getDestGroupOwnerAccount()const
|
||||
@@ -385,7 +385,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getDestGroupOwnerAccount()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setDestGroupOwnerAccount(const std::string& destGroupOwnerAccount)
|
||||
{
|
||||
destGroupOwnerAccount_ = destGroupOwnerAccount;
|
||||
setParameter("DestGroupOwnerAccount", destGroupOwnerAccount);
|
||||
setCoreParameter("DestGroupOwnerAccount", destGroupOwnerAccount);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getPriority()const
|
||||
@@ -396,7 +396,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getPriority()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setPriority(const std::string& priority)
|
||||
{
|
||||
priority_ = priority;
|
||||
setParameter("Priority", priority);
|
||||
setCoreParameter("Priority", priority);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getDestCidrIp()const
|
||||
@@ -407,7 +407,7 @@ std::string AuthorizeSecurityGroupEgressRequest::getDestCidrIp()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setDestCidrIp(const std::string& destCidrIp)
|
||||
{
|
||||
destCidrIp_ = destCidrIp;
|
||||
setParameter("DestCidrIp", destCidrIp);
|
||||
setCoreParameter("DestCidrIp", destCidrIp);
|
||||
}
|
||||
|
||||
bool AuthorizeSecurityGroupEgressRequest::getProxy_trust_transport_info()const
|
||||
@@ -418,7 +418,7 @@ bool AuthorizeSecurityGroupEgressRequest::getProxy_trust_transport_info()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool AuthorizeSecurityGroupEgressRequest::getAk_mfa_present()const
|
||||
@@ -429,7 +429,7 @@ bool AuthorizeSecurityGroupEgressRequest::getAk_mfa_present()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool AuthorizeSecurityGroupEgressRequest::getSecurity_transport()const
|
||||
@@ -440,7 +440,7 @@ bool AuthorizeSecurityGroupEgressRequest::getSecurity_transport()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
long AuthorizeSecurityGroupEgressRequest::getDestGroupOwnerId()const
|
||||
@@ -451,7 +451,7 @@ long AuthorizeSecurityGroupEgressRequest::getDestGroupOwnerId()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setDestGroupOwnerId(long destGroupOwnerId)
|
||||
{
|
||||
destGroupOwnerId_ = destGroupOwnerId;
|
||||
setParameter("DestGroupOwnerId", std::to_string(destGroupOwnerId));
|
||||
setCoreParameter("DestGroupOwnerId", std::to_string(destGroupOwnerId));
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupEgressRequest::getRequestId()const
|
||||
@@ -462,6 +462,6 @@ std::string AuthorizeSecurityGroupEgressRequest::getRequestId()const
|
||||
void AuthorizeSecurityGroupEgressRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string AuthorizeSecurityGroupRequest::getNicType()const
|
||||
void AuthorizeSecurityGroupRequest::setNicType(const std::string& nicType)
|
||||
{
|
||||
nicType_ = nicType;
|
||||
setParameter("NicType", nicType);
|
||||
setCoreParameter("NicType", nicType);
|
||||
}
|
||||
|
||||
long AuthorizeSecurityGroupRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long AuthorizeSecurityGroupRequest::getResourceOwnerId()const
|
||||
void AuthorizeSecurityGroupRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getSourcePortRange()const
|
||||
@@ -55,7 +55,7 @@ std::string AuthorizeSecurityGroupRequest::getSourcePortRange()const
|
||||
void AuthorizeSecurityGroupRequest::setSourcePortRange(const std::string& sourcePortRange)
|
||||
{
|
||||
sourcePortRange_ = sourcePortRange;
|
||||
setParameter("SourcePortRange", sourcePortRange);
|
||||
setCoreParameter("SourcePortRange", sourcePortRange);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getClientToken()const
|
||||
@@ -66,7 +66,7 @@ std::string AuthorizeSecurityGroupRequest::getClientToken()const
|
||||
void AuthorizeSecurityGroupRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
long AuthorizeSecurityGroupRequest::getCallerParentId()const
|
||||
@@ -77,7 +77,7 @@ long AuthorizeSecurityGroupRequest::getCallerParentId()const
|
||||
void AuthorizeSecurityGroupRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getSecurityGroupId()const
|
||||
@@ -88,7 +88,7 @@ std::string AuthorizeSecurityGroupRequest::getSecurityGroupId()const
|
||||
void AuthorizeSecurityGroupRequest::setSecurityGroupId(const std::string& securityGroupId)
|
||||
{
|
||||
securityGroupId_ = securityGroupId;
|
||||
setParameter("SecurityGroupId", securityGroupId);
|
||||
setCoreParameter("SecurityGroupId", securityGroupId);
|
||||
}
|
||||
|
||||
bool AuthorizeSecurityGroupRequest::getProxy_original_security_transport()const
|
||||
@@ -99,7 +99,7 @@ bool AuthorizeSecurityGroupRequest::getProxy_original_security_transport()const
|
||||
void AuthorizeSecurityGroupRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getDescription()const
|
||||
@@ -110,7 +110,7 @@ std::string AuthorizeSecurityGroupRequest::getDescription()const
|
||||
void AuthorizeSecurityGroupRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setParameter("Description", description);
|
||||
setCoreParameter("Description", description);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getProxy_original_source_ip()const
|
||||
@@ -121,7 +121,7 @@ std::string AuthorizeSecurityGroupRequest::getProxy_original_source_ip()const
|
||||
void AuthorizeSecurityGroupRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getOwnerIdLoginEmail()const
|
||||
@@ -132,7 +132,7 @@ std::string AuthorizeSecurityGroupRequest::getOwnerIdLoginEmail()const
|
||||
void AuthorizeSecurityGroupRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getCallerType()const
|
||||
@@ -143,7 +143,7 @@ std::string AuthorizeSecurityGroupRequest::getCallerType()const
|
||||
void AuthorizeSecurityGroupRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getAccessKeyId()const
|
||||
@@ -154,7 +154,7 @@ std::string AuthorizeSecurityGroupRequest::getAccessKeyId()const
|
||||
void AuthorizeSecurityGroupRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getSourceRegionId()const
|
||||
@@ -165,7 +165,7 @@ std::string AuthorizeSecurityGroupRequest::getSourceRegionId()const
|
||||
void AuthorizeSecurityGroupRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
long AuthorizeSecurityGroupRequest::getSourceGroupOwnerId()const
|
||||
@@ -176,7 +176,7 @@ long AuthorizeSecurityGroupRequest::getSourceGroupOwnerId()const
|
||||
void AuthorizeSecurityGroupRequest::setSourceGroupOwnerId(long sourceGroupOwnerId)
|
||||
{
|
||||
sourceGroupOwnerId_ = sourceGroupOwnerId;
|
||||
setParameter("SourceGroupOwnerId", std::to_string(sourceGroupOwnerId));
|
||||
setCoreParameter("SourceGroupOwnerId", std::to_string(sourceGroupOwnerId));
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getSourceGroupOwnerAccount()const
|
||||
@@ -187,7 +187,7 @@ std::string AuthorizeSecurityGroupRequest::getSourceGroupOwnerAccount()const
|
||||
void AuthorizeSecurityGroupRequest::setSourceGroupOwnerAccount(const std::string& sourceGroupOwnerAccount)
|
||||
{
|
||||
sourceGroupOwnerAccount_ = sourceGroupOwnerAccount;
|
||||
setParameter("SourceGroupOwnerAccount", sourceGroupOwnerAccount);
|
||||
setCoreParameter("SourceGroupOwnerAccount", sourceGroupOwnerAccount);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getSecurityToken()const
|
||||
@@ -198,7 +198,7 @@ std::string AuthorizeSecurityGroupRequest::getSecurityToken()const
|
||||
void AuthorizeSecurityGroupRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getRegionId()const
|
||||
@@ -209,7 +209,7 @@ std::string AuthorizeSecurityGroupRequest::getRegionId()const
|
||||
void AuthorizeSecurityGroupRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool AuthorizeSecurityGroupRequest::getEnable()const
|
||||
@@ -220,7 +220,7 @@ bool AuthorizeSecurityGroupRequest::getEnable()const
|
||||
void AuthorizeSecurityGroupRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getRequestContent()const
|
||||
@@ -231,7 +231,7 @@ std::string AuthorizeSecurityGroupRequest::getRequestContent()const
|
||||
void AuthorizeSecurityGroupRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getCallerBidEmail()const
|
||||
@@ -242,7 +242,7 @@ std::string AuthorizeSecurityGroupRequest::getCallerBidEmail()const
|
||||
void AuthorizeSecurityGroupRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getCallerUidEmail()const
|
||||
@@ -253,7 +253,7 @@ std::string AuthorizeSecurityGroupRequest::getCallerUidEmail()const
|
||||
void AuthorizeSecurityGroupRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long AuthorizeSecurityGroupRequest::getCallerUid()const
|
||||
@@ -264,7 +264,7 @@ long AuthorizeSecurityGroupRequest::getCallerUid()const
|
||||
void AuthorizeSecurityGroupRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getIpv6SourceCidrIp()const
|
||||
@@ -275,7 +275,7 @@ std::string AuthorizeSecurityGroupRequest::getIpv6SourceCidrIp()const
|
||||
void AuthorizeSecurityGroupRequest::setIpv6SourceCidrIp(const std::string& ipv6SourceCidrIp)
|
||||
{
|
||||
ipv6SourceCidrIp_ = ipv6SourceCidrIp;
|
||||
setParameter("Ipv6SourceCidrIp", ipv6SourceCidrIp);
|
||||
setCoreParameter("Ipv6SourceCidrIp", ipv6SourceCidrIp);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getIpv6DestCidrIp()const
|
||||
@@ -286,7 +286,7 @@ std::string AuthorizeSecurityGroupRequest::getIpv6DestCidrIp()const
|
||||
void AuthorizeSecurityGroupRequest::setIpv6DestCidrIp(const std::string& ipv6DestCidrIp)
|
||||
{
|
||||
ipv6DestCidrIp_ = ipv6DestCidrIp;
|
||||
setParameter("Ipv6DestCidrIp", ipv6DestCidrIp);
|
||||
setCoreParameter("Ipv6DestCidrIp", ipv6DestCidrIp);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getPolicy()const
|
||||
@@ -297,7 +297,7 @@ std::string AuthorizeSecurityGroupRequest::getPolicy()const
|
||||
void AuthorizeSecurityGroupRequest::setPolicy(const std::string& policy)
|
||||
{
|
||||
policy_ = policy;
|
||||
setParameter("Policy", policy);
|
||||
setCoreParameter("Policy", policy);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getApp_ip()const
|
||||
@@ -308,7 +308,7 @@ std::string AuthorizeSecurityGroupRequest::getApp_ip()const
|
||||
void AuthorizeSecurityGroupRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getPortRange()const
|
||||
@@ -319,7 +319,7 @@ std::string AuthorizeSecurityGroupRequest::getPortRange()const
|
||||
void AuthorizeSecurityGroupRequest::setPortRange(const std::string& portRange)
|
||||
{
|
||||
portRange_ = portRange;
|
||||
setParameter("PortRange", portRange);
|
||||
setCoreParameter("PortRange", portRange);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getResourceOwnerAccount()const
|
||||
@@ -330,7 +330,7 @@ std::string AuthorizeSecurityGroupRequest::getResourceOwnerAccount()const
|
||||
void AuthorizeSecurityGroupRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getIpProtocol()const
|
||||
@@ -341,7 +341,7 @@ std::string AuthorizeSecurityGroupRequest::getIpProtocol()const
|
||||
void AuthorizeSecurityGroupRequest::setIpProtocol(const std::string& ipProtocol)
|
||||
{
|
||||
ipProtocol_ = ipProtocol;
|
||||
setParameter("IpProtocol", ipProtocol);
|
||||
setCoreParameter("IpProtocol", ipProtocol);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getOwnerAccount()const
|
||||
@@ -352,7 +352,7 @@ std::string AuthorizeSecurityGroupRequest::getOwnerAccount()const
|
||||
void AuthorizeSecurityGroupRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getSourceCidrIp()const
|
||||
@@ -363,7 +363,7 @@ std::string AuthorizeSecurityGroupRequest::getSourceCidrIp()const
|
||||
void AuthorizeSecurityGroupRequest::setSourceCidrIp(const std::string& sourceCidrIp)
|
||||
{
|
||||
sourceCidrIp_ = sourceCidrIp;
|
||||
setParameter("SourceCidrIp", sourceCidrIp);
|
||||
setCoreParameter("SourceCidrIp", sourceCidrIp);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getCallerBid()const
|
||||
@@ -374,7 +374,7 @@ std::string AuthorizeSecurityGroupRequest::getCallerBid()const
|
||||
void AuthorizeSecurityGroupRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long AuthorizeSecurityGroupRequest::getOwnerId()const
|
||||
@@ -385,7 +385,7 @@ long AuthorizeSecurityGroupRequest::getOwnerId()const
|
||||
void AuthorizeSecurityGroupRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getPriority()const
|
||||
@@ -396,7 +396,7 @@ std::string AuthorizeSecurityGroupRequest::getPriority()const
|
||||
void AuthorizeSecurityGroupRequest::setPriority(const std::string& priority)
|
||||
{
|
||||
priority_ = priority;
|
||||
setParameter("Priority", priority);
|
||||
setCoreParameter("Priority", priority);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getDestCidrIp()const
|
||||
@@ -407,7 +407,7 @@ std::string AuthorizeSecurityGroupRequest::getDestCidrIp()const
|
||||
void AuthorizeSecurityGroupRequest::setDestCidrIp(const std::string& destCidrIp)
|
||||
{
|
||||
destCidrIp_ = destCidrIp;
|
||||
setParameter("DestCidrIp", destCidrIp);
|
||||
setCoreParameter("DestCidrIp", destCidrIp);
|
||||
}
|
||||
|
||||
bool AuthorizeSecurityGroupRequest::getProxy_trust_transport_info()const
|
||||
@@ -418,7 +418,7 @@ bool AuthorizeSecurityGroupRequest::getProxy_trust_transport_info()const
|
||||
void AuthorizeSecurityGroupRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool AuthorizeSecurityGroupRequest::getAk_mfa_present()const
|
||||
@@ -429,7 +429,7 @@ bool AuthorizeSecurityGroupRequest::getAk_mfa_present()const
|
||||
void AuthorizeSecurityGroupRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool AuthorizeSecurityGroupRequest::getSecurity_transport()const
|
||||
@@ -440,7 +440,7 @@ bool AuthorizeSecurityGroupRequest::getSecurity_transport()const
|
||||
void AuthorizeSecurityGroupRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getRequestId()const
|
||||
@@ -451,7 +451,7 @@ std::string AuthorizeSecurityGroupRequest::getRequestId()const
|
||||
void AuthorizeSecurityGroupRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
std::string AuthorizeSecurityGroupRequest::getSourceGroupId()const
|
||||
@@ -462,6 +462,6 @@ std::string AuthorizeSecurityGroupRequest::getSourceGroupId()const
|
||||
void AuthorizeSecurityGroupRequest::setSourceGroupId(const std::string& sourceGroupId)
|
||||
{
|
||||
sourceGroupId_ = sourceGroupId;
|
||||
setParameter("SourceGroupId", sourceGroupId);
|
||||
setCoreParameter("SourceGroupId", sourceGroupId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string CancelAutoSnapshotPolicyRequest::getSourceRegionId()const
|
||||
void CancelAutoSnapshotPolicyRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
long CancelAutoSnapshotPolicyRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long CancelAutoSnapshotPolicyRequest::getResourceOwnerId()const
|
||||
void CancelAutoSnapshotPolicyRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CancelAutoSnapshotPolicyRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string CancelAutoSnapshotPolicyRequest::getResourceOwnerAccount()const
|
||||
void CancelAutoSnapshotPolicyRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CancelAutoSnapshotPolicyRequest::getRegionId()const
|
||||
@@ -66,7 +66,7 @@ std::string CancelAutoSnapshotPolicyRequest::getRegionId()const
|
||||
void CancelAutoSnapshotPolicyRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string CancelAutoSnapshotPolicyRequest::getDiskIds()const
|
||||
@@ -77,7 +77,7 @@ std::string CancelAutoSnapshotPolicyRequest::getDiskIds()const
|
||||
void CancelAutoSnapshotPolicyRequest::setDiskIds(const std::string& diskIds)
|
||||
{
|
||||
diskIds_ = diskIds;
|
||||
setParameter("DiskIds", diskIds);
|
||||
setCoreParameter("DiskIds", diskIds);
|
||||
}
|
||||
|
||||
long CancelAutoSnapshotPolicyRequest::getOwnerId()const
|
||||
@@ -88,6 +88,6 @@ long CancelAutoSnapshotPolicyRequest::getOwnerId()const
|
||||
void CancelAutoSnapshotPolicyRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string CancelCopyImageRequest::getSourceRegionId()const
|
||||
void CancelCopyImageRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
long CancelCopyImageRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long CancelCopyImageRequest::getResourceOwnerId()const
|
||||
void CancelCopyImageRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CancelCopyImageRequest::getImageId()const
|
||||
@@ -55,7 +55,7 @@ std::string CancelCopyImageRequest::getImageId()const
|
||||
void CancelCopyImageRequest::setImageId(const std::string& imageId)
|
||||
{
|
||||
imageId_ = imageId;
|
||||
setParameter("ImageId", imageId);
|
||||
setCoreParameter("ImageId", imageId);
|
||||
}
|
||||
|
||||
std::string CancelCopyImageRequest::getResourceOwnerAccount()const
|
||||
@@ -66,7 +66,7 @@ std::string CancelCopyImageRequest::getResourceOwnerAccount()const
|
||||
void CancelCopyImageRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CancelCopyImageRequest::getRegionId()const
|
||||
@@ -77,7 +77,7 @@ std::string CancelCopyImageRequest::getRegionId()const
|
||||
void CancelCopyImageRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string CancelCopyImageRequest::getOwnerAccount()const
|
||||
@@ -88,7 +88,7 @@ std::string CancelCopyImageRequest::getOwnerAccount()const
|
||||
void CancelCopyImageRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
long CancelCopyImageRequest::getOwnerId()const
|
||||
@@ -99,6 +99,6 @@ long CancelCopyImageRequest::getOwnerId()const
|
||||
void CancelCopyImageRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long CancelPhysicalConnectionRequest::getResourceOwnerId()const
|
||||
void CancelPhysicalConnectionRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CancelPhysicalConnectionRequest::getRegionId()const
|
||||
@@ -44,7 +44,7 @@ std::string CancelPhysicalConnectionRequest::getRegionId()const
|
||||
void CancelPhysicalConnectionRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string CancelPhysicalConnectionRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string CancelPhysicalConnectionRequest::getResourceOwnerAccount()const
|
||||
void CancelPhysicalConnectionRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CancelPhysicalConnectionRequest::getClientToken()const
|
||||
@@ -66,7 +66,7 @@ std::string CancelPhysicalConnectionRequest::getClientToken()const
|
||||
void CancelPhysicalConnectionRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string CancelPhysicalConnectionRequest::getPhysicalConnectionId()const
|
||||
@@ -77,7 +77,7 @@ std::string CancelPhysicalConnectionRequest::getPhysicalConnectionId()const
|
||||
void CancelPhysicalConnectionRequest::setPhysicalConnectionId(const std::string& physicalConnectionId)
|
||||
{
|
||||
physicalConnectionId_ = physicalConnectionId;
|
||||
setParameter("PhysicalConnectionId", physicalConnectionId);
|
||||
setCoreParameter("PhysicalConnectionId", physicalConnectionId);
|
||||
}
|
||||
|
||||
std::string CancelPhysicalConnectionRequest::getOwnerAccount()const
|
||||
@@ -88,7 +88,7 @@ std::string CancelPhysicalConnectionRequest::getOwnerAccount()const
|
||||
void CancelPhysicalConnectionRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string CancelPhysicalConnectionRequest::getUserCidr()const
|
||||
@@ -99,7 +99,7 @@ std::string CancelPhysicalConnectionRequest::getUserCidr()const
|
||||
void CancelPhysicalConnectionRequest::setUserCidr(const std::string& userCidr)
|
||||
{
|
||||
userCidr_ = userCidr;
|
||||
setParameter("UserCidr", userCidr);
|
||||
setCoreParameter("UserCidr", userCidr);
|
||||
}
|
||||
|
||||
long CancelPhysicalConnectionRequest::getOwnerId()const
|
||||
@@ -110,6 +110,6 @@ long CancelPhysicalConnectionRequest::getOwnerId()const
|
||||
void CancelPhysicalConnectionRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ void CancelSimulatedSystemEventsRequest::setEventId(const std::vector<std::strin
|
||||
{
|
||||
eventId_ = eventId;
|
||||
for(int i = 0; i!= eventId.size(); i++)
|
||||
setParameter("EventId."+ std::to_string(i), eventId.at(i));
|
||||
setCoreParameter("EventId."+ std::to_string(i), eventId.at(i));
|
||||
}
|
||||
|
||||
long CancelSimulatedSystemEventsRequest::getResourceOwnerId()const
|
||||
@@ -45,7 +45,7 @@ long CancelSimulatedSystemEventsRequest::getResourceOwnerId()const
|
||||
void CancelSimulatedSystemEventsRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long CancelSimulatedSystemEventsRequest::getCallerParentId()const
|
||||
@@ -56,7 +56,7 @@ long CancelSimulatedSystemEventsRequest::getCallerParentId()const
|
||||
void CancelSimulatedSystemEventsRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
bool CancelSimulatedSystemEventsRequest::getProxy_original_security_transport()const
|
||||
@@ -67,7 +67,7 @@ bool CancelSimulatedSystemEventsRequest::getProxy_original_security_transport()c
|
||||
void CancelSimulatedSystemEventsRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CancelSimulatedSystemEventsRequest::getProxy_original_source_ip()const
|
||||
@@ -78,7 +78,7 @@ std::string CancelSimulatedSystemEventsRequest::getProxy_original_source_ip()con
|
||||
void CancelSimulatedSystemEventsRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string CancelSimulatedSystemEventsRequest::getOwnerIdLoginEmail()const
|
||||
@@ -89,7 +89,7 @@ std::string CancelSimulatedSystemEventsRequest::getOwnerIdLoginEmail()const
|
||||
void CancelSimulatedSystemEventsRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string CancelSimulatedSystemEventsRequest::getCallerType()const
|
||||
@@ -100,7 +100,7 @@ std::string CancelSimulatedSystemEventsRequest::getCallerType()const
|
||||
void CancelSimulatedSystemEventsRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string CancelSimulatedSystemEventsRequest::getAccessKeyId()const
|
||||
@@ -111,7 +111,7 @@ std::string CancelSimulatedSystemEventsRequest::getAccessKeyId()const
|
||||
void CancelSimulatedSystemEventsRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string CancelSimulatedSystemEventsRequest::getResourceGroupId()const
|
||||
@@ -122,7 +122,7 @@ std::string CancelSimulatedSystemEventsRequest::getResourceGroupId()const
|
||||
void CancelSimulatedSystemEventsRequest::setResourceGroupId(const std::string& resourceGroupId)
|
||||
{
|
||||
resourceGroupId_ = resourceGroupId;
|
||||
setParameter("ResourceGroupId", resourceGroupId);
|
||||
setCoreParameter("ResourceGroupId", resourceGroupId);
|
||||
}
|
||||
|
||||
std::string CancelSimulatedSystemEventsRequest::getSecurityToken()const
|
||||
@@ -133,7 +133,7 @@ std::string CancelSimulatedSystemEventsRequest::getSecurityToken()const
|
||||
void CancelSimulatedSystemEventsRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string CancelSimulatedSystemEventsRequest::getRegionId()const
|
||||
@@ -144,7 +144,7 @@ std::string CancelSimulatedSystemEventsRequest::getRegionId()const
|
||||
void CancelSimulatedSystemEventsRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool CancelSimulatedSystemEventsRequest::getEnable()const
|
||||
@@ -155,7 +155,7 @@ bool CancelSimulatedSystemEventsRequest::getEnable()const
|
||||
void CancelSimulatedSystemEventsRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CancelSimulatedSystemEventsRequest::getRequestContent()const
|
||||
@@ -166,7 +166,7 @@ std::string CancelSimulatedSystemEventsRequest::getRequestContent()const
|
||||
void CancelSimulatedSystemEventsRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string CancelSimulatedSystemEventsRequest::getCallerBidEmail()const
|
||||
@@ -177,7 +177,7 @@ std::string CancelSimulatedSystemEventsRequest::getCallerBidEmail()const
|
||||
void CancelSimulatedSystemEventsRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string CancelSimulatedSystemEventsRequest::getCallerUidEmail()const
|
||||
@@ -188,7 +188,7 @@ std::string CancelSimulatedSystemEventsRequest::getCallerUidEmail()const
|
||||
void CancelSimulatedSystemEventsRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long CancelSimulatedSystemEventsRequest::getCallerUid()const
|
||||
@@ -199,7 +199,7 @@ long CancelSimulatedSystemEventsRequest::getCallerUid()const
|
||||
void CancelSimulatedSystemEventsRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string CancelSimulatedSystemEventsRequest::getApp_ip()const
|
||||
@@ -210,7 +210,7 @@ std::string CancelSimulatedSystemEventsRequest::getApp_ip()const
|
||||
void CancelSimulatedSystemEventsRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string CancelSimulatedSystemEventsRequest::getResourceOwnerAccount()const
|
||||
@@ -221,7 +221,7 @@ std::string CancelSimulatedSystemEventsRequest::getResourceOwnerAccount()const
|
||||
void CancelSimulatedSystemEventsRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CancelSimulatedSystemEventsRequest::getOwnerAccount()const
|
||||
@@ -232,7 +232,7 @@ std::string CancelSimulatedSystemEventsRequest::getOwnerAccount()const
|
||||
void CancelSimulatedSystemEventsRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string CancelSimulatedSystemEventsRequest::getCallerBid()const
|
||||
@@ -243,7 +243,7 @@ std::string CancelSimulatedSystemEventsRequest::getCallerBid()const
|
||||
void CancelSimulatedSystemEventsRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long CancelSimulatedSystemEventsRequest::getOwnerId()const
|
||||
@@ -254,7 +254,7 @@ long CancelSimulatedSystemEventsRequest::getOwnerId()const
|
||||
void CancelSimulatedSystemEventsRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool CancelSimulatedSystemEventsRequest::getProxy_trust_transport_info()const
|
||||
@@ -265,7 +265,7 @@ bool CancelSimulatedSystemEventsRequest::getProxy_trust_transport_info()const
|
||||
void CancelSimulatedSystemEventsRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool CancelSimulatedSystemEventsRequest::getAk_mfa_present()const
|
||||
@@ -276,7 +276,7 @@ bool CancelSimulatedSystemEventsRequest::getAk_mfa_present()const
|
||||
void CancelSimulatedSystemEventsRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool CancelSimulatedSystemEventsRequest::getSecurity_transport()const
|
||||
@@ -287,7 +287,7 @@ bool CancelSimulatedSystemEventsRequest::getSecurity_transport()const
|
||||
void CancelSimulatedSystemEventsRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CancelSimulatedSystemEventsRequest::getRequestId()const
|
||||
@@ -298,6 +298,6 @@ std::string CancelSimulatedSystemEventsRequest::getRequestId()const
|
||||
void CancelSimulatedSystemEventsRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string CancelTaskRequest::getSourceRegionId()const
|
||||
void CancelTaskRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
long CancelTaskRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long CancelTaskRequest::getResourceOwnerId()const
|
||||
void CancelTaskRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CancelTaskRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string CancelTaskRequest::getResourceOwnerAccount()const
|
||||
void CancelTaskRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CancelTaskRequest::getRegionId()const
|
||||
@@ -66,7 +66,7 @@ std::string CancelTaskRequest::getRegionId()const
|
||||
void CancelTaskRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
long CancelTaskRequest::getOwnerId()const
|
||||
@@ -77,7 +77,7 @@ long CancelTaskRequest::getOwnerId()const
|
||||
void CancelTaskRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string CancelTaskRequest::getTaskId()const
|
||||
@@ -88,6 +88,6 @@ std::string CancelTaskRequest::getTaskId()const
|
||||
void CancelTaskRequest::setTaskId(const std::string& taskId)
|
||||
{
|
||||
taskId_ = taskId;
|
||||
setParameter("TaskId", taskId);
|
||||
setCoreParameter("TaskId", taskId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long ConnectRouterInterfaceRequest::getResourceOwnerId()const
|
||||
void ConnectRouterInterfaceRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string ConnectRouterInterfaceRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +44,7 @@ std::string ConnectRouterInterfaceRequest::getResourceOwnerAccount()const
|
||||
void ConnectRouterInterfaceRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string ConnectRouterInterfaceRequest::getRegionId()const
|
||||
@@ -55,7 +55,7 @@ std::string ConnectRouterInterfaceRequest::getRegionId()const
|
||||
void ConnectRouterInterfaceRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
long ConnectRouterInterfaceRequest::getOwnerId()const
|
||||
@@ -66,7 +66,7 @@ long ConnectRouterInterfaceRequest::getOwnerId()const
|
||||
void ConnectRouterInterfaceRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string ConnectRouterInterfaceRequest::getRouterInterfaceId()const
|
||||
@@ -77,6 +77,6 @@ std::string ConnectRouterInterfaceRequest::getRouterInterfaceId()const
|
||||
void ConnectRouterInterfaceRequest::setRouterInterfaceId(const std::string& routerInterfaceId)
|
||||
{
|
||||
routerInterfaceId_ = routerInterfaceId;
|
||||
setParameter("RouterInterfaceId", routerInterfaceId);
|
||||
setCoreParameter("RouterInterfaceId", routerInterfaceId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long ConvertNatPublicIpToEipRequest::getResourceOwnerId()const
|
||||
void ConvertNatPublicIpToEipRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long ConvertNatPublicIpToEipRequest::getCallerParentId()const
|
||||
@@ -44,7 +44,7 @@ long ConvertNatPublicIpToEipRequest::getCallerParentId()const
|
||||
void ConvertNatPublicIpToEipRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
bool ConvertNatPublicIpToEipRequest::getProxy_original_security_transport()const
|
||||
@@ -55,7 +55,7 @@ bool ConvertNatPublicIpToEipRequest::getProxy_original_security_transport()const
|
||||
void ConvertNatPublicIpToEipRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string ConvertNatPublicIpToEipRequest::getProxy_original_source_ip()const
|
||||
@@ -66,7 +66,7 @@ std::string ConvertNatPublicIpToEipRequest::getProxy_original_source_ip()const
|
||||
void ConvertNatPublicIpToEipRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string ConvertNatPublicIpToEipRequest::getOwnerIdLoginEmail()const
|
||||
@@ -77,7 +77,7 @@ std::string ConvertNatPublicIpToEipRequest::getOwnerIdLoginEmail()const
|
||||
void ConvertNatPublicIpToEipRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string ConvertNatPublicIpToEipRequest::getCallerType()const
|
||||
@@ -88,7 +88,7 @@ std::string ConvertNatPublicIpToEipRequest::getCallerType()const
|
||||
void ConvertNatPublicIpToEipRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string ConvertNatPublicIpToEipRequest::getAccessKeyId()const
|
||||
@@ -99,7 +99,7 @@ std::string ConvertNatPublicIpToEipRequest::getAccessKeyId()const
|
||||
void ConvertNatPublicIpToEipRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string ConvertNatPublicIpToEipRequest::getSourceRegionId()const
|
||||
@@ -110,7 +110,7 @@ std::string ConvertNatPublicIpToEipRequest::getSourceRegionId()const
|
||||
void ConvertNatPublicIpToEipRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string ConvertNatPublicIpToEipRequest::getSecurityToken()const
|
||||
@@ -121,7 +121,7 @@ std::string ConvertNatPublicIpToEipRequest::getSecurityToken()const
|
||||
void ConvertNatPublicIpToEipRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string ConvertNatPublicIpToEipRequest::getRegionId()const
|
||||
@@ -132,7 +132,7 @@ std::string ConvertNatPublicIpToEipRequest::getRegionId()const
|
||||
void ConvertNatPublicIpToEipRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool ConvertNatPublicIpToEipRequest::getEnable()const
|
||||
@@ -143,7 +143,7 @@ bool ConvertNatPublicIpToEipRequest::getEnable()const
|
||||
void ConvertNatPublicIpToEipRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string ConvertNatPublicIpToEipRequest::getRequestContent()const
|
||||
@@ -154,7 +154,7 @@ std::string ConvertNatPublicIpToEipRequest::getRequestContent()const
|
||||
void ConvertNatPublicIpToEipRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string ConvertNatPublicIpToEipRequest::getCallerBidEmail()const
|
||||
@@ -165,7 +165,7 @@ std::string ConvertNatPublicIpToEipRequest::getCallerBidEmail()const
|
||||
void ConvertNatPublicIpToEipRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string ConvertNatPublicIpToEipRequest::getCallerUidEmail()const
|
||||
@@ -176,7 +176,7 @@ std::string ConvertNatPublicIpToEipRequest::getCallerUidEmail()const
|
||||
void ConvertNatPublicIpToEipRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long ConvertNatPublicIpToEipRequest::getCallerUid()const
|
||||
@@ -187,7 +187,7 @@ long ConvertNatPublicIpToEipRequest::getCallerUid()const
|
||||
void ConvertNatPublicIpToEipRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string ConvertNatPublicIpToEipRequest::getApp_ip()const
|
||||
@@ -198,7 +198,7 @@ std::string ConvertNatPublicIpToEipRequest::getApp_ip()const
|
||||
void ConvertNatPublicIpToEipRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string ConvertNatPublicIpToEipRequest::getResourceOwnerAccount()const
|
||||
@@ -209,7 +209,7 @@ std::string ConvertNatPublicIpToEipRequest::getResourceOwnerAccount()const
|
||||
void ConvertNatPublicIpToEipRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string ConvertNatPublicIpToEipRequest::getCallerBid()const
|
||||
@@ -220,7 +220,7 @@ std::string ConvertNatPublicIpToEipRequest::getCallerBid()const
|
||||
void ConvertNatPublicIpToEipRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long ConvertNatPublicIpToEipRequest::getOwnerId()const
|
||||
@@ -231,7 +231,7 @@ long ConvertNatPublicIpToEipRequest::getOwnerId()const
|
||||
void ConvertNatPublicIpToEipRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool ConvertNatPublicIpToEipRequest::getProxy_trust_transport_info()const
|
||||
@@ -242,7 +242,7 @@ bool ConvertNatPublicIpToEipRequest::getProxy_trust_transport_info()const
|
||||
void ConvertNatPublicIpToEipRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool ConvertNatPublicIpToEipRequest::getAk_mfa_present()const
|
||||
@@ -253,7 +253,7 @@ bool ConvertNatPublicIpToEipRequest::getAk_mfa_present()const
|
||||
void ConvertNatPublicIpToEipRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool ConvertNatPublicIpToEipRequest::getSecurity_transport()const
|
||||
@@ -264,7 +264,7 @@ bool ConvertNatPublicIpToEipRequest::getSecurity_transport()const
|
||||
void ConvertNatPublicIpToEipRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string ConvertNatPublicIpToEipRequest::getInstanceId()const
|
||||
@@ -275,7 +275,7 @@ std::string ConvertNatPublicIpToEipRequest::getInstanceId()const
|
||||
void ConvertNatPublicIpToEipRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string ConvertNatPublicIpToEipRequest::getRequestId()const
|
||||
@@ -286,6 +286,6 @@ std::string ConvertNatPublicIpToEipRequest::getRequestId()const
|
||||
void ConvertNatPublicIpToEipRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long CopyImageRequest::getResourceOwnerId()const
|
||||
void CopyImageRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CopyImageRequest::getImageId()const
|
||||
@@ -44,7 +44,7 @@ std::string CopyImageRequest::getImageId()const
|
||||
void CopyImageRequest::setImageId(const std::string& imageId)
|
||||
{
|
||||
imageId_ = imageId;
|
||||
setParameter("ImageId", imageId);
|
||||
setCoreParameter("ImageId", imageId);
|
||||
}
|
||||
|
||||
std::string CopyImageRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string CopyImageRequest::getResourceOwnerAccount()const
|
||||
void CopyImageRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CopyImageRequest::getDestinationImageName()const
|
||||
@@ -66,7 +66,7 @@ std::string CopyImageRequest::getDestinationImageName()const
|
||||
void CopyImageRequest::setDestinationImageName(const std::string& destinationImageName)
|
||||
{
|
||||
destinationImageName_ = destinationImageName;
|
||||
setParameter("DestinationImageName", destinationImageName);
|
||||
setCoreParameter("DestinationImageName", destinationImageName);
|
||||
}
|
||||
|
||||
std::string CopyImageRequest::getDestinationRegionId()const
|
||||
@@ -77,7 +77,7 @@ std::string CopyImageRequest::getDestinationRegionId()const
|
||||
void CopyImageRequest::setDestinationRegionId(const std::string& destinationRegionId)
|
||||
{
|
||||
destinationRegionId_ = destinationRegionId;
|
||||
setParameter("DestinationRegionId", destinationRegionId);
|
||||
setCoreParameter("DestinationRegionId", destinationRegionId);
|
||||
}
|
||||
|
||||
std::string CopyImageRequest::getOwnerAccount()const
|
||||
@@ -88,7 +88,7 @@ std::string CopyImageRequest::getOwnerAccount()const
|
||||
void CopyImageRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
long CopyImageRequest::getOwnerId()const
|
||||
@@ -99,7 +99,7 @@ long CopyImageRequest::getOwnerId()const
|
||||
void CopyImageRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string CopyImageRequest::getSourceRegionId()const
|
||||
@@ -110,7 +110,7 @@ std::string CopyImageRequest::getSourceRegionId()const
|
||||
void CopyImageRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
bool CopyImageRequest::getEncrypted()const
|
||||
@@ -121,7 +121,7 @@ bool CopyImageRequest::getEncrypted()const
|
||||
void CopyImageRequest::setEncrypted(bool encrypted)
|
||||
{
|
||||
encrypted_ = encrypted;
|
||||
setParameter("Encrypted", encrypted ? "true" : "false");
|
||||
setCoreParameter("Encrypted", encrypted ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CopyImageRequest::getRegionId()const
|
||||
@@ -132,7 +132,7 @@ std::string CopyImageRequest::getRegionId()const
|
||||
void CopyImageRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::vector<CopyImageRequest::Tag> CopyImageRequest::getTag()const
|
||||
@@ -147,8 +147,8 @@ void CopyImageRequest::setTag(const std::vector<Tag>& tag)
|
||||
for(int i = 0; i!= tag.size(); i++) {
|
||||
auto obj = tag.at(i);
|
||||
std::string str ="Tag."+ std::to_string(i);
|
||||
setParameter(str + ".Value", obj.value);
|
||||
setParameter(str + ".Key", obj.key);
|
||||
setCoreParameter(str + ".Value", obj.value);
|
||||
setCoreParameter(str + ".Key", obj.key);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -160,6 +160,6 @@ std::string CopyImageRequest::getDestinationDescription()const
|
||||
void CopyImageRequest::setDestinationDescription(const std::string& destinationDescription)
|
||||
{
|
||||
destinationDescription_ = destinationDescription;
|
||||
setParameter("DestinationDescription", destinationDescription);
|
||||
setCoreParameter("DestinationDescription", destinationDescription);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long CreateAutoSnapshotPolicyRequest::getResourceOwnerId()const
|
||||
void CreateAutoSnapshotPolicyRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateAutoSnapshotPolicyRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +44,7 @@ std::string CreateAutoSnapshotPolicyRequest::getResourceOwnerAccount()const
|
||||
void CreateAutoSnapshotPolicyRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateAutoSnapshotPolicyRequest::getRegionId()const
|
||||
@@ -55,7 +55,7 @@ std::string CreateAutoSnapshotPolicyRequest::getRegionId()const
|
||||
void CreateAutoSnapshotPolicyRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string CreateAutoSnapshotPolicyRequest::getTimePoints()const
|
||||
@@ -66,7 +66,7 @@ std::string CreateAutoSnapshotPolicyRequest::getTimePoints()const
|
||||
void CreateAutoSnapshotPolicyRequest::setTimePoints(const std::string& timePoints)
|
||||
{
|
||||
timePoints_ = timePoints;
|
||||
setParameter("TimePoints", timePoints);
|
||||
setCoreParameter("TimePoints", timePoints);
|
||||
}
|
||||
|
||||
int CreateAutoSnapshotPolicyRequest::getRetentionDays()const
|
||||
@@ -77,7 +77,7 @@ int CreateAutoSnapshotPolicyRequest::getRetentionDays()const
|
||||
void CreateAutoSnapshotPolicyRequest::setRetentionDays(int retentionDays)
|
||||
{
|
||||
retentionDays_ = retentionDays;
|
||||
setParameter("RetentionDays", std::to_string(retentionDays));
|
||||
setCoreParameter("RetentionDays", std::to_string(retentionDays));
|
||||
}
|
||||
|
||||
long CreateAutoSnapshotPolicyRequest::getOwnerId()const
|
||||
@@ -88,7 +88,7 @@ long CreateAutoSnapshotPolicyRequest::getOwnerId()const
|
||||
void CreateAutoSnapshotPolicyRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string CreateAutoSnapshotPolicyRequest::getRepeatWeekdays()const
|
||||
@@ -99,7 +99,7 @@ std::string CreateAutoSnapshotPolicyRequest::getRepeatWeekdays()const
|
||||
void CreateAutoSnapshotPolicyRequest::setRepeatWeekdays(const std::string& repeatWeekdays)
|
||||
{
|
||||
repeatWeekdays_ = repeatWeekdays;
|
||||
setParameter("RepeatWeekdays", repeatWeekdays);
|
||||
setCoreParameter("RepeatWeekdays", repeatWeekdays);
|
||||
}
|
||||
|
||||
std::string CreateAutoSnapshotPolicyRequest::getAutoSnapshotPolicyName()const
|
||||
@@ -110,6 +110,6 @@ std::string CreateAutoSnapshotPolicyRequest::getAutoSnapshotPolicyName()const
|
||||
void CreateAutoSnapshotPolicyRequest::setAutoSnapshotPolicyName(const std::string& autoSnapshotPolicyName)
|
||||
{
|
||||
autoSnapshotPolicyName_ = autoSnapshotPolicyName;
|
||||
setParameter("AutoSnapshotPolicyName", autoSnapshotPolicyName);
|
||||
setCoreParameter("AutoSnapshotPolicyName", autoSnapshotPolicyName);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long CreateCommandRequest::getResourceOwnerId()const
|
||||
void CreateCommandRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long CreateCommandRequest::getCallerParentId()const
|
||||
@@ -44,7 +44,7 @@ long CreateCommandRequest::getCallerParentId()const
|
||||
void CreateCommandRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
std::string CreateCommandRequest::getWorkingDir()const
|
||||
@@ -55,7 +55,7 @@ std::string CreateCommandRequest::getWorkingDir()const
|
||||
void CreateCommandRequest::setWorkingDir(const std::string& workingDir)
|
||||
{
|
||||
workingDir_ = workingDir;
|
||||
setParameter("WorkingDir", workingDir);
|
||||
setCoreParameter("WorkingDir", workingDir);
|
||||
}
|
||||
|
||||
bool CreateCommandRequest::getProxy_original_security_transport()const
|
||||
@@ -66,7 +66,7 @@ bool CreateCommandRequest::getProxy_original_security_transport()const
|
||||
void CreateCommandRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateCommandRequest::getDescription()const
|
||||
@@ -77,7 +77,7 @@ std::string CreateCommandRequest::getDescription()const
|
||||
void CreateCommandRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setParameter("Description", description);
|
||||
setCoreParameter("Description", description);
|
||||
}
|
||||
|
||||
std::string CreateCommandRequest::getProxy_original_source_ip()const
|
||||
@@ -88,7 +88,7 @@ std::string CreateCommandRequest::getProxy_original_source_ip()const
|
||||
void CreateCommandRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string CreateCommandRequest::getType()const
|
||||
@@ -99,7 +99,7 @@ std::string CreateCommandRequest::getType()const
|
||||
void CreateCommandRequest::setType(const std::string& type)
|
||||
{
|
||||
type_ = type;
|
||||
setParameter("Type", type);
|
||||
setCoreParameter("Type", type);
|
||||
}
|
||||
|
||||
std::string CreateCommandRequest::getOwnerIdLoginEmail()const
|
||||
@@ -110,7 +110,7 @@ std::string CreateCommandRequest::getOwnerIdLoginEmail()const
|
||||
void CreateCommandRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string CreateCommandRequest::getCallerType()const
|
||||
@@ -121,7 +121,7 @@ std::string CreateCommandRequest::getCallerType()const
|
||||
void CreateCommandRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string CreateCommandRequest::getCommandContent()const
|
||||
@@ -132,7 +132,7 @@ std::string CreateCommandRequest::getCommandContent()const
|
||||
void CreateCommandRequest::setCommandContent(const std::string& commandContent)
|
||||
{
|
||||
commandContent_ = commandContent;
|
||||
setParameter("CommandContent", commandContent);
|
||||
setCoreParameter("CommandContent", commandContent);
|
||||
}
|
||||
|
||||
long CreateCommandRequest::getTimeout()const
|
||||
@@ -143,7 +143,7 @@ long CreateCommandRequest::getTimeout()const
|
||||
void CreateCommandRequest::setTimeout(long timeout)
|
||||
{
|
||||
timeout_ = timeout;
|
||||
setParameter("Timeout", std::to_string(timeout));
|
||||
setCoreParameter("Timeout", std::to_string(timeout));
|
||||
}
|
||||
|
||||
std::string CreateCommandRequest::getAccessKeyId()const
|
||||
@@ -154,7 +154,7 @@ std::string CreateCommandRequest::getAccessKeyId()const
|
||||
void CreateCommandRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string CreateCommandRequest::getSecurityToken()const
|
||||
@@ -165,7 +165,7 @@ std::string CreateCommandRequest::getSecurityToken()const
|
||||
void CreateCommandRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string CreateCommandRequest::getRegionId()const
|
||||
@@ -176,7 +176,7 @@ std::string CreateCommandRequest::getRegionId()const
|
||||
void CreateCommandRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool CreateCommandRequest::getEnable()const
|
||||
@@ -187,7 +187,7 @@ bool CreateCommandRequest::getEnable()const
|
||||
void CreateCommandRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateCommandRequest::getRequestContent()const
|
||||
@@ -198,7 +198,7 @@ std::string CreateCommandRequest::getRequestContent()const
|
||||
void CreateCommandRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string CreateCommandRequest::getCallerBidEmail()const
|
||||
@@ -209,7 +209,7 @@ std::string CreateCommandRequest::getCallerBidEmail()const
|
||||
void CreateCommandRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string CreateCommandRequest::getCallerUidEmail()const
|
||||
@@ -220,7 +220,7 @@ std::string CreateCommandRequest::getCallerUidEmail()const
|
||||
void CreateCommandRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long CreateCommandRequest::getCallerUid()const
|
||||
@@ -231,7 +231,7 @@ long CreateCommandRequest::getCallerUid()const
|
||||
void CreateCommandRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string CreateCommandRequest::getApp_ip()const
|
||||
@@ -242,7 +242,7 @@ std::string CreateCommandRequest::getApp_ip()const
|
||||
void CreateCommandRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string CreateCommandRequest::getResourceOwnerAccount()const
|
||||
@@ -253,7 +253,7 @@ std::string CreateCommandRequest::getResourceOwnerAccount()const
|
||||
void CreateCommandRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateCommandRequest::getOwnerAccount()const
|
||||
@@ -264,7 +264,7 @@ std::string CreateCommandRequest::getOwnerAccount()const
|
||||
void CreateCommandRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string CreateCommandRequest::getCallerBid()const
|
||||
@@ -275,7 +275,7 @@ std::string CreateCommandRequest::getCallerBid()const
|
||||
void CreateCommandRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long CreateCommandRequest::getOwnerId()const
|
||||
@@ -286,7 +286,7 @@ long CreateCommandRequest::getOwnerId()const
|
||||
void CreateCommandRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool CreateCommandRequest::getProxy_trust_transport_info()const
|
||||
@@ -297,7 +297,7 @@ bool CreateCommandRequest::getProxy_trust_transport_info()const
|
||||
void CreateCommandRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool CreateCommandRequest::getAk_mfa_present()const
|
||||
@@ -308,7 +308,7 @@ bool CreateCommandRequest::getAk_mfa_present()const
|
||||
void CreateCommandRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool CreateCommandRequest::getSecurity_transport()const
|
||||
@@ -319,7 +319,7 @@ bool CreateCommandRequest::getSecurity_transport()const
|
||||
void CreateCommandRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateCommandRequest::getRequestId()const
|
||||
@@ -330,7 +330,7 @@ std::string CreateCommandRequest::getRequestId()const
|
||||
void CreateCommandRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
std::string CreateCommandRequest::getName()const
|
||||
@@ -341,6 +341,6 @@ std::string CreateCommandRequest::getName()const
|
||||
void CreateCommandRequest::setName(const std::string& name)
|
||||
{
|
||||
name_ = name;
|
||||
setParameter("Name", name);
|
||||
setCoreParameter("Name", name);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long CreateDeploymentSetRequest::getResourceOwnerId()const
|
||||
void CreateDeploymentSetRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateDeploymentSetRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +44,7 @@ std::string CreateDeploymentSetRequest::getResourceOwnerAccount()const
|
||||
void CreateDeploymentSetRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateDeploymentSetRequest::getClientToken()const
|
||||
@@ -55,7 +55,7 @@ std::string CreateDeploymentSetRequest::getClientToken()const
|
||||
void CreateDeploymentSetRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string CreateDeploymentSetRequest::getOwnerAccount()const
|
||||
@@ -66,7 +66,7 @@ std::string CreateDeploymentSetRequest::getOwnerAccount()const
|
||||
void CreateDeploymentSetRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string CreateDeploymentSetRequest::getDescription()const
|
||||
@@ -77,7 +77,7 @@ std::string CreateDeploymentSetRequest::getDescription()const
|
||||
void CreateDeploymentSetRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setParameter("Description", description);
|
||||
setCoreParameter("Description", description);
|
||||
}
|
||||
|
||||
std::string CreateDeploymentSetRequest::getDeploymentSetName()const
|
||||
@@ -88,7 +88,7 @@ std::string CreateDeploymentSetRequest::getDeploymentSetName()const
|
||||
void CreateDeploymentSetRequest::setDeploymentSetName(const std::string& deploymentSetName)
|
||||
{
|
||||
deploymentSetName_ = deploymentSetName;
|
||||
setParameter("DeploymentSetName", deploymentSetName);
|
||||
setCoreParameter("DeploymentSetName", deploymentSetName);
|
||||
}
|
||||
|
||||
long CreateDeploymentSetRequest::getOwnerId()const
|
||||
@@ -99,7 +99,7 @@ long CreateDeploymentSetRequest::getOwnerId()const
|
||||
void CreateDeploymentSetRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string CreateDeploymentSetRequest::getSourceRegionId()const
|
||||
@@ -110,7 +110,7 @@ std::string CreateDeploymentSetRequest::getSourceRegionId()const
|
||||
void CreateDeploymentSetRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string CreateDeploymentSetRequest::getRegionId()const
|
||||
@@ -121,7 +121,7 @@ std::string CreateDeploymentSetRequest::getRegionId()const
|
||||
void CreateDeploymentSetRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string CreateDeploymentSetRequest::getOnUnableToRedeployFailedInstance()const
|
||||
@@ -132,7 +132,7 @@ std::string CreateDeploymentSetRequest::getOnUnableToRedeployFailedInstance()con
|
||||
void CreateDeploymentSetRequest::setOnUnableToRedeployFailedInstance(const std::string& onUnableToRedeployFailedInstance)
|
||||
{
|
||||
onUnableToRedeployFailedInstance_ = onUnableToRedeployFailedInstance;
|
||||
setParameter("OnUnableToRedeployFailedInstance", onUnableToRedeployFailedInstance);
|
||||
setCoreParameter("OnUnableToRedeployFailedInstance", onUnableToRedeployFailedInstance);
|
||||
}
|
||||
|
||||
std::string CreateDeploymentSetRequest::getGranularity()const
|
||||
@@ -143,7 +143,7 @@ std::string CreateDeploymentSetRequest::getGranularity()const
|
||||
void CreateDeploymentSetRequest::setGranularity(const std::string& granularity)
|
||||
{
|
||||
granularity_ = granularity;
|
||||
setParameter("Granularity", granularity);
|
||||
setCoreParameter("Granularity", granularity);
|
||||
}
|
||||
|
||||
std::string CreateDeploymentSetRequest::getDomain()const
|
||||
@@ -154,7 +154,7 @@ std::string CreateDeploymentSetRequest::getDomain()const
|
||||
void CreateDeploymentSetRequest::setDomain(const std::string& domain)
|
||||
{
|
||||
domain_ = domain;
|
||||
setParameter("Domain", domain);
|
||||
setCoreParameter("Domain", domain);
|
||||
}
|
||||
|
||||
std::string CreateDeploymentSetRequest::getStrategy()const
|
||||
@@ -165,6 +165,6 @@ std::string CreateDeploymentSetRequest::getStrategy()const
|
||||
void CreateDeploymentSetRequest::setStrategy(const std::string& strategy)
|
||||
{
|
||||
strategy_ = strategy;
|
||||
setParameter("Strategy", strategy);
|
||||
setCoreParameter("Strategy", strategy);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long CreateDiskRequest::getResourceOwnerId()const
|
||||
void CreateDiskRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateDiskRequest::getSnapshotId()const
|
||||
@@ -44,7 +44,7 @@ std::string CreateDiskRequest::getSnapshotId()const
|
||||
void CreateDiskRequest::setSnapshotId(const std::string& snapshotId)
|
||||
{
|
||||
snapshotId_ = snapshotId;
|
||||
setParameter("SnapshotId", snapshotId);
|
||||
setCoreParameter("SnapshotId", snapshotId);
|
||||
}
|
||||
|
||||
std::string CreateDiskRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string CreateDiskRequest::getResourceOwnerAccount()const
|
||||
void CreateDiskRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateDiskRequest::getClientToken()const
|
||||
@@ -66,7 +66,7 @@ std::string CreateDiskRequest::getClientToken()const
|
||||
void CreateDiskRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string CreateDiskRequest::getOwnerAccount()const
|
||||
@@ -77,7 +77,7 @@ std::string CreateDiskRequest::getOwnerAccount()const
|
||||
void CreateDiskRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string CreateDiskRequest::getDescription()const
|
||||
@@ -88,7 +88,7 @@ std::string CreateDiskRequest::getDescription()const
|
||||
void CreateDiskRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setParameter("Description", description);
|
||||
setCoreParameter("Description", description);
|
||||
}
|
||||
|
||||
long CreateDiskRequest::getOwnerId()const
|
||||
@@ -99,7 +99,7 @@ long CreateDiskRequest::getOwnerId()const
|
||||
void CreateDiskRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string CreateDiskRequest::getSourceRegionId()const
|
||||
@@ -110,7 +110,7 @@ std::string CreateDiskRequest::getSourceRegionId()const
|
||||
void CreateDiskRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string CreateDiskRequest::getDiskName()const
|
||||
@@ -121,7 +121,7 @@ std::string CreateDiskRequest::getDiskName()const
|
||||
void CreateDiskRequest::setDiskName(const std::string& diskName)
|
||||
{
|
||||
diskName_ = diskName;
|
||||
setParameter("DiskName", diskName);
|
||||
setCoreParameter("DiskName", diskName);
|
||||
}
|
||||
|
||||
std::string CreateDiskRequest::getResourceGroupId()const
|
||||
@@ -132,7 +132,7 @@ std::string CreateDiskRequest::getResourceGroupId()const
|
||||
void CreateDiskRequest::setResourceGroupId(const std::string& resourceGroupId)
|
||||
{
|
||||
resourceGroupId_ = resourceGroupId;
|
||||
setParameter("ResourceGroupId", resourceGroupId);
|
||||
setCoreParameter("ResourceGroupId", resourceGroupId);
|
||||
}
|
||||
|
||||
int CreateDiskRequest::getSize()const
|
||||
@@ -143,7 +143,7 @@ int CreateDiskRequest::getSize()const
|
||||
void CreateDiskRequest::setSize(int size)
|
||||
{
|
||||
size_ = size;
|
||||
setParameter("Size", std::to_string(size));
|
||||
setCoreParameter("Size", std::to_string(size));
|
||||
}
|
||||
|
||||
bool CreateDiskRequest::getEncrypted()const
|
||||
@@ -154,7 +154,7 @@ bool CreateDiskRequest::getEncrypted()const
|
||||
void CreateDiskRequest::setEncrypted(bool encrypted)
|
||||
{
|
||||
encrypted_ = encrypted;
|
||||
setParameter("Encrypted", encrypted ? "true" : "false");
|
||||
setCoreParameter("Encrypted", encrypted ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateDiskRequest::getRegionId()const
|
||||
@@ -165,7 +165,7 @@ std::string CreateDiskRequest::getRegionId()const
|
||||
void CreateDiskRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string CreateDiskRequest::getDiskCategory()const
|
||||
@@ -176,7 +176,7 @@ std::string CreateDiskRequest::getDiskCategory()const
|
||||
void CreateDiskRequest::setDiskCategory(const std::string& diskCategory)
|
||||
{
|
||||
diskCategory_ = diskCategory;
|
||||
setParameter("DiskCategory", diskCategory);
|
||||
setCoreParameter("DiskCategory", diskCategory);
|
||||
}
|
||||
|
||||
std::string CreateDiskRequest::getZoneId()const
|
||||
@@ -187,7 +187,7 @@ std::string CreateDiskRequest::getZoneId()const
|
||||
void CreateDiskRequest::setZoneId(const std::string& zoneId)
|
||||
{
|
||||
zoneId_ = zoneId;
|
||||
setParameter("ZoneId", zoneId);
|
||||
setCoreParameter("ZoneId", zoneId);
|
||||
}
|
||||
|
||||
std::vector<CreateDiskRequest::Tag> CreateDiskRequest::getTag()const
|
||||
@@ -202,8 +202,8 @@ void CreateDiskRequest::setTag(const std::vector<Tag>& tag)
|
||||
for(int i = 0; i!= tag.size(); i++) {
|
||||
auto obj = tag.at(i);
|
||||
std::string str ="Tag."+ std::to_string(i);
|
||||
setParameter(str + ".Value", obj.value);
|
||||
setParameter(str + ".Key", obj.key);
|
||||
setCoreParameter(str + ".Value", obj.value);
|
||||
setCoreParameter(str + ".Key", obj.key);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -215,6 +215,17 @@ std::string CreateDiskRequest::getKMSKeyId()const
|
||||
void CreateDiskRequest::setKMSKeyId(const std::string& kMSKeyId)
|
||||
{
|
||||
kMSKeyId_ = kMSKeyId;
|
||||
setParameter("KMSKeyId", kMSKeyId);
|
||||
setCoreParameter("KMSKeyId", kMSKeyId);
|
||||
}
|
||||
|
||||
std::string CreateDiskRequest::getAdvancedFeatures()const
|
||||
{
|
||||
return advancedFeatures_;
|
||||
}
|
||||
|
||||
void CreateDiskRequest::setAdvancedFeatures(const std::string& advancedFeatures)
|
||||
{
|
||||
advancedFeatures_ = advancedFeatures;
|
||||
setCoreParameter("AdvancedFeatures", advancedFeatures);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long CreateForwardEntryRequest::getResourceOwnerId()const
|
||||
void CreateForwardEntryRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateForwardEntryRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +44,7 @@ std::string CreateForwardEntryRequest::getResourceOwnerAccount()const
|
||||
void CreateForwardEntryRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateForwardEntryRequest::getRegionId()const
|
||||
@@ -55,7 +55,7 @@ std::string CreateForwardEntryRequest::getRegionId()const
|
||||
void CreateForwardEntryRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string CreateForwardEntryRequest::getIpProtocol()const
|
||||
@@ -66,7 +66,7 @@ std::string CreateForwardEntryRequest::getIpProtocol()const
|
||||
void CreateForwardEntryRequest::setIpProtocol(const std::string& ipProtocol)
|
||||
{
|
||||
ipProtocol_ = ipProtocol;
|
||||
setParameter("IpProtocol", ipProtocol);
|
||||
setCoreParameter("IpProtocol", ipProtocol);
|
||||
}
|
||||
|
||||
std::string CreateForwardEntryRequest::getInternalPort()const
|
||||
@@ -77,7 +77,7 @@ std::string CreateForwardEntryRequest::getInternalPort()const
|
||||
void CreateForwardEntryRequest::setInternalPort(const std::string& internalPort)
|
||||
{
|
||||
internalPort_ = internalPort;
|
||||
setParameter("InternalPort", internalPort);
|
||||
setCoreParameter("InternalPort", internalPort);
|
||||
}
|
||||
|
||||
std::string CreateForwardEntryRequest::getOwnerAccount()const
|
||||
@@ -88,7 +88,7 @@ std::string CreateForwardEntryRequest::getOwnerAccount()const
|
||||
void CreateForwardEntryRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string CreateForwardEntryRequest::getForwardTableId()const
|
||||
@@ -99,7 +99,7 @@ std::string CreateForwardEntryRequest::getForwardTableId()const
|
||||
void CreateForwardEntryRequest::setForwardTableId(const std::string& forwardTableId)
|
||||
{
|
||||
forwardTableId_ = forwardTableId;
|
||||
setParameter("ForwardTableId", forwardTableId);
|
||||
setCoreParameter("ForwardTableId", forwardTableId);
|
||||
}
|
||||
|
||||
long CreateForwardEntryRequest::getOwnerId()const
|
||||
@@ -110,7 +110,7 @@ long CreateForwardEntryRequest::getOwnerId()const
|
||||
void CreateForwardEntryRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string CreateForwardEntryRequest::getExternalIp()const
|
||||
@@ -121,7 +121,7 @@ std::string CreateForwardEntryRequest::getExternalIp()const
|
||||
void CreateForwardEntryRequest::setExternalIp(const std::string& externalIp)
|
||||
{
|
||||
externalIp_ = externalIp;
|
||||
setParameter("ExternalIp", externalIp);
|
||||
setCoreParameter("ExternalIp", externalIp);
|
||||
}
|
||||
|
||||
std::string CreateForwardEntryRequest::getExternalPort()const
|
||||
@@ -132,7 +132,7 @@ std::string CreateForwardEntryRequest::getExternalPort()const
|
||||
void CreateForwardEntryRequest::setExternalPort(const std::string& externalPort)
|
||||
{
|
||||
externalPort_ = externalPort;
|
||||
setParameter("ExternalPort", externalPort);
|
||||
setCoreParameter("ExternalPort", externalPort);
|
||||
}
|
||||
|
||||
std::string CreateForwardEntryRequest::getInternalIp()const
|
||||
@@ -143,6 +143,6 @@ std::string CreateForwardEntryRequest::getInternalIp()const
|
||||
void CreateForwardEntryRequest::setInternalIp(const std::string& internalIp)
|
||||
{
|
||||
internalIp_ = internalIp;
|
||||
setParameter("InternalIp", internalIp);
|
||||
setCoreParameter("InternalIp", internalIp);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string CreateHaVipRequest::getVSwitchId()const
|
||||
void CreateHaVipRequest::setVSwitchId(const std::string& vSwitchId)
|
||||
{
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter("VSwitchId", vSwitchId);
|
||||
setCoreParameter("VSwitchId", vSwitchId);
|
||||
}
|
||||
|
||||
std::string CreateHaVipRequest::getIpAddress()const
|
||||
@@ -44,7 +44,7 @@ std::string CreateHaVipRequest::getIpAddress()const
|
||||
void CreateHaVipRequest::setIpAddress(const std::string& ipAddress)
|
||||
{
|
||||
ipAddress_ = ipAddress;
|
||||
setParameter("IpAddress", ipAddress);
|
||||
setCoreParameter("IpAddress", ipAddress);
|
||||
}
|
||||
|
||||
long CreateHaVipRequest::getResourceOwnerId()const
|
||||
@@ -55,7 +55,7 @@ long CreateHaVipRequest::getResourceOwnerId()const
|
||||
void CreateHaVipRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateHaVipRequest::getResourceOwnerAccount()const
|
||||
@@ -66,7 +66,7 @@ std::string CreateHaVipRequest::getResourceOwnerAccount()const
|
||||
void CreateHaVipRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateHaVipRequest::getClientToken()const
|
||||
@@ -77,7 +77,7 @@ std::string CreateHaVipRequest::getClientToken()const
|
||||
void CreateHaVipRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string CreateHaVipRequest::getRegionId()const
|
||||
@@ -88,7 +88,7 @@ std::string CreateHaVipRequest::getRegionId()const
|
||||
void CreateHaVipRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string CreateHaVipRequest::getOwnerAccount()const
|
||||
@@ -99,7 +99,7 @@ std::string CreateHaVipRequest::getOwnerAccount()const
|
||||
void CreateHaVipRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string CreateHaVipRequest::getDescription()const
|
||||
@@ -110,7 +110,7 @@ std::string CreateHaVipRequest::getDescription()const
|
||||
void CreateHaVipRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setParameter("Description", description);
|
||||
setCoreParameter("Description", description);
|
||||
}
|
||||
|
||||
long CreateHaVipRequest::getOwnerId()const
|
||||
@@ -121,6 +121,6 @@ long CreateHaVipRequest::getOwnerId()const
|
||||
void CreateHaVipRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long CreateHpcClusterRequest::getResourceOwnerId()const
|
||||
void CreateHpcClusterRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateHpcClusterRequest::getClientToken()const
|
||||
@@ -44,7 +44,7 @@ std::string CreateHpcClusterRequest::getClientToken()const
|
||||
void CreateHpcClusterRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
long CreateHpcClusterRequest::getCallerParentId()const
|
||||
@@ -55,7 +55,7 @@ long CreateHpcClusterRequest::getCallerParentId()const
|
||||
void CreateHpcClusterRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
bool CreateHpcClusterRequest::getProxy_original_security_transport()const
|
||||
@@ -66,7 +66,7 @@ bool CreateHpcClusterRequest::getProxy_original_security_transport()const
|
||||
void CreateHpcClusterRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateHpcClusterRequest::getDescription()const
|
||||
@@ -77,7 +77,7 @@ std::string CreateHpcClusterRequest::getDescription()const
|
||||
void CreateHpcClusterRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setParameter("Description", description);
|
||||
setCoreParameter("Description", description);
|
||||
}
|
||||
|
||||
std::string CreateHpcClusterRequest::getProxy_original_source_ip()const
|
||||
@@ -88,7 +88,7 @@ std::string CreateHpcClusterRequest::getProxy_original_source_ip()const
|
||||
void CreateHpcClusterRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string CreateHpcClusterRequest::getOwnerIdLoginEmail()const
|
||||
@@ -99,7 +99,7 @@ std::string CreateHpcClusterRequest::getOwnerIdLoginEmail()const
|
||||
void CreateHpcClusterRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string CreateHpcClusterRequest::getCallerType()const
|
||||
@@ -110,7 +110,7 @@ std::string CreateHpcClusterRequest::getCallerType()const
|
||||
void CreateHpcClusterRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string CreateHpcClusterRequest::getAccessKeyId()const
|
||||
@@ -121,7 +121,7 @@ std::string CreateHpcClusterRequest::getAccessKeyId()const
|
||||
void CreateHpcClusterRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string CreateHpcClusterRequest::getSourceRegionId()const
|
||||
@@ -132,7 +132,7 @@ std::string CreateHpcClusterRequest::getSourceRegionId()const
|
||||
void CreateHpcClusterRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string CreateHpcClusterRequest::getRegionId()const
|
||||
@@ -143,7 +143,7 @@ std::string CreateHpcClusterRequest::getRegionId()const
|
||||
void CreateHpcClusterRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string CreateHpcClusterRequest::getSecurityToken()const
|
||||
@@ -154,7 +154,7 @@ std::string CreateHpcClusterRequest::getSecurityToken()const
|
||||
void CreateHpcClusterRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
bool CreateHpcClusterRequest::getEnable()const
|
||||
@@ -165,7 +165,7 @@ bool CreateHpcClusterRequest::getEnable()const
|
||||
void CreateHpcClusterRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateHpcClusterRequest::getRequestContent()const
|
||||
@@ -176,7 +176,7 @@ std::string CreateHpcClusterRequest::getRequestContent()const
|
||||
void CreateHpcClusterRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string CreateHpcClusterRequest::getCallerBidEmail()const
|
||||
@@ -187,7 +187,7 @@ std::string CreateHpcClusterRequest::getCallerBidEmail()const
|
||||
void CreateHpcClusterRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string CreateHpcClusterRequest::getCallerUidEmail()const
|
||||
@@ -198,7 +198,7 @@ std::string CreateHpcClusterRequest::getCallerUidEmail()const
|
||||
void CreateHpcClusterRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long CreateHpcClusterRequest::getCallerUid()const
|
||||
@@ -209,7 +209,7 @@ long CreateHpcClusterRequest::getCallerUid()const
|
||||
void CreateHpcClusterRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string CreateHpcClusterRequest::getApp_ip()const
|
||||
@@ -220,7 +220,7 @@ std::string CreateHpcClusterRequest::getApp_ip()const
|
||||
void CreateHpcClusterRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string CreateHpcClusterRequest::getResourceOwnerAccount()const
|
||||
@@ -231,7 +231,7 @@ std::string CreateHpcClusterRequest::getResourceOwnerAccount()const
|
||||
void CreateHpcClusterRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateHpcClusterRequest::getOwnerAccount()const
|
||||
@@ -242,7 +242,7 @@ std::string CreateHpcClusterRequest::getOwnerAccount()const
|
||||
void CreateHpcClusterRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string CreateHpcClusterRequest::getCallerBid()const
|
||||
@@ -253,7 +253,7 @@ std::string CreateHpcClusterRequest::getCallerBid()const
|
||||
void CreateHpcClusterRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long CreateHpcClusterRequest::getOwnerId()const
|
||||
@@ -264,7 +264,7 @@ long CreateHpcClusterRequest::getOwnerId()const
|
||||
void CreateHpcClusterRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool CreateHpcClusterRequest::getProxy_trust_transport_info()const
|
||||
@@ -275,7 +275,7 @@ bool CreateHpcClusterRequest::getProxy_trust_transport_info()const
|
||||
void CreateHpcClusterRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool CreateHpcClusterRequest::getAk_mfa_present()const
|
||||
@@ -286,7 +286,7 @@ bool CreateHpcClusterRequest::getAk_mfa_present()const
|
||||
void CreateHpcClusterRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool CreateHpcClusterRequest::getSecurity_transport()const
|
||||
@@ -297,7 +297,7 @@ bool CreateHpcClusterRequest::getSecurity_transport()const
|
||||
void CreateHpcClusterRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateHpcClusterRequest::getRequestId()const
|
||||
@@ -308,7 +308,7 @@ std::string CreateHpcClusterRequest::getRequestId()const
|
||||
void CreateHpcClusterRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
std::string CreateHpcClusterRequest::getName()const
|
||||
@@ -319,6 +319,6 @@ std::string CreateHpcClusterRequest::getName()const
|
||||
void CreateHpcClusterRequest::setName(const std::string& name)
|
||||
{
|
||||
name_ = name;
|
||||
setParameter("Name", name);
|
||||
setCoreParameter("Name", name);
|
||||
}
|
||||
|
||||
|
||||
@@ -37,10 +37,10 @@ void CreateImageRequest::setDiskDeviceMapping(const std::vector<DiskDeviceMappin
|
||||
for(int i = 0; i!= diskDeviceMapping.size(); i++) {
|
||||
auto obj = diskDeviceMapping.at(i);
|
||||
std::string str ="DiskDeviceMapping."+ std::to_string(i);
|
||||
setParameter(str + ".SnapshotId", obj.snapshotId);
|
||||
setParameter(str + ".Size", std::to_string(obj.size));
|
||||
setParameter(str + ".DiskType", obj.diskType);
|
||||
setParameter(str + ".Device", obj.device);
|
||||
setCoreParameter(str + ".SnapshotId", obj.snapshotId);
|
||||
setCoreParameter(str + ".Size", std::to_string(obj.size));
|
||||
setCoreParameter(str + ".DiskType", obj.diskType);
|
||||
setCoreParameter(str + ".Device", obj.device);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -52,7 +52,7 @@ long CreateImageRequest::getResourceOwnerId()const
|
||||
void CreateImageRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateImageRequest::getSnapshotId()const
|
||||
@@ -63,7 +63,7 @@ std::string CreateImageRequest::getSnapshotId()const
|
||||
void CreateImageRequest::setSnapshotId(const std::string& snapshotId)
|
||||
{
|
||||
snapshotId_ = snapshotId;
|
||||
setParameter("SnapshotId", snapshotId);
|
||||
setCoreParameter("SnapshotId", snapshotId);
|
||||
}
|
||||
|
||||
std::string CreateImageRequest::getResourceOwnerAccount()const
|
||||
@@ -74,7 +74,7 @@ std::string CreateImageRequest::getResourceOwnerAccount()const
|
||||
void CreateImageRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateImageRequest::getClientToken()const
|
||||
@@ -85,7 +85,7 @@ std::string CreateImageRequest::getClientToken()const
|
||||
void CreateImageRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string CreateImageRequest::getOwnerAccount()const
|
||||
@@ -96,7 +96,7 @@ std::string CreateImageRequest::getOwnerAccount()const
|
||||
void CreateImageRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string CreateImageRequest::getDescription()const
|
||||
@@ -107,7 +107,7 @@ std::string CreateImageRequest::getDescription()const
|
||||
void CreateImageRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setParameter("Description", description);
|
||||
setCoreParameter("Description", description);
|
||||
}
|
||||
|
||||
long CreateImageRequest::getOwnerId()const
|
||||
@@ -118,7 +118,7 @@ long CreateImageRequest::getOwnerId()const
|
||||
void CreateImageRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string CreateImageRequest::getPlatform()const
|
||||
@@ -129,7 +129,7 @@ std::string CreateImageRequest::getPlatform()const
|
||||
void CreateImageRequest::setPlatform(const std::string& platform)
|
||||
{
|
||||
platform_ = platform;
|
||||
setParameter("Platform", platform);
|
||||
setCoreParameter("Platform", platform);
|
||||
}
|
||||
|
||||
std::string CreateImageRequest::getSourceRegionId()const
|
||||
@@ -140,7 +140,7 @@ std::string CreateImageRequest::getSourceRegionId()const
|
||||
void CreateImageRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string CreateImageRequest::getResourceGroupId()const
|
||||
@@ -151,7 +151,7 @@ std::string CreateImageRequest::getResourceGroupId()const
|
||||
void CreateImageRequest::setResourceGroupId(const std::string& resourceGroupId)
|
||||
{
|
||||
resourceGroupId_ = resourceGroupId;
|
||||
setParameter("ResourceGroupId", resourceGroupId);
|
||||
setCoreParameter("ResourceGroupId", resourceGroupId);
|
||||
}
|
||||
|
||||
std::string CreateImageRequest::getInstanceId()const
|
||||
@@ -162,7 +162,7 @@ std::string CreateImageRequest::getInstanceId()const
|
||||
void CreateImageRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string CreateImageRequest::getRegionId()const
|
||||
@@ -173,7 +173,7 @@ std::string CreateImageRequest::getRegionId()const
|
||||
void CreateImageRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string CreateImageRequest::getImageName()const
|
||||
@@ -184,7 +184,7 @@ std::string CreateImageRequest::getImageName()const
|
||||
void CreateImageRequest::setImageName(const std::string& imageName)
|
||||
{
|
||||
imageName_ = imageName;
|
||||
setParameter("ImageName", imageName);
|
||||
setCoreParameter("ImageName", imageName);
|
||||
}
|
||||
|
||||
std::string CreateImageRequest::getImageVersion()const
|
||||
@@ -195,7 +195,7 @@ std::string CreateImageRequest::getImageVersion()const
|
||||
void CreateImageRequest::setImageVersion(const std::string& imageVersion)
|
||||
{
|
||||
imageVersion_ = imageVersion;
|
||||
setParameter("ImageVersion", imageVersion);
|
||||
setCoreParameter("ImageVersion", imageVersion);
|
||||
}
|
||||
|
||||
std::vector<CreateImageRequest::Tag> CreateImageRequest::getTag()const
|
||||
@@ -210,8 +210,8 @@ void CreateImageRequest::setTag(const std::vector<Tag>& tag)
|
||||
for(int i = 0; i!= tag.size(); i++) {
|
||||
auto obj = tag.at(i);
|
||||
std::string str ="Tag."+ std::to_string(i);
|
||||
setParameter(str + ".Value", obj.value);
|
||||
setParameter(str + ".Key", obj.key);
|
||||
setCoreParameter(str + ".Value", obj.value);
|
||||
setCoreParameter(str + ".Key", obj.key);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -223,6 +223,6 @@ std::string CreateImageRequest::getArchitecture()const
|
||||
void CreateImageRequest::setArchitecture(const std::string& architecture)
|
||||
{
|
||||
architecture_ = architecture;
|
||||
setParameter("Architecture", architecture);
|
||||
setCoreParameter("Architecture", architecture);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long CreateInstanceRequest::getResourceOwnerId()const
|
||||
void CreateInstanceRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getHpcClusterId()const
|
||||
@@ -44,7 +44,7 @@ std::string CreateInstanceRequest::getHpcClusterId()const
|
||||
void CreateInstanceRequest::setHpcClusterId(const std::string& hpcClusterId)
|
||||
{
|
||||
hpcClusterId_ = hpcClusterId;
|
||||
setParameter("HpcClusterId", hpcClusterId);
|
||||
setCoreParameter("HpcClusterId", hpcClusterId);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getSecurityEnhancementStrategy()const
|
||||
@@ -55,7 +55,7 @@ std::string CreateInstanceRequest::getSecurityEnhancementStrategy()const
|
||||
void CreateInstanceRequest::setSecurityEnhancementStrategy(const std::string& securityEnhancementStrategy)
|
||||
{
|
||||
securityEnhancementStrategy_ = securityEnhancementStrategy;
|
||||
setParameter("SecurityEnhancementStrategy", securityEnhancementStrategy);
|
||||
setCoreParameter("SecurityEnhancementStrategy", securityEnhancementStrategy);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getKeyPairName()const
|
||||
@@ -66,7 +66,7 @@ std::string CreateInstanceRequest::getKeyPairName()const
|
||||
void CreateInstanceRequest::setKeyPairName(const std::string& keyPairName)
|
||||
{
|
||||
keyPairName_ = keyPairName;
|
||||
setParameter("KeyPairName", keyPairName);
|
||||
setCoreParameter("KeyPairName", keyPairName);
|
||||
}
|
||||
|
||||
float CreateInstanceRequest::getSpotPriceLimit()const
|
||||
@@ -77,7 +77,7 @@ float CreateInstanceRequest::getSpotPriceLimit()const
|
||||
void CreateInstanceRequest::setSpotPriceLimit(float spotPriceLimit)
|
||||
{
|
||||
spotPriceLimit_ = spotPriceLimit;
|
||||
setParameter("SpotPriceLimit", std::to_string(spotPriceLimit));
|
||||
setCoreParameter("SpotPriceLimit", std::to_string(spotPriceLimit));
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getSourceRegionId()const
|
||||
@@ -88,7 +88,7 @@ std::string CreateInstanceRequest::getSourceRegionId()const
|
||||
void CreateInstanceRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
bool CreateInstanceRequest::getDeletionProtection()const
|
||||
@@ -99,7 +99,7 @@ bool CreateInstanceRequest::getDeletionProtection()const
|
||||
void CreateInstanceRequest::setDeletionProtection(bool deletionProtection)
|
||||
{
|
||||
deletionProtection_ = deletionProtection;
|
||||
setParameter("DeletionProtection", deletionProtection ? "true" : "false");
|
||||
setCoreParameter("DeletionProtection", deletionProtection ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getResourceGroupId()const
|
||||
@@ -110,7 +110,7 @@ std::string CreateInstanceRequest::getResourceGroupId()const
|
||||
void CreateInstanceRequest::setResourceGroupId(const std::string& resourceGroupId)
|
||||
{
|
||||
resourceGroupId_ = resourceGroupId;
|
||||
setParameter("ResourceGroupId", resourceGroupId);
|
||||
setCoreParameter("ResourceGroupId", resourceGroupId);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getHostName()const
|
||||
@@ -121,7 +121,7 @@ std::string CreateInstanceRequest::getHostName()const
|
||||
void CreateInstanceRequest::setHostName(const std::string& hostName)
|
||||
{
|
||||
hostName_ = hostName;
|
||||
setParameter("HostName", hostName);
|
||||
setCoreParameter("HostName", hostName);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getPassword()const
|
||||
@@ -132,7 +132,7 @@ std::string CreateInstanceRequest::getPassword()const
|
||||
void CreateInstanceRequest::setPassword(const std::string& password)
|
||||
{
|
||||
password_ = password;
|
||||
setParameter("Password", password);
|
||||
setCoreParameter("Password", password);
|
||||
}
|
||||
|
||||
std::vector<CreateInstanceRequest::Tag> CreateInstanceRequest::getTag()const
|
||||
@@ -147,8 +147,8 @@ void CreateInstanceRequest::setTag(const std::vector<Tag>& tag)
|
||||
for(int i = 0; i!= tag.size(); i++) {
|
||||
auto obj = tag.at(i);
|
||||
std::string str ="Tag."+ std::to_string(i);
|
||||
setParameter(str + ".Value", obj.value);
|
||||
setParameter(str + ".Key", obj.key);
|
||||
setCoreParameter(str + ".Value", obj.value);
|
||||
setCoreParameter(str + ".Key", obj.key);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -160,7 +160,7 @@ int CreateInstanceRequest::getAutoRenewPeriod()const
|
||||
void CreateInstanceRequest::setAutoRenewPeriod(int autoRenewPeriod)
|
||||
{
|
||||
autoRenewPeriod_ = autoRenewPeriod;
|
||||
setParameter("AutoRenewPeriod", std::to_string(autoRenewPeriod));
|
||||
setCoreParameter("AutoRenewPeriod", std::to_string(autoRenewPeriod));
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getNodeControllerId()const
|
||||
@@ -171,7 +171,7 @@ std::string CreateInstanceRequest::getNodeControllerId()const
|
||||
void CreateInstanceRequest::setNodeControllerId(const std::string& nodeControllerId)
|
||||
{
|
||||
nodeControllerId_ = nodeControllerId;
|
||||
setParameter("NodeControllerId", nodeControllerId);
|
||||
setCoreParameter("NodeControllerId", nodeControllerId);
|
||||
}
|
||||
|
||||
int CreateInstanceRequest::getPeriod()const
|
||||
@@ -182,7 +182,7 @@ int CreateInstanceRequest::getPeriod()const
|
||||
void CreateInstanceRequest::setPeriod(int period)
|
||||
{
|
||||
period_ = period;
|
||||
setParameter("Period", std::to_string(period));
|
||||
setCoreParameter("Period", std::to_string(period));
|
||||
}
|
||||
|
||||
bool CreateInstanceRequest::getDryRun()const
|
||||
@@ -193,7 +193,7 @@ bool CreateInstanceRequest::getDryRun()const
|
||||
void CreateInstanceRequest::setDryRun(bool dryRun)
|
||||
{
|
||||
dryRun_ = dryRun;
|
||||
setParameter("DryRun", dryRun ? "true" : "false");
|
||||
setCoreParameter("DryRun", dryRun ? "true" : "false");
|
||||
}
|
||||
|
||||
long CreateInstanceRequest::getOwnerId()const
|
||||
@@ -204,7 +204,7 @@ long CreateInstanceRequest::getOwnerId()const
|
||||
void CreateInstanceRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getCapacityReservationPreference()const
|
||||
@@ -215,7 +215,7 @@ std::string CreateInstanceRequest::getCapacityReservationPreference()const
|
||||
void CreateInstanceRequest::setCapacityReservationPreference(const std::string& capacityReservationPreference)
|
||||
{
|
||||
capacityReservationPreference_ = capacityReservationPreference;
|
||||
setParameter("CapacityReservationPreference", capacityReservationPreference);
|
||||
setCoreParameter("CapacityReservationPreference", capacityReservationPreference);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getVSwitchId()const
|
||||
@@ -226,7 +226,7 @@ std::string CreateInstanceRequest::getVSwitchId()const
|
||||
void CreateInstanceRequest::setVSwitchId(const std::string& vSwitchId)
|
||||
{
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter("VSwitchId", vSwitchId);
|
||||
setCoreParameter("VSwitchId", vSwitchId);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getPrivateIpAddress()const
|
||||
@@ -237,7 +237,7 @@ std::string CreateInstanceRequest::getPrivateIpAddress()const
|
||||
void CreateInstanceRequest::setPrivateIpAddress(const std::string& privateIpAddress)
|
||||
{
|
||||
privateIpAddress_ = privateIpAddress;
|
||||
setParameter("PrivateIpAddress", privateIpAddress);
|
||||
setCoreParameter("PrivateIpAddress", privateIpAddress);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getSpotStrategy()const
|
||||
@@ -248,7 +248,7 @@ std::string CreateInstanceRequest::getSpotStrategy()const
|
||||
void CreateInstanceRequest::setSpotStrategy(const std::string& spotStrategy)
|
||||
{
|
||||
spotStrategy_ = spotStrategy;
|
||||
setParameter("SpotStrategy", spotStrategy);
|
||||
setCoreParameter("SpotStrategy", spotStrategy);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getPeriodUnit()const
|
||||
@@ -259,7 +259,7 @@ std::string CreateInstanceRequest::getPeriodUnit()const
|
||||
void CreateInstanceRequest::setPeriodUnit(const std::string& periodUnit)
|
||||
{
|
||||
periodUnit_ = periodUnit;
|
||||
setParameter("PeriodUnit", periodUnit);
|
||||
setCoreParameter("PeriodUnit", periodUnit);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getInstanceName()const
|
||||
@@ -270,7 +270,7 @@ std::string CreateInstanceRequest::getInstanceName()const
|
||||
void CreateInstanceRequest::setInstanceName(const std::string& instanceName)
|
||||
{
|
||||
instanceName_ = instanceName;
|
||||
setParameter("InstanceName", instanceName);
|
||||
setCoreParameter("InstanceName", instanceName);
|
||||
}
|
||||
|
||||
bool CreateInstanceRequest::getAutoRenew()const
|
||||
@@ -281,7 +281,7 @@ bool CreateInstanceRequest::getAutoRenew()const
|
||||
void CreateInstanceRequest::setAutoRenew(bool autoRenew)
|
||||
{
|
||||
autoRenew_ = autoRenew;
|
||||
setParameter("AutoRenew", autoRenew ? "true" : "false");
|
||||
setCoreParameter("AutoRenew", autoRenew ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getInternetChargeType()const
|
||||
@@ -292,7 +292,7 @@ std::string CreateInstanceRequest::getInternetChargeType()const
|
||||
void CreateInstanceRequest::setInternetChargeType(const std::string& internetChargeType)
|
||||
{
|
||||
internetChargeType_ = internetChargeType;
|
||||
setParameter("InternetChargeType", internetChargeType);
|
||||
setCoreParameter("InternetChargeType", internetChargeType);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getZoneId()const
|
||||
@@ -303,7 +303,7 @@ std::string CreateInstanceRequest::getZoneId()const
|
||||
void CreateInstanceRequest::setZoneId(const std::string& zoneId)
|
||||
{
|
||||
zoneId_ = zoneId;
|
||||
setParameter("ZoneId", zoneId);
|
||||
setCoreParameter("ZoneId", zoneId);
|
||||
}
|
||||
|
||||
int CreateInstanceRequest::getInternetMaxBandwidthIn()const
|
||||
@@ -314,7 +314,7 @@ int CreateInstanceRequest::getInternetMaxBandwidthIn()const
|
||||
void CreateInstanceRequest::setInternetMaxBandwidthIn(int internetMaxBandwidthIn)
|
||||
{
|
||||
internetMaxBandwidthIn_ = internetMaxBandwidthIn;
|
||||
setParameter("InternetMaxBandwidthIn", std::to_string(internetMaxBandwidthIn));
|
||||
setCoreParameter("InternetMaxBandwidthIn", std::to_string(internetMaxBandwidthIn));
|
||||
}
|
||||
|
||||
bool CreateInstanceRequest::getUseAdditionalService()const
|
||||
@@ -325,7 +325,7 @@ bool CreateInstanceRequest::getUseAdditionalService()const
|
||||
void CreateInstanceRequest::setUseAdditionalService(bool useAdditionalService)
|
||||
{
|
||||
useAdditionalService_ = useAdditionalService;
|
||||
setParameter("UseAdditionalService", useAdditionalService ? "true" : "false");
|
||||
setCoreParameter("UseAdditionalService", useAdditionalService ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getImageId()const
|
||||
@@ -336,7 +336,7 @@ std::string CreateInstanceRequest::getImageId()const
|
||||
void CreateInstanceRequest::setImageId(const std::string& imageId)
|
||||
{
|
||||
imageId_ = imageId;
|
||||
setParameter("ImageId", imageId);
|
||||
setCoreParameter("ImageId", imageId);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getClientToken()const
|
||||
@@ -347,7 +347,7 @@ std::string CreateInstanceRequest::getClientToken()const
|
||||
void CreateInstanceRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getVlanId()const
|
||||
@@ -358,7 +358,7 @@ std::string CreateInstanceRequest::getVlanId()const
|
||||
void CreateInstanceRequest::setVlanId(const std::string& vlanId)
|
||||
{
|
||||
vlanId_ = vlanId;
|
||||
setParameter("VlanId", vlanId);
|
||||
setCoreParameter("VlanId", vlanId);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getSpotInterruptionBehavior()const
|
||||
@@ -369,7 +369,7 @@ std::string CreateInstanceRequest::getSpotInterruptionBehavior()const
|
||||
void CreateInstanceRequest::setSpotInterruptionBehavior(const std::string& spotInterruptionBehavior)
|
||||
{
|
||||
spotInterruptionBehavior_ = spotInterruptionBehavior;
|
||||
setParameter("SpotInterruptionBehavior", spotInterruptionBehavior);
|
||||
setCoreParameter("SpotInterruptionBehavior", spotInterruptionBehavior);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getIoOptimized()const
|
||||
@@ -380,7 +380,7 @@ std::string CreateInstanceRequest::getIoOptimized()const
|
||||
void CreateInstanceRequest::setIoOptimized(const std::string& ioOptimized)
|
||||
{
|
||||
ioOptimized_ = ioOptimized;
|
||||
setParameter("IoOptimized", ioOptimized);
|
||||
setCoreParameter("IoOptimized", ioOptimized);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getSecurityGroupId()const
|
||||
@@ -391,7 +391,7 @@ std::string CreateInstanceRequest::getSecurityGroupId()const
|
||||
void CreateInstanceRequest::setSecurityGroupId(const std::string& securityGroupId)
|
||||
{
|
||||
securityGroupId_ = securityGroupId;
|
||||
setParameter("SecurityGroupId", securityGroupId);
|
||||
setCoreParameter("SecurityGroupId", securityGroupId);
|
||||
}
|
||||
|
||||
int CreateInstanceRequest::getInternetMaxBandwidthOut()const
|
||||
@@ -402,7 +402,7 @@ int CreateInstanceRequest::getInternetMaxBandwidthOut()const
|
||||
void CreateInstanceRequest::setInternetMaxBandwidthOut(int internetMaxBandwidthOut)
|
||||
{
|
||||
internetMaxBandwidthOut_ = internetMaxBandwidthOut;
|
||||
setParameter("InternetMaxBandwidthOut", std::to_string(internetMaxBandwidthOut));
|
||||
setCoreParameter("InternetMaxBandwidthOut", std::to_string(internetMaxBandwidthOut));
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getDescription()const
|
||||
@@ -413,7 +413,7 @@ std::string CreateInstanceRequest::getDescription()const
|
||||
void CreateInstanceRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setParameter("Description", description);
|
||||
setCoreParameter("Description", description);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getSystemDiskCategory()const
|
||||
@@ -424,7 +424,7 @@ std::string CreateInstanceRequest::getSystemDiskCategory()const
|
||||
void CreateInstanceRequest::setSystemDiskCategory(const std::string& systemDiskCategory)
|
||||
{
|
||||
systemDiskCategory_ = systemDiskCategory;
|
||||
setParameter("SystemDiskCategory", systemDiskCategory);
|
||||
setCoreParameter("SystemDiskCategory", systemDiskCategory);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getCapacityReservationId()const
|
||||
@@ -435,7 +435,7 @@ std::string CreateInstanceRequest::getCapacityReservationId()const
|
||||
void CreateInstanceRequest::setCapacityReservationId(const std::string& capacityReservationId)
|
||||
{
|
||||
capacityReservationId_ = capacityReservationId;
|
||||
setParameter("CapacityReservationId", capacityReservationId);
|
||||
setCoreParameter("CapacityReservationId", capacityReservationId);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getUserData()const
|
||||
@@ -446,7 +446,7 @@ std::string CreateInstanceRequest::getUserData()const
|
||||
void CreateInstanceRequest::setUserData(const std::string& userData)
|
||||
{
|
||||
userData_ = userData;
|
||||
setParameter("UserData", userData);
|
||||
setCoreParameter("UserData", userData);
|
||||
}
|
||||
|
||||
bool CreateInstanceRequest::getPasswordInherit()const
|
||||
@@ -457,7 +457,7 @@ bool CreateInstanceRequest::getPasswordInherit()const
|
||||
void CreateInstanceRequest::setPasswordInherit(bool passwordInherit)
|
||||
{
|
||||
passwordInherit_ = passwordInherit;
|
||||
setParameter("PasswordInherit", passwordInherit ? "true" : "false");
|
||||
setCoreParameter("PasswordInherit", passwordInherit ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getRegionId()const
|
||||
@@ -468,7 +468,7 @@ std::string CreateInstanceRequest::getRegionId()const
|
||||
void CreateInstanceRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getInstanceType()const
|
||||
@@ -479,7 +479,7 @@ std::string CreateInstanceRequest::getInstanceType()const
|
||||
void CreateInstanceRequest::setInstanceType(const std::string& instanceType)
|
||||
{
|
||||
instanceType_ = instanceType;
|
||||
setParameter("InstanceType", instanceType);
|
||||
setCoreParameter("InstanceType", instanceType);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getInstanceChargeType()const
|
||||
@@ -490,7 +490,7 @@ std::string CreateInstanceRequest::getInstanceChargeType()const
|
||||
void CreateInstanceRequest::setInstanceChargeType(const std::string& instanceChargeType)
|
||||
{
|
||||
instanceChargeType_ = instanceChargeType;
|
||||
setParameter("InstanceChargeType", instanceChargeType);
|
||||
setCoreParameter("InstanceChargeType", instanceChargeType);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getDeploymentSetId()const
|
||||
@@ -501,7 +501,7 @@ std::string CreateInstanceRequest::getDeploymentSetId()const
|
||||
void CreateInstanceRequest::setDeploymentSetId(const std::string& deploymentSetId)
|
||||
{
|
||||
deploymentSetId_ = deploymentSetId;
|
||||
setParameter("DeploymentSetId", deploymentSetId);
|
||||
setCoreParameter("DeploymentSetId", deploymentSetId);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getInnerIpAddress()const
|
||||
@@ -512,7 +512,7 @@ std::string CreateInstanceRequest::getInnerIpAddress()const
|
||||
void CreateInstanceRequest::setInnerIpAddress(const std::string& innerIpAddress)
|
||||
{
|
||||
innerIpAddress_ = innerIpAddress;
|
||||
setParameter("InnerIpAddress", innerIpAddress);
|
||||
setCoreParameter("InnerIpAddress", innerIpAddress);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getResourceOwnerAccount()const
|
||||
@@ -523,7 +523,7 @@ std::string CreateInstanceRequest::getResourceOwnerAccount()const
|
||||
void CreateInstanceRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getOwnerAccount()const
|
||||
@@ -534,7 +534,7 @@ std::string CreateInstanceRequest::getOwnerAccount()const
|
||||
void CreateInstanceRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getSystemDiskDiskName()const
|
||||
@@ -545,7 +545,7 @@ std::string CreateInstanceRequest::getSystemDiskDiskName()const
|
||||
void CreateInstanceRequest::setSystemDiskDiskName(const std::string& systemDiskDiskName)
|
||||
{
|
||||
systemDiskDiskName_ = systemDiskDiskName;
|
||||
setParameter("SystemDiskDiskName", systemDiskDiskName);
|
||||
setCoreParameter("SystemDiskDiskName", systemDiskDiskName);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getRamRoleName()const
|
||||
@@ -556,7 +556,7 @@ std::string CreateInstanceRequest::getRamRoleName()const
|
||||
void CreateInstanceRequest::setRamRoleName(const std::string& ramRoleName)
|
||||
{
|
||||
ramRoleName_ = ramRoleName;
|
||||
setParameter("RamRoleName", ramRoleName);
|
||||
setCoreParameter("RamRoleName", ramRoleName);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getDedicatedHostId()const
|
||||
@@ -567,7 +567,7 @@ std::string CreateInstanceRequest::getDedicatedHostId()const
|
||||
void CreateInstanceRequest::setDedicatedHostId(const std::string& dedicatedHostId)
|
||||
{
|
||||
dedicatedHostId_ = dedicatedHostId;
|
||||
setParameter("DedicatedHostId", dedicatedHostId);
|
||||
setCoreParameter("DedicatedHostId", dedicatedHostId);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getClusterId()const
|
||||
@@ -578,7 +578,7 @@ std::string CreateInstanceRequest::getClusterId()const
|
||||
void CreateInstanceRequest::setClusterId(const std::string& clusterId)
|
||||
{
|
||||
clusterId_ = clusterId;
|
||||
setParameter("ClusterId", clusterId);
|
||||
setCoreParameter("ClusterId", clusterId);
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getCreditSpecification()const
|
||||
@@ -589,7 +589,7 @@ std::string CreateInstanceRequest::getCreditSpecification()const
|
||||
void CreateInstanceRequest::setCreditSpecification(const std::string& creditSpecification)
|
||||
{
|
||||
creditSpecification_ = creditSpecification;
|
||||
setParameter("CreditSpecification", creditSpecification);
|
||||
setCoreParameter("CreditSpecification", creditSpecification);
|
||||
}
|
||||
|
||||
std::vector<CreateInstanceRequest::DataDisk> CreateInstanceRequest::getDataDisk()const
|
||||
@@ -604,15 +604,15 @@ void CreateInstanceRequest::setDataDisk(const std::vector<DataDisk>& dataDisk)
|
||||
for(int i = 0; i!= dataDisk.size(); i++) {
|
||||
auto obj = dataDisk.at(i);
|
||||
std::string str ="DataDisk."+ std::to_string(i);
|
||||
setParameter(str + ".DiskName", obj.diskName);
|
||||
setParameter(str + ".SnapshotId", obj.snapshotId);
|
||||
setParameter(str + ".Size", std::to_string(obj.size));
|
||||
setParameter(str + ".Encrypted", obj.encrypted ? "true" : "false");
|
||||
setParameter(str + ".Description", obj.description);
|
||||
setParameter(str + ".Category", obj.category);
|
||||
setParameter(str + ".KMSKeyId", obj.kMSKeyId);
|
||||
setParameter(str + ".Device", obj.device);
|
||||
setParameter(str + ".DeleteWithInstance", obj.deleteWithInstance ? "true" : "false");
|
||||
setCoreParameter(str + ".DiskName", obj.diskName);
|
||||
setCoreParameter(str + ".SnapshotId", obj.snapshotId);
|
||||
setCoreParameter(str + ".Size", std::to_string(obj.size));
|
||||
setCoreParameter(str + ".Encrypted", obj.encrypted ? "true" : "false");
|
||||
setCoreParameter(str + ".Description", obj.description);
|
||||
setCoreParameter(str + ".Category", obj.category);
|
||||
setCoreParameter(str + ".KMSKeyId", obj.kMSKeyId);
|
||||
setCoreParameter(str + ".Device", obj.device);
|
||||
setCoreParameter(str + ".DeleteWithInstance", obj.deleteWithInstance ? "true" : "false");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -624,7 +624,7 @@ int CreateInstanceRequest::getSystemDiskSize()const
|
||||
void CreateInstanceRequest::setSystemDiskSize(int systemDiskSize)
|
||||
{
|
||||
systemDiskSize_ = systemDiskSize;
|
||||
setParameter("SystemDiskSize", std::to_string(systemDiskSize));
|
||||
setCoreParameter("SystemDiskSize", std::to_string(systemDiskSize));
|
||||
}
|
||||
|
||||
std::string CreateInstanceRequest::getSystemDiskDescription()const
|
||||
@@ -635,6 +635,6 @@ std::string CreateInstanceRequest::getSystemDiskDescription()const
|
||||
void CreateInstanceRequest::setSystemDiskDescription(const std::string& systemDiskDescription)
|
||||
{
|
||||
systemDiskDescription_ = systemDiskDescription;
|
||||
setParameter("SystemDiskDescription", systemDiskDescription);
|
||||
setCoreParameter("SystemDiskDescription", systemDiskDescription);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string CreateKeyPairRequest::getSourceRegionId()const
|
||||
void CreateKeyPairRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string CreateKeyPairRequest::getResourceGroupId()const
|
||||
@@ -44,7 +44,7 @@ std::string CreateKeyPairRequest::getResourceGroupId()const
|
||||
void CreateKeyPairRequest::setResourceGroupId(const std::string& resourceGroupId)
|
||||
{
|
||||
resourceGroupId_ = resourceGroupId;
|
||||
setParameter("ResourceGroupId", resourceGroupId);
|
||||
setCoreParameter("ResourceGroupId", resourceGroupId);
|
||||
}
|
||||
|
||||
long CreateKeyPairRequest::getResourceOwnerId()const
|
||||
@@ -55,7 +55,7 @@ long CreateKeyPairRequest::getResourceOwnerId()const
|
||||
void CreateKeyPairRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateKeyPairRequest::getResourceOwnerAccount()const
|
||||
@@ -66,7 +66,7 @@ std::string CreateKeyPairRequest::getResourceOwnerAccount()const
|
||||
void CreateKeyPairRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateKeyPairRequest::getRegionId()const
|
||||
@@ -77,7 +77,7 @@ std::string CreateKeyPairRequest::getRegionId()const
|
||||
void CreateKeyPairRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string CreateKeyPairRequest::getKeyPairName()const
|
||||
@@ -88,7 +88,7 @@ std::string CreateKeyPairRequest::getKeyPairName()const
|
||||
void CreateKeyPairRequest::setKeyPairName(const std::string& keyPairName)
|
||||
{
|
||||
keyPairName_ = keyPairName;
|
||||
setParameter("KeyPairName", keyPairName);
|
||||
setCoreParameter("KeyPairName", keyPairName);
|
||||
}
|
||||
|
||||
std::vector<CreateKeyPairRequest::Tag> CreateKeyPairRequest::getTag()const
|
||||
@@ -103,8 +103,8 @@ void CreateKeyPairRequest::setTag(const std::vector<Tag>& tag)
|
||||
for(int i = 0; i!= tag.size(); i++) {
|
||||
auto obj = tag.at(i);
|
||||
std::string str ="Tag."+ std::to_string(i);
|
||||
setParameter(str + ".Value", obj.value);
|
||||
setParameter(str + ".Key", obj.key);
|
||||
setCoreParameter(str + ".Value", obj.value);
|
||||
setCoreParameter(str + ".Key", obj.key);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -116,6 +116,6 @@ long CreateKeyPairRequest::getOwnerId()const
|
||||
void CreateKeyPairRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string CreateLaunchTemplateRequest::getLaunchTemplateName()const
|
||||
void CreateLaunchTemplateRequest::setLaunchTemplateName(const std::string& launchTemplateName)
|
||||
{
|
||||
launchTemplateName_ = launchTemplateName;
|
||||
setParameter("LaunchTemplateName", launchTemplateName);
|
||||
setCoreParameter("LaunchTemplateName", launchTemplateName);
|
||||
}
|
||||
|
||||
long CreateLaunchTemplateRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long CreateLaunchTemplateRequest::getResourceOwnerId()const
|
||||
void CreateLaunchTemplateRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long CreateLaunchTemplateRequest::getCallerParentId()const
|
||||
@@ -55,7 +55,7 @@ long CreateLaunchTemplateRequest::getCallerParentId()const
|
||||
void CreateLaunchTemplateRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getSecurityEnhancementStrategy()const
|
||||
@@ -66,7 +66,7 @@ std::string CreateLaunchTemplateRequest::getSecurityEnhancementStrategy()const
|
||||
void CreateLaunchTemplateRequest::setSecurityEnhancementStrategy(const std::string& securityEnhancementStrategy)
|
||||
{
|
||||
securityEnhancementStrategy_ = securityEnhancementStrategy;
|
||||
setParameter("SecurityEnhancementStrategy", securityEnhancementStrategy);
|
||||
setCoreParameter("SecurityEnhancementStrategy", securityEnhancementStrategy);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getNetworkType()const
|
||||
@@ -77,7 +77,7 @@ std::string CreateLaunchTemplateRequest::getNetworkType()const
|
||||
void CreateLaunchTemplateRequest::setNetworkType(const std::string& networkType)
|
||||
{
|
||||
networkType_ = networkType;
|
||||
setParameter("NetworkType", networkType);
|
||||
setCoreParameter("NetworkType", networkType);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getKeyPairName()const
|
||||
@@ -88,7 +88,7 @@ std::string CreateLaunchTemplateRequest::getKeyPairName()const
|
||||
void CreateLaunchTemplateRequest::setKeyPairName(const std::string& keyPairName)
|
||||
{
|
||||
keyPairName_ = keyPairName;
|
||||
setParameter("KeyPairName", keyPairName);
|
||||
setCoreParameter("KeyPairName", keyPairName);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getProxy_original_source_ip()const
|
||||
@@ -99,7 +99,7 @@ std::string CreateLaunchTemplateRequest::getProxy_original_source_ip()const
|
||||
void CreateLaunchTemplateRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
float CreateLaunchTemplateRequest::getSpotPriceLimit()const
|
||||
@@ -110,7 +110,7 @@ float CreateLaunchTemplateRequest::getSpotPriceLimit()const
|
||||
void CreateLaunchTemplateRequest::setSpotPriceLimit(float spotPriceLimit)
|
||||
{
|
||||
spotPriceLimit_ = spotPriceLimit;
|
||||
setParameter("SpotPriceLimit", std::to_string(spotPriceLimit));
|
||||
setCoreParameter("SpotPriceLimit", std::to_string(spotPriceLimit));
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getOwnerIdLoginEmail()const
|
||||
@@ -121,7 +121,7 @@ std::string CreateLaunchTemplateRequest::getOwnerIdLoginEmail()const
|
||||
void CreateLaunchTemplateRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getCallerType()const
|
||||
@@ -132,7 +132,7 @@ std::string CreateLaunchTemplateRequest::getCallerType()const
|
||||
void CreateLaunchTemplateRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getImageOwnerAlias()const
|
||||
@@ -143,7 +143,7 @@ std::string CreateLaunchTemplateRequest::getImageOwnerAlias()const
|
||||
void CreateLaunchTemplateRequest::setImageOwnerAlias(const std::string& imageOwnerAlias)
|
||||
{
|
||||
imageOwnerAlias_ = imageOwnerAlias;
|
||||
setParameter("ImageOwnerAlias", imageOwnerAlias);
|
||||
setCoreParameter("ImageOwnerAlias", imageOwnerAlias);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getSourceRegionId()const
|
||||
@@ -154,7 +154,7 @@ std::string CreateLaunchTemplateRequest::getSourceRegionId()const
|
||||
void CreateLaunchTemplateRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getResourceGroupId()const
|
||||
@@ -165,7 +165,7 @@ std::string CreateLaunchTemplateRequest::getResourceGroupId()const
|
||||
void CreateLaunchTemplateRequest::setResourceGroupId(const std::string& resourceGroupId)
|
||||
{
|
||||
resourceGroupId_ = resourceGroupId;
|
||||
setParameter("ResourceGroupId", resourceGroupId);
|
||||
setCoreParameter("ResourceGroupId", resourceGroupId);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getHostName()const
|
||||
@@ -176,7 +176,7 @@ std::string CreateLaunchTemplateRequest::getHostName()const
|
||||
void CreateLaunchTemplateRequest::setHostName(const std::string& hostName)
|
||||
{
|
||||
hostName_ = hostName;
|
||||
setParameter("HostName", hostName);
|
||||
setCoreParameter("HostName", hostName);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getSecurityToken()const
|
||||
@@ -187,7 +187,7 @@ std::string CreateLaunchTemplateRequest::getSecurityToken()const
|
||||
void CreateLaunchTemplateRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
bool CreateLaunchTemplateRequest::getEnable()const
|
||||
@@ -198,7 +198,7 @@ bool CreateLaunchTemplateRequest::getEnable()const
|
||||
void CreateLaunchTemplateRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
int CreateLaunchTemplateRequest::getSystemDiskIops()const
|
||||
@@ -209,7 +209,7 @@ int CreateLaunchTemplateRequest::getSystemDiskIops()const
|
||||
void CreateLaunchTemplateRequest::setSystemDiskIops(int systemDiskIops)
|
||||
{
|
||||
systemDiskIops_ = systemDiskIops;
|
||||
setParameter("SystemDiskIops", std::to_string(systemDiskIops));
|
||||
setCoreParameter("SystemDiskIops", std::to_string(systemDiskIops));
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getCallerBidEmail()const
|
||||
@@ -220,7 +220,7 @@ std::string CreateLaunchTemplateRequest::getCallerBidEmail()const
|
||||
void CreateLaunchTemplateRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::vector<CreateLaunchTemplateRequest::TemplateTag> CreateLaunchTemplateRequest::getTemplateTag()const
|
||||
@@ -235,8 +235,8 @@ void CreateLaunchTemplateRequest::setTemplateTag(const std::vector<TemplateTag>&
|
||||
for(int i = 0; i!= templateTag.size(); i++) {
|
||||
auto obj = templateTag.at(i);
|
||||
std::string str ="TemplateTag."+ std::to_string(i);
|
||||
setParameter(str + ".Key", obj.key);
|
||||
setParameter(str + ".Value", obj.value);
|
||||
setCoreParameter(str + ".Key", obj.key);
|
||||
setCoreParameter(str + ".Value", obj.value);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -252,8 +252,8 @@ void CreateLaunchTemplateRequest::setTag(const std::vector<Tag>& tag)
|
||||
for(int i = 0; i!= tag.size(); i++) {
|
||||
auto obj = tag.at(i);
|
||||
std::string str ="Tag."+ std::to_string(i);
|
||||
setParameter(str + ".Key", obj.key);
|
||||
setParameter(str + ".Value", obj.value);
|
||||
setCoreParameter(str + ".Key", obj.key);
|
||||
setCoreParameter(str + ".Value", obj.value);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -265,7 +265,7 @@ long CreateLaunchTemplateRequest::getCallerUid()const
|
||||
void CreateLaunchTemplateRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
int CreateLaunchTemplateRequest::getPeriod()const
|
||||
@@ -276,7 +276,7 @@ int CreateLaunchTemplateRequest::getPeriod()const
|
||||
void CreateLaunchTemplateRequest::setPeriod(int period)
|
||||
{
|
||||
period_ = period;
|
||||
setParameter("Period", std::to_string(period));
|
||||
setCoreParameter("Period", std::to_string(period));
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getTemplateResourceGroupId()const
|
||||
@@ -287,7 +287,7 @@ std::string CreateLaunchTemplateRequest::getTemplateResourceGroupId()const
|
||||
void CreateLaunchTemplateRequest::setTemplateResourceGroupId(const std::string& templateResourceGroupId)
|
||||
{
|
||||
templateResourceGroupId_ = templateResourceGroupId;
|
||||
setParameter("TemplateResourceGroupId", templateResourceGroupId);
|
||||
setCoreParameter("TemplateResourceGroupId", templateResourceGroupId);
|
||||
}
|
||||
|
||||
long CreateLaunchTemplateRequest::getOwnerId()const
|
||||
@@ -298,7 +298,7 @@ long CreateLaunchTemplateRequest::getOwnerId()const
|
||||
void CreateLaunchTemplateRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool CreateLaunchTemplateRequest::getAk_mfa_present()const
|
||||
@@ -309,7 +309,7 @@ bool CreateLaunchTemplateRequest::getAk_mfa_present()const
|
||||
void CreateLaunchTemplateRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool CreateLaunchTemplateRequest::getSecurity_transport()const
|
||||
@@ -320,7 +320,7 @@ bool CreateLaunchTemplateRequest::getSecurity_transport()const
|
||||
void CreateLaunchTemplateRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getVSwitchId()const
|
||||
@@ -331,7 +331,7 @@ std::string CreateLaunchTemplateRequest::getVSwitchId()const
|
||||
void CreateLaunchTemplateRequest::setVSwitchId(const std::string& vSwitchId)
|
||||
{
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter("VSwitchId", vSwitchId);
|
||||
setCoreParameter("VSwitchId", vSwitchId);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getSpotStrategy()const
|
||||
@@ -342,7 +342,7 @@ std::string CreateLaunchTemplateRequest::getSpotStrategy()const
|
||||
void CreateLaunchTemplateRequest::setSpotStrategy(const std::string& spotStrategy)
|
||||
{
|
||||
spotStrategy_ = spotStrategy;
|
||||
setParameter("SpotStrategy", spotStrategy);
|
||||
setCoreParameter("SpotStrategy", spotStrategy);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getInstanceName()const
|
||||
@@ -353,7 +353,7 @@ std::string CreateLaunchTemplateRequest::getInstanceName()const
|
||||
void CreateLaunchTemplateRequest::setInstanceName(const std::string& instanceName)
|
||||
{
|
||||
instanceName_ = instanceName;
|
||||
setParameter("InstanceName", instanceName);
|
||||
setCoreParameter("InstanceName", instanceName);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getRequestId()const
|
||||
@@ -364,7 +364,7 @@ std::string CreateLaunchTemplateRequest::getRequestId()const
|
||||
void CreateLaunchTemplateRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getInternetChargeType()const
|
||||
@@ -375,7 +375,7 @@ std::string CreateLaunchTemplateRequest::getInternetChargeType()const
|
||||
void CreateLaunchTemplateRequest::setInternetChargeType(const std::string& internetChargeType)
|
||||
{
|
||||
internetChargeType_ = internetChargeType;
|
||||
setParameter("InternetChargeType", internetChargeType);
|
||||
setCoreParameter("InternetChargeType", internetChargeType);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getZoneId()const
|
||||
@@ -386,7 +386,7 @@ std::string CreateLaunchTemplateRequest::getZoneId()const
|
||||
void CreateLaunchTemplateRequest::setZoneId(const std::string& zoneId)
|
||||
{
|
||||
zoneId_ = zoneId;
|
||||
setParameter("ZoneId", zoneId);
|
||||
setCoreParameter("ZoneId", zoneId);
|
||||
}
|
||||
|
||||
int CreateLaunchTemplateRequest::getInternetMaxBandwidthIn()const
|
||||
@@ -397,7 +397,7 @@ int CreateLaunchTemplateRequest::getInternetMaxBandwidthIn()const
|
||||
void CreateLaunchTemplateRequest::setInternetMaxBandwidthIn(int internetMaxBandwidthIn)
|
||||
{
|
||||
internetMaxBandwidthIn_ = internetMaxBandwidthIn;
|
||||
setParameter("InternetMaxBandwidthIn", std::to_string(internetMaxBandwidthIn));
|
||||
setCoreParameter("InternetMaxBandwidthIn", std::to_string(internetMaxBandwidthIn));
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getVersionDescription()const
|
||||
@@ -408,7 +408,7 @@ std::string CreateLaunchTemplateRequest::getVersionDescription()const
|
||||
void CreateLaunchTemplateRequest::setVersionDescription(const std::string& versionDescription)
|
||||
{
|
||||
versionDescription_ = versionDescription;
|
||||
setParameter("VersionDescription", versionDescription);
|
||||
setCoreParameter("VersionDescription", versionDescription);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getImageId()const
|
||||
@@ -419,7 +419,7 @@ std::string CreateLaunchTemplateRequest::getImageId()const
|
||||
void CreateLaunchTemplateRequest::setImageId(const std::string& imageId)
|
||||
{
|
||||
imageId_ = imageId;
|
||||
setParameter("ImageId", imageId);
|
||||
setCoreParameter("ImageId", imageId);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getIoOptimized()const
|
||||
@@ -430,7 +430,7 @@ std::string CreateLaunchTemplateRequest::getIoOptimized()const
|
||||
void CreateLaunchTemplateRequest::setIoOptimized(const std::string& ioOptimized)
|
||||
{
|
||||
ioOptimized_ = ioOptimized;
|
||||
setParameter("IoOptimized", ioOptimized);
|
||||
setCoreParameter("IoOptimized", ioOptimized);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getSecurityGroupId()const
|
||||
@@ -441,7 +441,7 @@ std::string CreateLaunchTemplateRequest::getSecurityGroupId()const
|
||||
void CreateLaunchTemplateRequest::setSecurityGroupId(const std::string& securityGroupId)
|
||||
{
|
||||
securityGroupId_ = securityGroupId;
|
||||
setParameter("SecurityGroupId", securityGroupId);
|
||||
setCoreParameter("SecurityGroupId", securityGroupId);
|
||||
}
|
||||
|
||||
int CreateLaunchTemplateRequest::getInternetMaxBandwidthOut()const
|
||||
@@ -452,7 +452,7 @@ int CreateLaunchTemplateRequest::getInternetMaxBandwidthOut()const
|
||||
void CreateLaunchTemplateRequest::setInternetMaxBandwidthOut(int internetMaxBandwidthOut)
|
||||
{
|
||||
internetMaxBandwidthOut_ = internetMaxBandwidthOut;
|
||||
setParameter("InternetMaxBandwidthOut", std::to_string(internetMaxBandwidthOut));
|
||||
setCoreParameter("InternetMaxBandwidthOut", std::to_string(internetMaxBandwidthOut));
|
||||
}
|
||||
|
||||
bool CreateLaunchTemplateRequest::getProxy_original_security_transport()const
|
||||
@@ -463,7 +463,7 @@ bool CreateLaunchTemplateRequest::getProxy_original_security_transport()const
|
||||
void CreateLaunchTemplateRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getDescription()const
|
||||
@@ -474,7 +474,7 @@ std::string CreateLaunchTemplateRequest::getDescription()const
|
||||
void CreateLaunchTemplateRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setParameter("Description", description);
|
||||
setCoreParameter("Description", description);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getSystemDiskCategory()const
|
||||
@@ -485,7 +485,7 @@ std::string CreateLaunchTemplateRequest::getSystemDiskCategory()const
|
||||
void CreateLaunchTemplateRequest::setSystemDiskCategory(const std::string& systemDiskCategory)
|
||||
{
|
||||
systemDiskCategory_ = systemDiskCategory;
|
||||
setParameter("SystemDiskCategory", systemDiskCategory);
|
||||
setCoreParameter("SystemDiskCategory", systemDiskCategory);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getAccessKeyId()const
|
||||
@@ -496,7 +496,7 @@ std::string CreateLaunchTemplateRequest::getAccessKeyId()const
|
||||
void CreateLaunchTemplateRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getUserData()const
|
||||
@@ -507,7 +507,7 @@ std::string CreateLaunchTemplateRequest::getUserData()const
|
||||
void CreateLaunchTemplateRequest::setUserData(const std::string& userData)
|
||||
{
|
||||
userData_ = userData;
|
||||
setParameter("UserData", userData);
|
||||
setCoreParameter("UserData", userData);
|
||||
}
|
||||
|
||||
bool CreateLaunchTemplateRequest::getPasswordInherit()const
|
||||
@@ -518,7 +518,7 @@ bool CreateLaunchTemplateRequest::getPasswordInherit()const
|
||||
void CreateLaunchTemplateRequest::setPasswordInherit(bool passwordInherit)
|
||||
{
|
||||
passwordInherit_ = passwordInherit;
|
||||
setParameter("PasswordInherit", passwordInherit ? "true" : "false");
|
||||
setCoreParameter("PasswordInherit", passwordInherit ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getRegionId()const
|
||||
@@ -529,7 +529,7 @@ std::string CreateLaunchTemplateRequest::getRegionId()const
|
||||
void CreateLaunchTemplateRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getRequestContent()const
|
||||
@@ -540,7 +540,7 @@ std::string CreateLaunchTemplateRequest::getRequestContent()const
|
||||
void CreateLaunchTemplateRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getInstanceType()const
|
||||
@@ -551,7 +551,7 @@ std::string CreateLaunchTemplateRequest::getInstanceType()const
|
||||
void CreateLaunchTemplateRequest::setInstanceType(const std::string& instanceType)
|
||||
{
|
||||
instanceType_ = instanceType;
|
||||
setParameter("InstanceType", instanceType);
|
||||
setCoreParameter("InstanceType", instanceType);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getInstanceChargeType()const
|
||||
@@ -562,7 +562,7 @@ std::string CreateLaunchTemplateRequest::getInstanceChargeType()const
|
||||
void CreateLaunchTemplateRequest::setInstanceChargeType(const std::string& instanceChargeType)
|
||||
{
|
||||
instanceChargeType_ = instanceChargeType;
|
||||
setParameter("InstanceChargeType", instanceChargeType);
|
||||
setCoreParameter("InstanceChargeType", instanceChargeType);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getCallerUidEmail()const
|
||||
@@ -573,7 +573,7 @@ std::string CreateLaunchTemplateRequest::getCallerUidEmail()const
|
||||
void CreateLaunchTemplateRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
bool CreateLaunchTemplateRequest::getEnableVmOsConfig()const
|
||||
@@ -584,7 +584,7 @@ bool CreateLaunchTemplateRequest::getEnableVmOsConfig()const
|
||||
void CreateLaunchTemplateRequest::setEnableVmOsConfig(bool enableVmOsConfig)
|
||||
{
|
||||
enableVmOsConfig_ = enableVmOsConfig;
|
||||
setParameter("EnableVmOsConfig", enableVmOsConfig ? "true" : "false");
|
||||
setCoreParameter("EnableVmOsConfig", enableVmOsConfig ? "true" : "false");
|
||||
}
|
||||
|
||||
std::vector<CreateLaunchTemplateRequest::NetworkInterface> CreateLaunchTemplateRequest::getNetworkInterface()const
|
||||
@@ -599,11 +599,11 @@ void CreateLaunchTemplateRequest::setNetworkInterface(const std::vector<NetworkI
|
||||
for(int i = 0; i!= networkInterface.size(); i++) {
|
||||
auto obj = networkInterface.at(i);
|
||||
std::string str ="NetworkInterface."+ std::to_string(i);
|
||||
setParameter(str + ".PrimaryIpAddress", obj.primaryIpAddress);
|
||||
setParameter(str + ".VSwitchId", obj.vSwitchId);
|
||||
setParameter(str + ".SecurityGroupId", obj.securityGroupId);
|
||||
setParameter(str + ".NetworkInterfaceName", obj.networkInterfaceName);
|
||||
setParameter(str + ".Description", obj.description);
|
||||
setCoreParameter(str + ".PrimaryIpAddress", obj.primaryIpAddress);
|
||||
setCoreParameter(str + ".VSwitchId", obj.vSwitchId);
|
||||
setCoreParameter(str + ".SecurityGroupId", obj.securityGroupId);
|
||||
setCoreParameter(str + ".NetworkInterfaceName", obj.networkInterfaceName);
|
||||
setCoreParameter(str + ".Description", obj.description);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -615,7 +615,7 @@ std::string CreateLaunchTemplateRequest::getApp_ip()const
|
||||
void CreateLaunchTemplateRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getResourceOwnerAccount()const
|
||||
@@ -626,7 +626,7 @@ std::string CreateLaunchTemplateRequest::getResourceOwnerAccount()const
|
||||
void CreateLaunchTemplateRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getOwnerAccount()const
|
||||
@@ -637,7 +637,7 @@ std::string CreateLaunchTemplateRequest::getOwnerAccount()const
|
||||
void CreateLaunchTemplateRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getSystemDiskDiskName()const
|
||||
@@ -648,7 +648,7 @@ std::string CreateLaunchTemplateRequest::getSystemDiskDiskName()const
|
||||
void CreateLaunchTemplateRequest::setSystemDiskDiskName(const std::string& systemDiskDiskName)
|
||||
{
|
||||
systemDiskDiskName_ = systemDiskDiskName;
|
||||
setParameter("SystemDiskDiskName", systemDiskDiskName);
|
||||
setCoreParameter("SystemDiskDiskName", systemDiskDiskName);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getRamRoleName()const
|
||||
@@ -659,7 +659,7 @@ std::string CreateLaunchTemplateRequest::getRamRoleName()const
|
||||
void CreateLaunchTemplateRequest::setRamRoleName(const std::string& ramRoleName)
|
||||
{
|
||||
ramRoleName_ = ramRoleName;
|
||||
setParameter("RamRoleName", ramRoleName);
|
||||
setCoreParameter("RamRoleName", ramRoleName);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getAutoReleaseTime()const
|
||||
@@ -670,7 +670,7 @@ std::string CreateLaunchTemplateRequest::getAutoReleaseTime()const
|
||||
void CreateLaunchTemplateRequest::setAutoReleaseTime(const std::string& autoReleaseTime)
|
||||
{
|
||||
autoReleaseTime_ = autoReleaseTime;
|
||||
setParameter("AutoReleaseTime", autoReleaseTime);
|
||||
setCoreParameter("AutoReleaseTime", autoReleaseTime);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getCallerBid()const
|
||||
@@ -681,7 +681,7 @@ std::string CreateLaunchTemplateRequest::getCallerBid()const
|
||||
void CreateLaunchTemplateRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
int CreateLaunchTemplateRequest::getSpotDuration()const
|
||||
@@ -692,7 +692,7 @@ int CreateLaunchTemplateRequest::getSpotDuration()const
|
||||
void CreateLaunchTemplateRequest::setSpotDuration(int spotDuration)
|
||||
{
|
||||
spotDuration_ = spotDuration;
|
||||
setParameter("SpotDuration", std::to_string(spotDuration));
|
||||
setCoreParameter("SpotDuration", std::to_string(spotDuration));
|
||||
}
|
||||
|
||||
std::vector<CreateLaunchTemplateRequest::DataDisk> CreateLaunchTemplateRequest::getDataDisk()const
|
||||
@@ -707,14 +707,14 @@ void CreateLaunchTemplateRequest::setDataDisk(const std::vector<DataDisk>& dataD
|
||||
for(int i = 0; i!= dataDisk.size(); i++) {
|
||||
auto obj = dataDisk.at(i);
|
||||
std::string str ="DataDisk."+ std::to_string(i);
|
||||
setParameter(str + ".Size", std::to_string(obj.size));
|
||||
setParameter(str + ".SnapshotId", obj.snapshotId);
|
||||
setParameter(str + ".Category", obj.category);
|
||||
setParameter(str + ".Encrypted", obj.encrypted);
|
||||
setParameter(str + ".DiskName", obj.diskName);
|
||||
setParameter(str + ".Description", obj.description);
|
||||
setParameter(str + ".DeleteWithInstance", obj.deleteWithInstance ? "true" : "false");
|
||||
setParameter(str + ".Device", obj.device);
|
||||
setCoreParameter(str + ".Size", std::to_string(obj.size));
|
||||
setCoreParameter(str + ".SnapshotId", obj.snapshotId);
|
||||
setCoreParameter(str + ".Category", obj.category);
|
||||
setCoreParameter(str + ".Encrypted", obj.encrypted);
|
||||
setCoreParameter(str + ".DiskName", obj.diskName);
|
||||
setCoreParameter(str + ".Description", obj.description);
|
||||
setCoreParameter(str + ".DeleteWithInstance", obj.deleteWithInstance ? "true" : "false");
|
||||
setCoreParameter(str + ".Device", obj.device);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -726,7 +726,7 @@ bool CreateLaunchTemplateRequest::getProxy_trust_transport_info()const
|
||||
void CreateLaunchTemplateRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
int CreateLaunchTemplateRequest::getSystemDiskSize()const
|
||||
@@ -737,7 +737,7 @@ int CreateLaunchTemplateRequest::getSystemDiskSize()const
|
||||
void CreateLaunchTemplateRequest::setSystemDiskSize(int systemDiskSize)
|
||||
{
|
||||
systemDiskSize_ = systemDiskSize;
|
||||
setParameter("SystemDiskSize", std::to_string(systemDiskSize));
|
||||
setCoreParameter("SystemDiskSize", std::to_string(systemDiskSize));
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getVpcId()const
|
||||
@@ -748,7 +748,7 @@ std::string CreateLaunchTemplateRequest::getVpcId()const
|
||||
void CreateLaunchTemplateRequest::setVpcId(const std::string& vpcId)
|
||||
{
|
||||
vpcId_ = vpcId;
|
||||
setParameter("VpcId", vpcId);
|
||||
setCoreParameter("VpcId", vpcId);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateRequest::getSystemDiskDescription()const
|
||||
@@ -759,6 +759,6 @@ std::string CreateLaunchTemplateRequest::getSystemDiskDescription()const
|
||||
void CreateLaunchTemplateRequest::setSystemDiskDescription(const std::string& systemDiskDescription)
|
||||
{
|
||||
systemDiskDescription_ = systemDiskDescription;
|
||||
setParameter("SystemDiskDescription", systemDiskDescription);
|
||||
setCoreParameter("SystemDiskDescription", systemDiskDescription);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string CreateLaunchTemplateVersionRequest::getLaunchTemplateName()const
|
||||
void CreateLaunchTemplateVersionRequest::setLaunchTemplateName(const std::string& launchTemplateName)
|
||||
{
|
||||
launchTemplateName_ = launchTemplateName;
|
||||
setParameter("LaunchTemplateName", launchTemplateName);
|
||||
setCoreParameter("LaunchTemplateName", launchTemplateName);
|
||||
}
|
||||
|
||||
long CreateLaunchTemplateVersionRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long CreateLaunchTemplateVersionRequest::getResourceOwnerId()const
|
||||
void CreateLaunchTemplateVersionRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long CreateLaunchTemplateVersionRequest::getCallerParentId()const
|
||||
@@ -55,7 +55,7 @@ long CreateLaunchTemplateVersionRequest::getCallerParentId()const
|
||||
void CreateLaunchTemplateVersionRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getSecurityEnhancementStrategy()const
|
||||
@@ -66,7 +66,7 @@ std::string CreateLaunchTemplateVersionRequest::getSecurityEnhancementStrategy()
|
||||
void CreateLaunchTemplateVersionRequest::setSecurityEnhancementStrategy(const std::string& securityEnhancementStrategy)
|
||||
{
|
||||
securityEnhancementStrategy_ = securityEnhancementStrategy;
|
||||
setParameter("SecurityEnhancementStrategy", securityEnhancementStrategy);
|
||||
setCoreParameter("SecurityEnhancementStrategy", securityEnhancementStrategy);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getNetworkType()const
|
||||
@@ -77,7 +77,7 @@ std::string CreateLaunchTemplateVersionRequest::getNetworkType()const
|
||||
void CreateLaunchTemplateVersionRequest::setNetworkType(const std::string& networkType)
|
||||
{
|
||||
networkType_ = networkType;
|
||||
setParameter("NetworkType", networkType);
|
||||
setCoreParameter("NetworkType", networkType);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getKeyPairName()const
|
||||
@@ -88,7 +88,7 @@ std::string CreateLaunchTemplateVersionRequest::getKeyPairName()const
|
||||
void CreateLaunchTemplateVersionRequest::setKeyPairName(const std::string& keyPairName)
|
||||
{
|
||||
keyPairName_ = keyPairName;
|
||||
setParameter("KeyPairName", keyPairName);
|
||||
setCoreParameter("KeyPairName", keyPairName);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getProxy_original_source_ip()const
|
||||
@@ -99,7 +99,7 @@ std::string CreateLaunchTemplateVersionRequest::getProxy_original_source_ip()con
|
||||
void CreateLaunchTemplateVersionRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
float CreateLaunchTemplateVersionRequest::getSpotPriceLimit()const
|
||||
@@ -110,7 +110,7 @@ float CreateLaunchTemplateVersionRequest::getSpotPriceLimit()const
|
||||
void CreateLaunchTemplateVersionRequest::setSpotPriceLimit(float spotPriceLimit)
|
||||
{
|
||||
spotPriceLimit_ = spotPriceLimit;
|
||||
setParameter("SpotPriceLimit", std::to_string(spotPriceLimit));
|
||||
setCoreParameter("SpotPriceLimit", std::to_string(spotPriceLimit));
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getOwnerIdLoginEmail()const
|
||||
@@ -121,7 +121,7 @@ std::string CreateLaunchTemplateVersionRequest::getOwnerIdLoginEmail()const
|
||||
void CreateLaunchTemplateVersionRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getCallerType()const
|
||||
@@ -132,7 +132,7 @@ std::string CreateLaunchTemplateVersionRequest::getCallerType()const
|
||||
void CreateLaunchTemplateVersionRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getImageOwnerAlias()const
|
||||
@@ -143,7 +143,7 @@ std::string CreateLaunchTemplateVersionRequest::getImageOwnerAlias()const
|
||||
void CreateLaunchTemplateVersionRequest::setImageOwnerAlias(const std::string& imageOwnerAlias)
|
||||
{
|
||||
imageOwnerAlias_ = imageOwnerAlias;
|
||||
setParameter("ImageOwnerAlias", imageOwnerAlias);
|
||||
setCoreParameter("ImageOwnerAlias", imageOwnerAlias);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getSourceRegionId()const
|
||||
@@ -154,7 +154,7 @@ std::string CreateLaunchTemplateVersionRequest::getSourceRegionId()const
|
||||
void CreateLaunchTemplateVersionRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getResourceGroupId()const
|
||||
@@ -165,7 +165,7 @@ std::string CreateLaunchTemplateVersionRequest::getResourceGroupId()const
|
||||
void CreateLaunchTemplateVersionRequest::setResourceGroupId(const std::string& resourceGroupId)
|
||||
{
|
||||
resourceGroupId_ = resourceGroupId;
|
||||
setParameter("ResourceGroupId", resourceGroupId);
|
||||
setCoreParameter("ResourceGroupId", resourceGroupId);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getHostName()const
|
||||
@@ -176,7 +176,7 @@ std::string CreateLaunchTemplateVersionRequest::getHostName()const
|
||||
void CreateLaunchTemplateVersionRequest::setHostName(const std::string& hostName)
|
||||
{
|
||||
hostName_ = hostName;
|
||||
setParameter("HostName", hostName);
|
||||
setCoreParameter("HostName", hostName);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getSecurityToken()const
|
||||
@@ -187,7 +187,7 @@ std::string CreateLaunchTemplateVersionRequest::getSecurityToken()const
|
||||
void CreateLaunchTemplateVersionRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
bool CreateLaunchTemplateVersionRequest::getEnable()const
|
||||
@@ -198,7 +198,7 @@ bool CreateLaunchTemplateVersionRequest::getEnable()const
|
||||
void CreateLaunchTemplateVersionRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
int CreateLaunchTemplateVersionRequest::getSystemDiskIops()const
|
||||
@@ -209,7 +209,7 @@ int CreateLaunchTemplateVersionRequest::getSystemDiskIops()const
|
||||
void CreateLaunchTemplateVersionRequest::setSystemDiskIops(int systemDiskIops)
|
||||
{
|
||||
systemDiskIops_ = systemDiskIops;
|
||||
setParameter("SystemDiskIops", std::to_string(systemDiskIops));
|
||||
setCoreParameter("SystemDiskIops", std::to_string(systemDiskIops));
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getCallerBidEmail()const
|
||||
@@ -220,7 +220,7 @@ std::string CreateLaunchTemplateVersionRequest::getCallerBidEmail()const
|
||||
void CreateLaunchTemplateVersionRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::vector<CreateLaunchTemplateVersionRequest::Tag> CreateLaunchTemplateVersionRequest::getTag()const
|
||||
@@ -235,8 +235,8 @@ void CreateLaunchTemplateVersionRequest::setTag(const std::vector<Tag>& tag)
|
||||
for(int i = 0; i!= tag.size(); i++) {
|
||||
auto obj = tag.at(i);
|
||||
std::string str ="Tag."+ std::to_string(i);
|
||||
setParameter(str + ".Key", obj.key);
|
||||
setParameter(str + ".Value", obj.value);
|
||||
setCoreParameter(str + ".Key", obj.key);
|
||||
setCoreParameter(str + ".Value", obj.value);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -248,7 +248,7 @@ long CreateLaunchTemplateVersionRequest::getCallerUid()const
|
||||
void CreateLaunchTemplateVersionRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
int CreateLaunchTemplateVersionRequest::getPeriod()const
|
||||
@@ -259,7 +259,7 @@ int CreateLaunchTemplateVersionRequest::getPeriod()const
|
||||
void CreateLaunchTemplateVersionRequest::setPeriod(int period)
|
||||
{
|
||||
period_ = period;
|
||||
setParameter("Period", std::to_string(period));
|
||||
setCoreParameter("Period", std::to_string(period));
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getLaunchTemplateId()const
|
||||
@@ -270,7 +270,7 @@ std::string CreateLaunchTemplateVersionRequest::getLaunchTemplateId()const
|
||||
void CreateLaunchTemplateVersionRequest::setLaunchTemplateId(const std::string& launchTemplateId)
|
||||
{
|
||||
launchTemplateId_ = launchTemplateId;
|
||||
setParameter("LaunchTemplateId", launchTemplateId);
|
||||
setCoreParameter("LaunchTemplateId", launchTemplateId);
|
||||
}
|
||||
|
||||
long CreateLaunchTemplateVersionRequest::getOwnerId()const
|
||||
@@ -281,7 +281,7 @@ long CreateLaunchTemplateVersionRequest::getOwnerId()const
|
||||
void CreateLaunchTemplateVersionRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool CreateLaunchTemplateVersionRequest::getAk_mfa_present()const
|
||||
@@ -292,7 +292,7 @@ bool CreateLaunchTemplateVersionRequest::getAk_mfa_present()const
|
||||
void CreateLaunchTemplateVersionRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool CreateLaunchTemplateVersionRequest::getSecurity_transport()const
|
||||
@@ -303,7 +303,7 @@ bool CreateLaunchTemplateVersionRequest::getSecurity_transport()const
|
||||
void CreateLaunchTemplateVersionRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getVSwitchId()const
|
||||
@@ -314,7 +314,7 @@ std::string CreateLaunchTemplateVersionRequest::getVSwitchId()const
|
||||
void CreateLaunchTemplateVersionRequest::setVSwitchId(const std::string& vSwitchId)
|
||||
{
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter("VSwitchId", vSwitchId);
|
||||
setCoreParameter("VSwitchId", vSwitchId);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getSpotStrategy()const
|
||||
@@ -325,7 +325,7 @@ std::string CreateLaunchTemplateVersionRequest::getSpotStrategy()const
|
||||
void CreateLaunchTemplateVersionRequest::setSpotStrategy(const std::string& spotStrategy)
|
||||
{
|
||||
spotStrategy_ = spotStrategy;
|
||||
setParameter("SpotStrategy", spotStrategy);
|
||||
setCoreParameter("SpotStrategy", spotStrategy);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getInstanceName()const
|
||||
@@ -336,7 +336,7 @@ std::string CreateLaunchTemplateVersionRequest::getInstanceName()const
|
||||
void CreateLaunchTemplateVersionRequest::setInstanceName(const std::string& instanceName)
|
||||
{
|
||||
instanceName_ = instanceName;
|
||||
setParameter("InstanceName", instanceName);
|
||||
setCoreParameter("InstanceName", instanceName);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getRequestId()const
|
||||
@@ -347,7 +347,7 @@ std::string CreateLaunchTemplateVersionRequest::getRequestId()const
|
||||
void CreateLaunchTemplateVersionRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getInternetChargeType()const
|
||||
@@ -358,7 +358,7 @@ std::string CreateLaunchTemplateVersionRequest::getInternetChargeType()const
|
||||
void CreateLaunchTemplateVersionRequest::setInternetChargeType(const std::string& internetChargeType)
|
||||
{
|
||||
internetChargeType_ = internetChargeType;
|
||||
setParameter("InternetChargeType", internetChargeType);
|
||||
setCoreParameter("InternetChargeType", internetChargeType);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getZoneId()const
|
||||
@@ -369,7 +369,7 @@ std::string CreateLaunchTemplateVersionRequest::getZoneId()const
|
||||
void CreateLaunchTemplateVersionRequest::setZoneId(const std::string& zoneId)
|
||||
{
|
||||
zoneId_ = zoneId;
|
||||
setParameter("ZoneId", zoneId);
|
||||
setCoreParameter("ZoneId", zoneId);
|
||||
}
|
||||
|
||||
int CreateLaunchTemplateVersionRequest::getInternetMaxBandwidthIn()const
|
||||
@@ -380,7 +380,7 @@ int CreateLaunchTemplateVersionRequest::getInternetMaxBandwidthIn()const
|
||||
void CreateLaunchTemplateVersionRequest::setInternetMaxBandwidthIn(int internetMaxBandwidthIn)
|
||||
{
|
||||
internetMaxBandwidthIn_ = internetMaxBandwidthIn;
|
||||
setParameter("InternetMaxBandwidthIn", std::to_string(internetMaxBandwidthIn));
|
||||
setCoreParameter("InternetMaxBandwidthIn", std::to_string(internetMaxBandwidthIn));
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getVersionDescription()const
|
||||
@@ -391,7 +391,7 @@ std::string CreateLaunchTemplateVersionRequest::getVersionDescription()const
|
||||
void CreateLaunchTemplateVersionRequest::setVersionDescription(const std::string& versionDescription)
|
||||
{
|
||||
versionDescription_ = versionDescription;
|
||||
setParameter("VersionDescription", versionDescription);
|
||||
setCoreParameter("VersionDescription", versionDescription);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getImageId()const
|
||||
@@ -402,7 +402,7 @@ std::string CreateLaunchTemplateVersionRequest::getImageId()const
|
||||
void CreateLaunchTemplateVersionRequest::setImageId(const std::string& imageId)
|
||||
{
|
||||
imageId_ = imageId;
|
||||
setParameter("ImageId", imageId);
|
||||
setCoreParameter("ImageId", imageId);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getIoOptimized()const
|
||||
@@ -413,7 +413,7 @@ std::string CreateLaunchTemplateVersionRequest::getIoOptimized()const
|
||||
void CreateLaunchTemplateVersionRequest::setIoOptimized(const std::string& ioOptimized)
|
||||
{
|
||||
ioOptimized_ = ioOptimized;
|
||||
setParameter("IoOptimized", ioOptimized);
|
||||
setCoreParameter("IoOptimized", ioOptimized);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getSecurityGroupId()const
|
||||
@@ -424,7 +424,7 @@ std::string CreateLaunchTemplateVersionRequest::getSecurityGroupId()const
|
||||
void CreateLaunchTemplateVersionRequest::setSecurityGroupId(const std::string& securityGroupId)
|
||||
{
|
||||
securityGroupId_ = securityGroupId;
|
||||
setParameter("SecurityGroupId", securityGroupId);
|
||||
setCoreParameter("SecurityGroupId", securityGroupId);
|
||||
}
|
||||
|
||||
int CreateLaunchTemplateVersionRequest::getInternetMaxBandwidthOut()const
|
||||
@@ -435,7 +435,7 @@ int CreateLaunchTemplateVersionRequest::getInternetMaxBandwidthOut()const
|
||||
void CreateLaunchTemplateVersionRequest::setInternetMaxBandwidthOut(int internetMaxBandwidthOut)
|
||||
{
|
||||
internetMaxBandwidthOut_ = internetMaxBandwidthOut;
|
||||
setParameter("InternetMaxBandwidthOut", std::to_string(internetMaxBandwidthOut));
|
||||
setCoreParameter("InternetMaxBandwidthOut", std::to_string(internetMaxBandwidthOut));
|
||||
}
|
||||
|
||||
bool CreateLaunchTemplateVersionRequest::getProxy_original_security_transport()const
|
||||
@@ -446,7 +446,7 @@ bool CreateLaunchTemplateVersionRequest::getProxy_original_security_transport()c
|
||||
void CreateLaunchTemplateVersionRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getDescription()const
|
||||
@@ -457,7 +457,7 @@ std::string CreateLaunchTemplateVersionRequest::getDescription()const
|
||||
void CreateLaunchTemplateVersionRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setParameter("Description", description);
|
||||
setCoreParameter("Description", description);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getSystemDiskCategory()const
|
||||
@@ -468,7 +468,7 @@ std::string CreateLaunchTemplateVersionRequest::getSystemDiskCategory()const
|
||||
void CreateLaunchTemplateVersionRequest::setSystemDiskCategory(const std::string& systemDiskCategory)
|
||||
{
|
||||
systemDiskCategory_ = systemDiskCategory;
|
||||
setParameter("SystemDiskCategory", systemDiskCategory);
|
||||
setCoreParameter("SystemDiskCategory", systemDiskCategory);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getAccessKeyId()const
|
||||
@@ -479,7 +479,7 @@ std::string CreateLaunchTemplateVersionRequest::getAccessKeyId()const
|
||||
void CreateLaunchTemplateVersionRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getUserData()const
|
||||
@@ -490,7 +490,7 @@ std::string CreateLaunchTemplateVersionRequest::getUserData()const
|
||||
void CreateLaunchTemplateVersionRequest::setUserData(const std::string& userData)
|
||||
{
|
||||
userData_ = userData;
|
||||
setParameter("UserData", userData);
|
||||
setCoreParameter("UserData", userData);
|
||||
}
|
||||
|
||||
bool CreateLaunchTemplateVersionRequest::getPasswordInherit()const
|
||||
@@ -501,7 +501,7 @@ bool CreateLaunchTemplateVersionRequest::getPasswordInherit()const
|
||||
void CreateLaunchTemplateVersionRequest::setPasswordInherit(bool passwordInherit)
|
||||
{
|
||||
passwordInherit_ = passwordInherit;
|
||||
setParameter("PasswordInherit", passwordInherit ? "true" : "false");
|
||||
setCoreParameter("PasswordInherit", passwordInherit ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getRegionId()const
|
||||
@@ -512,7 +512,7 @@ std::string CreateLaunchTemplateVersionRequest::getRegionId()const
|
||||
void CreateLaunchTemplateVersionRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getRequestContent()const
|
||||
@@ -523,7 +523,7 @@ std::string CreateLaunchTemplateVersionRequest::getRequestContent()const
|
||||
void CreateLaunchTemplateVersionRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getInstanceType()const
|
||||
@@ -534,7 +534,7 @@ std::string CreateLaunchTemplateVersionRequest::getInstanceType()const
|
||||
void CreateLaunchTemplateVersionRequest::setInstanceType(const std::string& instanceType)
|
||||
{
|
||||
instanceType_ = instanceType;
|
||||
setParameter("InstanceType", instanceType);
|
||||
setCoreParameter("InstanceType", instanceType);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getInstanceChargeType()const
|
||||
@@ -545,7 +545,7 @@ std::string CreateLaunchTemplateVersionRequest::getInstanceChargeType()const
|
||||
void CreateLaunchTemplateVersionRequest::setInstanceChargeType(const std::string& instanceChargeType)
|
||||
{
|
||||
instanceChargeType_ = instanceChargeType;
|
||||
setParameter("InstanceChargeType", instanceChargeType);
|
||||
setCoreParameter("InstanceChargeType", instanceChargeType);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getCallerUidEmail()const
|
||||
@@ -556,7 +556,7 @@ std::string CreateLaunchTemplateVersionRequest::getCallerUidEmail()const
|
||||
void CreateLaunchTemplateVersionRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
bool CreateLaunchTemplateVersionRequest::getEnableVmOsConfig()const
|
||||
@@ -567,7 +567,7 @@ bool CreateLaunchTemplateVersionRequest::getEnableVmOsConfig()const
|
||||
void CreateLaunchTemplateVersionRequest::setEnableVmOsConfig(bool enableVmOsConfig)
|
||||
{
|
||||
enableVmOsConfig_ = enableVmOsConfig;
|
||||
setParameter("EnableVmOsConfig", enableVmOsConfig ? "true" : "false");
|
||||
setCoreParameter("EnableVmOsConfig", enableVmOsConfig ? "true" : "false");
|
||||
}
|
||||
|
||||
std::vector<CreateLaunchTemplateVersionRequest::NetworkInterface> CreateLaunchTemplateVersionRequest::getNetworkInterface()const
|
||||
@@ -582,11 +582,11 @@ void CreateLaunchTemplateVersionRequest::setNetworkInterface(const std::vector<N
|
||||
for(int i = 0; i!= networkInterface.size(); i++) {
|
||||
auto obj = networkInterface.at(i);
|
||||
std::string str ="NetworkInterface."+ std::to_string(i);
|
||||
setParameter(str + ".PrimaryIpAddress", obj.primaryIpAddress);
|
||||
setParameter(str + ".VSwitchId", obj.vSwitchId);
|
||||
setParameter(str + ".SecurityGroupId", obj.securityGroupId);
|
||||
setParameter(str + ".NetworkInterfaceName", obj.networkInterfaceName);
|
||||
setParameter(str + ".Description", obj.description);
|
||||
setCoreParameter(str + ".PrimaryIpAddress", obj.primaryIpAddress);
|
||||
setCoreParameter(str + ".VSwitchId", obj.vSwitchId);
|
||||
setCoreParameter(str + ".SecurityGroupId", obj.securityGroupId);
|
||||
setCoreParameter(str + ".NetworkInterfaceName", obj.networkInterfaceName);
|
||||
setCoreParameter(str + ".Description", obj.description);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -598,7 +598,7 @@ std::string CreateLaunchTemplateVersionRequest::getApp_ip()const
|
||||
void CreateLaunchTemplateVersionRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getResourceOwnerAccount()const
|
||||
@@ -609,7 +609,7 @@ std::string CreateLaunchTemplateVersionRequest::getResourceOwnerAccount()const
|
||||
void CreateLaunchTemplateVersionRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getOwnerAccount()const
|
||||
@@ -620,7 +620,7 @@ std::string CreateLaunchTemplateVersionRequest::getOwnerAccount()const
|
||||
void CreateLaunchTemplateVersionRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getSystemDiskDiskName()const
|
||||
@@ -631,7 +631,7 @@ std::string CreateLaunchTemplateVersionRequest::getSystemDiskDiskName()const
|
||||
void CreateLaunchTemplateVersionRequest::setSystemDiskDiskName(const std::string& systemDiskDiskName)
|
||||
{
|
||||
systemDiskDiskName_ = systemDiskDiskName;
|
||||
setParameter("SystemDiskDiskName", systemDiskDiskName);
|
||||
setCoreParameter("SystemDiskDiskName", systemDiskDiskName);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getRamRoleName()const
|
||||
@@ -642,7 +642,7 @@ std::string CreateLaunchTemplateVersionRequest::getRamRoleName()const
|
||||
void CreateLaunchTemplateVersionRequest::setRamRoleName(const std::string& ramRoleName)
|
||||
{
|
||||
ramRoleName_ = ramRoleName;
|
||||
setParameter("RamRoleName", ramRoleName);
|
||||
setCoreParameter("RamRoleName", ramRoleName);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getAutoReleaseTime()const
|
||||
@@ -653,7 +653,7 @@ std::string CreateLaunchTemplateVersionRequest::getAutoReleaseTime()const
|
||||
void CreateLaunchTemplateVersionRequest::setAutoReleaseTime(const std::string& autoReleaseTime)
|
||||
{
|
||||
autoReleaseTime_ = autoReleaseTime;
|
||||
setParameter("AutoReleaseTime", autoReleaseTime);
|
||||
setCoreParameter("AutoReleaseTime", autoReleaseTime);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getCallerBid()const
|
||||
@@ -664,7 +664,7 @@ std::string CreateLaunchTemplateVersionRequest::getCallerBid()const
|
||||
void CreateLaunchTemplateVersionRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
int CreateLaunchTemplateVersionRequest::getSpotDuration()const
|
||||
@@ -675,7 +675,7 @@ int CreateLaunchTemplateVersionRequest::getSpotDuration()const
|
||||
void CreateLaunchTemplateVersionRequest::setSpotDuration(int spotDuration)
|
||||
{
|
||||
spotDuration_ = spotDuration;
|
||||
setParameter("SpotDuration", std::to_string(spotDuration));
|
||||
setCoreParameter("SpotDuration", std::to_string(spotDuration));
|
||||
}
|
||||
|
||||
std::vector<CreateLaunchTemplateVersionRequest::DataDisk> CreateLaunchTemplateVersionRequest::getDataDisk()const
|
||||
@@ -690,14 +690,14 @@ void CreateLaunchTemplateVersionRequest::setDataDisk(const std::vector<DataDisk>
|
||||
for(int i = 0; i!= dataDisk.size(); i++) {
|
||||
auto obj = dataDisk.at(i);
|
||||
std::string str ="DataDisk."+ std::to_string(i);
|
||||
setParameter(str + ".Size", std::to_string(obj.size));
|
||||
setParameter(str + ".SnapshotId", obj.snapshotId);
|
||||
setParameter(str + ".Category", obj.category);
|
||||
setParameter(str + ".Encrypted", obj.encrypted);
|
||||
setParameter(str + ".DiskName", obj.diskName);
|
||||
setParameter(str + ".Description", obj.description);
|
||||
setParameter(str + ".DeleteWithInstance", obj.deleteWithInstance ? "true" : "false");
|
||||
setParameter(str + ".Device", obj.device);
|
||||
setCoreParameter(str + ".Size", std::to_string(obj.size));
|
||||
setCoreParameter(str + ".SnapshotId", obj.snapshotId);
|
||||
setCoreParameter(str + ".Category", obj.category);
|
||||
setCoreParameter(str + ".Encrypted", obj.encrypted);
|
||||
setCoreParameter(str + ".DiskName", obj.diskName);
|
||||
setCoreParameter(str + ".Description", obj.description);
|
||||
setCoreParameter(str + ".DeleteWithInstance", obj.deleteWithInstance ? "true" : "false");
|
||||
setCoreParameter(str + ".Device", obj.device);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -709,7 +709,7 @@ bool CreateLaunchTemplateVersionRequest::getProxy_trust_transport_info()const
|
||||
void CreateLaunchTemplateVersionRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
int CreateLaunchTemplateVersionRequest::getSystemDiskSize()const
|
||||
@@ -720,7 +720,7 @@ int CreateLaunchTemplateVersionRequest::getSystemDiskSize()const
|
||||
void CreateLaunchTemplateVersionRequest::setSystemDiskSize(int systemDiskSize)
|
||||
{
|
||||
systemDiskSize_ = systemDiskSize;
|
||||
setParameter("SystemDiskSize", std::to_string(systemDiskSize));
|
||||
setCoreParameter("SystemDiskSize", std::to_string(systemDiskSize));
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getVpcId()const
|
||||
@@ -731,7 +731,7 @@ std::string CreateLaunchTemplateVersionRequest::getVpcId()const
|
||||
void CreateLaunchTemplateVersionRequest::setVpcId(const std::string& vpcId)
|
||||
{
|
||||
vpcId_ = vpcId;
|
||||
setParameter("VpcId", vpcId);
|
||||
setCoreParameter("VpcId", vpcId);
|
||||
}
|
||||
|
||||
std::string CreateLaunchTemplateVersionRequest::getSystemDiskDescription()const
|
||||
@@ -742,6 +742,6 @@ std::string CreateLaunchTemplateVersionRequest::getSystemDiskDescription()const
|
||||
void CreateLaunchTemplateVersionRequest::setSystemDiskDescription(const std::string& systemDiskDescription)
|
||||
{
|
||||
systemDiskDescription_ = systemDiskDescription;
|
||||
setParameter("SystemDiskDescription", systemDiskDescription);
|
||||
setCoreParameter("SystemDiskDescription", systemDiskDescription);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long CreateNatGatewayRequest::getResourceOwnerId()const
|
||||
void CreateNatGatewayRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateNatGatewayRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +44,7 @@ std::string CreateNatGatewayRequest::getResourceOwnerAccount()const
|
||||
void CreateNatGatewayRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateNatGatewayRequest::getRegionId()const
|
||||
@@ -55,7 +55,7 @@ std::string CreateNatGatewayRequest::getRegionId()const
|
||||
void CreateNatGatewayRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string CreateNatGatewayRequest::getClientToken()const
|
||||
@@ -66,7 +66,7 @@ std::string CreateNatGatewayRequest::getClientToken()const
|
||||
void CreateNatGatewayRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string CreateNatGatewayRequest::getOwnerAccount()const
|
||||
@@ -77,7 +77,7 @@ std::string CreateNatGatewayRequest::getOwnerAccount()const
|
||||
void CreateNatGatewayRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string CreateNatGatewayRequest::getVpcId()const
|
||||
@@ -88,7 +88,7 @@ std::string CreateNatGatewayRequest::getVpcId()const
|
||||
void CreateNatGatewayRequest::setVpcId(const std::string& vpcId)
|
||||
{
|
||||
vpcId_ = vpcId;
|
||||
setParameter("VpcId", vpcId);
|
||||
setCoreParameter("VpcId", vpcId);
|
||||
}
|
||||
|
||||
std::string CreateNatGatewayRequest::getName()const
|
||||
@@ -99,7 +99,7 @@ std::string CreateNatGatewayRequest::getName()const
|
||||
void CreateNatGatewayRequest::setName(const std::string& name)
|
||||
{
|
||||
name_ = name;
|
||||
setParameter("Name", name);
|
||||
setCoreParameter("Name", name);
|
||||
}
|
||||
|
||||
std::string CreateNatGatewayRequest::getDescription()const
|
||||
@@ -110,7 +110,7 @@ std::string CreateNatGatewayRequest::getDescription()const
|
||||
void CreateNatGatewayRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setParameter("Description", description);
|
||||
setCoreParameter("Description", description);
|
||||
}
|
||||
|
||||
long CreateNatGatewayRequest::getOwnerId()const
|
||||
@@ -121,7 +121,7 @@ long CreateNatGatewayRequest::getOwnerId()const
|
||||
void CreateNatGatewayRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::vector<CreateNatGatewayRequest::BandwidthPackage> CreateNatGatewayRequest::getBandwidthPackage()const
|
||||
@@ -136,9 +136,9 @@ void CreateNatGatewayRequest::setBandwidthPackage(const std::vector<BandwidthPac
|
||||
for(int i = 0; i!= bandwidthPackage.size(); i++) {
|
||||
auto obj = bandwidthPackage.at(i);
|
||||
std::string str ="BandwidthPackage."+ std::to_string(i);
|
||||
setParameter(str + ".Bandwidth", std::to_string(obj.bandwidth));
|
||||
setParameter(str + ".Zone", obj.zone);
|
||||
setParameter(str + ".IpCount", std::to_string(obj.ipCount));
|
||||
setCoreParameter(str + ".Bandwidth", std::to_string(obj.bandwidth));
|
||||
setCoreParameter(str + ".Zone", obj.zone);
|
||||
setCoreParameter(str + ".IpCount", std::to_string(obj.ipCount));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long CreateNetworkInterfacePermissionRequest::getResourceOwnerId()const
|
||||
void CreateNetworkInterfacePermissionRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long CreateNetworkInterfacePermissionRequest::getCallerParentId()const
|
||||
@@ -44,7 +44,7 @@ long CreateNetworkInterfacePermissionRequest::getCallerParentId()const
|
||||
void CreateNetworkInterfacePermissionRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
bool CreateNetworkInterfacePermissionRequest::getProxy_original_security_transport()const
|
||||
@@ -55,7 +55,7 @@ bool CreateNetworkInterfacePermissionRequest::getProxy_original_security_transpo
|
||||
void CreateNetworkInterfacePermissionRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfacePermissionRequest::getProxy_original_source_ip()const
|
||||
@@ -66,7 +66,7 @@ std::string CreateNetworkInterfacePermissionRequest::getProxy_original_source_ip
|
||||
void CreateNetworkInterfacePermissionRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfacePermissionRequest::getOwnerIdLoginEmail()const
|
||||
@@ -77,7 +77,7 @@ std::string CreateNetworkInterfacePermissionRequest::getOwnerIdLoginEmail()const
|
||||
void CreateNetworkInterfacePermissionRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfacePermissionRequest::getCallerType()const
|
||||
@@ -88,7 +88,7 @@ std::string CreateNetworkInterfacePermissionRequest::getCallerType()const
|
||||
void CreateNetworkInterfacePermissionRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfacePermissionRequest::getAccessKeyId()const
|
||||
@@ -99,7 +99,7 @@ std::string CreateNetworkInterfacePermissionRequest::getAccessKeyId()const
|
||||
void CreateNetworkInterfacePermissionRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfacePermissionRequest::getSourceRegionId()const
|
||||
@@ -110,7 +110,7 @@ std::string CreateNetworkInterfacePermissionRequest::getSourceRegionId()const
|
||||
void CreateNetworkInterfacePermissionRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
long CreateNetworkInterfacePermissionRequest::getAccountId()const
|
||||
@@ -121,7 +121,7 @@ long CreateNetworkInterfacePermissionRequest::getAccountId()const
|
||||
void CreateNetworkInterfacePermissionRequest::setAccountId(long accountId)
|
||||
{
|
||||
accountId_ = accountId;
|
||||
setParameter("AccountId", std::to_string(accountId));
|
||||
setCoreParameter("AccountId", std::to_string(accountId));
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfacePermissionRequest::getSecurityToken()const
|
||||
@@ -132,7 +132,7 @@ std::string CreateNetworkInterfacePermissionRequest::getSecurityToken()const
|
||||
void CreateNetworkInterfacePermissionRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfacePermissionRequest::getRegionId()const
|
||||
@@ -143,7 +143,7 @@ std::string CreateNetworkInterfacePermissionRequest::getRegionId()const
|
||||
void CreateNetworkInterfacePermissionRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool CreateNetworkInterfacePermissionRequest::getEnable()const
|
||||
@@ -154,7 +154,7 @@ bool CreateNetworkInterfacePermissionRequest::getEnable()const
|
||||
void CreateNetworkInterfacePermissionRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfacePermissionRequest::getRequestContent()const
|
||||
@@ -165,7 +165,7 @@ std::string CreateNetworkInterfacePermissionRequest::getRequestContent()const
|
||||
void CreateNetworkInterfacePermissionRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfacePermissionRequest::getCallerBidEmail()const
|
||||
@@ -176,7 +176,7 @@ std::string CreateNetworkInterfacePermissionRequest::getCallerBidEmail()const
|
||||
void CreateNetworkInterfacePermissionRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfacePermissionRequest::getCallerUidEmail()const
|
||||
@@ -187,7 +187,7 @@ std::string CreateNetworkInterfacePermissionRequest::getCallerUidEmail()const
|
||||
void CreateNetworkInterfacePermissionRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long CreateNetworkInterfacePermissionRequest::getCallerUid()const
|
||||
@@ -198,7 +198,7 @@ long CreateNetworkInterfacePermissionRequest::getCallerUid()const
|
||||
void CreateNetworkInterfacePermissionRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfacePermissionRequest::getApp_ip()const
|
||||
@@ -209,7 +209,7 @@ std::string CreateNetworkInterfacePermissionRequest::getApp_ip()const
|
||||
void CreateNetworkInterfacePermissionRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfacePermissionRequest::getResourceOwnerAccount()const
|
||||
@@ -220,7 +220,7 @@ std::string CreateNetworkInterfacePermissionRequest::getResourceOwnerAccount()co
|
||||
void CreateNetworkInterfacePermissionRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfacePermissionRequest::getOwnerAccount()const
|
||||
@@ -231,7 +231,7 @@ std::string CreateNetworkInterfacePermissionRequest::getOwnerAccount()const
|
||||
void CreateNetworkInterfacePermissionRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfacePermissionRequest::getPermission()const
|
||||
@@ -242,7 +242,7 @@ std::string CreateNetworkInterfacePermissionRequest::getPermission()const
|
||||
void CreateNetworkInterfacePermissionRequest::setPermission(const std::string& permission)
|
||||
{
|
||||
permission_ = permission;
|
||||
setParameter("Permission", permission);
|
||||
setCoreParameter("Permission", permission);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfacePermissionRequest::getCallerBid()const
|
||||
@@ -253,7 +253,7 @@ std::string CreateNetworkInterfacePermissionRequest::getCallerBid()const
|
||||
void CreateNetworkInterfacePermissionRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long CreateNetworkInterfacePermissionRequest::getOwnerId()const
|
||||
@@ -264,7 +264,7 @@ long CreateNetworkInterfacePermissionRequest::getOwnerId()const
|
||||
void CreateNetworkInterfacePermissionRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool CreateNetworkInterfacePermissionRequest::getProxy_trust_transport_info()const
|
||||
@@ -275,7 +275,7 @@ bool CreateNetworkInterfacePermissionRequest::getProxy_trust_transport_info()con
|
||||
void CreateNetworkInterfacePermissionRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool CreateNetworkInterfacePermissionRequest::getAk_mfa_present()const
|
||||
@@ -286,7 +286,7 @@ bool CreateNetworkInterfacePermissionRequest::getAk_mfa_present()const
|
||||
void CreateNetworkInterfacePermissionRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool CreateNetworkInterfacePermissionRequest::getSecurity_transport()const
|
||||
@@ -297,7 +297,7 @@ bool CreateNetworkInterfacePermissionRequest::getSecurity_transport()const
|
||||
void CreateNetworkInterfacePermissionRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfacePermissionRequest::getRequestId()const
|
||||
@@ -308,7 +308,7 @@ std::string CreateNetworkInterfacePermissionRequest::getRequestId()const
|
||||
void CreateNetworkInterfacePermissionRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfacePermissionRequest::getNetworkInterfaceId()const
|
||||
@@ -319,6 +319,6 @@ std::string CreateNetworkInterfacePermissionRequest::getNetworkInterfaceId()cons
|
||||
void CreateNetworkInterfacePermissionRequest::setNetworkInterfaceId(const std::string& networkInterfaceId)
|
||||
{
|
||||
networkInterfaceId_ = networkInterfaceId;
|
||||
setParameter("NetworkInterfaceId", networkInterfaceId);
|
||||
setCoreParameter("NetworkInterfaceId", networkInterfaceId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long CreateNetworkInterfaceRequest::getResourceOwnerId()const
|
||||
void CreateNetworkInterfaceRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfaceRequest::getClientToken()const
|
||||
@@ -44,7 +44,7 @@ std::string CreateNetworkInterfaceRequest::getClientToken()const
|
||||
void CreateNetworkInterfaceRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
long CreateNetworkInterfaceRequest::getCallerParentId()const
|
||||
@@ -55,7 +55,7 @@ long CreateNetworkInterfaceRequest::getCallerParentId()const
|
||||
void CreateNetworkInterfaceRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfaceRequest::getSecurityGroupId()const
|
||||
@@ -66,7 +66,7 @@ std::string CreateNetworkInterfaceRequest::getSecurityGroupId()const
|
||||
void CreateNetworkInterfaceRequest::setSecurityGroupId(const std::string& securityGroupId)
|
||||
{
|
||||
securityGroupId_ = securityGroupId;
|
||||
setParameter("SecurityGroupId", securityGroupId);
|
||||
setCoreParameter("SecurityGroupId", securityGroupId);
|
||||
}
|
||||
|
||||
bool CreateNetworkInterfaceRequest::getProxy_original_security_transport()const
|
||||
@@ -77,7 +77,7 @@ bool CreateNetworkInterfaceRequest::getProxy_original_security_transport()const
|
||||
void CreateNetworkInterfaceRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfaceRequest::getDescription()const
|
||||
@@ -88,7 +88,7 @@ std::string CreateNetworkInterfaceRequest::getDescription()const
|
||||
void CreateNetworkInterfaceRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setParameter("Description", description);
|
||||
setCoreParameter("Description", description);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfaceRequest::getProxy_original_source_ip()const
|
||||
@@ -99,7 +99,7 @@ std::string CreateNetworkInterfaceRequest::getProxy_original_source_ip()const
|
||||
void CreateNetworkInterfaceRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfaceRequest::getOwnerIdLoginEmail()const
|
||||
@@ -110,7 +110,7 @@ std::string CreateNetworkInterfaceRequest::getOwnerIdLoginEmail()const
|
||||
void CreateNetworkInterfaceRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfaceRequest::getCallerType()const
|
||||
@@ -121,7 +121,7 @@ std::string CreateNetworkInterfaceRequest::getCallerType()const
|
||||
void CreateNetworkInterfaceRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfaceRequest::getAccessKeyId()const
|
||||
@@ -132,7 +132,7 @@ std::string CreateNetworkInterfaceRequest::getAccessKeyId()const
|
||||
void CreateNetworkInterfaceRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfaceRequest::getSourceRegionId()const
|
||||
@@ -143,7 +143,7 @@ std::string CreateNetworkInterfaceRequest::getSourceRegionId()const
|
||||
void CreateNetworkInterfaceRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfaceRequest::getResourceGroupId()const
|
||||
@@ -154,7 +154,7 @@ std::string CreateNetworkInterfaceRequest::getResourceGroupId()const
|
||||
void CreateNetworkInterfaceRequest::setResourceGroupId(const std::string& resourceGroupId)
|
||||
{
|
||||
resourceGroupId_ = resourceGroupId;
|
||||
setParameter("ResourceGroupId", resourceGroupId);
|
||||
setCoreParameter("ResourceGroupId", resourceGroupId);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfaceRequest::getSecurityToken()const
|
||||
@@ -165,7 +165,7 @@ std::string CreateNetworkInterfaceRequest::getSecurityToken()const
|
||||
void CreateNetworkInterfaceRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfaceRequest::getRegionId()const
|
||||
@@ -176,7 +176,7 @@ std::string CreateNetworkInterfaceRequest::getRegionId()const
|
||||
void CreateNetworkInterfaceRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool CreateNetworkInterfaceRequest::getEnable()const
|
||||
@@ -187,7 +187,7 @@ bool CreateNetworkInterfaceRequest::getEnable()const
|
||||
void CreateNetworkInterfaceRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfaceRequest::getRequestContent()const
|
||||
@@ -198,7 +198,7 @@ std::string CreateNetworkInterfaceRequest::getRequestContent()const
|
||||
void CreateNetworkInterfaceRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfaceRequest::getCallerBidEmail()const
|
||||
@@ -209,7 +209,7 @@ std::string CreateNetworkInterfaceRequest::getCallerBidEmail()const
|
||||
void CreateNetworkInterfaceRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::vector<CreateNetworkInterfaceRequest::Tag> CreateNetworkInterfaceRequest::getTag()const
|
||||
@@ -224,8 +224,8 @@ void CreateNetworkInterfaceRequest::setTag(const std::vector<Tag>& tag)
|
||||
for(int i = 0; i!= tag.size(); i++) {
|
||||
auto obj = tag.at(i);
|
||||
std::string str ="Tag."+ std::to_string(i);
|
||||
setParameter(str + ".Key", obj.key);
|
||||
setParameter(str + ".Value", obj.value);
|
||||
setCoreParameter(str + ".Key", obj.key);
|
||||
setCoreParameter(str + ".Value", obj.value);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -237,7 +237,7 @@ std::string CreateNetworkInterfaceRequest::getCallerUidEmail()const
|
||||
void CreateNetworkInterfaceRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfaceRequest::getNetworkInterfaceName()const
|
||||
@@ -248,7 +248,7 @@ std::string CreateNetworkInterfaceRequest::getNetworkInterfaceName()const
|
||||
void CreateNetworkInterfaceRequest::setNetworkInterfaceName(const std::string& networkInterfaceName)
|
||||
{
|
||||
networkInterfaceName_ = networkInterfaceName;
|
||||
setParameter("NetworkInterfaceName", networkInterfaceName);
|
||||
setCoreParameter("NetworkInterfaceName", networkInterfaceName);
|
||||
}
|
||||
|
||||
long CreateNetworkInterfaceRequest::getCallerUid()const
|
||||
@@ -259,7 +259,7 @@ long CreateNetworkInterfaceRequest::getCallerUid()const
|
||||
void CreateNetworkInterfaceRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfaceRequest::getApp_ip()const
|
||||
@@ -270,7 +270,7 @@ std::string CreateNetworkInterfaceRequest::getApp_ip()const
|
||||
void CreateNetworkInterfaceRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfaceRequest::getResourceOwnerAccount()const
|
||||
@@ -281,7 +281,7 @@ std::string CreateNetworkInterfaceRequest::getResourceOwnerAccount()const
|
||||
void CreateNetworkInterfaceRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfaceRequest::getOwnerAccount()const
|
||||
@@ -292,7 +292,7 @@ std::string CreateNetworkInterfaceRequest::getOwnerAccount()const
|
||||
void CreateNetworkInterfaceRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfaceRequest::getCallerBid()const
|
||||
@@ -303,7 +303,7 @@ std::string CreateNetworkInterfaceRequest::getCallerBid()const
|
||||
void CreateNetworkInterfaceRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long CreateNetworkInterfaceRequest::getOwnerId()const
|
||||
@@ -314,7 +314,7 @@ long CreateNetworkInterfaceRequest::getOwnerId()const
|
||||
void CreateNetworkInterfaceRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool CreateNetworkInterfaceRequest::getProxy_trust_transport_info()const
|
||||
@@ -325,7 +325,7 @@ bool CreateNetworkInterfaceRequest::getProxy_trust_transport_info()const
|
||||
void CreateNetworkInterfaceRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool CreateNetworkInterfaceRequest::getAk_mfa_present()const
|
||||
@@ -336,7 +336,7 @@ bool CreateNetworkInterfaceRequest::getAk_mfa_present()const
|
||||
void CreateNetworkInterfaceRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool CreateNetworkInterfaceRequest::getSecurity_transport()const
|
||||
@@ -347,7 +347,7 @@ bool CreateNetworkInterfaceRequest::getSecurity_transport()const
|
||||
void CreateNetworkInterfaceRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfaceRequest::getVSwitchId()const
|
||||
@@ -358,7 +358,7 @@ std::string CreateNetworkInterfaceRequest::getVSwitchId()const
|
||||
void CreateNetworkInterfaceRequest::setVSwitchId(const std::string& vSwitchId)
|
||||
{
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter("VSwitchId", vSwitchId);
|
||||
setCoreParameter("VSwitchId", vSwitchId);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfaceRequest::getRequestId()const
|
||||
@@ -369,7 +369,7 @@ std::string CreateNetworkInterfaceRequest::getRequestId()const
|
||||
void CreateNetworkInterfaceRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
std::string CreateNetworkInterfaceRequest::getPrimaryIpAddress()const
|
||||
@@ -380,6 +380,6 @@ std::string CreateNetworkInterfaceRequest::getPrimaryIpAddress()const
|
||||
void CreateNetworkInterfaceRequest::setPrimaryIpAddress(const std::string& primaryIpAddress)
|
||||
{
|
||||
primaryIpAddress_ = primaryIpAddress;
|
||||
setParameter("PrimaryIpAddress", primaryIpAddress);
|
||||
setCoreParameter("PrimaryIpAddress", primaryIpAddress);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string CreatePhysicalConnectionRequest::getAccessPointId()const
|
||||
void CreatePhysicalConnectionRequest::setAccessPointId(const std::string& accessPointId)
|
||||
{
|
||||
accessPointId_ = accessPointId;
|
||||
setParameter("AccessPointId", accessPointId);
|
||||
setCoreParameter("AccessPointId", accessPointId);
|
||||
}
|
||||
|
||||
std::string CreatePhysicalConnectionRequest::getRedundantPhysicalConnectionId()const
|
||||
@@ -44,7 +44,7 @@ std::string CreatePhysicalConnectionRequest::getRedundantPhysicalConnectionId()c
|
||||
void CreatePhysicalConnectionRequest::setRedundantPhysicalConnectionId(const std::string& redundantPhysicalConnectionId)
|
||||
{
|
||||
redundantPhysicalConnectionId_ = redundantPhysicalConnectionId;
|
||||
setParameter("RedundantPhysicalConnectionId", redundantPhysicalConnectionId);
|
||||
setCoreParameter("RedundantPhysicalConnectionId", redundantPhysicalConnectionId);
|
||||
}
|
||||
|
||||
std::string CreatePhysicalConnectionRequest::getPeerLocation()const
|
||||
@@ -55,7 +55,7 @@ std::string CreatePhysicalConnectionRequest::getPeerLocation()const
|
||||
void CreatePhysicalConnectionRequest::setPeerLocation(const std::string& peerLocation)
|
||||
{
|
||||
peerLocation_ = peerLocation;
|
||||
setParameter("PeerLocation", peerLocation);
|
||||
setCoreParameter("PeerLocation", peerLocation);
|
||||
}
|
||||
|
||||
long CreatePhysicalConnectionRequest::getResourceOwnerId()const
|
||||
@@ -66,7 +66,7 @@ long CreatePhysicalConnectionRequest::getResourceOwnerId()const
|
||||
void CreatePhysicalConnectionRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreatePhysicalConnectionRequest::getPortType()const
|
||||
@@ -77,7 +77,7 @@ std::string CreatePhysicalConnectionRequest::getPortType()const
|
||||
void CreatePhysicalConnectionRequest::setPortType(const std::string& portType)
|
||||
{
|
||||
portType_ = portType;
|
||||
setParameter("PortType", portType);
|
||||
setCoreParameter("PortType", portType);
|
||||
}
|
||||
|
||||
std::string CreatePhysicalConnectionRequest::getCircuitCode()const
|
||||
@@ -88,7 +88,7 @@ std::string CreatePhysicalConnectionRequest::getCircuitCode()const
|
||||
void CreatePhysicalConnectionRequest::setCircuitCode(const std::string& circuitCode)
|
||||
{
|
||||
circuitCode_ = circuitCode;
|
||||
setParameter("CircuitCode", circuitCode);
|
||||
setCoreParameter("CircuitCode", circuitCode);
|
||||
}
|
||||
|
||||
int CreatePhysicalConnectionRequest::getBandwidth()const
|
||||
@@ -99,7 +99,7 @@ int CreatePhysicalConnectionRequest::getBandwidth()const
|
||||
void CreatePhysicalConnectionRequest::setBandwidth(int bandwidth)
|
||||
{
|
||||
bandwidth_ = bandwidth;
|
||||
setParameter("Bandwidth", std::to_string(bandwidth));
|
||||
setCoreParameter("Bandwidth", std::to_string(bandwidth));
|
||||
}
|
||||
|
||||
std::string CreatePhysicalConnectionRequest::getClientToken()const
|
||||
@@ -110,7 +110,7 @@ std::string CreatePhysicalConnectionRequest::getClientToken()const
|
||||
void CreatePhysicalConnectionRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string CreatePhysicalConnectionRequest::getResourceOwnerAccount()const
|
||||
@@ -121,7 +121,7 @@ std::string CreatePhysicalConnectionRequest::getResourceOwnerAccount()const
|
||||
void CreatePhysicalConnectionRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreatePhysicalConnectionRequest::getOwnerAccount()const
|
||||
@@ -132,7 +132,7 @@ std::string CreatePhysicalConnectionRequest::getOwnerAccount()const
|
||||
void CreatePhysicalConnectionRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string CreatePhysicalConnectionRequest::getDescription()const
|
||||
@@ -143,7 +143,7 @@ std::string CreatePhysicalConnectionRequest::getDescription()const
|
||||
void CreatePhysicalConnectionRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setParameter("Description", description);
|
||||
setCoreParameter("Description", description);
|
||||
}
|
||||
|
||||
std::string CreatePhysicalConnectionRequest::getType()const
|
||||
@@ -154,7 +154,7 @@ std::string CreatePhysicalConnectionRequest::getType()const
|
||||
void CreatePhysicalConnectionRequest::setType(const std::string& type)
|
||||
{
|
||||
type_ = type;
|
||||
setParameter("Type", type);
|
||||
setCoreParameter("Type", type);
|
||||
}
|
||||
|
||||
long CreatePhysicalConnectionRequest::getOwnerId()const
|
||||
@@ -165,7 +165,7 @@ long CreatePhysicalConnectionRequest::getOwnerId()const
|
||||
void CreatePhysicalConnectionRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string CreatePhysicalConnectionRequest::getLineOperator()const
|
||||
@@ -176,7 +176,7 @@ std::string CreatePhysicalConnectionRequest::getLineOperator()const
|
||||
void CreatePhysicalConnectionRequest::setLineOperator(const std::string& lineOperator)
|
||||
{
|
||||
lineOperator_ = lineOperator;
|
||||
setParameter("LineOperator", lineOperator);
|
||||
setCoreParameter("LineOperator", lineOperator);
|
||||
}
|
||||
|
||||
std::string CreatePhysicalConnectionRequest::getRegionId()const
|
||||
@@ -187,7 +187,7 @@ std::string CreatePhysicalConnectionRequest::getRegionId()const
|
||||
void CreatePhysicalConnectionRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string CreatePhysicalConnectionRequest::getName()const
|
||||
@@ -198,7 +198,7 @@ std::string CreatePhysicalConnectionRequest::getName()const
|
||||
void CreatePhysicalConnectionRequest::setName(const std::string& name)
|
||||
{
|
||||
name_ = name;
|
||||
setParameter("Name", name);
|
||||
setCoreParameter("Name", name);
|
||||
}
|
||||
|
||||
std::string CreatePhysicalConnectionRequest::getUserCidr()const
|
||||
@@ -209,6 +209,6 @@ std::string CreatePhysicalConnectionRequest::getUserCidr()const
|
||||
void CreatePhysicalConnectionRequest::setUserCidr(const std::string& userCidr)
|
||||
{
|
||||
userCidr_ = userCidr;
|
||||
setParameter("UserCidr", userCidr);
|
||||
setCoreParameter("UserCidr", userCidr);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long CreateRouteEntryRequest::getResourceOwnerId()const
|
||||
void CreateRouteEntryRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateRouteEntryRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +44,7 @@ std::string CreateRouteEntryRequest::getResourceOwnerAccount()const
|
||||
void CreateRouteEntryRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateRouteEntryRequest::getRegionId()const
|
||||
@@ -55,7 +55,7 @@ std::string CreateRouteEntryRequest::getRegionId()const
|
||||
void CreateRouteEntryRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string CreateRouteEntryRequest::getClientToken()const
|
||||
@@ -66,7 +66,7 @@ std::string CreateRouteEntryRequest::getClientToken()const
|
||||
void CreateRouteEntryRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string CreateRouteEntryRequest::getDestinationCidrBlock()const
|
||||
@@ -77,7 +77,7 @@ std::string CreateRouteEntryRequest::getDestinationCidrBlock()const
|
||||
void CreateRouteEntryRequest::setDestinationCidrBlock(const std::string& destinationCidrBlock)
|
||||
{
|
||||
destinationCidrBlock_ = destinationCidrBlock;
|
||||
setParameter("DestinationCidrBlock", destinationCidrBlock);
|
||||
setCoreParameter("DestinationCidrBlock", destinationCidrBlock);
|
||||
}
|
||||
|
||||
std::string CreateRouteEntryRequest::getOwnerAccount()const
|
||||
@@ -88,7 +88,7 @@ std::string CreateRouteEntryRequest::getOwnerAccount()const
|
||||
void CreateRouteEntryRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string CreateRouteEntryRequest::getNextHopId()const
|
||||
@@ -99,7 +99,7 @@ std::string CreateRouteEntryRequest::getNextHopId()const
|
||||
void CreateRouteEntryRequest::setNextHopId(const std::string& nextHopId)
|
||||
{
|
||||
nextHopId_ = nextHopId;
|
||||
setParameter("NextHopId", nextHopId);
|
||||
setCoreParameter("NextHopId", nextHopId);
|
||||
}
|
||||
|
||||
long CreateRouteEntryRequest::getOwnerId()const
|
||||
@@ -110,7 +110,7 @@ long CreateRouteEntryRequest::getOwnerId()const
|
||||
void CreateRouteEntryRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string CreateRouteEntryRequest::getNextHopType()const
|
||||
@@ -121,7 +121,7 @@ std::string CreateRouteEntryRequest::getNextHopType()const
|
||||
void CreateRouteEntryRequest::setNextHopType(const std::string& nextHopType)
|
||||
{
|
||||
nextHopType_ = nextHopType;
|
||||
setParameter("NextHopType", nextHopType);
|
||||
setCoreParameter("NextHopType", nextHopType);
|
||||
}
|
||||
|
||||
std::vector<CreateRouteEntryRequest::NextHopList> CreateRouteEntryRequest::getNextHopList()const
|
||||
@@ -136,8 +136,8 @@ void CreateRouteEntryRequest::setNextHopList(const std::vector<NextHopList>& nex
|
||||
for(int i = 0; i!= nextHopList.size(); i++) {
|
||||
auto obj = nextHopList.at(i);
|
||||
std::string str ="NextHopList."+ std::to_string(i);
|
||||
setParameter(str + ".NextHopId", obj.nextHopId);
|
||||
setParameter(str + ".NextHopType", obj.nextHopType);
|
||||
setCoreParameter(str + ".NextHopId", obj.nextHopId);
|
||||
setCoreParameter(str + ".NextHopType", obj.nextHopType);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -149,6 +149,6 @@ std::string CreateRouteEntryRequest::getRouteTableId()const
|
||||
void CreateRouteEntryRequest::setRouteTableId(const std::string& routeTableId)
|
||||
{
|
||||
routeTableId_ = routeTableId;
|
||||
setParameter("RouteTableId", routeTableId);
|
||||
setCoreParameter("RouteTableId", routeTableId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string CreateRouterInterfaceRequest::getAccessPointId()const
|
||||
void CreateRouterInterfaceRequest::setAccessPointId(const std::string& accessPointId)
|
||||
{
|
||||
accessPointId_ = accessPointId;
|
||||
setParameter("AccessPointId", accessPointId);
|
||||
setCoreParameter("AccessPointId", accessPointId);
|
||||
}
|
||||
|
||||
std::string CreateRouterInterfaceRequest::getOppositeRouterId()const
|
||||
@@ -44,7 +44,7 @@ std::string CreateRouterInterfaceRequest::getOppositeRouterId()const
|
||||
void CreateRouterInterfaceRequest::setOppositeRouterId(const std::string& oppositeRouterId)
|
||||
{
|
||||
oppositeRouterId_ = oppositeRouterId;
|
||||
setParameter("OppositeRouterId", oppositeRouterId);
|
||||
setCoreParameter("OppositeRouterId", oppositeRouterId);
|
||||
}
|
||||
|
||||
std::string CreateRouterInterfaceRequest::getOppositeAccessPointId()const
|
||||
@@ -55,7 +55,7 @@ std::string CreateRouterInterfaceRequest::getOppositeAccessPointId()const
|
||||
void CreateRouterInterfaceRequest::setOppositeAccessPointId(const std::string& oppositeAccessPointId)
|
||||
{
|
||||
oppositeAccessPointId_ = oppositeAccessPointId;
|
||||
setParameter("OppositeAccessPointId", oppositeAccessPointId);
|
||||
setCoreParameter("OppositeAccessPointId", oppositeAccessPointId);
|
||||
}
|
||||
|
||||
long CreateRouterInterfaceRequest::getResourceOwnerId()const
|
||||
@@ -66,7 +66,7 @@ long CreateRouterInterfaceRequest::getResourceOwnerId()const
|
||||
void CreateRouterInterfaceRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateRouterInterfaceRequest::getRole()const
|
||||
@@ -77,7 +77,7 @@ std::string CreateRouterInterfaceRequest::getRole()const
|
||||
void CreateRouterInterfaceRequest::setRole(const std::string& role)
|
||||
{
|
||||
role_ = role;
|
||||
setParameter("Role", role);
|
||||
setCoreParameter("Role", role);
|
||||
}
|
||||
|
||||
std::string CreateRouterInterfaceRequest::getClientToken()const
|
||||
@@ -88,7 +88,7 @@ std::string CreateRouterInterfaceRequest::getClientToken()const
|
||||
void CreateRouterInterfaceRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string CreateRouterInterfaceRequest::getHealthCheckTargetIp()const
|
||||
@@ -99,7 +99,7 @@ std::string CreateRouterInterfaceRequest::getHealthCheckTargetIp()const
|
||||
void CreateRouterInterfaceRequest::setHealthCheckTargetIp(const std::string& healthCheckTargetIp)
|
||||
{
|
||||
healthCheckTargetIp_ = healthCheckTargetIp;
|
||||
setParameter("HealthCheckTargetIp", healthCheckTargetIp);
|
||||
setCoreParameter("HealthCheckTargetIp", healthCheckTargetIp);
|
||||
}
|
||||
|
||||
std::string CreateRouterInterfaceRequest::getDescription()const
|
||||
@@ -110,7 +110,7 @@ std::string CreateRouterInterfaceRequest::getDescription()const
|
||||
void CreateRouterInterfaceRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setParameter("Description", description);
|
||||
setCoreParameter("Description", description);
|
||||
}
|
||||
|
||||
std::string CreateRouterInterfaceRequest::getSpec()const
|
||||
@@ -121,7 +121,7 @@ std::string CreateRouterInterfaceRequest::getSpec()const
|
||||
void CreateRouterInterfaceRequest::setSpec(const std::string& spec)
|
||||
{
|
||||
spec_ = spec;
|
||||
setParameter("Spec", spec);
|
||||
setCoreParameter("Spec", spec);
|
||||
}
|
||||
|
||||
std::string CreateRouterInterfaceRequest::getRegionId()const
|
||||
@@ -132,7 +132,7 @@ std::string CreateRouterInterfaceRequest::getRegionId()const
|
||||
void CreateRouterInterfaceRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string CreateRouterInterfaceRequest::getUserCidr()const
|
||||
@@ -143,7 +143,7 @@ std::string CreateRouterInterfaceRequest::getUserCidr()const
|
||||
void CreateRouterInterfaceRequest::setUserCidr(const std::string& userCidr)
|
||||
{
|
||||
userCidr_ = userCidr;
|
||||
setParameter("UserCidr", userCidr);
|
||||
setCoreParameter("UserCidr", userCidr);
|
||||
}
|
||||
|
||||
std::string CreateRouterInterfaceRequest::getOppositeInterfaceId()const
|
||||
@@ -154,7 +154,7 @@ std::string CreateRouterInterfaceRequest::getOppositeInterfaceId()const
|
||||
void CreateRouterInterfaceRequest::setOppositeInterfaceId(const std::string& oppositeInterfaceId)
|
||||
{
|
||||
oppositeInterfaceId_ = oppositeInterfaceId;
|
||||
setParameter("OppositeInterfaceId", oppositeInterfaceId);
|
||||
setCoreParameter("OppositeInterfaceId", oppositeInterfaceId);
|
||||
}
|
||||
|
||||
std::string CreateRouterInterfaceRequest::getInstanceChargeType()const
|
||||
@@ -165,7 +165,7 @@ std::string CreateRouterInterfaceRequest::getInstanceChargeType()const
|
||||
void CreateRouterInterfaceRequest::setInstanceChargeType(const std::string& instanceChargeType)
|
||||
{
|
||||
instanceChargeType_ = instanceChargeType;
|
||||
setParameter("InstanceChargeType", instanceChargeType);
|
||||
setCoreParameter("InstanceChargeType", instanceChargeType);
|
||||
}
|
||||
|
||||
int CreateRouterInterfaceRequest::getPeriod()const
|
||||
@@ -176,7 +176,7 @@ int CreateRouterInterfaceRequest::getPeriod()const
|
||||
void CreateRouterInterfaceRequest::setPeriod(int period)
|
||||
{
|
||||
period_ = period;
|
||||
setParameter("Period", std::to_string(period));
|
||||
setCoreParameter("Period", std::to_string(period));
|
||||
}
|
||||
|
||||
bool CreateRouterInterfaceRequest::getAutoPay()const
|
||||
@@ -187,7 +187,7 @@ bool CreateRouterInterfaceRequest::getAutoPay()const
|
||||
void CreateRouterInterfaceRequest::setAutoPay(bool autoPay)
|
||||
{
|
||||
autoPay_ = autoPay;
|
||||
setParameter("AutoPay", autoPay ? "true" : "false");
|
||||
setCoreParameter("AutoPay", autoPay ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateRouterInterfaceRequest::getResourceOwnerAccount()const
|
||||
@@ -198,7 +198,7 @@ std::string CreateRouterInterfaceRequest::getResourceOwnerAccount()const
|
||||
void CreateRouterInterfaceRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateRouterInterfaceRequest::getOppositeRegionId()const
|
||||
@@ -209,7 +209,7 @@ std::string CreateRouterInterfaceRequest::getOppositeRegionId()const
|
||||
void CreateRouterInterfaceRequest::setOppositeRegionId(const std::string& oppositeRegionId)
|
||||
{
|
||||
oppositeRegionId_ = oppositeRegionId;
|
||||
setParameter("OppositeRegionId", oppositeRegionId);
|
||||
setCoreParameter("OppositeRegionId", oppositeRegionId);
|
||||
}
|
||||
|
||||
std::string CreateRouterInterfaceRequest::getOwnerAccount()const
|
||||
@@ -220,7 +220,7 @@ std::string CreateRouterInterfaceRequest::getOwnerAccount()const
|
||||
void CreateRouterInterfaceRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
long CreateRouterInterfaceRequest::getOwnerId()const
|
||||
@@ -231,7 +231,7 @@ long CreateRouterInterfaceRequest::getOwnerId()const
|
||||
void CreateRouterInterfaceRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string CreateRouterInterfaceRequest::getOppositeInterfaceOwnerId()const
|
||||
@@ -242,7 +242,7 @@ std::string CreateRouterInterfaceRequest::getOppositeInterfaceOwnerId()const
|
||||
void CreateRouterInterfaceRequest::setOppositeInterfaceOwnerId(const std::string& oppositeInterfaceOwnerId)
|
||||
{
|
||||
oppositeInterfaceOwnerId_ = oppositeInterfaceOwnerId;
|
||||
setParameter("OppositeInterfaceOwnerId", oppositeInterfaceOwnerId);
|
||||
setCoreParameter("OppositeInterfaceOwnerId", oppositeInterfaceOwnerId);
|
||||
}
|
||||
|
||||
std::string CreateRouterInterfaceRequest::getRouterType()const
|
||||
@@ -253,7 +253,7 @@ std::string CreateRouterInterfaceRequest::getRouterType()const
|
||||
void CreateRouterInterfaceRequest::setRouterType(const std::string& routerType)
|
||||
{
|
||||
routerType_ = routerType;
|
||||
setParameter("RouterType", routerType);
|
||||
setCoreParameter("RouterType", routerType);
|
||||
}
|
||||
|
||||
std::string CreateRouterInterfaceRequest::getHealthCheckSourceIp()const
|
||||
@@ -264,7 +264,7 @@ std::string CreateRouterInterfaceRequest::getHealthCheckSourceIp()const
|
||||
void CreateRouterInterfaceRequest::setHealthCheckSourceIp(const std::string& healthCheckSourceIp)
|
||||
{
|
||||
healthCheckSourceIp_ = healthCheckSourceIp;
|
||||
setParameter("HealthCheckSourceIp", healthCheckSourceIp);
|
||||
setCoreParameter("HealthCheckSourceIp", healthCheckSourceIp);
|
||||
}
|
||||
|
||||
std::string CreateRouterInterfaceRequest::getRouterId()const
|
||||
@@ -275,7 +275,7 @@ std::string CreateRouterInterfaceRequest::getRouterId()const
|
||||
void CreateRouterInterfaceRequest::setRouterId(const std::string& routerId)
|
||||
{
|
||||
routerId_ = routerId;
|
||||
setParameter("RouterId", routerId);
|
||||
setCoreParameter("RouterId", routerId);
|
||||
}
|
||||
|
||||
std::string CreateRouterInterfaceRequest::getOppositeRouterType()const
|
||||
@@ -286,7 +286,7 @@ std::string CreateRouterInterfaceRequest::getOppositeRouterType()const
|
||||
void CreateRouterInterfaceRequest::setOppositeRouterType(const std::string& oppositeRouterType)
|
||||
{
|
||||
oppositeRouterType_ = oppositeRouterType;
|
||||
setParameter("OppositeRouterType", oppositeRouterType);
|
||||
setCoreParameter("OppositeRouterType", oppositeRouterType);
|
||||
}
|
||||
|
||||
std::string CreateRouterInterfaceRequest::getName()const
|
||||
@@ -297,7 +297,7 @@ std::string CreateRouterInterfaceRequest::getName()const
|
||||
void CreateRouterInterfaceRequest::setName(const std::string& name)
|
||||
{
|
||||
name_ = name;
|
||||
setParameter("Name", name);
|
||||
setCoreParameter("Name", name);
|
||||
}
|
||||
|
||||
std::string CreateRouterInterfaceRequest::getPricingCycle()const
|
||||
@@ -308,6 +308,6 @@ std::string CreateRouterInterfaceRequest::getPricingCycle()const
|
||||
void CreateRouterInterfaceRequest::setPricingCycle(const std::string& pricingCycle)
|
||||
{
|
||||
pricingCycle_ = pricingCycle;
|
||||
setParameter("PricingCycle", pricingCycle);
|
||||
setCoreParameter("PricingCycle", pricingCycle);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long CreateSecurityGroupRequest::getResourceOwnerId()const
|
||||
void CreateSecurityGroupRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateSecurityGroupRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +44,7 @@ std::string CreateSecurityGroupRequest::getResourceOwnerAccount()const
|
||||
void CreateSecurityGroupRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateSecurityGroupRequest::getClientToken()const
|
||||
@@ -55,7 +55,7 @@ std::string CreateSecurityGroupRequest::getClientToken()const
|
||||
void CreateSecurityGroupRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string CreateSecurityGroupRequest::getOwnerAccount()const
|
||||
@@ -66,7 +66,7 @@ std::string CreateSecurityGroupRequest::getOwnerAccount()const
|
||||
void CreateSecurityGroupRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string CreateSecurityGroupRequest::getDescription()const
|
||||
@@ -77,7 +77,7 @@ std::string CreateSecurityGroupRequest::getDescription()const
|
||||
void CreateSecurityGroupRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setParameter("Description", description);
|
||||
setCoreParameter("Description", description);
|
||||
}
|
||||
|
||||
long CreateSecurityGroupRequest::getOwnerId()const
|
||||
@@ -88,7 +88,7 @@ long CreateSecurityGroupRequest::getOwnerId()const
|
||||
void CreateSecurityGroupRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string CreateSecurityGroupRequest::getSecurityGroupName()const
|
||||
@@ -99,7 +99,7 @@ std::string CreateSecurityGroupRequest::getSecurityGroupName()const
|
||||
void CreateSecurityGroupRequest::setSecurityGroupName(const std::string& securityGroupName)
|
||||
{
|
||||
securityGroupName_ = securityGroupName;
|
||||
setParameter("SecurityGroupName", securityGroupName);
|
||||
setCoreParameter("SecurityGroupName", securityGroupName);
|
||||
}
|
||||
|
||||
std::string CreateSecurityGroupRequest::getSourceRegionId()const
|
||||
@@ -110,7 +110,7 @@ std::string CreateSecurityGroupRequest::getSourceRegionId()const
|
||||
void CreateSecurityGroupRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string CreateSecurityGroupRequest::getResourceGroupId()const
|
||||
@@ -121,7 +121,7 @@ std::string CreateSecurityGroupRequest::getResourceGroupId()const
|
||||
void CreateSecurityGroupRequest::setResourceGroupId(const std::string& resourceGroupId)
|
||||
{
|
||||
resourceGroupId_ = resourceGroupId;
|
||||
setParameter("ResourceGroupId", resourceGroupId);
|
||||
setCoreParameter("ResourceGroupId", resourceGroupId);
|
||||
}
|
||||
|
||||
std::string CreateSecurityGroupRequest::getRegionId()const
|
||||
@@ -132,7 +132,7 @@ std::string CreateSecurityGroupRequest::getRegionId()const
|
||||
void CreateSecurityGroupRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string CreateSecurityGroupRequest::getVpcId()const
|
||||
@@ -143,7 +143,7 @@ std::string CreateSecurityGroupRequest::getVpcId()const
|
||||
void CreateSecurityGroupRequest::setVpcId(const std::string& vpcId)
|
||||
{
|
||||
vpcId_ = vpcId;
|
||||
setParameter("VpcId", vpcId);
|
||||
setCoreParameter("VpcId", vpcId);
|
||||
}
|
||||
|
||||
std::vector<CreateSecurityGroupRequest::Tag> CreateSecurityGroupRequest::getTag()const
|
||||
@@ -158,8 +158,8 @@ void CreateSecurityGroupRequest::setTag(const std::vector<Tag>& tag)
|
||||
for(int i = 0; i!= tag.size(); i++) {
|
||||
auto obj = tag.at(i);
|
||||
std::string str ="Tag."+ std::to_string(i);
|
||||
setParameter(str + ".Value", obj.value);
|
||||
setParameter(str + ".Key", obj.key);
|
||||
setCoreParameter(str + ".Value", obj.value);
|
||||
setCoreParameter(str + ".Key", obj.key);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long CreateSimulatedSystemEventsRequest::getResourceOwnerId()const
|
||||
void CreateSimulatedSystemEventsRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateSimulatedSystemEventsRequest::getNotBefore()const
|
||||
@@ -44,7 +44,7 @@ std::string CreateSimulatedSystemEventsRequest::getNotBefore()const
|
||||
void CreateSimulatedSystemEventsRequest::setNotBefore(const std::string& notBefore)
|
||||
{
|
||||
notBefore_ = notBefore;
|
||||
setParameter("NotBefore", notBefore);
|
||||
setCoreParameter("NotBefore", notBefore);
|
||||
}
|
||||
|
||||
long CreateSimulatedSystemEventsRequest::getCallerParentId()const
|
||||
@@ -55,7 +55,7 @@ long CreateSimulatedSystemEventsRequest::getCallerParentId()const
|
||||
void CreateSimulatedSystemEventsRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
bool CreateSimulatedSystemEventsRequest::getProxy_original_security_transport()const
|
||||
@@ -66,7 +66,7 @@ bool CreateSimulatedSystemEventsRequest::getProxy_original_security_transport()c
|
||||
void CreateSimulatedSystemEventsRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateSimulatedSystemEventsRequest::getProxy_original_source_ip()const
|
||||
@@ -77,7 +77,7 @@ std::string CreateSimulatedSystemEventsRequest::getProxy_original_source_ip()con
|
||||
void CreateSimulatedSystemEventsRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string CreateSimulatedSystemEventsRequest::getOwnerIdLoginEmail()const
|
||||
@@ -88,7 +88,7 @@ std::string CreateSimulatedSystemEventsRequest::getOwnerIdLoginEmail()const
|
||||
void CreateSimulatedSystemEventsRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string CreateSimulatedSystemEventsRequest::getCallerType()const
|
||||
@@ -99,7 +99,7 @@ std::string CreateSimulatedSystemEventsRequest::getCallerType()const
|
||||
void CreateSimulatedSystemEventsRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string CreateSimulatedSystemEventsRequest::getAccessKeyId()const
|
||||
@@ -110,7 +110,7 @@ std::string CreateSimulatedSystemEventsRequest::getAccessKeyId()const
|
||||
void CreateSimulatedSystemEventsRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string CreateSimulatedSystemEventsRequest::getResourceGroupId()const
|
||||
@@ -121,7 +121,7 @@ std::string CreateSimulatedSystemEventsRequest::getResourceGroupId()const
|
||||
void CreateSimulatedSystemEventsRequest::setResourceGroupId(const std::string& resourceGroupId)
|
||||
{
|
||||
resourceGroupId_ = resourceGroupId;
|
||||
setParameter("ResourceGroupId", resourceGroupId);
|
||||
setCoreParameter("ResourceGroupId", resourceGroupId);
|
||||
}
|
||||
|
||||
std::string CreateSimulatedSystemEventsRequest::getSecurityToken()const
|
||||
@@ -132,7 +132,7 @@ std::string CreateSimulatedSystemEventsRequest::getSecurityToken()const
|
||||
void CreateSimulatedSystemEventsRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string CreateSimulatedSystemEventsRequest::getRegionId()const
|
||||
@@ -143,7 +143,7 @@ std::string CreateSimulatedSystemEventsRequest::getRegionId()const
|
||||
void CreateSimulatedSystemEventsRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool CreateSimulatedSystemEventsRequest::getEnable()const
|
||||
@@ -154,7 +154,7 @@ bool CreateSimulatedSystemEventsRequest::getEnable()const
|
||||
void CreateSimulatedSystemEventsRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string CreateSimulatedSystemEventsRequest::getRequestContent()const
|
||||
@@ -165,7 +165,7 @@ std::string CreateSimulatedSystemEventsRequest::getRequestContent()const
|
||||
void CreateSimulatedSystemEventsRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string CreateSimulatedSystemEventsRequest::getCallerBidEmail()const
|
||||
@@ -176,7 +176,7 @@ std::string CreateSimulatedSystemEventsRequest::getCallerBidEmail()const
|
||||
void CreateSimulatedSystemEventsRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string CreateSimulatedSystemEventsRequest::getCallerUidEmail()const
|
||||
@@ -187,7 +187,7 @@ std::string CreateSimulatedSystemEventsRequest::getCallerUidEmail()const
|
||||
void CreateSimulatedSystemEventsRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long CreateSimulatedSystemEventsRequest::getCallerUid()const
|
||||
@@ -198,7 +198,7 @@ long CreateSimulatedSystemEventsRequest::getCallerUid()const
|
||||
void CreateSimulatedSystemEventsRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string CreateSimulatedSystemEventsRequest::getApp_ip()const
|
||||
@@ -209,7 +209,7 @@ std::string CreateSimulatedSystemEventsRequest::getApp_ip()const
|
||||
void CreateSimulatedSystemEventsRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string CreateSimulatedSystemEventsRequest::getResourceOwnerAccount()const
|
||||
@@ -220,7 +220,7 @@ std::string CreateSimulatedSystemEventsRequest::getResourceOwnerAccount()const
|
||||
void CreateSimulatedSystemEventsRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateSimulatedSystemEventsRequest::getOwnerAccount()const
|
||||
@@ -231,7 +231,7 @@ std::string CreateSimulatedSystemEventsRequest::getOwnerAccount()const
|
||||
void CreateSimulatedSystemEventsRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string CreateSimulatedSystemEventsRequest::getCallerBid()const
|
||||
@@ -242,7 +242,7 @@ std::string CreateSimulatedSystemEventsRequest::getCallerBid()const
|
||||
void CreateSimulatedSystemEventsRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long CreateSimulatedSystemEventsRequest::getOwnerId()const
|
||||
@@ -253,7 +253,7 @@ long CreateSimulatedSystemEventsRequest::getOwnerId()const
|
||||
void CreateSimulatedSystemEventsRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool CreateSimulatedSystemEventsRequest::getProxy_trust_transport_info()const
|
||||
@@ -264,7 +264,7 @@ bool CreateSimulatedSystemEventsRequest::getProxy_trust_transport_info()const
|
||||
void CreateSimulatedSystemEventsRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool CreateSimulatedSystemEventsRequest::getAk_mfa_present()const
|
||||
@@ -275,7 +275,7 @@ bool CreateSimulatedSystemEventsRequest::getAk_mfa_present()const
|
||||
void CreateSimulatedSystemEventsRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool CreateSimulatedSystemEventsRequest::getSecurity_transport()const
|
||||
@@ -286,7 +286,7 @@ bool CreateSimulatedSystemEventsRequest::getSecurity_transport()const
|
||||
void CreateSimulatedSystemEventsRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::vector<std::string> CreateSimulatedSystemEventsRequest::getInstanceId()const
|
||||
@@ -298,7 +298,7 @@ void CreateSimulatedSystemEventsRequest::setInstanceId(const std::vector<std::st
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
for(int i = 0; i!= instanceId.size(); i++)
|
||||
setParameter("InstanceId."+ std::to_string(i), instanceId.at(i));
|
||||
setCoreParameter("InstanceId."+ std::to_string(i), instanceId.at(i));
|
||||
}
|
||||
|
||||
std::string CreateSimulatedSystemEventsRequest::getRequestId()const
|
||||
@@ -309,7 +309,7 @@ std::string CreateSimulatedSystemEventsRequest::getRequestId()const
|
||||
void CreateSimulatedSystemEventsRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
std::string CreateSimulatedSystemEventsRequest::getEventType()const
|
||||
@@ -320,6 +320,6 @@ std::string CreateSimulatedSystemEventsRequest::getEventType()const
|
||||
void CreateSimulatedSystemEventsRequest::setEventType(const std::string& eventType)
|
||||
{
|
||||
eventType_ = eventType;
|
||||
setParameter("EventType", eventType);
|
||||
setCoreParameter("EventType", eventType);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string CreateSnapshotRequest::getSourceRegionId()const
|
||||
void CreateSnapshotRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
long CreateSnapshotRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long CreateSnapshotRequest::getResourceOwnerId()const
|
||||
void CreateSnapshotRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateSnapshotRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string CreateSnapshotRequest::getResourceOwnerAccount()const
|
||||
void CreateSnapshotRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateSnapshotRequest::getClientToken()const
|
||||
@@ -66,7 +66,7 @@ std::string CreateSnapshotRequest::getClientToken()const
|
||||
void CreateSnapshotRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string CreateSnapshotRequest::getOwnerAccount()const
|
||||
@@ -77,7 +77,7 @@ std::string CreateSnapshotRequest::getOwnerAccount()const
|
||||
void CreateSnapshotRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string CreateSnapshotRequest::getDescription()const
|
||||
@@ -88,7 +88,7 @@ std::string CreateSnapshotRequest::getDescription()const
|
||||
void CreateSnapshotRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setParameter("Description", description);
|
||||
setCoreParameter("Description", description);
|
||||
}
|
||||
|
||||
std::string CreateSnapshotRequest::getDiskId()const
|
||||
@@ -99,7 +99,7 @@ std::string CreateSnapshotRequest::getDiskId()const
|
||||
void CreateSnapshotRequest::setDiskId(const std::string& diskId)
|
||||
{
|
||||
diskId_ = diskId;
|
||||
setParameter("DiskId", diskId);
|
||||
setCoreParameter("DiskId", diskId);
|
||||
}
|
||||
|
||||
std::string CreateSnapshotRequest::getSnapshotName()const
|
||||
@@ -110,7 +110,7 @@ std::string CreateSnapshotRequest::getSnapshotName()const
|
||||
void CreateSnapshotRequest::setSnapshotName(const std::string& snapshotName)
|
||||
{
|
||||
snapshotName_ = snapshotName;
|
||||
setParameter("SnapshotName", snapshotName);
|
||||
setCoreParameter("SnapshotName", snapshotName);
|
||||
}
|
||||
|
||||
std::vector<CreateSnapshotRequest::Tag> CreateSnapshotRequest::getTag()const
|
||||
@@ -125,8 +125,8 @@ void CreateSnapshotRequest::setTag(const std::vector<Tag>& tag)
|
||||
for(int i = 0; i!= tag.size(); i++) {
|
||||
auto obj = tag.at(i);
|
||||
std::string str ="Tag."+ std::to_string(i);
|
||||
setParameter(str + ".Value", obj.value);
|
||||
setParameter(str + ".Key", obj.key);
|
||||
setCoreParameter(str + ".Value", obj.value);
|
||||
setCoreParameter(str + ".Key", obj.key);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -138,6 +138,6 @@ long CreateSnapshotRequest::getOwnerId()const
|
||||
void CreateSnapshotRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long CreateVSwitchRequest::getResourceOwnerId()const
|
||||
void CreateVSwitchRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateVSwitchRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +44,7 @@ std::string CreateVSwitchRequest::getResourceOwnerAccount()const
|
||||
void CreateVSwitchRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateVSwitchRequest::getRegionId()const
|
||||
@@ -55,7 +55,7 @@ std::string CreateVSwitchRequest::getRegionId()const
|
||||
void CreateVSwitchRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string CreateVSwitchRequest::getClientToken()const
|
||||
@@ -66,7 +66,7 @@ std::string CreateVSwitchRequest::getClientToken()const
|
||||
void CreateVSwitchRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string CreateVSwitchRequest::getVpcId()const
|
||||
@@ -77,7 +77,7 @@ std::string CreateVSwitchRequest::getVpcId()const
|
||||
void CreateVSwitchRequest::setVpcId(const std::string& vpcId)
|
||||
{
|
||||
vpcId_ = vpcId;
|
||||
setParameter("VpcId", vpcId);
|
||||
setCoreParameter("VpcId", vpcId);
|
||||
}
|
||||
|
||||
std::string CreateVSwitchRequest::getVSwitchName()const
|
||||
@@ -88,7 +88,7 @@ std::string CreateVSwitchRequest::getVSwitchName()const
|
||||
void CreateVSwitchRequest::setVSwitchName(const std::string& vSwitchName)
|
||||
{
|
||||
vSwitchName_ = vSwitchName;
|
||||
setParameter("VSwitchName", vSwitchName);
|
||||
setCoreParameter("VSwitchName", vSwitchName);
|
||||
}
|
||||
|
||||
std::string CreateVSwitchRequest::getOwnerAccount()const
|
||||
@@ -99,7 +99,7 @@ std::string CreateVSwitchRequest::getOwnerAccount()const
|
||||
void CreateVSwitchRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string CreateVSwitchRequest::getCidrBlock()const
|
||||
@@ -110,7 +110,7 @@ std::string CreateVSwitchRequest::getCidrBlock()const
|
||||
void CreateVSwitchRequest::setCidrBlock(const std::string& cidrBlock)
|
||||
{
|
||||
cidrBlock_ = cidrBlock;
|
||||
setParameter("CidrBlock", cidrBlock);
|
||||
setCoreParameter("CidrBlock", cidrBlock);
|
||||
}
|
||||
|
||||
std::string CreateVSwitchRequest::getZoneId()const
|
||||
@@ -121,7 +121,7 @@ std::string CreateVSwitchRequest::getZoneId()const
|
||||
void CreateVSwitchRequest::setZoneId(const std::string& zoneId)
|
||||
{
|
||||
zoneId_ = zoneId;
|
||||
setParameter("ZoneId", zoneId);
|
||||
setCoreParameter("ZoneId", zoneId);
|
||||
}
|
||||
|
||||
std::string CreateVSwitchRequest::getDescription()const
|
||||
@@ -132,7 +132,7 @@ std::string CreateVSwitchRequest::getDescription()const
|
||||
void CreateVSwitchRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setParameter("Description", description);
|
||||
setCoreParameter("Description", description);
|
||||
}
|
||||
|
||||
long CreateVSwitchRequest::getOwnerId()const
|
||||
@@ -143,6 +143,6 @@ long CreateVSwitchRequest::getOwnerId()const
|
||||
void CreateVSwitchRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long CreateVirtualBorderRouterRequest::getResourceOwnerId()const
|
||||
void CreateVirtualBorderRouterRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateVirtualBorderRouterRequest::getCircuitCode()const
|
||||
@@ -44,7 +44,7 @@ std::string CreateVirtualBorderRouterRequest::getCircuitCode()const
|
||||
void CreateVirtualBorderRouterRequest::setCircuitCode(const std::string& circuitCode)
|
||||
{
|
||||
circuitCode_ = circuitCode;
|
||||
setParameter("CircuitCode", circuitCode);
|
||||
setCoreParameter("CircuitCode", circuitCode);
|
||||
}
|
||||
|
||||
int CreateVirtualBorderRouterRequest::getVlanId()const
|
||||
@@ -55,7 +55,7 @@ int CreateVirtualBorderRouterRequest::getVlanId()const
|
||||
void CreateVirtualBorderRouterRequest::setVlanId(int vlanId)
|
||||
{
|
||||
vlanId_ = vlanId;
|
||||
setParameter("VlanId", std::to_string(vlanId));
|
||||
setCoreParameter("VlanId", std::to_string(vlanId));
|
||||
}
|
||||
|
||||
std::string CreateVirtualBorderRouterRequest::getClientToken()const
|
||||
@@ -66,7 +66,7 @@ std::string CreateVirtualBorderRouterRequest::getClientToken()const
|
||||
void CreateVirtualBorderRouterRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string CreateVirtualBorderRouterRequest::getResourceOwnerAccount()const
|
||||
@@ -77,7 +77,7 @@ std::string CreateVirtualBorderRouterRequest::getResourceOwnerAccount()const
|
||||
void CreateVirtualBorderRouterRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateVirtualBorderRouterRequest::getOwnerAccount()const
|
||||
@@ -88,7 +88,7 @@ std::string CreateVirtualBorderRouterRequest::getOwnerAccount()const
|
||||
void CreateVirtualBorderRouterRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string CreateVirtualBorderRouterRequest::getDescription()const
|
||||
@@ -99,7 +99,7 @@ std::string CreateVirtualBorderRouterRequest::getDescription()const
|
||||
void CreateVirtualBorderRouterRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setParameter("Description", description);
|
||||
setCoreParameter("Description", description);
|
||||
}
|
||||
|
||||
long CreateVirtualBorderRouterRequest::getOwnerId()const
|
||||
@@ -110,7 +110,7 @@ long CreateVirtualBorderRouterRequest::getOwnerId()const
|
||||
void CreateVirtualBorderRouterRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string CreateVirtualBorderRouterRequest::getPeerGatewayIp()const
|
||||
@@ -121,7 +121,7 @@ std::string CreateVirtualBorderRouterRequest::getPeerGatewayIp()const
|
||||
void CreateVirtualBorderRouterRequest::setPeerGatewayIp(const std::string& peerGatewayIp)
|
||||
{
|
||||
peerGatewayIp_ = peerGatewayIp;
|
||||
setParameter("PeerGatewayIp", peerGatewayIp);
|
||||
setCoreParameter("PeerGatewayIp", peerGatewayIp);
|
||||
}
|
||||
|
||||
std::string CreateVirtualBorderRouterRequest::getPeeringSubnetMask()const
|
||||
@@ -132,7 +132,7 @@ std::string CreateVirtualBorderRouterRequest::getPeeringSubnetMask()const
|
||||
void CreateVirtualBorderRouterRequest::setPeeringSubnetMask(const std::string& peeringSubnetMask)
|
||||
{
|
||||
peeringSubnetMask_ = peeringSubnetMask;
|
||||
setParameter("PeeringSubnetMask", peeringSubnetMask);
|
||||
setCoreParameter("PeeringSubnetMask", peeringSubnetMask);
|
||||
}
|
||||
|
||||
std::string CreateVirtualBorderRouterRequest::getRegionId()const
|
||||
@@ -143,7 +143,7 @@ std::string CreateVirtualBorderRouterRequest::getRegionId()const
|
||||
void CreateVirtualBorderRouterRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string CreateVirtualBorderRouterRequest::getPhysicalConnectionId()const
|
||||
@@ -154,7 +154,7 @@ std::string CreateVirtualBorderRouterRequest::getPhysicalConnectionId()const
|
||||
void CreateVirtualBorderRouterRequest::setPhysicalConnectionId(const std::string& physicalConnectionId)
|
||||
{
|
||||
physicalConnectionId_ = physicalConnectionId;
|
||||
setParameter("PhysicalConnectionId", physicalConnectionId);
|
||||
setCoreParameter("PhysicalConnectionId", physicalConnectionId);
|
||||
}
|
||||
|
||||
std::string CreateVirtualBorderRouterRequest::getName()const
|
||||
@@ -165,7 +165,7 @@ std::string CreateVirtualBorderRouterRequest::getName()const
|
||||
void CreateVirtualBorderRouterRequest::setName(const std::string& name)
|
||||
{
|
||||
name_ = name;
|
||||
setParameter("Name", name);
|
||||
setCoreParameter("Name", name);
|
||||
}
|
||||
|
||||
std::string CreateVirtualBorderRouterRequest::getLocalGatewayIp()const
|
||||
@@ -176,7 +176,7 @@ std::string CreateVirtualBorderRouterRequest::getLocalGatewayIp()const
|
||||
void CreateVirtualBorderRouterRequest::setLocalGatewayIp(const std::string& localGatewayIp)
|
||||
{
|
||||
localGatewayIp_ = localGatewayIp;
|
||||
setParameter("LocalGatewayIp", localGatewayIp);
|
||||
setCoreParameter("LocalGatewayIp", localGatewayIp);
|
||||
}
|
||||
|
||||
std::string CreateVirtualBorderRouterRequest::getUserCidr()const
|
||||
@@ -187,7 +187,7 @@ std::string CreateVirtualBorderRouterRequest::getUserCidr()const
|
||||
void CreateVirtualBorderRouterRequest::setUserCidr(const std::string& userCidr)
|
||||
{
|
||||
userCidr_ = userCidr;
|
||||
setParameter("UserCidr", userCidr);
|
||||
setCoreParameter("UserCidr", userCidr);
|
||||
}
|
||||
|
||||
long CreateVirtualBorderRouterRequest::getVbrOwnerId()const
|
||||
@@ -198,6 +198,6 @@ long CreateVirtualBorderRouterRequest::getVbrOwnerId()const
|
||||
void CreateVirtualBorderRouterRequest::setVbrOwnerId(long vbrOwnerId)
|
||||
{
|
||||
vbrOwnerId_ = vbrOwnerId;
|
||||
setParameter("VbrOwnerId", std::to_string(vbrOwnerId));
|
||||
setCoreParameter("VbrOwnerId", std::to_string(vbrOwnerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string CreateVpcRequest::getVpcName()const
|
||||
void CreateVpcRequest::setVpcName(const std::string& vpcName)
|
||||
{
|
||||
vpcName_ = vpcName;
|
||||
setParameter("VpcName", vpcName);
|
||||
setCoreParameter("VpcName", vpcName);
|
||||
}
|
||||
|
||||
long CreateVpcRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long CreateVpcRequest::getResourceOwnerId()const
|
||||
void CreateVpcRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string CreateVpcRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string CreateVpcRequest::getResourceOwnerAccount()const
|
||||
void CreateVpcRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string CreateVpcRequest::getRegionId()const
|
||||
@@ -66,7 +66,7 @@ std::string CreateVpcRequest::getRegionId()const
|
||||
void CreateVpcRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string CreateVpcRequest::getClientToken()const
|
||||
@@ -77,7 +77,7 @@ std::string CreateVpcRequest::getClientToken()const
|
||||
void CreateVpcRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string CreateVpcRequest::getOwnerAccount()const
|
||||
@@ -88,7 +88,7 @@ std::string CreateVpcRequest::getOwnerAccount()const
|
||||
void CreateVpcRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string CreateVpcRequest::getCidrBlock()const
|
||||
@@ -99,7 +99,7 @@ std::string CreateVpcRequest::getCidrBlock()const
|
||||
void CreateVpcRequest::setCidrBlock(const std::string& cidrBlock)
|
||||
{
|
||||
cidrBlock_ = cidrBlock;
|
||||
setParameter("CidrBlock", cidrBlock);
|
||||
setCoreParameter("CidrBlock", cidrBlock);
|
||||
}
|
||||
|
||||
std::string CreateVpcRequest::getDescription()const
|
||||
@@ -110,7 +110,7 @@ std::string CreateVpcRequest::getDescription()const
|
||||
void CreateVpcRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setParameter("Description", description);
|
||||
setCoreParameter("Description", description);
|
||||
}
|
||||
|
||||
std::string CreateVpcRequest::getUserCidr()const
|
||||
@@ -121,7 +121,7 @@ std::string CreateVpcRequest::getUserCidr()const
|
||||
void CreateVpcRequest::setUserCidr(const std::string& userCidr)
|
||||
{
|
||||
userCidr_ = userCidr;
|
||||
setParameter("UserCidr", userCidr);
|
||||
setCoreParameter("UserCidr", userCidr);
|
||||
}
|
||||
|
||||
long CreateVpcRequest::getOwnerId()const
|
||||
@@ -132,6 +132,6 @@ long CreateVpcRequest::getOwnerId()const
|
||||
void CreateVpcRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long DeactivateRouterInterfaceRequest::getResourceOwnerId()const
|
||||
void DeactivateRouterInterfaceRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeactivateRouterInterfaceRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +44,7 @@ std::string DeactivateRouterInterfaceRequest::getResourceOwnerAccount()const
|
||||
void DeactivateRouterInterfaceRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeactivateRouterInterfaceRequest::getRegionId()const
|
||||
@@ -55,7 +55,7 @@ std::string DeactivateRouterInterfaceRequest::getRegionId()const
|
||||
void DeactivateRouterInterfaceRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
long DeactivateRouterInterfaceRequest::getOwnerId()const
|
||||
@@ -66,7 +66,7 @@ long DeactivateRouterInterfaceRequest::getOwnerId()const
|
||||
void DeactivateRouterInterfaceRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeactivateRouterInterfaceRequest::getRouterInterfaceId()const
|
||||
@@ -77,6 +77,6 @@ std::string DeactivateRouterInterfaceRequest::getRouterInterfaceId()const
|
||||
void DeactivateRouterInterfaceRequest::setRouterInterfaceId(const std::string& routerInterfaceId)
|
||||
{
|
||||
routerInterfaceId_ = routerInterfaceId;
|
||||
setParameter("RouterInterfaceId", routerInterfaceId);
|
||||
setCoreParameter("RouterInterfaceId", routerInterfaceId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string DeleteAutoSnapshotPolicyRequest::getSourceRegionId()const
|
||||
void DeleteAutoSnapshotPolicyRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
long DeleteAutoSnapshotPolicyRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long DeleteAutoSnapshotPolicyRequest::getResourceOwnerId()const
|
||||
void DeleteAutoSnapshotPolicyRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteAutoSnapshotPolicyRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string DeleteAutoSnapshotPolicyRequest::getResourceOwnerAccount()const
|
||||
void DeleteAutoSnapshotPolicyRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteAutoSnapshotPolicyRequest::getRegionId()const
|
||||
@@ -66,7 +66,7 @@ std::string DeleteAutoSnapshotPolicyRequest::getRegionId()const
|
||||
void DeleteAutoSnapshotPolicyRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string DeleteAutoSnapshotPolicyRequest::getAutoSnapshotPolicyId()const
|
||||
@@ -77,7 +77,7 @@ std::string DeleteAutoSnapshotPolicyRequest::getAutoSnapshotPolicyId()const
|
||||
void DeleteAutoSnapshotPolicyRequest::setAutoSnapshotPolicyId(const std::string& autoSnapshotPolicyId)
|
||||
{
|
||||
autoSnapshotPolicyId_ = autoSnapshotPolicyId;
|
||||
setParameter("AutoSnapshotPolicyId", autoSnapshotPolicyId);
|
||||
setCoreParameter("AutoSnapshotPolicyId", autoSnapshotPolicyId);
|
||||
}
|
||||
|
||||
long DeleteAutoSnapshotPolicyRequest::getOwnerId()const
|
||||
@@ -88,6 +88,6 @@ long DeleteAutoSnapshotPolicyRequest::getOwnerId()const
|
||||
void DeleteAutoSnapshotPolicyRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long DeleteBandwidthPackageRequest::getResourceOwnerId()const
|
||||
void DeleteBandwidthPackageRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteBandwidthPackageRequest::getBandwidthPackageId()const
|
||||
@@ -44,7 +44,7 @@ std::string DeleteBandwidthPackageRequest::getBandwidthPackageId()const
|
||||
void DeleteBandwidthPackageRequest::setBandwidthPackageId(const std::string& bandwidthPackageId)
|
||||
{
|
||||
bandwidthPackageId_ = bandwidthPackageId;
|
||||
setParameter("BandwidthPackageId", bandwidthPackageId);
|
||||
setCoreParameter("BandwidthPackageId", bandwidthPackageId);
|
||||
}
|
||||
|
||||
std::string DeleteBandwidthPackageRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string DeleteBandwidthPackageRequest::getResourceOwnerAccount()const
|
||||
void DeleteBandwidthPackageRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteBandwidthPackageRequest::getRegionId()const
|
||||
@@ -66,7 +66,7 @@ std::string DeleteBandwidthPackageRequest::getRegionId()const
|
||||
void DeleteBandwidthPackageRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string DeleteBandwidthPackageRequest::getOwnerAccount()const
|
||||
@@ -77,7 +77,7 @@ std::string DeleteBandwidthPackageRequest::getOwnerAccount()const
|
||||
void DeleteBandwidthPackageRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
long DeleteBandwidthPackageRequest::getOwnerId()const
|
||||
@@ -88,6 +88,6 @@ long DeleteBandwidthPackageRequest::getOwnerId()const
|
||||
void DeleteBandwidthPackageRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long DeleteCommandRequest::getResourceOwnerId()const
|
||||
void DeleteCommandRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long DeleteCommandRequest::getCallerParentId()const
|
||||
@@ -44,7 +44,7 @@ long DeleteCommandRequest::getCallerParentId()const
|
||||
void DeleteCommandRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
bool DeleteCommandRequest::getProxy_original_security_transport()const
|
||||
@@ -55,7 +55,7 @@ bool DeleteCommandRequest::getProxy_original_security_transport()const
|
||||
void DeleteCommandRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DeleteCommandRequest::getProxy_original_source_ip()const
|
||||
@@ -66,7 +66,7 @@ std::string DeleteCommandRequest::getProxy_original_source_ip()const
|
||||
void DeleteCommandRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string DeleteCommandRequest::getCommandId()const
|
||||
@@ -77,7 +77,7 @@ std::string DeleteCommandRequest::getCommandId()const
|
||||
void DeleteCommandRequest::setCommandId(const std::string& commandId)
|
||||
{
|
||||
commandId_ = commandId;
|
||||
setParameter("CommandId", commandId);
|
||||
setCoreParameter("CommandId", commandId);
|
||||
}
|
||||
|
||||
std::string DeleteCommandRequest::getOwnerIdLoginEmail()const
|
||||
@@ -88,7 +88,7 @@ std::string DeleteCommandRequest::getOwnerIdLoginEmail()const
|
||||
void DeleteCommandRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string DeleteCommandRequest::getCallerType()const
|
||||
@@ -99,7 +99,7 @@ std::string DeleteCommandRequest::getCallerType()const
|
||||
void DeleteCommandRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string DeleteCommandRequest::getAccessKeyId()const
|
||||
@@ -110,7 +110,7 @@ std::string DeleteCommandRequest::getAccessKeyId()const
|
||||
void DeleteCommandRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string DeleteCommandRequest::getSecurityToken()const
|
||||
@@ -121,7 +121,7 @@ std::string DeleteCommandRequest::getSecurityToken()const
|
||||
void DeleteCommandRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string DeleteCommandRequest::getRegionId()const
|
||||
@@ -132,7 +132,7 @@ std::string DeleteCommandRequest::getRegionId()const
|
||||
void DeleteCommandRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool DeleteCommandRequest::getEnable()const
|
||||
@@ -143,7 +143,7 @@ bool DeleteCommandRequest::getEnable()const
|
||||
void DeleteCommandRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DeleteCommandRequest::getRequestContent()const
|
||||
@@ -154,7 +154,7 @@ std::string DeleteCommandRequest::getRequestContent()const
|
||||
void DeleteCommandRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string DeleteCommandRequest::getCallerBidEmail()const
|
||||
@@ -165,7 +165,7 @@ std::string DeleteCommandRequest::getCallerBidEmail()const
|
||||
void DeleteCommandRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string DeleteCommandRequest::getCallerUidEmail()const
|
||||
@@ -176,7 +176,7 @@ std::string DeleteCommandRequest::getCallerUidEmail()const
|
||||
void DeleteCommandRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long DeleteCommandRequest::getCallerUid()const
|
||||
@@ -187,7 +187,7 @@ long DeleteCommandRequest::getCallerUid()const
|
||||
void DeleteCommandRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string DeleteCommandRequest::getApp_ip()const
|
||||
@@ -198,7 +198,7 @@ std::string DeleteCommandRequest::getApp_ip()const
|
||||
void DeleteCommandRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string DeleteCommandRequest::getResourceOwnerAccount()const
|
||||
@@ -209,7 +209,7 @@ std::string DeleteCommandRequest::getResourceOwnerAccount()const
|
||||
void DeleteCommandRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteCommandRequest::getOwnerAccount()const
|
||||
@@ -220,7 +220,7 @@ std::string DeleteCommandRequest::getOwnerAccount()const
|
||||
void DeleteCommandRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteCommandRequest::getCallerBid()const
|
||||
@@ -231,7 +231,7 @@ std::string DeleteCommandRequest::getCallerBid()const
|
||||
void DeleteCommandRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long DeleteCommandRequest::getOwnerId()const
|
||||
@@ -242,7 +242,7 @@ long DeleteCommandRequest::getOwnerId()const
|
||||
void DeleteCommandRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool DeleteCommandRequest::getProxy_trust_transport_info()const
|
||||
@@ -253,7 +253,7 @@ bool DeleteCommandRequest::getProxy_trust_transport_info()const
|
||||
void DeleteCommandRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DeleteCommandRequest::getAk_mfa_present()const
|
||||
@@ -264,7 +264,7 @@ bool DeleteCommandRequest::getAk_mfa_present()const
|
||||
void DeleteCommandRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DeleteCommandRequest::getSecurity_transport()const
|
||||
@@ -275,7 +275,7 @@ bool DeleteCommandRequest::getSecurity_transport()const
|
||||
void DeleteCommandRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DeleteCommandRequest::getRequestId()const
|
||||
@@ -286,6 +286,6 @@ std::string DeleteCommandRequest::getRequestId()const
|
||||
void DeleteCommandRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string DeleteDeploymentSetRequest::getDeploymentSetId()const
|
||||
void DeleteDeploymentSetRequest::setDeploymentSetId(const std::string& deploymentSetId)
|
||||
{
|
||||
deploymentSetId_ = deploymentSetId;
|
||||
setParameter("DeploymentSetId", deploymentSetId);
|
||||
setCoreParameter("DeploymentSetId", deploymentSetId);
|
||||
}
|
||||
|
||||
long DeleteDeploymentSetRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long DeleteDeploymentSetRequest::getResourceOwnerId()const
|
||||
void DeleteDeploymentSetRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteDeploymentSetRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string DeleteDeploymentSetRequest::getResourceOwnerAccount()const
|
||||
void DeleteDeploymentSetRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteDeploymentSetRequest::getRegionId()const
|
||||
@@ -66,7 +66,7 @@ std::string DeleteDeploymentSetRequest::getRegionId()const
|
||||
void DeleteDeploymentSetRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string DeleteDeploymentSetRequest::getOwnerAccount()const
|
||||
@@ -77,7 +77,7 @@ std::string DeleteDeploymentSetRequest::getOwnerAccount()const
|
||||
void DeleteDeploymentSetRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
long DeleteDeploymentSetRequest::getOwnerId()const
|
||||
@@ -88,6 +88,6 @@ long DeleteDeploymentSetRequest::getOwnerId()const
|
||||
void DeleteDeploymentSetRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string DeleteDiskRequest::getSourceRegionId()const
|
||||
void DeleteDiskRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
long DeleteDiskRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long DeleteDiskRequest::getResourceOwnerId()const
|
||||
void DeleteDiskRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteDiskRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string DeleteDiskRequest::getResourceOwnerAccount()const
|
||||
void DeleteDiskRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteDiskRequest::getOwnerAccount()const
|
||||
@@ -66,7 +66,7 @@ std::string DeleteDiskRequest::getOwnerAccount()const
|
||||
void DeleteDiskRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteDiskRequest::getDiskId()const
|
||||
@@ -77,7 +77,7 @@ std::string DeleteDiskRequest::getDiskId()const
|
||||
void DeleteDiskRequest::setDiskId(const std::string& diskId)
|
||||
{
|
||||
diskId_ = diskId;
|
||||
setParameter("DiskId", diskId);
|
||||
setCoreParameter("DiskId", diskId);
|
||||
}
|
||||
|
||||
long DeleteDiskRequest::getOwnerId()const
|
||||
@@ -88,6 +88,6 @@ long DeleteDiskRequest::getOwnerId()const
|
||||
void DeleteDiskRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long DeleteForwardEntryRequest::getResourceOwnerId()const
|
||||
void DeleteForwardEntryRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteForwardEntryRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +44,7 @@ std::string DeleteForwardEntryRequest::getResourceOwnerAccount()const
|
||||
void DeleteForwardEntryRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteForwardEntryRequest::getRegionId()const
|
||||
@@ -55,7 +55,7 @@ std::string DeleteForwardEntryRequest::getRegionId()const
|
||||
void DeleteForwardEntryRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string DeleteForwardEntryRequest::getForwardEntryId()const
|
||||
@@ -66,7 +66,7 @@ std::string DeleteForwardEntryRequest::getForwardEntryId()const
|
||||
void DeleteForwardEntryRequest::setForwardEntryId(const std::string& forwardEntryId)
|
||||
{
|
||||
forwardEntryId_ = forwardEntryId;
|
||||
setParameter("ForwardEntryId", forwardEntryId);
|
||||
setCoreParameter("ForwardEntryId", forwardEntryId);
|
||||
}
|
||||
|
||||
std::string DeleteForwardEntryRequest::getOwnerAccount()const
|
||||
@@ -77,7 +77,7 @@ std::string DeleteForwardEntryRequest::getOwnerAccount()const
|
||||
void DeleteForwardEntryRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteForwardEntryRequest::getForwardTableId()const
|
||||
@@ -88,7 +88,7 @@ std::string DeleteForwardEntryRequest::getForwardTableId()const
|
||||
void DeleteForwardEntryRequest::setForwardTableId(const std::string& forwardTableId)
|
||||
{
|
||||
forwardTableId_ = forwardTableId;
|
||||
setParameter("ForwardTableId", forwardTableId);
|
||||
setCoreParameter("ForwardTableId", forwardTableId);
|
||||
}
|
||||
|
||||
long DeleteForwardEntryRequest::getOwnerId()const
|
||||
@@ -99,6 +99,6 @@ long DeleteForwardEntryRequest::getOwnerId()const
|
||||
void DeleteForwardEntryRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string DeleteHaVipRequest::getHaVipId()const
|
||||
void DeleteHaVipRequest::setHaVipId(const std::string& haVipId)
|
||||
{
|
||||
haVipId_ = haVipId;
|
||||
setParameter("HaVipId", haVipId);
|
||||
setCoreParameter("HaVipId", haVipId);
|
||||
}
|
||||
|
||||
long DeleteHaVipRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long DeleteHaVipRequest::getResourceOwnerId()const
|
||||
void DeleteHaVipRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteHaVipRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string DeleteHaVipRequest::getResourceOwnerAccount()const
|
||||
void DeleteHaVipRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteHaVipRequest::getClientToken()const
|
||||
@@ -66,7 +66,7 @@ std::string DeleteHaVipRequest::getClientToken()const
|
||||
void DeleteHaVipRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string DeleteHaVipRequest::getRegionId()const
|
||||
@@ -77,7 +77,7 @@ std::string DeleteHaVipRequest::getRegionId()const
|
||||
void DeleteHaVipRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string DeleteHaVipRequest::getOwnerAccount()const
|
||||
@@ -88,7 +88,7 @@ std::string DeleteHaVipRequest::getOwnerAccount()const
|
||||
void DeleteHaVipRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
long DeleteHaVipRequest::getOwnerId()const
|
||||
@@ -99,6 +99,6 @@ long DeleteHaVipRequest::getOwnerId()const
|
||||
void DeleteHaVipRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long DeleteHpcClusterRequest::getResourceOwnerId()const
|
||||
void DeleteHpcClusterRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteHpcClusterRequest::getHpcClusterId()const
|
||||
@@ -44,7 +44,7 @@ std::string DeleteHpcClusterRequest::getHpcClusterId()const
|
||||
void DeleteHpcClusterRequest::setHpcClusterId(const std::string& hpcClusterId)
|
||||
{
|
||||
hpcClusterId_ = hpcClusterId;
|
||||
setParameter("HpcClusterId", hpcClusterId);
|
||||
setCoreParameter("HpcClusterId", hpcClusterId);
|
||||
}
|
||||
|
||||
std::string DeleteHpcClusterRequest::getClientToken()const
|
||||
@@ -55,7 +55,7 @@ std::string DeleteHpcClusterRequest::getClientToken()const
|
||||
void DeleteHpcClusterRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
long DeleteHpcClusterRequest::getCallerParentId()const
|
||||
@@ -66,7 +66,7 @@ long DeleteHpcClusterRequest::getCallerParentId()const
|
||||
void DeleteHpcClusterRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
bool DeleteHpcClusterRequest::getProxy_original_security_transport()const
|
||||
@@ -77,7 +77,7 @@ bool DeleteHpcClusterRequest::getProxy_original_security_transport()const
|
||||
void DeleteHpcClusterRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DeleteHpcClusterRequest::getProxy_original_source_ip()const
|
||||
@@ -88,7 +88,7 @@ std::string DeleteHpcClusterRequest::getProxy_original_source_ip()const
|
||||
void DeleteHpcClusterRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string DeleteHpcClusterRequest::getOwnerIdLoginEmail()const
|
||||
@@ -99,7 +99,7 @@ std::string DeleteHpcClusterRequest::getOwnerIdLoginEmail()const
|
||||
void DeleteHpcClusterRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string DeleteHpcClusterRequest::getCallerType()const
|
||||
@@ -110,7 +110,7 @@ std::string DeleteHpcClusterRequest::getCallerType()const
|
||||
void DeleteHpcClusterRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string DeleteHpcClusterRequest::getAccessKeyId()const
|
||||
@@ -121,7 +121,7 @@ std::string DeleteHpcClusterRequest::getAccessKeyId()const
|
||||
void DeleteHpcClusterRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string DeleteHpcClusterRequest::getSourceRegionId()const
|
||||
@@ -132,7 +132,7 @@ std::string DeleteHpcClusterRequest::getSourceRegionId()const
|
||||
void DeleteHpcClusterRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string DeleteHpcClusterRequest::getRegionId()const
|
||||
@@ -143,7 +143,7 @@ std::string DeleteHpcClusterRequest::getRegionId()const
|
||||
void DeleteHpcClusterRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string DeleteHpcClusterRequest::getSecurityToken()const
|
||||
@@ -154,7 +154,7 @@ std::string DeleteHpcClusterRequest::getSecurityToken()const
|
||||
void DeleteHpcClusterRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
bool DeleteHpcClusterRequest::getEnable()const
|
||||
@@ -165,7 +165,7 @@ bool DeleteHpcClusterRequest::getEnable()const
|
||||
void DeleteHpcClusterRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DeleteHpcClusterRequest::getRequestContent()const
|
||||
@@ -176,7 +176,7 @@ std::string DeleteHpcClusterRequest::getRequestContent()const
|
||||
void DeleteHpcClusterRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string DeleteHpcClusterRequest::getCallerBidEmail()const
|
||||
@@ -187,7 +187,7 @@ std::string DeleteHpcClusterRequest::getCallerBidEmail()const
|
||||
void DeleteHpcClusterRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string DeleteHpcClusterRequest::getCallerUidEmail()const
|
||||
@@ -198,7 +198,7 @@ std::string DeleteHpcClusterRequest::getCallerUidEmail()const
|
||||
void DeleteHpcClusterRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long DeleteHpcClusterRequest::getCallerUid()const
|
||||
@@ -209,7 +209,7 @@ long DeleteHpcClusterRequest::getCallerUid()const
|
||||
void DeleteHpcClusterRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string DeleteHpcClusterRequest::getApp_ip()const
|
||||
@@ -220,7 +220,7 @@ std::string DeleteHpcClusterRequest::getApp_ip()const
|
||||
void DeleteHpcClusterRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string DeleteHpcClusterRequest::getResourceOwnerAccount()const
|
||||
@@ -231,7 +231,7 @@ std::string DeleteHpcClusterRequest::getResourceOwnerAccount()const
|
||||
void DeleteHpcClusterRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteHpcClusterRequest::getOwnerAccount()const
|
||||
@@ -242,7 +242,7 @@ std::string DeleteHpcClusterRequest::getOwnerAccount()const
|
||||
void DeleteHpcClusterRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteHpcClusterRequest::getCallerBid()const
|
||||
@@ -253,7 +253,7 @@ std::string DeleteHpcClusterRequest::getCallerBid()const
|
||||
void DeleteHpcClusterRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long DeleteHpcClusterRequest::getOwnerId()const
|
||||
@@ -264,7 +264,7 @@ long DeleteHpcClusterRequest::getOwnerId()const
|
||||
void DeleteHpcClusterRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool DeleteHpcClusterRequest::getProxy_trust_transport_info()const
|
||||
@@ -275,7 +275,7 @@ bool DeleteHpcClusterRequest::getProxy_trust_transport_info()const
|
||||
void DeleteHpcClusterRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DeleteHpcClusterRequest::getAk_mfa_present()const
|
||||
@@ -286,7 +286,7 @@ bool DeleteHpcClusterRequest::getAk_mfa_present()const
|
||||
void DeleteHpcClusterRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DeleteHpcClusterRequest::getSecurity_transport()const
|
||||
@@ -297,7 +297,7 @@ bool DeleteHpcClusterRequest::getSecurity_transport()const
|
||||
void DeleteHpcClusterRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DeleteHpcClusterRequest::getRequestId()const
|
||||
@@ -308,6 +308,6 @@ std::string DeleteHpcClusterRequest::getRequestId()const
|
||||
void DeleteHpcClusterRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long DeleteImageRequest::getResourceOwnerId()const
|
||||
void DeleteImageRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteImageRequest::getImageId()const
|
||||
@@ -44,7 +44,7 @@ std::string DeleteImageRequest::getImageId()const
|
||||
void DeleteImageRequest::setImageId(const std::string& imageId)
|
||||
{
|
||||
imageId_ = imageId;
|
||||
setParameter("ImageId", imageId);
|
||||
setCoreParameter("ImageId", imageId);
|
||||
}
|
||||
|
||||
std::string DeleteImageRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string DeleteImageRequest::getResourceOwnerAccount()const
|
||||
void DeleteImageRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteImageRequest::getRegionId()const
|
||||
@@ -66,7 +66,7 @@ std::string DeleteImageRequest::getRegionId()const
|
||||
void DeleteImageRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string DeleteImageRequest::getOwnerAccount()const
|
||||
@@ -77,7 +77,7 @@ std::string DeleteImageRequest::getOwnerAccount()const
|
||||
void DeleteImageRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
bool DeleteImageRequest::getForce()const
|
||||
@@ -88,7 +88,7 @@ bool DeleteImageRequest::getForce()const
|
||||
void DeleteImageRequest::setForce(bool force)
|
||||
{
|
||||
force_ = force;
|
||||
setParameter("Force", force ? "true" : "false");
|
||||
setCoreParameter("Force", force ? "true" : "false");
|
||||
}
|
||||
|
||||
long DeleteImageRequest::getOwnerId()const
|
||||
@@ -99,6 +99,6 @@ long DeleteImageRequest::getOwnerId()const
|
||||
void DeleteImageRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string DeleteInstanceRequest::getSourceRegionId()const
|
||||
void DeleteInstanceRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
long DeleteInstanceRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long DeleteInstanceRequest::getResourceOwnerId()const
|
||||
void DeleteInstanceRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteInstanceRequest::getInstanceId()const
|
||||
@@ -55,7 +55,7 @@ std::string DeleteInstanceRequest::getInstanceId()const
|
||||
void DeleteInstanceRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string DeleteInstanceRequest::getResourceOwnerAccount()const
|
||||
@@ -66,7 +66,7 @@ std::string DeleteInstanceRequest::getResourceOwnerAccount()const
|
||||
void DeleteInstanceRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteInstanceRequest::getOwnerAccount()const
|
||||
@@ -77,7 +77,7 @@ std::string DeleteInstanceRequest::getOwnerAccount()const
|
||||
void DeleteInstanceRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
bool DeleteInstanceRequest::getTerminateSubscription()const
|
||||
@@ -88,7 +88,7 @@ bool DeleteInstanceRequest::getTerminateSubscription()const
|
||||
void DeleteInstanceRequest::setTerminateSubscription(bool terminateSubscription)
|
||||
{
|
||||
terminateSubscription_ = terminateSubscription;
|
||||
setParameter("TerminateSubscription", terminateSubscription ? "true" : "false");
|
||||
setCoreParameter("TerminateSubscription", terminateSubscription ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DeleteInstanceRequest::getForce()const
|
||||
@@ -99,7 +99,7 @@ bool DeleteInstanceRequest::getForce()const
|
||||
void DeleteInstanceRequest::setForce(bool force)
|
||||
{
|
||||
force_ = force;
|
||||
setParameter("Force", force ? "true" : "false");
|
||||
setCoreParameter("Force", force ? "true" : "false");
|
||||
}
|
||||
|
||||
long DeleteInstanceRequest::getOwnerId()const
|
||||
@@ -110,6 +110,6 @@ long DeleteInstanceRequest::getOwnerId()const
|
||||
void DeleteInstanceRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string DeleteKeyPairsRequest::getSourceRegionId()const
|
||||
void DeleteKeyPairsRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
long DeleteKeyPairsRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long DeleteKeyPairsRequest::getResourceOwnerId()const
|
||||
void DeleteKeyPairsRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteKeyPairsRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string DeleteKeyPairsRequest::getResourceOwnerAccount()const
|
||||
void DeleteKeyPairsRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteKeyPairsRequest::getRegionId()const
|
||||
@@ -66,7 +66,7 @@ std::string DeleteKeyPairsRequest::getRegionId()const
|
||||
void DeleteKeyPairsRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string DeleteKeyPairsRequest::getKeyPairNames()const
|
||||
@@ -77,7 +77,7 @@ std::string DeleteKeyPairsRequest::getKeyPairNames()const
|
||||
void DeleteKeyPairsRequest::setKeyPairNames(const std::string& keyPairNames)
|
||||
{
|
||||
keyPairNames_ = keyPairNames;
|
||||
setParameter("KeyPairNames", keyPairNames);
|
||||
setCoreParameter("KeyPairNames", keyPairNames);
|
||||
}
|
||||
|
||||
long DeleteKeyPairsRequest::getOwnerId()const
|
||||
@@ -88,6 +88,6 @@ long DeleteKeyPairsRequest::getOwnerId()const
|
||||
void DeleteKeyPairsRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string DeleteLaunchTemplateRequest::getLaunchTemplateName()const
|
||||
void DeleteLaunchTemplateRequest::setLaunchTemplateName(const std::string& launchTemplateName)
|
||||
{
|
||||
launchTemplateName_ = launchTemplateName;
|
||||
setParameter("LaunchTemplateName", launchTemplateName);
|
||||
setCoreParameter("LaunchTemplateName", launchTemplateName);
|
||||
}
|
||||
|
||||
long DeleteLaunchTemplateRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long DeleteLaunchTemplateRequest::getResourceOwnerId()const
|
||||
void DeleteLaunchTemplateRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long DeleteLaunchTemplateRequest::getCallerParentId()const
|
||||
@@ -55,7 +55,7 @@ long DeleteLaunchTemplateRequest::getCallerParentId()const
|
||||
void DeleteLaunchTemplateRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
bool DeleteLaunchTemplateRequest::getProxy_original_security_transport()const
|
||||
@@ -66,7 +66,7 @@ bool DeleteLaunchTemplateRequest::getProxy_original_security_transport()const
|
||||
void DeleteLaunchTemplateRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateRequest::getProxy_original_source_ip()const
|
||||
@@ -77,7 +77,7 @@ std::string DeleteLaunchTemplateRequest::getProxy_original_source_ip()const
|
||||
void DeleteLaunchTemplateRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateRequest::getOwnerIdLoginEmail()const
|
||||
@@ -88,7 +88,7 @@ std::string DeleteLaunchTemplateRequest::getOwnerIdLoginEmail()const
|
||||
void DeleteLaunchTemplateRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateRequest::getCallerType()const
|
||||
@@ -99,7 +99,7 @@ std::string DeleteLaunchTemplateRequest::getCallerType()const
|
||||
void DeleteLaunchTemplateRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateRequest::getAccessKeyId()const
|
||||
@@ -110,7 +110,7 @@ std::string DeleteLaunchTemplateRequest::getAccessKeyId()const
|
||||
void DeleteLaunchTemplateRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateRequest::getSourceRegionId()const
|
||||
@@ -121,7 +121,7 @@ std::string DeleteLaunchTemplateRequest::getSourceRegionId()const
|
||||
void DeleteLaunchTemplateRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateRequest::getSecurityToken()const
|
||||
@@ -132,7 +132,7 @@ std::string DeleteLaunchTemplateRequest::getSecurityToken()const
|
||||
void DeleteLaunchTemplateRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateRequest::getRegionId()const
|
||||
@@ -143,7 +143,7 @@ std::string DeleteLaunchTemplateRequest::getRegionId()const
|
||||
void DeleteLaunchTemplateRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool DeleteLaunchTemplateRequest::getEnable()const
|
||||
@@ -154,7 +154,7 @@ bool DeleteLaunchTemplateRequest::getEnable()const
|
||||
void DeleteLaunchTemplateRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateRequest::getRequestContent()const
|
||||
@@ -165,7 +165,7 @@ std::string DeleteLaunchTemplateRequest::getRequestContent()const
|
||||
void DeleteLaunchTemplateRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateRequest::getCallerBidEmail()const
|
||||
@@ -176,7 +176,7 @@ std::string DeleteLaunchTemplateRequest::getCallerBidEmail()const
|
||||
void DeleteLaunchTemplateRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateRequest::getCallerUidEmail()const
|
||||
@@ -187,7 +187,7 @@ std::string DeleteLaunchTemplateRequest::getCallerUidEmail()const
|
||||
void DeleteLaunchTemplateRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long DeleteLaunchTemplateRequest::getCallerUid()const
|
||||
@@ -198,7 +198,7 @@ long DeleteLaunchTemplateRequest::getCallerUid()const
|
||||
void DeleteLaunchTemplateRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateRequest::getApp_ip()const
|
||||
@@ -209,7 +209,7 @@ std::string DeleteLaunchTemplateRequest::getApp_ip()const
|
||||
void DeleteLaunchTemplateRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateRequest::getLaunchTemplateId()const
|
||||
@@ -220,7 +220,7 @@ std::string DeleteLaunchTemplateRequest::getLaunchTemplateId()const
|
||||
void DeleteLaunchTemplateRequest::setLaunchTemplateId(const std::string& launchTemplateId)
|
||||
{
|
||||
launchTemplateId_ = launchTemplateId;
|
||||
setParameter("LaunchTemplateId", launchTemplateId);
|
||||
setCoreParameter("LaunchTemplateId", launchTemplateId);
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateRequest::getResourceOwnerAccount()const
|
||||
@@ -231,7 +231,7 @@ std::string DeleteLaunchTemplateRequest::getResourceOwnerAccount()const
|
||||
void DeleteLaunchTemplateRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateRequest::getOwnerAccount()const
|
||||
@@ -242,7 +242,7 @@ std::string DeleteLaunchTemplateRequest::getOwnerAccount()const
|
||||
void DeleteLaunchTemplateRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateRequest::getCallerBid()const
|
||||
@@ -253,7 +253,7 @@ std::string DeleteLaunchTemplateRequest::getCallerBid()const
|
||||
void DeleteLaunchTemplateRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long DeleteLaunchTemplateRequest::getOwnerId()const
|
||||
@@ -264,7 +264,7 @@ long DeleteLaunchTemplateRequest::getOwnerId()const
|
||||
void DeleteLaunchTemplateRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool DeleteLaunchTemplateRequest::getProxy_trust_transport_info()const
|
||||
@@ -275,7 +275,7 @@ bool DeleteLaunchTemplateRequest::getProxy_trust_transport_info()const
|
||||
void DeleteLaunchTemplateRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DeleteLaunchTemplateRequest::getAk_mfa_present()const
|
||||
@@ -286,7 +286,7 @@ bool DeleteLaunchTemplateRequest::getAk_mfa_present()const
|
||||
void DeleteLaunchTemplateRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DeleteLaunchTemplateRequest::getSecurity_transport()const
|
||||
@@ -297,7 +297,7 @@ bool DeleteLaunchTemplateRequest::getSecurity_transport()const
|
||||
void DeleteLaunchTemplateRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateRequest::getRequestId()const
|
||||
@@ -308,6 +308,6 @@ std::string DeleteLaunchTemplateRequest::getRequestId()const
|
||||
void DeleteLaunchTemplateRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string DeleteLaunchTemplateVersionRequest::getLaunchTemplateName()const
|
||||
void DeleteLaunchTemplateVersionRequest::setLaunchTemplateName(const std::string& launchTemplateName)
|
||||
{
|
||||
launchTemplateName_ = launchTemplateName;
|
||||
setParameter("LaunchTemplateName", launchTemplateName);
|
||||
setCoreParameter("LaunchTemplateName", launchTemplateName);
|
||||
}
|
||||
|
||||
long DeleteLaunchTemplateVersionRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long DeleteLaunchTemplateVersionRequest::getResourceOwnerId()const
|
||||
void DeleteLaunchTemplateVersionRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long DeleteLaunchTemplateVersionRequest::getCallerParentId()const
|
||||
@@ -55,7 +55,7 @@ long DeleteLaunchTemplateVersionRequest::getCallerParentId()const
|
||||
void DeleteLaunchTemplateVersionRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
bool DeleteLaunchTemplateVersionRequest::getProxy_original_security_transport()const
|
||||
@@ -66,7 +66,7 @@ bool DeleteLaunchTemplateVersionRequest::getProxy_original_security_transport()c
|
||||
void DeleteLaunchTemplateVersionRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::vector<long> DeleteLaunchTemplateVersionRequest::getDeleteVersion()const
|
||||
@@ -78,7 +78,7 @@ void DeleteLaunchTemplateVersionRequest::setDeleteVersion(const std::vector<long
|
||||
{
|
||||
deleteVersion_ = deleteVersion;
|
||||
for(int i = 0; i!= deleteVersion.size(); i++)
|
||||
setParameter("DeleteVersion."+ std::to_string(i), std::to_string(deleteVersion.at(i)));
|
||||
setCoreParameter("DeleteVersion."+ std::to_string(i), std::to_string(deleteVersion.at(i)));
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateVersionRequest::getProxy_original_source_ip()const
|
||||
@@ -89,7 +89,7 @@ std::string DeleteLaunchTemplateVersionRequest::getProxy_original_source_ip()con
|
||||
void DeleteLaunchTemplateVersionRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateVersionRequest::getOwnerIdLoginEmail()const
|
||||
@@ -100,7 +100,7 @@ std::string DeleteLaunchTemplateVersionRequest::getOwnerIdLoginEmail()const
|
||||
void DeleteLaunchTemplateVersionRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateVersionRequest::getCallerType()const
|
||||
@@ -111,7 +111,7 @@ std::string DeleteLaunchTemplateVersionRequest::getCallerType()const
|
||||
void DeleteLaunchTemplateVersionRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateVersionRequest::getAccessKeyId()const
|
||||
@@ -122,7 +122,7 @@ std::string DeleteLaunchTemplateVersionRequest::getAccessKeyId()const
|
||||
void DeleteLaunchTemplateVersionRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateVersionRequest::getSourceRegionId()const
|
||||
@@ -133,7 +133,7 @@ std::string DeleteLaunchTemplateVersionRequest::getSourceRegionId()const
|
||||
void DeleteLaunchTemplateVersionRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateVersionRequest::getSecurityToken()const
|
||||
@@ -144,7 +144,7 @@ std::string DeleteLaunchTemplateVersionRequest::getSecurityToken()const
|
||||
void DeleteLaunchTemplateVersionRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateVersionRequest::getRegionId()const
|
||||
@@ -155,7 +155,7 @@ std::string DeleteLaunchTemplateVersionRequest::getRegionId()const
|
||||
void DeleteLaunchTemplateVersionRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool DeleteLaunchTemplateVersionRequest::getEnable()const
|
||||
@@ -166,7 +166,7 @@ bool DeleteLaunchTemplateVersionRequest::getEnable()const
|
||||
void DeleteLaunchTemplateVersionRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateVersionRequest::getRequestContent()const
|
||||
@@ -177,7 +177,7 @@ std::string DeleteLaunchTemplateVersionRequest::getRequestContent()const
|
||||
void DeleteLaunchTemplateVersionRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateVersionRequest::getCallerBidEmail()const
|
||||
@@ -188,7 +188,7 @@ std::string DeleteLaunchTemplateVersionRequest::getCallerBidEmail()const
|
||||
void DeleteLaunchTemplateVersionRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateVersionRequest::getCallerUidEmail()const
|
||||
@@ -199,7 +199,7 @@ std::string DeleteLaunchTemplateVersionRequest::getCallerUidEmail()const
|
||||
void DeleteLaunchTemplateVersionRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long DeleteLaunchTemplateVersionRequest::getCallerUid()const
|
||||
@@ -210,7 +210,7 @@ long DeleteLaunchTemplateVersionRequest::getCallerUid()const
|
||||
void DeleteLaunchTemplateVersionRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateVersionRequest::getApp_ip()const
|
||||
@@ -221,7 +221,7 @@ std::string DeleteLaunchTemplateVersionRequest::getApp_ip()const
|
||||
void DeleteLaunchTemplateVersionRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateVersionRequest::getLaunchTemplateId()const
|
||||
@@ -232,7 +232,7 @@ std::string DeleteLaunchTemplateVersionRequest::getLaunchTemplateId()const
|
||||
void DeleteLaunchTemplateVersionRequest::setLaunchTemplateId(const std::string& launchTemplateId)
|
||||
{
|
||||
launchTemplateId_ = launchTemplateId;
|
||||
setParameter("LaunchTemplateId", launchTemplateId);
|
||||
setCoreParameter("LaunchTemplateId", launchTemplateId);
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateVersionRequest::getResourceOwnerAccount()const
|
||||
@@ -243,7 +243,7 @@ std::string DeleteLaunchTemplateVersionRequest::getResourceOwnerAccount()const
|
||||
void DeleteLaunchTemplateVersionRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateVersionRequest::getOwnerAccount()const
|
||||
@@ -254,7 +254,7 @@ std::string DeleteLaunchTemplateVersionRequest::getOwnerAccount()const
|
||||
void DeleteLaunchTemplateVersionRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateVersionRequest::getCallerBid()const
|
||||
@@ -265,7 +265,7 @@ std::string DeleteLaunchTemplateVersionRequest::getCallerBid()const
|
||||
void DeleteLaunchTemplateVersionRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long DeleteLaunchTemplateVersionRequest::getOwnerId()const
|
||||
@@ -276,7 +276,7 @@ long DeleteLaunchTemplateVersionRequest::getOwnerId()const
|
||||
void DeleteLaunchTemplateVersionRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool DeleteLaunchTemplateVersionRequest::getProxy_trust_transport_info()const
|
||||
@@ -287,7 +287,7 @@ bool DeleteLaunchTemplateVersionRequest::getProxy_trust_transport_info()const
|
||||
void DeleteLaunchTemplateVersionRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DeleteLaunchTemplateVersionRequest::getAk_mfa_present()const
|
||||
@@ -298,7 +298,7 @@ bool DeleteLaunchTemplateVersionRequest::getAk_mfa_present()const
|
||||
void DeleteLaunchTemplateVersionRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DeleteLaunchTemplateVersionRequest::getSecurity_transport()const
|
||||
@@ -309,7 +309,7 @@ bool DeleteLaunchTemplateVersionRequest::getSecurity_transport()const
|
||||
void DeleteLaunchTemplateVersionRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DeleteLaunchTemplateVersionRequest::getRequestId()const
|
||||
@@ -320,6 +320,6 @@ std::string DeleteLaunchTemplateVersionRequest::getRequestId()const
|
||||
void DeleteLaunchTemplateVersionRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long DeleteNatGatewayRequest::getResourceOwnerId()const
|
||||
void DeleteNatGatewayRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteNatGatewayRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +44,7 @@ std::string DeleteNatGatewayRequest::getResourceOwnerAccount()const
|
||||
void DeleteNatGatewayRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteNatGatewayRequest::getRegionId()const
|
||||
@@ -55,7 +55,7 @@ std::string DeleteNatGatewayRequest::getRegionId()const
|
||||
void DeleteNatGatewayRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string DeleteNatGatewayRequest::getOwnerAccount()const
|
||||
@@ -66,7 +66,7 @@ std::string DeleteNatGatewayRequest::getOwnerAccount()const
|
||||
void DeleteNatGatewayRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteNatGatewayRequest::getNatGatewayId()const
|
||||
@@ -77,7 +77,7 @@ std::string DeleteNatGatewayRequest::getNatGatewayId()const
|
||||
void DeleteNatGatewayRequest::setNatGatewayId(const std::string& natGatewayId)
|
||||
{
|
||||
natGatewayId_ = natGatewayId;
|
||||
setParameter("NatGatewayId", natGatewayId);
|
||||
setCoreParameter("NatGatewayId", natGatewayId);
|
||||
}
|
||||
|
||||
long DeleteNatGatewayRequest::getOwnerId()const
|
||||
@@ -88,6 +88,6 @@ long DeleteNatGatewayRequest::getOwnerId()const
|
||||
void DeleteNatGatewayRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long DeleteNetworkInterfacePermissionRequest::getResourceOwnerId()const
|
||||
void DeleteNetworkInterfacePermissionRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long DeleteNetworkInterfacePermissionRequest::getCallerParentId()const
|
||||
@@ -44,7 +44,7 @@ long DeleteNetworkInterfacePermissionRequest::getCallerParentId()const
|
||||
void DeleteNetworkInterfacePermissionRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
bool DeleteNetworkInterfacePermissionRequest::getProxy_original_security_transport()const
|
||||
@@ -55,7 +55,7 @@ bool DeleteNetworkInterfacePermissionRequest::getProxy_original_security_transpo
|
||||
void DeleteNetworkInterfacePermissionRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfacePermissionRequest::getProxy_original_source_ip()const
|
||||
@@ -66,7 +66,7 @@ std::string DeleteNetworkInterfacePermissionRequest::getProxy_original_source_ip
|
||||
void DeleteNetworkInterfacePermissionRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfacePermissionRequest::getOwnerIdLoginEmail()const
|
||||
@@ -77,7 +77,7 @@ std::string DeleteNetworkInterfacePermissionRequest::getOwnerIdLoginEmail()const
|
||||
void DeleteNetworkInterfacePermissionRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfacePermissionRequest::getCallerType()const
|
||||
@@ -88,7 +88,7 @@ std::string DeleteNetworkInterfacePermissionRequest::getCallerType()const
|
||||
void DeleteNetworkInterfacePermissionRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfacePermissionRequest::getAccessKeyId()const
|
||||
@@ -99,7 +99,7 @@ std::string DeleteNetworkInterfacePermissionRequest::getAccessKeyId()const
|
||||
void DeleteNetworkInterfacePermissionRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfacePermissionRequest::getSourceRegionId()const
|
||||
@@ -110,7 +110,7 @@ std::string DeleteNetworkInterfacePermissionRequest::getSourceRegionId()const
|
||||
void DeleteNetworkInterfacePermissionRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfacePermissionRequest::getSecurityToken()const
|
||||
@@ -121,7 +121,7 @@ std::string DeleteNetworkInterfacePermissionRequest::getSecurityToken()const
|
||||
void DeleteNetworkInterfacePermissionRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfacePermissionRequest::getRegionId()const
|
||||
@@ -132,7 +132,7 @@ std::string DeleteNetworkInterfacePermissionRequest::getRegionId()const
|
||||
void DeleteNetworkInterfacePermissionRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool DeleteNetworkInterfacePermissionRequest::getEnable()const
|
||||
@@ -143,7 +143,7 @@ bool DeleteNetworkInterfacePermissionRequest::getEnable()const
|
||||
void DeleteNetworkInterfacePermissionRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfacePermissionRequest::getRequestContent()const
|
||||
@@ -154,7 +154,7 @@ std::string DeleteNetworkInterfacePermissionRequest::getRequestContent()const
|
||||
void DeleteNetworkInterfacePermissionRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfacePermissionRequest::getCallerBidEmail()const
|
||||
@@ -165,7 +165,7 @@ std::string DeleteNetworkInterfacePermissionRequest::getCallerBidEmail()const
|
||||
void DeleteNetworkInterfacePermissionRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfacePermissionRequest::getCallerUidEmail()const
|
||||
@@ -176,7 +176,7 @@ std::string DeleteNetworkInterfacePermissionRequest::getCallerUidEmail()const
|
||||
void DeleteNetworkInterfacePermissionRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long DeleteNetworkInterfacePermissionRequest::getCallerUid()const
|
||||
@@ -187,7 +187,7 @@ long DeleteNetworkInterfacePermissionRequest::getCallerUid()const
|
||||
void DeleteNetworkInterfacePermissionRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfacePermissionRequest::getApp_ip()const
|
||||
@@ -198,7 +198,7 @@ std::string DeleteNetworkInterfacePermissionRequest::getApp_ip()const
|
||||
void DeleteNetworkInterfacePermissionRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfacePermissionRequest::getNetworkInterfacePermissionId()const
|
||||
@@ -209,7 +209,7 @@ std::string DeleteNetworkInterfacePermissionRequest::getNetworkInterfacePermissi
|
||||
void DeleteNetworkInterfacePermissionRequest::setNetworkInterfacePermissionId(const std::string& networkInterfacePermissionId)
|
||||
{
|
||||
networkInterfacePermissionId_ = networkInterfacePermissionId;
|
||||
setParameter("NetworkInterfacePermissionId", networkInterfacePermissionId);
|
||||
setCoreParameter("NetworkInterfacePermissionId", networkInterfacePermissionId);
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfacePermissionRequest::getResourceOwnerAccount()const
|
||||
@@ -220,7 +220,7 @@ std::string DeleteNetworkInterfacePermissionRequest::getResourceOwnerAccount()co
|
||||
void DeleteNetworkInterfacePermissionRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfacePermissionRequest::getOwnerAccount()const
|
||||
@@ -231,7 +231,7 @@ std::string DeleteNetworkInterfacePermissionRequest::getOwnerAccount()const
|
||||
void DeleteNetworkInterfacePermissionRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfacePermissionRequest::getCallerBid()const
|
||||
@@ -242,7 +242,7 @@ std::string DeleteNetworkInterfacePermissionRequest::getCallerBid()const
|
||||
void DeleteNetworkInterfacePermissionRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long DeleteNetworkInterfacePermissionRequest::getOwnerId()const
|
||||
@@ -253,7 +253,7 @@ long DeleteNetworkInterfacePermissionRequest::getOwnerId()const
|
||||
void DeleteNetworkInterfacePermissionRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool DeleteNetworkInterfacePermissionRequest::getProxy_trust_transport_info()const
|
||||
@@ -264,7 +264,7 @@ bool DeleteNetworkInterfacePermissionRequest::getProxy_trust_transport_info()con
|
||||
void DeleteNetworkInterfacePermissionRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DeleteNetworkInterfacePermissionRequest::getAk_mfa_present()const
|
||||
@@ -275,7 +275,7 @@ bool DeleteNetworkInterfacePermissionRequest::getAk_mfa_present()const
|
||||
void DeleteNetworkInterfacePermissionRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DeleteNetworkInterfacePermissionRequest::getSecurity_transport()const
|
||||
@@ -286,7 +286,7 @@ bool DeleteNetworkInterfacePermissionRequest::getSecurity_transport()const
|
||||
void DeleteNetworkInterfacePermissionRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfacePermissionRequest::getRequestId()const
|
||||
@@ -297,7 +297,7 @@ std::string DeleteNetworkInterfacePermissionRequest::getRequestId()const
|
||||
void DeleteNetworkInterfacePermissionRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
bool DeleteNetworkInterfacePermissionRequest::getForce()const
|
||||
@@ -308,6 +308,6 @@ bool DeleteNetworkInterfacePermissionRequest::getForce()const
|
||||
void DeleteNetworkInterfacePermissionRequest::setForce(bool force)
|
||||
{
|
||||
force_ = force;
|
||||
setParameter("Force", force ? "true" : "false");
|
||||
setCoreParameter("Force", force ? "true" : "false");
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long DeleteNetworkInterfaceRequest::getResourceOwnerId()const
|
||||
void DeleteNetworkInterfaceRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long DeleteNetworkInterfaceRequest::getCallerParentId()const
|
||||
@@ -44,7 +44,7 @@ long DeleteNetworkInterfaceRequest::getCallerParentId()const
|
||||
void DeleteNetworkInterfaceRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
bool DeleteNetworkInterfaceRequest::getProxy_original_security_transport()const
|
||||
@@ -55,7 +55,7 @@ bool DeleteNetworkInterfaceRequest::getProxy_original_security_transport()const
|
||||
void DeleteNetworkInterfaceRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfaceRequest::getProxy_original_source_ip()const
|
||||
@@ -66,7 +66,7 @@ std::string DeleteNetworkInterfaceRequest::getProxy_original_source_ip()const
|
||||
void DeleteNetworkInterfaceRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfaceRequest::getOwnerIdLoginEmail()const
|
||||
@@ -77,7 +77,7 @@ std::string DeleteNetworkInterfaceRequest::getOwnerIdLoginEmail()const
|
||||
void DeleteNetworkInterfaceRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfaceRequest::getCallerType()const
|
||||
@@ -88,7 +88,7 @@ std::string DeleteNetworkInterfaceRequest::getCallerType()const
|
||||
void DeleteNetworkInterfaceRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfaceRequest::getAccessKeyId()const
|
||||
@@ -99,7 +99,7 @@ std::string DeleteNetworkInterfaceRequest::getAccessKeyId()const
|
||||
void DeleteNetworkInterfaceRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfaceRequest::getSourceRegionId()const
|
||||
@@ -110,7 +110,7 @@ std::string DeleteNetworkInterfaceRequest::getSourceRegionId()const
|
||||
void DeleteNetworkInterfaceRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfaceRequest::getSecurityToken()const
|
||||
@@ -121,7 +121,7 @@ std::string DeleteNetworkInterfaceRequest::getSecurityToken()const
|
||||
void DeleteNetworkInterfaceRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfaceRequest::getRegionId()const
|
||||
@@ -132,7 +132,7 @@ std::string DeleteNetworkInterfaceRequest::getRegionId()const
|
||||
void DeleteNetworkInterfaceRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool DeleteNetworkInterfaceRequest::getEnable()const
|
||||
@@ -143,7 +143,7 @@ bool DeleteNetworkInterfaceRequest::getEnable()const
|
||||
void DeleteNetworkInterfaceRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfaceRequest::getRequestContent()const
|
||||
@@ -154,7 +154,7 @@ std::string DeleteNetworkInterfaceRequest::getRequestContent()const
|
||||
void DeleteNetworkInterfaceRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfaceRequest::getCallerBidEmail()const
|
||||
@@ -165,7 +165,7 @@ std::string DeleteNetworkInterfaceRequest::getCallerBidEmail()const
|
||||
void DeleteNetworkInterfaceRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfaceRequest::getCallerUidEmail()const
|
||||
@@ -176,7 +176,7 @@ std::string DeleteNetworkInterfaceRequest::getCallerUidEmail()const
|
||||
void DeleteNetworkInterfaceRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long DeleteNetworkInterfaceRequest::getCallerUid()const
|
||||
@@ -187,7 +187,7 @@ long DeleteNetworkInterfaceRequest::getCallerUid()const
|
||||
void DeleteNetworkInterfaceRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfaceRequest::getApp_ip()const
|
||||
@@ -198,7 +198,7 @@ std::string DeleteNetworkInterfaceRequest::getApp_ip()const
|
||||
void DeleteNetworkInterfaceRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfaceRequest::getResourceOwnerAccount()const
|
||||
@@ -209,7 +209,7 @@ std::string DeleteNetworkInterfaceRequest::getResourceOwnerAccount()const
|
||||
void DeleteNetworkInterfaceRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfaceRequest::getOwnerAccount()const
|
||||
@@ -220,7 +220,7 @@ std::string DeleteNetworkInterfaceRequest::getOwnerAccount()const
|
||||
void DeleteNetworkInterfaceRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfaceRequest::getCallerBid()const
|
||||
@@ -231,7 +231,7 @@ std::string DeleteNetworkInterfaceRequest::getCallerBid()const
|
||||
void DeleteNetworkInterfaceRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long DeleteNetworkInterfaceRequest::getOwnerId()const
|
||||
@@ -242,7 +242,7 @@ long DeleteNetworkInterfaceRequest::getOwnerId()const
|
||||
void DeleteNetworkInterfaceRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool DeleteNetworkInterfaceRequest::getProxy_trust_transport_info()const
|
||||
@@ -253,7 +253,7 @@ bool DeleteNetworkInterfaceRequest::getProxy_trust_transport_info()const
|
||||
void DeleteNetworkInterfaceRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DeleteNetworkInterfaceRequest::getAk_mfa_present()const
|
||||
@@ -264,7 +264,7 @@ bool DeleteNetworkInterfaceRequest::getAk_mfa_present()const
|
||||
void DeleteNetworkInterfaceRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DeleteNetworkInterfaceRequest::getSecurity_transport()const
|
||||
@@ -275,7 +275,7 @@ bool DeleteNetworkInterfaceRequest::getSecurity_transport()const
|
||||
void DeleteNetworkInterfaceRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfaceRequest::getRequestId()const
|
||||
@@ -286,7 +286,7 @@ std::string DeleteNetworkInterfaceRequest::getRequestId()const
|
||||
void DeleteNetworkInterfaceRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
std::string DeleteNetworkInterfaceRequest::getNetworkInterfaceId()const
|
||||
@@ -297,6 +297,6 @@ std::string DeleteNetworkInterfaceRequest::getNetworkInterfaceId()const
|
||||
void DeleteNetworkInterfaceRequest::setNetworkInterfaceId(const std::string& networkInterfaceId)
|
||||
{
|
||||
networkInterfaceId_ = networkInterfaceId;
|
||||
setParameter("NetworkInterfaceId", networkInterfaceId);
|
||||
setCoreParameter("NetworkInterfaceId", networkInterfaceId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long DeletePhysicalConnectionRequest::getResourceOwnerId()const
|
||||
void DeletePhysicalConnectionRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeletePhysicalConnectionRequest::getRegionId()const
|
||||
@@ -44,7 +44,7 @@ std::string DeletePhysicalConnectionRequest::getRegionId()const
|
||||
void DeletePhysicalConnectionRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string DeletePhysicalConnectionRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string DeletePhysicalConnectionRequest::getResourceOwnerAccount()const
|
||||
void DeletePhysicalConnectionRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeletePhysicalConnectionRequest::getClientToken()const
|
||||
@@ -66,7 +66,7 @@ std::string DeletePhysicalConnectionRequest::getClientToken()const
|
||||
void DeletePhysicalConnectionRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string DeletePhysicalConnectionRequest::getPhysicalConnectionId()const
|
||||
@@ -77,7 +77,7 @@ std::string DeletePhysicalConnectionRequest::getPhysicalConnectionId()const
|
||||
void DeletePhysicalConnectionRequest::setPhysicalConnectionId(const std::string& physicalConnectionId)
|
||||
{
|
||||
physicalConnectionId_ = physicalConnectionId;
|
||||
setParameter("PhysicalConnectionId", physicalConnectionId);
|
||||
setCoreParameter("PhysicalConnectionId", physicalConnectionId);
|
||||
}
|
||||
|
||||
std::string DeletePhysicalConnectionRequest::getOwnerAccount()const
|
||||
@@ -88,7 +88,7 @@ std::string DeletePhysicalConnectionRequest::getOwnerAccount()const
|
||||
void DeletePhysicalConnectionRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
long DeletePhysicalConnectionRequest::getOwnerId()const
|
||||
@@ -99,6 +99,6 @@ long DeletePhysicalConnectionRequest::getOwnerId()const
|
||||
void DeletePhysicalConnectionRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long DeleteRouteEntryRequest::getResourceOwnerId()const
|
||||
void DeleteRouteEntryRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteRouteEntryRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +44,7 @@ std::string DeleteRouteEntryRequest::getResourceOwnerAccount()const
|
||||
void DeleteRouteEntryRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteRouteEntryRequest::getRegionId()const
|
||||
@@ -55,7 +55,7 @@ std::string DeleteRouteEntryRequest::getRegionId()const
|
||||
void DeleteRouteEntryRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string DeleteRouteEntryRequest::getDestinationCidrBlock()const
|
||||
@@ -66,7 +66,7 @@ std::string DeleteRouteEntryRequest::getDestinationCidrBlock()const
|
||||
void DeleteRouteEntryRequest::setDestinationCidrBlock(const std::string& destinationCidrBlock)
|
||||
{
|
||||
destinationCidrBlock_ = destinationCidrBlock;
|
||||
setParameter("DestinationCidrBlock", destinationCidrBlock);
|
||||
setCoreParameter("DestinationCidrBlock", destinationCidrBlock);
|
||||
}
|
||||
|
||||
std::string DeleteRouteEntryRequest::getOwnerAccount()const
|
||||
@@ -77,7 +77,7 @@ std::string DeleteRouteEntryRequest::getOwnerAccount()const
|
||||
void DeleteRouteEntryRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteRouteEntryRequest::getNextHopId()const
|
||||
@@ -88,7 +88,7 @@ std::string DeleteRouteEntryRequest::getNextHopId()const
|
||||
void DeleteRouteEntryRequest::setNextHopId(const std::string& nextHopId)
|
||||
{
|
||||
nextHopId_ = nextHopId;
|
||||
setParameter("NextHopId", nextHopId);
|
||||
setCoreParameter("NextHopId", nextHopId);
|
||||
}
|
||||
|
||||
long DeleteRouteEntryRequest::getOwnerId()const
|
||||
@@ -99,7 +99,7 @@ long DeleteRouteEntryRequest::getOwnerId()const
|
||||
void DeleteRouteEntryRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::vector<DeleteRouteEntryRequest::NextHopList> DeleteRouteEntryRequest::getNextHopList()const
|
||||
@@ -114,8 +114,8 @@ void DeleteRouteEntryRequest::setNextHopList(const std::vector<NextHopList>& nex
|
||||
for(int i = 0; i!= nextHopList.size(); i++) {
|
||||
auto obj = nextHopList.at(i);
|
||||
std::string str ="NextHopList."+ std::to_string(i);
|
||||
setParameter(str + ".NextHopId", obj.nextHopId);
|
||||
setParameter(str + ".NextHopType", obj.nextHopType);
|
||||
setCoreParameter(str + ".NextHopId", obj.nextHopId);
|
||||
setCoreParameter(str + ".NextHopType", obj.nextHopType);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -127,6 +127,6 @@ std::string DeleteRouteEntryRequest::getRouteTableId()const
|
||||
void DeleteRouteEntryRequest::setRouteTableId(const std::string& routeTableId)
|
||||
{
|
||||
routeTableId_ = routeTableId;
|
||||
setParameter("RouteTableId", routeTableId);
|
||||
setCoreParameter("RouteTableId", routeTableId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long DeleteRouterInterfaceRequest::getResourceOwnerId()const
|
||||
void DeleteRouterInterfaceRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteRouterInterfaceRequest::getRegionId()const
|
||||
@@ -44,7 +44,7 @@ std::string DeleteRouterInterfaceRequest::getRegionId()const
|
||||
void DeleteRouterInterfaceRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string DeleteRouterInterfaceRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string DeleteRouterInterfaceRequest::getResourceOwnerAccount()const
|
||||
void DeleteRouterInterfaceRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteRouterInterfaceRequest::getClientToken()const
|
||||
@@ -66,7 +66,7 @@ std::string DeleteRouterInterfaceRequest::getClientToken()const
|
||||
void DeleteRouterInterfaceRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string DeleteRouterInterfaceRequest::getOwnerAccount()const
|
||||
@@ -77,7 +77,7 @@ std::string DeleteRouterInterfaceRequest::getOwnerAccount()const
|
||||
void DeleteRouterInterfaceRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteRouterInterfaceRequest::getUserCidr()const
|
||||
@@ -88,7 +88,7 @@ std::string DeleteRouterInterfaceRequest::getUserCidr()const
|
||||
void DeleteRouterInterfaceRequest::setUserCidr(const std::string& userCidr)
|
||||
{
|
||||
userCidr_ = userCidr;
|
||||
setParameter("UserCidr", userCidr);
|
||||
setCoreParameter("UserCidr", userCidr);
|
||||
}
|
||||
|
||||
std::string DeleteRouterInterfaceRequest::getRouterInterfaceId()const
|
||||
@@ -99,7 +99,7 @@ std::string DeleteRouterInterfaceRequest::getRouterInterfaceId()const
|
||||
void DeleteRouterInterfaceRequest::setRouterInterfaceId(const std::string& routerInterfaceId)
|
||||
{
|
||||
routerInterfaceId_ = routerInterfaceId;
|
||||
setParameter("RouterInterfaceId", routerInterfaceId);
|
||||
setCoreParameter("RouterInterfaceId", routerInterfaceId);
|
||||
}
|
||||
|
||||
long DeleteRouterInterfaceRequest::getOwnerId()const
|
||||
@@ -110,6 +110,6 @@ long DeleteRouterInterfaceRequest::getOwnerId()const
|
||||
void DeleteRouterInterfaceRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -25,6 +25,17 @@ DeleteSecurityGroupRequest::DeleteSecurityGroupRequest() :
|
||||
DeleteSecurityGroupRequest::~DeleteSecurityGroupRequest()
|
||||
{}
|
||||
|
||||
std::string DeleteSecurityGroupRequest::getSourceRegionId()const
|
||||
{
|
||||
return sourceRegionId_;
|
||||
}
|
||||
|
||||
void DeleteSecurityGroupRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
long DeleteSecurityGroupRequest::getResourceOwnerId()const
|
||||
{
|
||||
return resourceOwnerId_;
|
||||
@@ -33,7 +44,7 @@ long DeleteSecurityGroupRequest::getResourceOwnerId()const
|
||||
void DeleteSecurityGroupRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteSecurityGroupRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +55,7 @@ std::string DeleteSecurityGroupRequest::getResourceOwnerAccount()const
|
||||
void DeleteSecurityGroupRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteSecurityGroupRequest::getRegionId()const
|
||||
@@ -55,7 +66,7 @@ std::string DeleteSecurityGroupRequest::getRegionId()const
|
||||
void DeleteSecurityGroupRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string DeleteSecurityGroupRequest::getOwnerAccount()const
|
||||
@@ -66,7 +77,7 @@ std::string DeleteSecurityGroupRequest::getOwnerAccount()const
|
||||
void DeleteSecurityGroupRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteSecurityGroupRequest::getSecurityGroupId()const
|
||||
@@ -77,7 +88,7 @@ std::string DeleteSecurityGroupRequest::getSecurityGroupId()const
|
||||
void DeleteSecurityGroupRequest::setSecurityGroupId(const std::string& securityGroupId)
|
||||
{
|
||||
securityGroupId_ = securityGroupId;
|
||||
setParameter("SecurityGroupId", securityGroupId);
|
||||
setCoreParameter("SecurityGroupId", securityGroupId);
|
||||
}
|
||||
|
||||
long DeleteSecurityGroupRequest::getOwnerId()const
|
||||
@@ -88,6 +99,6 @@ long DeleteSecurityGroupRequest::getOwnerId()const
|
||||
void DeleteSecurityGroupRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string DeleteSnapshotRequest::getSourceRegionId()const
|
||||
void DeleteSnapshotRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
long DeleteSnapshotRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long DeleteSnapshotRequest::getResourceOwnerId()const
|
||||
void DeleteSnapshotRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteSnapshotRequest::getSnapshotId()const
|
||||
@@ -55,7 +55,7 @@ std::string DeleteSnapshotRequest::getSnapshotId()const
|
||||
void DeleteSnapshotRequest::setSnapshotId(const std::string& snapshotId)
|
||||
{
|
||||
snapshotId_ = snapshotId;
|
||||
setParameter("SnapshotId", snapshotId);
|
||||
setCoreParameter("SnapshotId", snapshotId);
|
||||
}
|
||||
|
||||
std::string DeleteSnapshotRequest::getResourceOwnerAccount()const
|
||||
@@ -66,7 +66,7 @@ std::string DeleteSnapshotRequest::getResourceOwnerAccount()const
|
||||
void DeleteSnapshotRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteSnapshotRequest::getOwnerAccount()const
|
||||
@@ -77,7 +77,7 @@ std::string DeleteSnapshotRequest::getOwnerAccount()const
|
||||
void DeleteSnapshotRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
bool DeleteSnapshotRequest::getForce()const
|
||||
@@ -88,7 +88,7 @@ bool DeleteSnapshotRequest::getForce()const
|
||||
void DeleteSnapshotRequest::setForce(bool force)
|
||||
{
|
||||
force_ = force;
|
||||
setParameter("Force", force ? "true" : "false");
|
||||
setCoreParameter("Force", force ? "true" : "false");
|
||||
}
|
||||
|
||||
long DeleteSnapshotRequest::getOwnerId()const
|
||||
@@ -99,6 +99,6 @@ long DeleteSnapshotRequest::getOwnerId()const
|
||||
void DeleteSnapshotRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string DeleteVSwitchRequest::getVSwitchId()const
|
||||
void DeleteVSwitchRequest::setVSwitchId(const std::string& vSwitchId)
|
||||
{
|
||||
vSwitchId_ = vSwitchId;
|
||||
setParameter("VSwitchId", vSwitchId);
|
||||
setCoreParameter("VSwitchId", vSwitchId);
|
||||
}
|
||||
|
||||
long DeleteVSwitchRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long DeleteVSwitchRequest::getResourceOwnerId()const
|
||||
void DeleteVSwitchRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteVSwitchRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string DeleteVSwitchRequest::getResourceOwnerAccount()const
|
||||
void DeleteVSwitchRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteVSwitchRequest::getRegionId()const
|
||||
@@ -66,7 +66,7 @@ std::string DeleteVSwitchRequest::getRegionId()const
|
||||
void DeleteVSwitchRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string DeleteVSwitchRequest::getOwnerAccount()const
|
||||
@@ -77,7 +77,7 @@ std::string DeleteVSwitchRequest::getOwnerAccount()const
|
||||
void DeleteVSwitchRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
long DeleteVSwitchRequest::getOwnerId()const
|
||||
@@ -88,6 +88,6 @@ long DeleteVSwitchRequest::getOwnerId()const
|
||||
void DeleteVSwitchRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long DeleteVirtualBorderRouterRequest::getResourceOwnerId()const
|
||||
void DeleteVirtualBorderRouterRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteVirtualBorderRouterRequest::getRegionId()const
|
||||
@@ -44,7 +44,7 @@ std::string DeleteVirtualBorderRouterRequest::getRegionId()const
|
||||
void DeleteVirtualBorderRouterRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string DeleteVirtualBorderRouterRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string DeleteVirtualBorderRouterRequest::getResourceOwnerAccount()const
|
||||
void DeleteVirtualBorderRouterRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteVirtualBorderRouterRequest::getClientToken()const
|
||||
@@ -66,7 +66,7 @@ std::string DeleteVirtualBorderRouterRequest::getClientToken()const
|
||||
void DeleteVirtualBorderRouterRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setParameter("ClientToken", clientToken);
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string DeleteVirtualBorderRouterRequest::getOwnerAccount()const
|
||||
@@ -77,7 +77,7 @@ std::string DeleteVirtualBorderRouterRequest::getOwnerAccount()const
|
||||
void DeleteVirtualBorderRouterRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteVirtualBorderRouterRequest::getUserCidr()const
|
||||
@@ -88,7 +88,7 @@ std::string DeleteVirtualBorderRouterRequest::getUserCidr()const
|
||||
void DeleteVirtualBorderRouterRequest::setUserCidr(const std::string& userCidr)
|
||||
{
|
||||
userCidr_ = userCidr;
|
||||
setParameter("UserCidr", userCidr);
|
||||
setCoreParameter("UserCidr", userCidr);
|
||||
}
|
||||
|
||||
std::string DeleteVirtualBorderRouterRequest::getVbrId()const
|
||||
@@ -99,7 +99,7 @@ std::string DeleteVirtualBorderRouterRequest::getVbrId()const
|
||||
void DeleteVirtualBorderRouterRequest::setVbrId(const std::string& vbrId)
|
||||
{
|
||||
vbrId_ = vbrId;
|
||||
setParameter("VbrId", vbrId);
|
||||
setCoreParameter("VbrId", vbrId);
|
||||
}
|
||||
|
||||
long DeleteVirtualBorderRouterRequest::getOwnerId()const
|
||||
@@ -110,6 +110,6 @@ long DeleteVirtualBorderRouterRequest::getOwnerId()const
|
||||
void DeleteVirtualBorderRouterRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long DeleteVpcRequest::getResourceOwnerId()const
|
||||
void DeleteVpcRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DeleteVpcRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +44,7 @@ std::string DeleteVpcRequest::getResourceOwnerAccount()const
|
||||
void DeleteVpcRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteVpcRequest::getRegionId()const
|
||||
@@ -55,7 +55,7 @@ std::string DeleteVpcRequest::getRegionId()const
|
||||
void DeleteVpcRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string DeleteVpcRequest::getVpcId()const
|
||||
@@ -66,7 +66,7 @@ std::string DeleteVpcRequest::getVpcId()const
|
||||
void DeleteVpcRequest::setVpcId(const std::string& vpcId)
|
||||
{
|
||||
vpcId_ = vpcId;
|
||||
setParameter("VpcId", vpcId);
|
||||
setCoreParameter("VpcId", vpcId);
|
||||
}
|
||||
|
||||
std::string DeleteVpcRequest::getOwnerAccount()const
|
||||
@@ -77,7 +77,7 @@ std::string DeleteVpcRequest::getOwnerAccount()const
|
||||
void DeleteVpcRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
long DeleteVpcRequest::getOwnerId()const
|
||||
@@ -88,6 +88,6 @@ long DeleteVpcRequest::getOwnerId()const
|
||||
void DeleteVpcRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -37,8 +37,8 @@ void DescribeAccessPointsRequest::setFilter(const std::vector<Filter>& filter)
|
||||
for(int i = 0; i!= filter.size(); i++) {
|
||||
auto obj = filter.at(i);
|
||||
std::string str ="Filter."+ std::to_string(i);
|
||||
for(int i = 0; i!= obj.value.size(); i++)
|
||||
setParameter(str + ".Value."+ std::to_string(i), obj.value.at(i));
|
||||
for(int i = 0; i!= obj.value.size(); i++)
|
||||
setCoreParameter(str + ".Value."+ std::to_string(i), obj.value.at(i));
|
||||
setCoreParameter(str + ".Key", obj.key);
|
||||
}
|
||||
}
|
||||
@@ -50,7 +50,7 @@ long DescribeAccessPointsRequest::getResourceOwnerId()const
|
||||
|
||||
void DescribeAccessPointsRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
@@ -61,7 +61,7 @@ std::string DescribeAccessPointsRequest::getResourceOwnerAccount()const
|
||||
|
||||
void DescribeAccessPointsRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
@@ -72,7 +72,7 @@ std::string DescribeAccessPointsRequest::getRegionId()const
|
||||
|
||||
void DescribeAccessPointsRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
regionId_ = regionId;
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
@@ -83,7 +83,7 @@ int DescribeAccessPointsRequest::getPageSize()const
|
||||
|
||||
void DescribeAccessPointsRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
pageSize_ = pageSize;
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
@@ -94,7 +94,7 @@ long DescribeAccessPointsRequest::getOwnerId()const
|
||||
|
||||
void DescribeAccessPointsRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
@@ -105,7 +105,7 @@ std::string DescribeAccessPointsRequest::getType()const
|
||||
|
||||
void DescribeAccessPointsRequest::setType(const std::string& type)
|
||||
{
|
||||
type_ = type;
|
||||
type_ = type;
|
||||
setCoreParameter("Type", type);
|
||||
}
|
||||
|
||||
@@ -116,6 +116,6 @@ int DescribeAccessPointsRequest::getPageNumber()const
|
||||
|
||||
void DescribeAccessPointsRequest::setPageNumber(int pageNumber)
|
||||
{
|
||||
pageNumber_ = pageNumber;
|
||||
pageNumber_ = pageNumber;
|
||||
setCoreParameter("PageNumber", std::to_string(pageNumber));
|
||||
}
|
||||
|
||||
@@ -33,7 +33,7 @@ long DescribeAccountAttributesRequest::getResourceOwnerId()const
|
||||
void DescribeAccountAttributesRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long DescribeAccountAttributesRequest::getCallerParentId()const
|
||||
@@ -44,7 +44,7 @@ long DescribeAccountAttributesRequest::getCallerParentId()const
|
||||
void DescribeAccountAttributesRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
bool DescribeAccountAttributesRequest::getProxy_original_security_transport()const
|
||||
@@ -55,7 +55,7 @@ bool DescribeAccountAttributesRequest::getProxy_original_security_transport()con
|
||||
void DescribeAccountAttributesRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::vector<std::string> DescribeAccountAttributesRequest::getAttributeName()const
|
||||
@@ -67,7 +67,7 @@ void DescribeAccountAttributesRequest::setAttributeName(const std::vector<std::s
|
||||
{
|
||||
attributeName_ = attributeName;
|
||||
for(int i = 0; i!= attributeName.size(); i++)
|
||||
setParameter("AttributeName."+ std::to_string(i), attributeName.at(i));
|
||||
setCoreParameter("AttributeName."+ std::to_string(i), attributeName.at(i));
|
||||
}
|
||||
|
||||
std::string DescribeAccountAttributesRequest::getProxy_original_source_ip()const
|
||||
@@ -78,7 +78,7 @@ std::string DescribeAccountAttributesRequest::getProxy_original_source_ip()const
|
||||
void DescribeAccountAttributesRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string DescribeAccountAttributesRequest::getOwnerIdLoginEmail()const
|
||||
@@ -89,7 +89,7 @@ std::string DescribeAccountAttributesRequest::getOwnerIdLoginEmail()const
|
||||
void DescribeAccountAttributesRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string DescribeAccountAttributesRequest::getCallerType()const
|
||||
@@ -100,7 +100,7 @@ std::string DescribeAccountAttributesRequest::getCallerType()const
|
||||
void DescribeAccountAttributesRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string DescribeAccountAttributesRequest::getAccessKeyId()const
|
||||
@@ -111,7 +111,7 @@ std::string DescribeAccountAttributesRequest::getAccessKeyId()const
|
||||
void DescribeAccountAttributesRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string DescribeAccountAttributesRequest::getSourceRegionId()const
|
||||
@@ -122,7 +122,7 @@ std::string DescribeAccountAttributesRequest::getSourceRegionId()const
|
||||
void DescribeAccountAttributesRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string DescribeAccountAttributesRequest::getSecurityToken()const
|
||||
@@ -133,7 +133,7 @@ std::string DescribeAccountAttributesRequest::getSecurityToken()const
|
||||
void DescribeAccountAttributesRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string DescribeAccountAttributesRequest::getRegionId()const
|
||||
@@ -144,7 +144,7 @@ std::string DescribeAccountAttributesRequest::getRegionId()const
|
||||
void DescribeAccountAttributesRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool DescribeAccountAttributesRequest::getEnable()const
|
||||
@@ -155,7 +155,7 @@ bool DescribeAccountAttributesRequest::getEnable()const
|
||||
void DescribeAccountAttributesRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeAccountAttributesRequest::getRequestContent()const
|
||||
@@ -166,7 +166,7 @@ std::string DescribeAccountAttributesRequest::getRequestContent()const
|
||||
void DescribeAccountAttributesRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string DescribeAccountAttributesRequest::getCallerBidEmail()const
|
||||
@@ -177,7 +177,7 @@ std::string DescribeAccountAttributesRequest::getCallerBidEmail()const
|
||||
void DescribeAccountAttributesRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string DescribeAccountAttributesRequest::getCallerUidEmail()const
|
||||
@@ -188,7 +188,7 @@ std::string DescribeAccountAttributesRequest::getCallerUidEmail()const
|
||||
void DescribeAccountAttributesRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long DescribeAccountAttributesRequest::getCallerUid()const
|
||||
@@ -199,7 +199,7 @@ long DescribeAccountAttributesRequest::getCallerUid()const
|
||||
void DescribeAccountAttributesRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string DescribeAccountAttributesRequest::getApp_ip()const
|
||||
@@ -210,7 +210,7 @@ std::string DescribeAccountAttributesRequest::getApp_ip()const
|
||||
void DescribeAccountAttributesRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string DescribeAccountAttributesRequest::getResourceOwnerAccount()const
|
||||
@@ -221,7 +221,7 @@ std::string DescribeAccountAttributesRequest::getResourceOwnerAccount()const
|
||||
void DescribeAccountAttributesRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeAccountAttributesRequest::getCallerBid()const
|
||||
@@ -232,7 +232,7 @@ std::string DescribeAccountAttributesRequest::getCallerBid()const
|
||||
void DescribeAccountAttributesRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long DescribeAccountAttributesRequest::getOwnerId()const
|
||||
@@ -243,7 +243,7 @@ long DescribeAccountAttributesRequest::getOwnerId()const
|
||||
void DescribeAccountAttributesRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool DescribeAccountAttributesRequest::getProxy_trust_transport_info()const
|
||||
@@ -254,7 +254,7 @@ bool DescribeAccountAttributesRequest::getProxy_trust_transport_info()const
|
||||
void DescribeAccountAttributesRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DescribeAccountAttributesRequest::getAk_mfa_present()const
|
||||
@@ -265,7 +265,7 @@ bool DescribeAccountAttributesRequest::getAk_mfa_present()const
|
||||
void DescribeAccountAttributesRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DescribeAccountAttributesRequest::getSecurity_transport()const
|
||||
@@ -276,7 +276,7 @@ bool DescribeAccountAttributesRequest::getSecurity_transport()const
|
||||
void DescribeAccountAttributesRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeAccountAttributesRequest::getRequestId()const
|
||||
@@ -287,7 +287,7 @@ std::string DescribeAccountAttributesRequest::getRequestId()const
|
||||
void DescribeAccountAttributesRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
std::string DescribeAccountAttributesRequest::getZoneId()const
|
||||
@@ -298,6 +298,6 @@ std::string DescribeAccountAttributesRequest::getZoneId()const
|
||||
void DescribeAccountAttributesRequest::setZoneId(const std::string& zoneId)
|
||||
{
|
||||
zoneId_ = zoneId;
|
||||
setParameter("ZoneId", zoneId);
|
||||
setCoreParameter("ZoneId", zoneId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string DescribeAutoSnapshotPolicyExRequest::getSourceRegionId()const
|
||||
void DescribeAutoSnapshotPolicyExRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
long DescribeAutoSnapshotPolicyExRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long DescribeAutoSnapshotPolicyExRequest::getResourceOwnerId()const
|
||||
void DescribeAutoSnapshotPolicyExRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DescribeAutoSnapshotPolicyExRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string DescribeAutoSnapshotPolicyExRequest::getResourceOwnerAccount()const
|
||||
void DescribeAutoSnapshotPolicyExRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeAutoSnapshotPolicyExRequest::getRegionId()const
|
||||
@@ -66,7 +66,7 @@ std::string DescribeAutoSnapshotPolicyExRequest::getRegionId()const
|
||||
void DescribeAutoSnapshotPolicyExRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string DescribeAutoSnapshotPolicyExRequest::getAutoSnapshotPolicyId()const
|
||||
@@ -77,7 +77,7 @@ std::string DescribeAutoSnapshotPolicyExRequest::getAutoSnapshotPolicyId()const
|
||||
void DescribeAutoSnapshotPolicyExRequest::setAutoSnapshotPolicyId(const std::string& autoSnapshotPolicyId)
|
||||
{
|
||||
autoSnapshotPolicyId_ = autoSnapshotPolicyId;
|
||||
setParameter("AutoSnapshotPolicyId", autoSnapshotPolicyId);
|
||||
setCoreParameter("AutoSnapshotPolicyId", autoSnapshotPolicyId);
|
||||
}
|
||||
|
||||
std::string DescribeAutoSnapshotPolicyExRequest::getOwnerAccount()const
|
||||
@@ -88,7 +88,7 @@ std::string DescribeAutoSnapshotPolicyExRequest::getOwnerAccount()const
|
||||
void DescribeAutoSnapshotPolicyExRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
int DescribeAutoSnapshotPolicyExRequest::getPageSize()const
|
||||
@@ -99,7 +99,7 @@ int DescribeAutoSnapshotPolicyExRequest::getPageSize()const
|
||||
void DescribeAutoSnapshotPolicyExRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
long DescribeAutoSnapshotPolicyExRequest::getOwnerId()const
|
||||
@@ -110,7 +110,7 @@ long DescribeAutoSnapshotPolicyExRequest::getOwnerId()const
|
||||
void DescribeAutoSnapshotPolicyExRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
int DescribeAutoSnapshotPolicyExRequest::getPageNumber()const
|
||||
@@ -121,6 +121,6 @@ int DescribeAutoSnapshotPolicyExRequest::getPageNumber()const
|
||||
void DescribeAutoSnapshotPolicyExRequest::setPageNumber(int pageNumber)
|
||||
{
|
||||
pageNumber_ = pageNumber;
|
||||
setParameter("PageNumber", std::to_string(pageNumber));
|
||||
setCoreParameter("PageNumber", std::to_string(pageNumber));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long DescribeAvailableResourceRequest::getResourceOwnerId()const
|
||||
void DescribeAvailableResourceRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
float DescribeAvailableResourceRequest::getMemory()const
|
||||
@@ -44,7 +44,7 @@ float DescribeAvailableResourceRequest::getMemory()const
|
||||
void DescribeAvailableResourceRequest::setMemory(float memory)
|
||||
{
|
||||
memory_ = memory;
|
||||
setParameter("Memory", std::to_string(memory));
|
||||
setCoreParameter("Memory", std::to_string(memory));
|
||||
}
|
||||
|
||||
long DescribeAvailableResourceRequest::getCallerParentId()const
|
||||
@@ -55,7 +55,7 @@ long DescribeAvailableResourceRequest::getCallerParentId()const
|
||||
void DescribeAvailableResourceRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getIoOptimized()const
|
||||
@@ -66,7 +66,7 @@ std::string DescribeAvailableResourceRequest::getIoOptimized()const
|
||||
void DescribeAvailableResourceRequest::setIoOptimized(const std::string& ioOptimized)
|
||||
{
|
||||
ioOptimized_ = ioOptimized;
|
||||
setParameter("IoOptimized", ioOptimized);
|
||||
setCoreParameter("IoOptimized", ioOptimized);
|
||||
}
|
||||
|
||||
bool DescribeAvailableResourceRequest::getProxy_original_security_transport()const
|
||||
@@ -77,7 +77,7 @@ bool DescribeAvailableResourceRequest::getProxy_original_security_transport()con
|
||||
void DescribeAvailableResourceRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getDataDiskCategory()const
|
||||
@@ -88,7 +88,7 @@ std::string DescribeAvailableResourceRequest::getDataDiskCategory()const
|
||||
void DescribeAvailableResourceRequest::setDataDiskCategory(const std::string& dataDiskCategory)
|
||||
{
|
||||
dataDiskCategory_ = dataDiskCategory;
|
||||
setParameter("DataDiskCategory", dataDiskCategory);
|
||||
setCoreParameter("DataDiskCategory", dataDiskCategory);
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getProxy_original_source_ip()const
|
||||
@@ -99,7 +99,7 @@ std::string DescribeAvailableResourceRequest::getProxy_original_source_ip()const
|
||||
void DescribeAvailableResourceRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getOwnerIdLoginEmail()const
|
||||
@@ -110,7 +110,7 @@ std::string DescribeAvailableResourceRequest::getOwnerIdLoginEmail()const
|
||||
void DescribeAvailableResourceRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getCallerType()const
|
||||
@@ -121,7 +121,7 @@ std::string DescribeAvailableResourceRequest::getCallerType()const
|
||||
void DescribeAvailableResourceRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getAccessKeyId()const
|
||||
@@ -132,7 +132,7 @@ std::string DescribeAvailableResourceRequest::getAccessKeyId()const
|
||||
void DescribeAvailableResourceRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getSourceRegionId()const
|
||||
@@ -143,7 +143,7 @@ std::string DescribeAvailableResourceRequest::getSourceRegionId()const
|
||||
void DescribeAvailableResourceRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
int DescribeAvailableResourceRequest::getCores()const
|
||||
@@ -154,7 +154,7 @@ int DescribeAvailableResourceRequest::getCores()const
|
||||
void DescribeAvailableResourceRequest::setCores(int cores)
|
||||
{
|
||||
cores_ = cores;
|
||||
setParameter("Cores", std::to_string(cores));
|
||||
setCoreParameter("Cores", std::to_string(cores));
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getSecurityToken()const
|
||||
@@ -165,7 +165,7 @@ std::string DescribeAvailableResourceRequest::getSecurityToken()const
|
||||
void DescribeAvailableResourceRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getRegionId()const
|
||||
@@ -176,7 +176,7 @@ std::string DescribeAvailableResourceRequest::getRegionId()const
|
||||
void DescribeAvailableResourceRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool DescribeAvailableResourceRequest::getEnable()const
|
||||
@@ -187,7 +187,7 @@ bool DescribeAvailableResourceRequest::getEnable()const
|
||||
void DescribeAvailableResourceRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getRequestContent()const
|
||||
@@ -198,7 +198,7 @@ std::string DescribeAvailableResourceRequest::getRequestContent()const
|
||||
void DescribeAvailableResourceRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getSystemDiskCategory()const
|
||||
@@ -209,7 +209,7 @@ std::string DescribeAvailableResourceRequest::getSystemDiskCategory()const
|
||||
void DescribeAvailableResourceRequest::setSystemDiskCategory(const std::string& systemDiskCategory)
|
||||
{
|
||||
systemDiskCategory_ = systemDiskCategory;
|
||||
setParameter("SystemDiskCategory", systemDiskCategory);
|
||||
setCoreParameter("SystemDiskCategory", systemDiskCategory);
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getScope()const
|
||||
@@ -220,7 +220,7 @@ std::string DescribeAvailableResourceRequest::getScope()const
|
||||
void DescribeAvailableResourceRequest::setScope(const std::string& scope)
|
||||
{
|
||||
scope_ = scope;
|
||||
setParameter("Scope", scope);
|
||||
setCoreParameter("Scope", scope);
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getCallerBidEmail()const
|
||||
@@ -231,7 +231,7 @@ std::string DescribeAvailableResourceRequest::getCallerBidEmail()const
|
||||
void DescribeAvailableResourceRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getInstanceType()const
|
||||
@@ -242,7 +242,7 @@ std::string DescribeAvailableResourceRequest::getInstanceType()const
|
||||
void DescribeAvailableResourceRequest::setInstanceType(const std::string& instanceType)
|
||||
{
|
||||
instanceType_ = instanceType;
|
||||
setParameter("InstanceType", instanceType);
|
||||
setCoreParameter("InstanceType", instanceType);
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getNetworkCategory()const
|
||||
@@ -253,7 +253,7 @@ std::string DescribeAvailableResourceRequest::getNetworkCategory()const
|
||||
void DescribeAvailableResourceRequest::setNetworkCategory(const std::string& networkCategory)
|
||||
{
|
||||
networkCategory_ = networkCategory;
|
||||
setParameter("NetworkCategory", networkCategory);
|
||||
setCoreParameter("NetworkCategory", networkCategory);
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getInstanceChargeType()const
|
||||
@@ -264,7 +264,7 @@ std::string DescribeAvailableResourceRequest::getInstanceChargeType()const
|
||||
void DescribeAvailableResourceRequest::setInstanceChargeType(const std::string& instanceChargeType)
|
||||
{
|
||||
instanceChargeType_ = instanceChargeType;
|
||||
setParameter("InstanceChargeType", instanceChargeType);
|
||||
setCoreParameter("InstanceChargeType", instanceChargeType);
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getCallerUidEmail()const
|
||||
@@ -275,7 +275,7 @@ std::string DescribeAvailableResourceRequest::getCallerUidEmail()const
|
||||
void DescribeAvailableResourceRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long DescribeAvailableResourceRequest::getCallerUid()const
|
||||
@@ -286,7 +286,7 @@ long DescribeAvailableResourceRequest::getCallerUid()const
|
||||
void DescribeAvailableResourceRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getApp_ip()const
|
||||
@@ -297,7 +297,7 @@ std::string DescribeAvailableResourceRequest::getApp_ip()const
|
||||
void DescribeAvailableResourceRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getResourceOwnerAccount()const
|
||||
@@ -308,7 +308,7 @@ std::string DescribeAvailableResourceRequest::getResourceOwnerAccount()const
|
||||
void DescribeAvailableResourceRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getOwnerAccount()const
|
||||
@@ -319,7 +319,7 @@ std::string DescribeAvailableResourceRequest::getOwnerAccount()const
|
||||
void DescribeAvailableResourceRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getDedicatedHostId()const
|
||||
@@ -330,7 +330,7 @@ std::string DescribeAvailableResourceRequest::getDedicatedHostId()const
|
||||
void DescribeAvailableResourceRequest::setDedicatedHostId(const std::string& dedicatedHostId)
|
||||
{
|
||||
dedicatedHostId_ = dedicatedHostId;
|
||||
setParameter("DedicatedHostId", dedicatedHostId);
|
||||
setCoreParameter("DedicatedHostId", dedicatedHostId);
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getCallerBid()const
|
||||
@@ -341,7 +341,7 @@ std::string DescribeAvailableResourceRequest::getCallerBid()const
|
||||
void DescribeAvailableResourceRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long DescribeAvailableResourceRequest::getOwnerId()const
|
||||
@@ -352,7 +352,7 @@ long DescribeAvailableResourceRequest::getOwnerId()const
|
||||
void DescribeAvailableResourceRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getResourceType()const
|
||||
@@ -363,7 +363,7 @@ std::string DescribeAvailableResourceRequest::getResourceType()const
|
||||
void DescribeAvailableResourceRequest::setResourceType(const std::string& resourceType)
|
||||
{
|
||||
resourceType_ = resourceType;
|
||||
setParameter("ResourceType", resourceType);
|
||||
setCoreParameter("ResourceType", resourceType);
|
||||
}
|
||||
|
||||
bool DescribeAvailableResourceRequest::getProxy_trust_transport_info()const
|
||||
@@ -374,7 +374,7 @@ bool DescribeAvailableResourceRequest::getProxy_trust_transport_info()const
|
||||
void DescribeAvailableResourceRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DescribeAvailableResourceRequest::getAk_mfa_present()const
|
||||
@@ -385,7 +385,7 @@ bool DescribeAvailableResourceRequest::getAk_mfa_present()const
|
||||
void DescribeAvailableResourceRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DescribeAvailableResourceRequest::getSecurity_transport()const
|
||||
@@ -396,7 +396,7 @@ bool DescribeAvailableResourceRequest::getSecurity_transport()const
|
||||
void DescribeAvailableResourceRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getSpotStrategy()const
|
||||
@@ -407,7 +407,7 @@ std::string DescribeAvailableResourceRequest::getSpotStrategy()const
|
||||
void DescribeAvailableResourceRequest::setSpotStrategy(const std::string& spotStrategy)
|
||||
{
|
||||
spotStrategy_ = spotStrategy;
|
||||
setParameter("SpotStrategy", spotStrategy);
|
||||
setCoreParameter("SpotStrategy", spotStrategy);
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getDestinationResource()const
|
||||
@@ -418,7 +418,7 @@ std::string DescribeAvailableResourceRequest::getDestinationResource()const
|
||||
void DescribeAvailableResourceRequest::setDestinationResource(const std::string& destinationResource)
|
||||
{
|
||||
destinationResource_ = destinationResource;
|
||||
setParameter("DestinationResource", destinationResource);
|
||||
setCoreParameter("DestinationResource", destinationResource);
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getRequestId()const
|
||||
@@ -429,7 +429,7 @@ std::string DescribeAvailableResourceRequest::getRequestId()const
|
||||
void DescribeAvailableResourceRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
std::string DescribeAvailableResourceRequest::getZoneId()const
|
||||
@@ -440,6 +440,6 @@ std::string DescribeAvailableResourceRequest::getZoneId()const
|
||||
void DescribeAvailableResourceRequest::setZoneId(const std::string& zoneId)
|
||||
{
|
||||
zoneId_ = zoneId;
|
||||
setParameter("ZoneId", zoneId);
|
||||
setCoreParameter("ZoneId", zoneId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long DescribeBandwidthLimitationRequest::getResourceOwnerId()const
|
||||
void DescribeBandwidthLimitationRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long DescribeBandwidthLimitationRequest::getCallerParentId()const
|
||||
@@ -44,7 +44,7 @@ long DescribeBandwidthLimitationRequest::getCallerParentId()const
|
||||
void DescribeBandwidthLimitationRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
bool DescribeBandwidthLimitationRequest::getProxy_original_security_transport()const
|
||||
@@ -55,7 +55,7 @@ bool DescribeBandwidthLimitationRequest::getProxy_original_security_transport()c
|
||||
void DescribeBandwidthLimitationRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeBandwidthLimitationRequest::getProxy_original_source_ip()const
|
||||
@@ -66,7 +66,7 @@ std::string DescribeBandwidthLimitationRequest::getProxy_original_source_ip()con
|
||||
void DescribeBandwidthLimitationRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string DescribeBandwidthLimitationRequest::getOwnerIdLoginEmail()const
|
||||
@@ -77,7 +77,7 @@ std::string DescribeBandwidthLimitationRequest::getOwnerIdLoginEmail()const
|
||||
void DescribeBandwidthLimitationRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string DescribeBandwidthLimitationRequest::getCallerType()const
|
||||
@@ -88,7 +88,7 @@ std::string DescribeBandwidthLimitationRequest::getCallerType()const
|
||||
void DescribeBandwidthLimitationRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string DescribeBandwidthLimitationRequest::getAccessKeyId()const
|
||||
@@ -99,7 +99,7 @@ std::string DescribeBandwidthLimitationRequest::getAccessKeyId()const
|
||||
void DescribeBandwidthLimitationRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string DescribeBandwidthLimitationRequest::getSecurityToken()const
|
||||
@@ -110,7 +110,7 @@ std::string DescribeBandwidthLimitationRequest::getSecurityToken()const
|
||||
void DescribeBandwidthLimitationRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string DescribeBandwidthLimitationRequest::getRegionId()const
|
||||
@@ -121,7 +121,7 @@ std::string DescribeBandwidthLimitationRequest::getRegionId()const
|
||||
void DescribeBandwidthLimitationRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool DescribeBandwidthLimitationRequest::getEnable()const
|
||||
@@ -132,7 +132,7 @@ bool DescribeBandwidthLimitationRequest::getEnable()const
|
||||
void DescribeBandwidthLimitationRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeBandwidthLimitationRequest::getRequestContent()const
|
||||
@@ -143,7 +143,7 @@ std::string DescribeBandwidthLimitationRequest::getRequestContent()const
|
||||
void DescribeBandwidthLimitationRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string DescribeBandwidthLimitationRequest::getCallerBidEmail()const
|
||||
@@ -154,7 +154,7 @@ std::string DescribeBandwidthLimitationRequest::getCallerBidEmail()const
|
||||
void DescribeBandwidthLimitationRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string DescribeBandwidthLimitationRequest::getInstanceType()const
|
||||
@@ -165,7 +165,7 @@ std::string DescribeBandwidthLimitationRequest::getInstanceType()const
|
||||
void DescribeBandwidthLimitationRequest::setInstanceType(const std::string& instanceType)
|
||||
{
|
||||
instanceType_ = instanceType;
|
||||
setParameter("InstanceType", instanceType);
|
||||
setCoreParameter("InstanceType", instanceType);
|
||||
}
|
||||
|
||||
std::string DescribeBandwidthLimitationRequest::getInstanceChargeType()const
|
||||
@@ -176,7 +176,7 @@ std::string DescribeBandwidthLimitationRequest::getInstanceChargeType()const
|
||||
void DescribeBandwidthLimitationRequest::setInstanceChargeType(const std::string& instanceChargeType)
|
||||
{
|
||||
instanceChargeType_ = instanceChargeType;
|
||||
setParameter("InstanceChargeType", instanceChargeType);
|
||||
setCoreParameter("InstanceChargeType", instanceChargeType);
|
||||
}
|
||||
|
||||
std::string DescribeBandwidthLimitationRequest::getCallerUidEmail()const
|
||||
@@ -187,7 +187,7 @@ std::string DescribeBandwidthLimitationRequest::getCallerUidEmail()const
|
||||
void DescribeBandwidthLimitationRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long DescribeBandwidthLimitationRequest::getCallerUid()const
|
||||
@@ -198,7 +198,7 @@ long DescribeBandwidthLimitationRequest::getCallerUid()const
|
||||
void DescribeBandwidthLimitationRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string DescribeBandwidthLimitationRequest::getApp_ip()const
|
||||
@@ -209,7 +209,7 @@ std::string DescribeBandwidthLimitationRequest::getApp_ip()const
|
||||
void DescribeBandwidthLimitationRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string DescribeBandwidthLimitationRequest::getResourceId()const
|
||||
@@ -220,7 +220,7 @@ std::string DescribeBandwidthLimitationRequest::getResourceId()const
|
||||
void DescribeBandwidthLimitationRequest::setResourceId(const std::string& resourceId)
|
||||
{
|
||||
resourceId_ = resourceId;
|
||||
setParameter("ResourceId", resourceId);
|
||||
setCoreParameter("ResourceId", resourceId);
|
||||
}
|
||||
|
||||
std::string DescribeBandwidthLimitationRequest::getResourceOwnerAccount()const
|
||||
@@ -231,7 +231,7 @@ std::string DescribeBandwidthLimitationRequest::getResourceOwnerAccount()const
|
||||
void DescribeBandwidthLimitationRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeBandwidthLimitationRequest::getOwnerAccount()const
|
||||
@@ -242,7 +242,7 @@ std::string DescribeBandwidthLimitationRequest::getOwnerAccount()const
|
||||
void DescribeBandwidthLimitationRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeBandwidthLimitationRequest::getCallerBid()const
|
||||
@@ -253,7 +253,7 @@ std::string DescribeBandwidthLimitationRequest::getCallerBid()const
|
||||
void DescribeBandwidthLimitationRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
std::string DescribeBandwidthLimitationRequest::getOperationType()const
|
||||
@@ -264,7 +264,7 @@ std::string DescribeBandwidthLimitationRequest::getOperationType()const
|
||||
void DescribeBandwidthLimitationRequest::setOperationType(const std::string& operationType)
|
||||
{
|
||||
operationType_ = operationType;
|
||||
setParameter("OperationType", operationType);
|
||||
setCoreParameter("OperationType", operationType);
|
||||
}
|
||||
|
||||
long DescribeBandwidthLimitationRequest::getOwnerId()const
|
||||
@@ -275,7 +275,7 @@ long DescribeBandwidthLimitationRequest::getOwnerId()const
|
||||
void DescribeBandwidthLimitationRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool DescribeBandwidthLimitationRequest::getProxy_trust_transport_info()const
|
||||
@@ -286,7 +286,7 @@ bool DescribeBandwidthLimitationRequest::getProxy_trust_transport_info()const
|
||||
void DescribeBandwidthLimitationRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DescribeBandwidthLimitationRequest::getAk_mfa_present()const
|
||||
@@ -297,7 +297,7 @@ bool DescribeBandwidthLimitationRequest::getAk_mfa_present()const
|
||||
void DescribeBandwidthLimitationRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DescribeBandwidthLimitationRequest::getSecurity_transport()const
|
||||
@@ -308,7 +308,7 @@ bool DescribeBandwidthLimitationRequest::getSecurity_transport()const
|
||||
void DescribeBandwidthLimitationRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeBandwidthLimitationRequest::getSpotStrategy()const
|
||||
@@ -319,7 +319,7 @@ std::string DescribeBandwidthLimitationRequest::getSpotStrategy()const
|
||||
void DescribeBandwidthLimitationRequest::setSpotStrategy(const std::string& spotStrategy)
|
||||
{
|
||||
spotStrategy_ = spotStrategy;
|
||||
setParameter("SpotStrategy", spotStrategy);
|
||||
setCoreParameter("SpotStrategy", spotStrategy);
|
||||
}
|
||||
|
||||
std::string DescribeBandwidthLimitationRequest::getRequestId()const
|
||||
@@ -330,6 +330,6 @@ std::string DescribeBandwidthLimitationRequest::getRequestId()const
|
||||
void DescribeBandwidthLimitationRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long DescribeBandwidthPackagesRequest::getResourceOwnerId()const
|
||||
void DescribeBandwidthPackagesRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DescribeBandwidthPackagesRequest::getBandwidthPackageId()const
|
||||
@@ -44,7 +44,7 @@ std::string DescribeBandwidthPackagesRequest::getBandwidthPackageId()const
|
||||
void DescribeBandwidthPackagesRequest::setBandwidthPackageId(const std::string& bandwidthPackageId)
|
||||
{
|
||||
bandwidthPackageId_ = bandwidthPackageId;
|
||||
setParameter("BandwidthPackageId", bandwidthPackageId);
|
||||
setCoreParameter("BandwidthPackageId", bandwidthPackageId);
|
||||
}
|
||||
|
||||
std::string DescribeBandwidthPackagesRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string DescribeBandwidthPackagesRequest::getResourceOwnerAccount()const
|
||||
void DescribeBandwidthPackagesRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeBandwidthPackagesRequest::getRegionId()const
|
||||
@@ -66,7 +66,7 @@ std::string DescribeBandwidthPackagesRequest::getRegionId()const
|
||||
void DescribeBandwidthPackagesRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string DescribeBandwidthPackagesRequest::getOwnerAccount()const
|
||||
@@ -77,7 +77,7 @@ std::string DescribeBandwidthPackagesRequest::getOwnerAccount()const
|
||||
void DescribeBandwidthPackagesRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
int DescribeBandwidthPackagesRequest::getPageSize()const
|
||||
@@ -88,7 +88,7 @@ int DescribeBandwidthPackagesRequest::getPageSize()const
|
||||
void DescribeBandwidthPackagesRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string DescribeBandwidthPackagesRequest::getNatGatewayId()const
|
||||
@@ -99,7 +99,7 @@ std::string DescribeBandwidthPackagesRequest::getNatGatewayId()const
|
||||
void DescribeBandwidthPackagesRequest::setNatGatewayId(const std::string& natGatewayId)
|
||||
{
|
||||
natGatewayId_ = natGatewayId;
|
||||
setParameter("NatGatewayId", natGatewayId);
|
||||
setCoreParameter("NatGatewayId", natGatewayId);
|
||||
}
|
||||
|
||||
long DescribeBandwidthPackagesRequest::getOwnerId()const
|
||||
@@ -110,7 +110,7 @@ long DescribeBandwidthPackagesRequest::getOwnerId()const
|
||||
void DescribeBandwidthPackagesRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
int DescribeBandwidthPackagesRequest::getPageNumber()const
|
||||
@@ -121,6 +121,6 @@ int DescribeBandwidthPackagesRequest::getPageNumber()const
|
||||
void DescribeBandwidthPackagesRequest::setPageNumber(int pageNumber)
|
||||
{
|
||||
pageNumber_ = pageNumber;
|
||||
setParameter("PageNumber", std::to_string(pageNumber));
|
||||
setCoreParameter("PageNumber", std::to_string(pageNumber));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string DescribeClassicLinkInstancesRequest::getSourceRegionId()const
|
||||
void DescribeClassicLinkInstancesRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
long DescribeClassicLinkInstancesRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long DescribeClassicLinkInstancesRequest::getResourceOwnerId()const
|
||||
void DescribeClassicLinkInstancesRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DescribeClassicLinkInstancesRequest::getInstanceId()const
|
||||
@@ -55,7 +55,7 @@ std::string DescribeClassicLinkInstancesRequest::getInstanceId()const
|
||||
void DescribeClassicLinkInstancesRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
std::string DescribeClassicLinkInstancesRequest::getResourceOwnerAccount()const
|
||||
@@ -66,7 +66,7 @@ std::string DescribeClassicLinkInstancesRequest::getResourceOwnerAccount()const
|
||||
void DescribeClassicLinkInstancesRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeClassicLinkInstancesRequest::getRegionId()const
|
||||
@@ -77,7 +77,7 @@ std::string DescribeClassicLinkInstancesRequest::getRegionId()const
|
||||
void DescribeClassicLinkInstancesRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string DescribeClassicLinkInstancesRequest::getVpcId()const
|
||||
@@ -88,7 +88,7 @@ std::string DescribeClassicLinkInstancesRequest::getVpcId()const
|
||||
void DescribeClassicLinkInstancesRequest::setVpcId(const std::string& vpcId)
|
||||
{
|
||||
vpcId_ = vpcId;
|
||||
setParameter("VpcId", vpcId);
|
||||
setCoreParameter("VpcId", vpcId);
|
||||
}
|
||||
|
||||
std::string DescribeClassicLinkInstancesRequest::getPageSize()const
|
||||
@@ -99,7 +99,7 @@ std::string DescribeClassicLinkInstancesRequest::getPageSize()const
|
||||
void DescribeClassicLinkInstancesRequest::setPageSize(const std::string& pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setParameter("PageSize", pageSize);
|
||||
setCoreParameter("PageSize", pageSize);
|
||||
}
|
||||
|
||||
long DescribeClassicLinkInstancesRequest::getOwnerId()const
|
||||
@@ -110,7 +110,7 @@ long DescribeClassicLinkInstancesRequest::getOwnerId()const
|
||||
void DescribeClassicLinkInstancesRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeClassicLinkInstancesRequest::getPageNumber()const
|
||||
@@ -121,6 +121,6 @@ std::string DescribeClassicLinkInstancesRequest::getPageNumber()const
|
||||
void DescribeClassicLinkInstancesRequest::setPageNumber(const std::string& pageNumber)
|
||||
{
|
||||
pageNumber_ = pageNumber;
|
||||
setParameter("PageNumber", pageNumber);
|
||||
setCoreParameter("PageNumber", pageNumber);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long DescribeCloudAssistantStatusRequest::getResourceOwnerId()const
|
||||
void DescribeCloudAssistantStatusRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long DescribeCloudAssistantStatusRequest::getCallerParentId()const
|
||||
@@ -44,7 +44,7 @@ long DescribeCloudAssistantStatusRequest::getCallerParentId()const
|
||||
void DescribeCloudAssistantStatusRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
bool DescribeCloudAssistantStatusRequest::getProxy_original_security_transport()const
|
||||
@@ -55,7 +55,7 @@ bool DescribeCloudAssistantStatusRequest::getProxy_original_security_transport()
|
||||
void DescribeCloudAssistantStatusRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeCloudAssistantStatusRequest::getProxy_original_source_ip()const
|
||||
@@ -66,7 +66,7 @@ std::string DescribeCloudAssistantStatusRequest::getProxy_original_source_ip()co
|
||||
void DescribeCloudAssistantStatusRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string DescribeCloudAssistantStatusRequest::getOwnerIdLoginEmail()const
|
||||
@@ -77,7 +77,7 @@ std::string DescribeCloudAssistantStatusRequest::getOwnerIdLoginEmail()const
|
||||
void DescribeCloudAssistantStatusRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string DescribeCloudAssistantStatusRequest::getCallerType()const
|
||||
@@ -88,7 +88,7 @@ std::string DescribeCloudAssistantStatusRequest::getCallerType()const
|
||||
void DescribeCloudAssistantStatusRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string DescribeCloudAssistantStatusRequest::getAccessKeyId()const
|
||||
@@ -99,7 +99,7 @@ std::string DescribeCloudAssistantStatusRequest::getAccessKeyId()const
|
||||
void DescribeCloudAssistantStatusRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string DescribeCloudAssistantStatusRequest::getSourceRegionId()const
|
||||
@@ -110,7 +110,7 @@ std::string DescribeCloudAssistantStatusRequest::getSourceRegionId()const
|
||||
void DescribeCloudAssistantStatusRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string DescribeCloudAssistantStatusRequest::getSecurityToken()const
|
||||
@@ -121,7 +121,7 @@ std::string DescribeCloudAssistantStatusRequest::getSecurityToken()const
|
||||
void DescribeCloudAssistantStatusRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string DescribeCloudAssistantStatusRequest::getRegionId()const
|
||||
@@ -132,7 +132,7 @@ std::string DescribeCloudAssistantStatusRequest::getRegionId()const
|
||||
void DescribeCloudAssistantStatusRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool DescribeCloudAssistantStatusRequest::getEnable()const
|
||||
@@ -143,7 +143,7 @@ bool DescribeCloudAssistantStatusRequest::getEnable()const
|
||||
void DescribeCloudAssistantStatusRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeCloudAssistantStatusRequest::getRequestContent()const
|
||||
@@ -154,7 +154,7 @@ std::string DescribeCloudAssistantStatusRequest::getRequestContent()const
|
||||
void DescribeCloudAssistantStatusRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string DescribeCloudAssistantStatusRequest::getCallerBidEmail()const
|
||||
@@ -165,7 +165,7 @@ std::string DescribeCloudAssistantStatusRequest::getCallerBidEmail()const
|
||||
void DescribeCloudAssistantStatusRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string DescribeCloudAssistantStatusRequest::getCallerUidEmail()const
|
||||
@@ -176,7 +176,7 @@ std::string DescribeCloudAssistantStatusRequest::getCallerUidEmail()const
|
||||
void DescribeCloudAssistantStatusRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long DescribeCloudAssistantStatusRequest::getCallerUid()const
|
||||
@@ -187,7 +187,7 @@ long DescribeCloudAssistantStatusRequest::getCallerUid()const
|
||||
void DescribeCloudAssistantStatusRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string DescribeCloudAssistantStatusRequest::getApp_ip()const
|
||||
@@ -198,7 +198,7 @@ std::string DescribeCloudAssistantStatusRequest::getApp_ip()const
|
||||
void DescribeCloudAssistantStatusRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string DescribeCloudAssistantStatusRequest::getResourceOwnerAccount()const
|
||||
@@ -209,7 +209,7 @@ std::string DescribeCloudAssistantStatusRequest::getResourceOwnerAccount()const
|
||||
void DescribeCloudAssistantStatusRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeCloudAssistantStatusRequest::getOwnerAccount()const
|
||||
@@ -220,7 +220,7 @@ std::string DescribeCloudAssistantStatusRequest::getOwnerAccount()const
|
||||
void DescribeCloudAssistantStatusRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeCloudAssistantStatusRequest::getCallerBid()const
|
||||
@@ -231,7 +231,7 @@ std::string DescribeCloudAssistantStatusRequest::getCallerBid()const
|
||||
void DescribeCloudAssistantStatusRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long DescribeCloudAssistantStatusRequest::getOwnerId()const
|
||||
@@ -242,7 +242,7 @@ long DescribeCloudAssistantStatusRequest::getOwnerId()const
|
||||
void DescribeCloudAssistantStatusRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool DescribeCloudAssistantStatusRequest::getProxy_trust_transport_info()const
|
||||
@@ -253,7 +253,7 @@ bool DescribeCloudAssistantStatusRequest::getProxy_trust_transport_info()const
|
||||
void DescribeCloudAssistantStatusRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DescribeCloudAssistantStatusRequest::getAk_mfa_present()const
|
||||
@@ -264,7 +264,7 @@ bool DescribeCloudAssistantStatusRequest::getAk_mfa_present()const
|
||||
void DescribeCloudAssistantStatusRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DescribeCloudAssistantStatusRequest::getSecurity_transport()const
|
||||
@@ -275,7 +275,7 @@ bool DescribeCloudAssistantStatusRequest::getSecurity_transport()const
|
||||
void DescribeCloudAssistantStatusRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::vector<std::string> DescribeCloudAssistantStatusRequest::getInstanceId()const
|
||||
@@ -287,7 +287,7 @@ void DescribeCloudAssistantStatusRequest::setInstanceId(const std::vector<std::s
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
for(int i = 0; i!= instanceId.size(); i++)
|
||||
setParameter("InstanceId."+ std::to_string(i), instanceId.at(i));
|
||||
setCoreParameter("InstanceId."+ std::to_string(i), instanceId.at(i));
|
||||
}
|
||||
|
||||
std::string DescribeCloudAssistantStatusRequest::getRequestId()const
|
||||
@@ -298,6 +298,6 @@ std::string DescribeCloudAssistantStatusRequest::getRequestId()const
|
||||
void DescribeCloudAssistantStatusRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string DescribeClustersRequest::getSourceRegionId()const
|
||||
void DescribeClustersRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
long DescribeClustersRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long DescribeClustersRequest::getResourceOwnerId()const
|
||||
void DescribeClustersRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DescribeClustersRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string DescribeClustersRequest::getResourceOwnerAccount()const
|
||||
void DescribeClustersRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeClustersRequest::getRegionId()const
|
||||
@@ -66,7 +66,7 @@ std::string DescribeClustersRequest::getRegionId()const
|
||||
void DescribeClustersRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string DescribeClustersRequest::getOwnerAccount()const
|
||||
@@ -77,7 +77,7 @@ std::string DescribeClustersRequest::getOwnerAccount()const
|
||||
void DescribeClustersRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
long DescribeClustersRequest::getOwnerId()const
|
||||
@@ -88,6 +88,6 @@ long DescribeClustersRequest::getOwnerId()const
|
||||
void DescribeClustersRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long DescribeCommandsRequest::getResourceOwnerId()const
|
||||
void DescribeCommandsRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long DescribeCommandsRequest::getCallerParentId()const
|
||||
@@ -44,7 +44,7 @@ long DescribeCommandsRequest::getCallerParentId()const
|
||||
void DescribeCommandsRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
bool DescribeCommandsRequest::getProxy_original_security_transport()const
|
||||
@@ -55,7 +55,7 @@ bool DescribeCommandsRequest::getProxy_original_security_transport()const
|
||||
void DescribeCommandsRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeCommandsRequest::getDescription()const
|
||||
@@ -66,7 +66,7 @@ std::string DescribeCommandsRequest::getDescription()const
|
||||
void DescribeCommandsRequest::setDescription(const std::string& description)
|
||||
{
|
||||
description_ = description;
|
||||
setParameter("Description", description);
|
||||
setCoreParameter("Description", description);
|
||||
}
|
||||
|
||||
std::string DescribeCommandsRequest::getProxy_original_source_ip()const
|
||||
@@ -77,7 +77,7 @@ std::string DescribeCommandsRequest::getProxy_original_source_ip()const
|
||||
void DescribeCommandsRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string DescribeCommandsRequest::getType()const
|
||||
@@ -88,7 +88,7 @@ std::string DescribeCommandsRequest::getType()const
|
||||
void DescribeCommandsRequest::setType(const std::string& type)
|
||||
{
|
||||
type_ = type;
|
||||
setParameter("Type", type);
|
||||
setCoreParameter("Type", type);
|
||||
}
|
||||
|
||||
std::string DescribeCommandsRequest::getCommandId()const
|
||||
@@ -99,7 +99,7 @@ std::string DescribeCommandsRequest::getCommandId()const
|
||||
void DescribeCommandsRequest::setCommandId(const std::string& commandId)
|
||||
{
|
||||
commandId_ = commandId;
|
||||
setParameter("CommandId", commandId);
|
||||
setCoreParameter("CommandId", commandId);
|
||||
}
|
||||
|
||||
std::string DescribeCommandsRequest::getOwnerIdLoginEmail()const
|
||||
@@ -110,7 +110,7 @@ std::string DescribeCommandsRequest::getOwnerIdLoginEmail()const
|
||||
void DescribeCommandsRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string DescribeCommandsRequest::getCallerType()const
|
||||
@@ -121,7 +121,7 @@ std::string DescribeCommandsRequest::getCallerType()const
|
||||
void DescribeCommandsRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
long DescribeCommandsRequest::getPageNumber()const
|
||||
@@ -132,7 +132,7 @@ long DescribeCommandsRequest::getPageNumber()const
|
||||
void DescribeCommandsRequest::setPageNumber(long pageNumber)
|
||||
{
|
||||
pageNumber_ = pageNumber;
|
||||
setParameter("PageNumber", std::to_string(pageNumber));
|
||||
setCoreParameter("PageNumber", std::to_string(pageNumber));
|
||||
}
|
||||
|
||||
std::string DescribeCommandsRequest::getAccessKeyId()const
|
||||
@@ -143,7 +143,7 @@ std::string DescribeCommandsRequest::getAccessKeyId()const
|
||||
void DescribeCommandsRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string DescribeCommandsRequest::getSourceRegionId()const
|
||||
@@ -154,7 +154,7 @@ std::string DescribeCommandsRequest::getSourceRegionId()const
|
||||
void DescribeCommandsRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string DescribeCommandsRequest::getSecurityToken()const
|
||||
@@ -165,7 +165,7 @@ std::string DescribeCommandsRequest::getSecurityToken()const
|
||||
void DescribeCommandsRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string DescribeCommandsRequest::getRegionId()const
|
||||
@@ -176,7 +176,7 @@ std::string DescribeCommandsRequest::getRegionId()const
|
||||
void DescribeCommandsRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool DescribeCommandsRequest::getEnable()const
|
||||
@@ -187,7 +187,7 @@ bool DescribeCommandsRequest::getEnable()const
|
||||
void DescribeCommandsRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeCommandsRequest::getRequestContent()const
|
||||
@@ -198,7 +198,7 @@ std::string DescribeCommandsRequest::getRequestContent()const
|
||||
void DescribeCommandsRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
long DescribeCommandsRequest::getPageSize()const
|
||||
@@ -209,7 +209,7 @@ long DescribeCommandsRequest::getPageSize()const
|
||||
void DescribeCommandsRequest::setPageSize(long pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string DescribeCommandsRequest::getCallerBidEmail()const
|
||||
@@ -220,7 +220,7 @@ std::string DescribeCommandsRequest::getCallerBidEmail()const
|
||||
void DescribeCommandsRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string DescribeCommandsRequest::getCallerUidEmail()const
|
||||
@@ -231,7 +231,7 @@ std::string DescribeCommandsRequest::getCallerUidEmail()const
|
||||
void DescribeCommandsRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long DescribeCommandsRequest::getCallerUid()const
|
||||
@@ -242,7 +242,7 @@ long DescribeCommandsRequest::getCallerUid()const
|
||||
void DescribeCommandsRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string DescribeCommandsRequest::getApp_ip()const
|
||||
@@ -253,7 +253,7 @@ std::string DescribeCommandsRequest::getApp_ip()const
|
||||
void DescribeCommandsRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string DescribeCommandsRequest::getResourceOwnerAccount()const
|
||||
@@ -264,7 +264,7 @@ std::string DescribeCommandsRequest::getResourceOwnerAccount()const
|
||||
void DescribeCommandsRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeCommandsRequest::getOwnerAccount()const
|
||||
@@ -275,7 +275,7 @@ std::string DescribeCommandsRequest::getOwnerAccount()const
|
||||
void DescribeCommandsRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeCommandsRequest::getCallerBid()const
|
||||
@@ -286,7 +286,7 @@ std::string DescribeCommandsRequest::getCallerBid()const
|
||||
void DescribeCommandsRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long DescribeCommandsRequest::getOwnerId()const
|
||||
@@ -297,7 +297,7 @@ long DescribeCommandsRequest::getOwnerId()const
|
||||
void DescribeCommandsRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool DescribeCommandsRequest::getProxy_trust_transport_info()const
|
||||
@@ -308,7 +308,7 @@ bool DescribeCommandsRequest::getProxy_trust_transport_info()const
|
||||
void DescribeCommandsRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DescribeCommandsRequest::getAk_mfa_present()const
|
||||
@@ -319,7 +319,7 @@ bool DescribeCommandsRequest::getAk_mfa_present()const
|
||||
void DescribeCommandsRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DescribeCommandsRequest::getSecurity_transport()const
|
||||
@@ -330,7 +330,7 @@ bool DescribeCommandsRequest::getSecurity_transport()const
|
||||
void DescribeCommandsRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeCommandsRequest::getRequestId()const
|
||||
@@ -341,7 +341,7 @@ std::string DescribeCommandsRequest::getRequestId()const
|
||||
void DescribeCommandsRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
std::string DescribeCommandsRequest::getName()const
|
||||
@@ -352,6 +352,6 @@ std::string DescribeCommandsRequest::getName()const
|
||||
void DescribeCommandsRequest::setName(const std::string& name)
|
||||
{
|
||||
name_ = name;
|
||||
setParameter("Name", name);
|
||||
setCoreParameter("Name", name);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string DescribeDedicatedHostAutoRenewRequest::getDedicatedHostIds()const
|
||||
void DescribeDedicatedHostAutoRenewRequest::setDedicatedHostIds(const std::string& dedicatedHostIds)
|
||||
{
|
||||
dedicatedHostIds_ = dedicatedHostIds;
|
||||
setParameter("DedicatedHostIds", dedicatedHostIds);
|
||||
setCoreParameter("DedicatedHostIds", dedicatedHostIds);
|
||||
}
|
||||
|
||||
long DescribeDedicatedHostAutoRenewRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long DescribeDedicatedHostAutoRenewRequest::getResourceOwnerId()const
|
||||
void DescribeDedicatedHostAutoRenewRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostAutoRenewRequest::getResourceOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string DescribeDedicatedHostAutoRenewRequest::getResourceOwnerAccount()cons
|
||||
void DescribeDedicatedHostAutoRenewRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostAutoRenewRequest::getRegionId()const
|
||||
@@ -66,7 +66,7 @@ std::string DescribeDedicatedHostAutoRenewRequest::getRegionId()const
|
||||
void DescribeDedicatedHostAutoRenewRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostAutoRenewRequest::getOwnerAccount()const
|
||||
@@ -77,7 +77,7 @@ std::string DescribeDedicatedHostAutoRenewRequest::getOwnerAccount()const
|
||||
void DescribeDedicatedHostAutoRenewRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
long DescribeDedicatedHostAutoRenewRequest::getOwnerId()const
|
||||
@@ -88,6 +88,6 @@ long DescribeDedicatedHostAutoRenewRequest::getOwnerId()const
|
||||
void DescribeDedicatedHostAutoRenewRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long DescribeDedicatedHostTypesRequest::getResourceOwnerId()const
|
||||
void DescribeDedicatedHostTypesRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long DescribeDedicatedHostTypesRequest::getCallerParentId()const
|
||||
@@ -44,7 +44,7 @@ long DescribeDedicatedHostTypesRequest::getCallerParentId()const
|
||||
void DescribeDedicatedHostTypesRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
bool DescribeDedicatedHostTypesRequest::getProxy_original_security_transport()const
|
||||
@@ -55,7 +55,7 @@ bool DescribeDedicatedHostTypesRequest::getProxy_original_security_transport()co
|
||||
void DescribeDedicatedHostTypesRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostTypesRequest::getProxy_original_source_ip()const
|
||||
@@ -66,7 +66,7 @@ std::string DescribeDedicatedHostTypesRequest::getProxy_original_source_ip()cons
|
||||
void DescribeDedicatedHostTypesRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostTypesRequest::getSupportedInstanceTypeFamily()const
|
||||
@@ -77,7 +77,7 @@ std::string DescribeDedicatedHostTypesRequest::getSupportedInstanceTypeFamily()c
|
||||
void DescribeDedicatedHostTypesRequest::setSupportedInstanceTypeFamily(const std::string& supportedInstanceTypeFamily)
|
||||
{
|
||||
supportedInstanceTypeFamily_ = supportedInstanceTypeFamily;
|
||||
setParameter("SupportedInstanceTypeFamily", supportedInstanceTypeFamily);
|
||||
setCoreParameter("SupportedInstanceTypeFamily", supportedInstanceTypeFamily);
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostTypesRequest::getOwnerIdLoginEmail()const
|
||||
@@ -88,7 +88,7 @@ std::string DescribeDedicatedHostTypesRequest::getOwnerIdLoginEmail()const
|
||||
void DescribeDedicatedHostTypesRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostTypesRequest::getCallerType()const
|
||||
@@ -99,7 +99,7 @@ std::string DescribeDedicatedHostTypesRequest::getCallerType()const
|
||||
void DescribeDedicatedHostTypesRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostTypesRequest::getAccessKeyId()const
|
||||
@@ -110,7 +110,7 @@ std::string DescribeDedicatedHostTypesRequest::getAccessKeyId()const
|
||||
void DescribeDedicatedHostTypesRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostTypesRequest::getSourceRegionId()const
|
||||
@@ -121,7 +121,7 @@ std::string DescribeDedicatedHostTypesRequest::getSourceRegionId()const
|
||||
void DescribeDedicatedHostTypesRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostTypesRequest::getSecurityToken()const
|
||||
@@ -132,7 +132,7 @@ std::string DescribeDedicatedHostTypesRequest::getSecurityToken()const
|
||||
void DescribeDedicatedHostTypesRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostTypesRequest::getRegionId()const
|
||||
@@ -143,7 +143,7 @@ std::string DescribeDedicatedHostTypesRequest::getRegionId()const
|
||||
void DescribeDedicatedHostTypesRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool DescribeDedicatedHostTypesRequest::getEnable()const
|
||||
@@ -154,7 +154,7 @@ bool DescribeDedicatedHostTypesRequest::getEnable()const
|
||||
void DescribeDedicatedHostTypesRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostTypesRequest::getRequestContent()const
|
||||
@@ -165,7 +165,7 @@ std::string DescribeDedicatedHostTypesRequest::getRequestContent()const
|
||||
void DescribeDedicatedHostTypesRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostTypesRequest::getCallerBidEmail()const
|
||||
@@ -176,7 +176,7 @@ std::string DescribeDedicatedHostTypesRequest::getCallerBidEmail()const
|
||||
void DescribeDedicatedHostTypesRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostTypesRequest::getDedicatedHostType()const
|
||||
@@ -187,7 +187,7 @@ std::string DescribeDedicatedHostTypesRequest::getDedicatedHostType()const
|
||||
void DescribeDedicatedHostTypesRequest::setDedicatedHostType(const std::string& dedicatedHostType)
|
||||
{
|
||||
dedicatedHostType_ = dedicatedHostType;
|
||||
setParameter("DedicatedHostType", dedicatedHostType);
|
||||
setCoreParameter("DedicatedHostType", dedicatedHostType);
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostTypesRequest::getCallerUidEmail()const
|
||||
@@ -198,7 +198,7 @@ std::string DescribeDedicatedHostTypesRequest::getCallerUidEmail()const
|
||||
void DescribeDedicatedHostTypesRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long DescribeDedicatedHostTypesRequest::getCallerUid()const
|
||||
@@ -209,7 +209,7 @@ long DescribeDedicatedHostTypesRequest::getCallerUid()const
|
||||
void DescribeDedicatedHostTypesRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostTypesRequest::getApp_ip()const
|
||||
@@ -220,7 +220,7 @@ std::string DescribeDedicatedHostTypesRequest::getApp_ip()const
|
||||
void DescribeDedicatedHostTypesRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostTypesRequest::getResourceOwnerAccount()const
|
||||
@@ -231,7 +231,7 @@ std::string DescribeDedicatedHostTypesRequest::getResourceOwnerAccount()const
|
||||
void DescribeDedicatedHostTypesRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostTypesRequest::getOwnerAccount()const
|
||||
@@ -242,7 +242,7 @@ std::string DescribeDedicatedHostTypesRequest::getOwnerAccount()const
|
||||
void DescribeDedicatedHostTypesRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostTypesRequest::getCallerBid()const
|
||||
@@ -253,7 +253,7 @@ std::string DescribeDedicatedHostTypesRequest::getCallerBid()const
|
||||
void DescribeDedicatedHostTypesRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long DescribeDedicatedHostTypesRequest::getOwnerId()const
|
||||
@@ -264,7 +264,7 @@ long DescribeDedicatedHostTypesRequest::getOwnerId()const
|
||||
void DescribeDedicatedHostTypesRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool DescribeDedicatedHostTypesRequest::getProxy_trust_transport_info()const
|
||||
@@ -275,7 +275,7 @@ bool DescribeDedicatedHostTypesRequest::getProxy_trust_transport_info()const
|
||||
void DescribeDedicatedHostTypesRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DescribeDedicatedHostTypesRequest::getAk_mfa_present()const
|
||||
@@ -286,7 +286,7 @@ bool DescribeDedicatedHostTypesRequest::getAk_mfa_present()const
|
||||
void DescribeDedicatedHostTypesRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DescribeDedicatedHostTypesRequest::getSecurity_transport()const
|
||||
@@ -297,7 +297,7 @@ bool DescribeDedicatedHostTypesRequest::getSecurity_transport()const
|
||||
void DescribeDedicatedHostTypesRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostTypesRequest::getRequestId()const
|
||||
@@ -308,6 +308,6 @@ std::string DescribeDedicatedHostTypesRequest::getRequestId()const
|
||||
void DescribeDedicatedHostTypesRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ std::string DescribeDedicatedHostsRequest::getDedicatedHostIds()const
|
||||
void DescribeDedicatedHostsRequest::setDedicatedHostIds(const std::string& dedicatedHostIds)
|
||||
{
|
||||
dedicatedHostIds_ = dedicatedHostIds;
|
||||
setParameter("DedicatedHostIds", dedicatedHostIds);
|
||||
setCoreParameter("DedicatedHostIds", dedicatedHostIds);
|
||||
}
|
||||
|
||||
long DescribeDedicatedHostsRequest::getResourceOwnerId()const
|
||||
@@ -44,7 +44,7 @@ long DescribeDedicatedHostsRequest::getResourceOwnerId()const
|
||||
void DescribeDedicatedHostsRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostsRequest::getDedicatedHostName()const
|
||||
@@ -55,7 +55,7 @@ std::string DescribeDedicatedHostsRequest::getDedicatedHostName()const
|
||||
void DescribeDedicatedHostsRequest::setDedicatedHostName(const std::string& dedicatedHostName)
|
||||
{
|
||||
dedicatedHostName_ = dedicatedHostName;
|
||||
setParameter("DedicatedHostName", dedicatedHostName);
|
||||
setCoreParameter("DedicatedHostName", dedicatedHostName);
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostsRequest::getResourceOwnerAccount()const
|
||||
@@ -66,7 +66,7 @@ std::string DescribeDedicatedHostsRequest::getResourceOwnerAccount()const
|
||||
void DescribeDedicatedHostsRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostsRequest::getOwnerAccount()const
|
||||
@@ -77,7 +77,7 @@ std::string DescribeDedicatedHostsRequest::getOwnerAccount()const
|
||||
void DescribeDedicatedHostsRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
long DescribeDedicatedHostsRequest::getOwnerId()const
|
||||
@@ -88,7 +88,7 @@ long DescribeDedicatedHostsRequest::getOwnerId()const
|
||||
void DescribeDedicatedHostsRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
int DescribeDedicatedHostsRequest::getPageNumber()const
|
||||
@@ -99,7 +99,7 @@ int DescribeDedicatedHostsRequest::getPageNumber()const
|
||||
void DescribeDedicatedHostsRequest::setPageNumber(int pageNumber)
|
||||
{
|
||||
pageNumber_ = pageNumber;
|
||||
setParameter("PageNumber", std::to_string(pageNumber));
|
||||
setCoreParameter("PageNumber", std::to_string(pageNumber));
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostsRequest::getResourceGroupId()const
|
||||
@@ -110,7 +110,7 @@ std::string DescribeDedicatedHostsRequest::getResourceGroupId()const
|
||||
void DescribeDedicatedHostsRequest::setResourceGroupId(const std::string& resourceGroupId)
|
||||
{
|
||||
resourceGroupId_ = resourceGroupId;
|
||||
setParameter("ResourceGroupId", resourceGroupId);
|
||||
setCoreParameter("ResourceGroupId", resourceGroupId);
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostsRequest::getLockReason()const
|
||||
@@ -121,7 +121,7 @@ std::string DescribeDedicatedHostsRequest::getLockReason()const
|
||||
void DescribeDedicatedHostsRequest::setLockReason(const std::string& lockReason)
|
||||
{
|
||||
lockReason_ = lockReason;
|
||||
setParameter("LockReason", lockReason);
|
||||
setCoreParameter("LockReason", lockReason);
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostsRequest::getRegionId()const
|
||||
@@ -132,7 +132,7 @@ std::string DescribeDedicatedHostsRequest::getRegionId()const
|
||||
void DescribeDedicatedHostsRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
int DescribeDedicatedHostsRequest::getPageSize()const
|
||||
@@ -143,7 +143,7 @@ int DescribeDedicatedHostsRequest::getPageSize()const
|
||||
void DescribeDedicatedHostsRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostsRequest::getZoneId()const
|
||||
@@ -154,7 +154,7 @@ std::string DescribeDedicatedHostsRequest::getZoneId()const
|
||||
void DescribeDedicatedHostsRequest::setZoneId(const std::string& zoneId)
|
||||
{
|
||||
zoneId_ = zoneId;
|
||||
setParameter("ZoneId", zoneId);
|
||||
setCoreParameter("ZoneId", zoneId);
|
||||
}
|
||||
|
||||
std::string DescribeDedicatedHostsRequest::getDedicatedHostType()const
|
||||
@@ -165,7 +165,7 @@ std::string DescribeDedicatedHostsRequest::getDedicatedHostType()const
|
||||
void DescribeDedicatedHostsRequest::setDedicatedHostType(const std::string& dedicatedHostType)
|
||||
{
|
||||
dedicatedHostType_ = dedicatedHostType;
|
||||
setParameter("DedicatedHostType", dedicatedHostType);
|
||||
setCoreParameter("DedicatedHostType", dedicatedHostType);
|
||||
}
|
||||
|
||||
std::vector<DescribeDedicatedHostsRequest::Tag> DescribeDedicatedHostsRequest::getTag()const
|
||||
@@ -180,8 +180,8 @@ void DescribeDedicatedHostsRequest::setTag(const std::vector<Tag>& tag)
|
||||
for(int i = 0; i!= tag.size(); i++) {
|
||||
auto obj = tag.at(i);
|
||||
std::string str ="Tag."+ std::to_string(i);
|
||||
setParameter(str + ".Value", obj.value);
|
||||
setParameter(str + ".Key", obj.key);
|
||||
setCoreParameter(str + ".Value", obj.value);
|
||||
setCoreParameter(str + ".Key", obj.key);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -193,6 +193,6 @@ std::string DescribeDedicatedHostsRequest::getStatus()const
|
||||
void DescribeDedicatedHostsRequest::setStatus(const std::string& status)
|
||||
{
|
||||
status_ = status;
|
||||
setParameter("Status", status);
|
||||
setCoreParameter("Status", status);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long DescribeDemandsRequest::getResourceOwnerId()const
|
||||
void DescribeDemandsRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long DescribeDemandsRequest::getCallerParentId()const
|
||||
@@ -44,7 +44,7 @@ long DescribeDemandsRequest::getCallerParentId()const
|
||||
void DescribeDemandsRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
bool DescribeDemandsRequest::getProxy_original_security_transport()const
|
||||
@@ -55,7 +55,7 @@ bool DescribeDemandsRequest::getProxy_original_security_transport()const
|
||||
void DescribeDemandsRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeDemandsRequest::getProxy_original_source_ip()const
|
||||
@@ -66,7 +66,7 @@ std::string DescribeDemandsRequest::getProxy_original_source_ip()const
|
||||
void DescribeDemandsRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string DescribeDemandsRequest::getOwnerIdLoginEmail()const
|
||||
@@ -77,7 +77,7 @@ std::string DescribeDemandsRequest::getOwnerIdLoginEmail()const
|
||||
void DescribeDemandsRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string DescribeDemandsRequest::getCallerType()const
|
||||
@@ -88,7 +88,7 @@ std::string DescribeDemandsRequest::getCallerType()const
|
||||
void DescribeDemandsRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
int DescribeDemandsRequest::getPageNumber()const
|
||||
@@ -99,7 +99,7 @@ int DescribeDemandsRequest::getPageNumber()const
|
||||
void DescribeDemandsRequest::setPageNumber(int pageNumber)
|
||||
{
|
||||
pageNumber_ = pageNumber;
|
||||
setParameter("PageNumber", std::to_string(pageNumber));
|
||||
setCoreParameter("PageNumber", std::to_string(pageNumber));
|
||||
}
|
||||
|
||||
std::string DescribeDemandsRequest::getAccessKeyId()const
|
||||
@@ -110,7 +110,7 @@ std::string DescribeDemandsRequest::getAccessKeyId()const
|
||||
void DescribeDemandsRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string DescribeDemandsRequest::getSecurityToken()const
|
||||
@@ -121,7 +121,7 @@ std::string DescribeDemandsRequest::getSecurityToken()const
|
||||
void DescribeDemandsRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string DescribeDemandsRequest::getRegionId()const
|
||||
@@ -132,7 +132,7 @@ std::string DescribeDemandsRequest::getRegionId()const
|
||||
void DescribeDemandsRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool DescribeDemandsRequest::getEnable()const
|
||||
@@ -143,7 +143,7 @@ bool DescribeDemandsRequest::getEnable()const
|
||||
void DescribeDemandsRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeDemandsRequest::getRequestContent()const
|
||||
@@ -154,7 +154,7 @@ std::string DescribeDemandsRequest::getRequestContent()const
|
||||
void DescribeDemandsRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
int DescribeDemandsRequest::getPageSize()const
|
||||
@@ -165,7 +165,7 @@ int DescribeDemandsRequest::getPageSize()const
|
||||
void DescribeDemandsRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string DescribeDemandsRequest::getCallerBidEmail()const
|
||||
@@ -176,7 +176,7 @@ std::string DescribeDemandsRequest::getCallerBidEmail()const
|
||||
void DescribeDemandsRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string DescribeDemandsRequest::getInstanceType()const
|
||||
@@ -187,7 +187,7 @@ std::string DescribeDemandsRequest::getInstanceType()const
|
||||
void DescribeDemandsRequest::setInstanceType(const std::string& instanceType)
|
||||
{
|
||||
instanceType_ = instanceType;
|
||||
setParameter("InstanceType", instanceType);
|
||||
setCoreParameter("InstanceType", instanceType);
|
||||
}
|
||||
|
||||
std::vector<DescribeDemandsRequest::Tag> DescribeDemandsRequest::getTag()const
|
||||
@@ -202,8 +202,8 @@ void DescribeDemandsRequest::setTag(const std::vector<Tag>& tag)
|
||||
for(int i = 0; i!= tag.size(); i++) {
|
||||
auto obj = tag.at(i);
|
||||
std::string str ="Tag."+ std::to_string(i);
|
||||
setParameter(str + ".Key", obj.key);
|
||||
setParameter(str + ".Value", obj.value);
|
||||
setCoreParameter(str + ".Key", obj.key);
|
||||
setCoreParameter(str + ".Value", obj.value);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -215,7 +215,7 @@ std::string DescribeDemandsRequest::getInstanceChargeType()const
|
||||
void DescribeDemandsRequest::setInstanceChargeType(const std::string& instanceChargeType)
|
||||
{
|
||||
instanceChargeType_ = instanceChargeType;
|
||||
setParameter("InstanceChargeType", instanceChargeType);
|
||||
setCoreParameter("InstanceChargeType", instanceChargeType);
|
||||
}
|
||||
|
||||
std::string DescribeDemandsRequest::getCallerUidEmail()const
|
||||
@@ -226,7 +226,7 @@ std::string DescribeDemandsRequest::getCallerUidEmail()const
|
||||
void DescribeDemandsRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long DescribeDemandsRequest::getCallerUid()const
|
||||
@@ -237,7 +237,7 @@ long DescribeDemandsRequest::getCallerUid()const
|
||||
void DescribeDemandsRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string DescribeDemandsRequest::getApp_ip()const
|
||||
@@ -248,7 +248,7 @@ std::string DescribeDemandsRequest::getApp_ip()const
|
||||
void DescribeDemandsRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
bool DescribeDemandsRequest::getDryRun()const
|
||||
@@ -259,7 +259,7 @@ bool DescribeDemandsRequest::getDryRun()const
|
||||
void DescribeDemandsRequest::setDryRun(bool dryRun)
|
||||
{
|
||||
dryRun_ = dryRun;
|
||||
setParameter("DryRun", dryRun ? "true" : "false");
|
||||
setCoreParameter("DryRun", dryRun ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeDemandsRequest::getResourceOwnerAccount()const
|
||||
@@ -270,7 +270,7 @@ std::string DescribeDemandsRequest::getResourceOwnerAccount()const
|
||||
void DescribeDemandsRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeDemandsRequest::getOwnerAccount()const
|
||||
@@ -281,7 +281,7 @@ std::string DescribeDemandsRequest::getOwnerAccount()const
|
||||
void DescribeDemandsRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeDemandsRequest::getInstanceTypeFamily()const
|
||||
@@ -292,7 +292,7 @@ std::string DescribeDemandsRequest::getInstanceTypeFamily()const
|
||||
void DescribeDemandsRequest::setInstanceTypeFamily(const std::string& instanceTypeFamily)
|
||||
{
|
||||
instanceTypeFamily_ = instanceTypeFamily;
|
||||
setParameter("InstanceTypeFamily", instanceTypeFamily);
|
||||
setCoreParameter("InstanceTypeFamily", instanceTypeFamily);
|
||||
}
|
||||
|
||||
std::string DescribeDemandsRequest::getCallerBid()const
|
||||
@@ -303,7 +303,7 @@ std::string DescribeDemandsRequest::getCallerBid()const
|
||||
void DescribeDemandsRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long DescribeDemandsRequest::getOwnerId()const
|
||||
@@ -314,7 +314,7 @@ long DescribeDemandsRequest::getOwnerId()const
|
||||
void DescribeDemandsRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::vector<std::string> DescribeDemandsRequest::getDemandStatus()const
|
||||
@@ -326,7 +326,7 @@ void DescribeDemandsRequest::setDemandStatus(const std::vector<std::string>& dem
|
||||
{
|
||||
demandStatus_ = demandStatus;
|
||||
for(int i = 0; i!= demandStatus.size(); i++)
|
||||
setParameter("DemandStatus."+ std::to_string(i), demandStatus.at(i));
|
||||
setCoreParameter("DemandStatus."+ std::to_string(i), demandStatus.at(i));
|
||||
}
|
||||
|
||||
bool DescribeDemandsRequest::getProxy_trust_transport_info()const
|
||||
@@ -337,7 +337,7 @@ bool DescribeDemandsRequest::getProxy_trust_transport_info()const
|
||||
void DescribeDemandsRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DescribeDemandsRequest::getAk_mfa_present()const
|
||||
@@ -348,7 +348,7 @@ bool DescribeDemandsRequest::getAk_mfa_present()const
|
||||
void DescribeDemandsRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DescribeDemandsRequest::getSecurity_transport()const
|
||||
@@ -359,7 +359,7 @@ bool DescribeDemandsRequest::getSecurity_transport()const
|
||||
void DescribeDemandsRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeDemandsRequest::getRequestId()const
|
||||
@@ -370,7 +370,7 @@ std::string DescribeDemandsRequest::getRequestId()const
|
||||
void DescribeDemandsRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
std::string DescribeDemandsRequest::getZoneId()const
|
||||
@@ -381,6 +381,6 @@ std::string DescribeDemandsRequest::getZoneId()const
|
||||
void DescribeDemandsRequest::setZoneId(const std::string& zoneId)
|
||||
{
|
||||
zoneId_ = zoneId;
|
||||
setParameter("ZoneId", zoneId);
|
||||
setCoreParameter("ZoneId", zoneId);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long DescribeDeploymentSetsRequest::getResourceOwnerId()const
|
||||
void DescribeDeploymentSetsRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DescribeDeploymentSetsRequest::getResourceOwnerAccount()const
|
||||
@@ -44,7 +44,7 @@ std::string DescribeDeploymentSetsRequest::getResourceOwnerAccount()const
|
||||
void DescribeDeploymentSetsRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeDeploymentSetsRequest::getOwnerAccount()const
|
||||
@@ -55,7 +55,7 @@ std::string DescribeDeploymentSetsRequest::getOwnerAccount()const
|
||||
void DescribeDeploymentSetsRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeDeploymentSetsRequest::getNetworkType()const
|
||||
@@ -66,7 +66,7 @@ std::string DescribeDeploymentSetsRequest::getNetworkType()const
|
||||
void DescribeDeploymentSetsRequest::setNetworkType(const std::string& networkType)
|
||||
{
|
||||
networkType_ = networkType;
|
||||
setParameter("NetworkType", networkType);
|
||||
setCoreParameter("NetworkType", networkType);
|
||||
}
|
||||
|
||||
std::string DescribeDeploymentSetsRequest::getDeploymentSetName()const
|
||||
@@ -77,7 +77,7 @@ std::string DescribeDeploymentSetsRequest::getDeploymentSetName()const
|
||||
void DescribeDeploymentSetsRequest::setDeploymentSetName(const std::string& deploymentSetName)
|
||||
{
|
||||
deploymentSetName_ = deploymentSetName;
|
||||
setParameter("DeploymentSetName", deploymentSetName);
|
||||
setCoreParameter("DeploymentSetName", deploymentSetName);
|
||||
}
|
||||
|
||||
long DescribeDeploymentSetsRequest::getOwnerId()const
|
||||
@@ -88,7 +88,7 @@ long DescribeDeploymentSetsRequest::getOwnerId()const
|
||||
void DescribeDeploymentSetsRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
int DescribeDeploymentSetsRequest::getPageNumber()const
|
||||
@@ -99,7 +99,7 @@ int DescribeDeploymentSetsRequest::getPageNumber()const
|
||||
void DescribeDeploymentSetsRequest::setPageNumber(int pageNumber)
|
||||
{
|
||||
pageNumber_ = pageNumber;
|
||||
setParameter("PageNumber", std::to_string(pageNumber));
|
||||
setCoreParameter("PageNumber", std::to_string(pageNumber));
|
||||
}
|
||||
|
||||
std::string DescribeDeploymentSetsRequest::getDeploymentSetIds()const
|
||||
@@ -110,7 +110,7 @@ std::string DescribeDeploymentSetsRequest::getDeploymentSetIds()const
|
||||
void DescribeDeploymentSetsRequest::setDeploymentSetIds(const std::string& deploymentSetIds)
|
||||
{
|
||||
deploymentSetIds_ = deploymentSetIds;
|
||||
setParameter("DeploymentSetIds", deploymentSetIds);
|
||||
setCoreParameter("DeploymentSetIds", deploymentSetIds);
|
||||
}
|
||||
|
||||
std::string DescribeDeploymentSetsRequest::getRegionId()const
|
||||
@@ -121,7 +121,7 @@ std::string DescribeDeploymentSetsRequest::getRegionId()const
|
||||
void DescribeDeploymentSetsRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
std::string DescribeDeploymentSetsRequest::getGranularity()const
|
||||
@@ -132,7 +132,7 @@ std::string DescribeDeploymentSetsRequest::getGranularity()const
|
||||
void DescribeDeploymentSetsRequest::setGranularity(const std::string& granularity)
|
||||
{
|
||||
granularity_ = granularity;
|
||||
setParameter("Granularity", granularity);
|
||||
setCoreParameter("Granularity", granularity);
|
||||
}
|
||||
|
||||
std::string DescribeDeploymentSetsRequest::getDomain()const
|
||||
@@ -143,7 +143,7 @@ std::string DescribeDeploymentSetsRequest::getDomain()const
|
||||
void DescribeDeploymentSetsRequest::setDomain(const std::string& domain)
|
||||
{
|
||||
domain_ = domain;
|
||||
setParameter("Domain", domain);
|
||||
setCoreParameter("Domain", domain);
|
||||
}
|
||||
|
||||
int DescribeDeploymentSetsRequest::getPageSize()const
|
||||
@@ -154,7 +154,7 @@ int DescribeDeploymentSetsRequest::getPageSize()const
|
||||
void DescribeDeploymentSetsRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string DescribeDeploymentSetsRequest::getStrategy()const
|
||||
@@ -165,6 +165,6 @@ std::string DescribeDeploymentSetsRequest::getStrategy()const
|
||||
void DescribeDeploymentSetsRequest::setStrategy(const std::string& strategy)
|
||||
{
|
||||
strategy_ = strategy;
|
||||
setParameter("Strategy", strategy);
|
||||
setCoreParameter("Strategy", strategy);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long DescribeDiskMonitorDataRequest::getResourceOwnerId()const
|
||||
void DescribeDiskMonitorDataRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long DescribeDiskMonitorDataRequest::getCallerParentId()const
|
||||
@@ -44,7 +44,7 @@ long DescribeDiskMonitorDataRequest::getCallerParentId()const
|
||||
void DescribeDiskMonitorDataRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
bool DescribeDiskMonitorDataRequest::getProxy_original_security_transport()const
|
||||
@@ -55,7 +55,7 @@ bool DescribeDiskMonitorDataRequest::getProxy_original_security_transport()const
|
||||
void DescribeDiskMonitorDataRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeDiskMonitorDataRequest::getStartTime()const
|
||||
@@ -66,7 +66,7 @@ std::string DescribeDiskMonitorDataRequest::getStartTime()const
|
||||
void DescribeDiskMonitorDataRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setParameter("StartTime", startTime);
|
||||
setCoreParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
std::string DescribeDiskMonitorDataRequest::getProxy_original_source_ip()const
|
||||
@@ -77,7 +77,7 @@ std::string DescribeDiskMonitorDataRequest::getProxy_original_source_ip()const
|
||||
void DescribeDiskMonitorDataRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string DescribeDiskMonitorDataRequest::getOwnerIdLoginEmail()const
|
||||
@@ -88,7 +88,7 @@ std::string DescribeDiskMonitorDataRequest::getOwnerIdLoginEmail()const
|
||||
void DescribeDiskMonitorDataRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string DescribeDiskMonitorDataRequest::getCallerType()const
|
||||
@@ -99,7 +99,7 @@ std::string DescribeDiskMonitorDataRequest::getCallerType()const
|
||||
void DescribeDiskMonitorDataRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
std::string DescribeDiskMonitorDataRequest::getAccessKeyId()const
|
||||
@@ -110,7 +110,7 @@ std::string DescribeDiskMonitorDataRequest::getAccessKeyId()const
|
||||
void DescribeDiskMonitorDataRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string DescribeDiskMonitorDataRequest::getSourceRegionId()const
|
||||
@@ -121,7 +121,7 @@ std::string DescribeDiskMonitorDataRequest::getSourceRegionId()const
|
||||
void DescribeDiskMonitorDataRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string DescribeDiskMonitorDataRequest::getSecurityToken()const
|
||||
@@ -132,7 +132,7 @@ std::string DescribeDiskMonitorDataRequest::getSecurityToken()const
|
||||
void DescribeDiskMonitorDataRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
bool DescribeDiskMonitorDataRequest::getEnable()const
|
||||
@@ -143,7 +143,7 @@ bool DescribeDiskMonitorDataRequest::getEnable()const
|
||||
void DescribeDiskMonitorDataRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeDiskMonitorDataRequest::getRequestContent()const
|
||||
@@ -154,7 +154,7 @@ std::string DescribeDiskMonitorDataRequest::getRequestContent()const
|
||||
void DescribeDiskMonitorDataRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
std::string DescribeDiskMonitorDataRequest::getCallerBidEmail()const
|
||||
@@ -165,7 +165,7 @@ std::string DescribeDiskMonitorDataRequest::getCallerBidEmail()const
|
||||
void DescribeDiskMonitorDataRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::string DescribeDiskMonitorDataRequest::getDiskId()const
|
||||
@@ -176,7 +176,7 @@ std::string DescribeDiskMonitorDataRequest::getDiskId()const
|
||||
void DescribeDiskMonitorDataRequest::setDiskId(const std::string& diskId)
|
||||
{
|
||||
diskId_ = diskId;
|
||||
setParameter("DiskId", diskId);
|
||||
setCoreParameter("DiskId", diskId);
|
||||
}
|
||||
|
||||
std::string DescribeDiskMonitorDataRequest::getCallerUidEmail()const
|
||||
@@ -187,7 +187,7 @@ std::string DescribeDiskMonitorDataRequest::getCallerUidEmail()const
|
||||
void DescribeDiskMonitorDataRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long DescribeDiskMonitorDataRequest::getCallerUid()const
|
||||
@@ -198,7 +198,7 @@ long DescribeDiskMonitorDataRequest::getCallerUid()const
|
||||
void DescribeDiskMonitorDataRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string DescribeDiskMonitorDataRequest::getApp_ip()const
|
||||
@@ -209,7 +209,7 @@ std::string DescribeDiskMonitorDataRequest::getApp_ip()const
|
||||
void DescribeDiskMonitorDataRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
int DescribeDiskMonitorDataRequest::getPeriod()const
|
||||
@@ -220,7 +220,7 @@ int DescribeDiskMonitorDataRequest::getPeriod()const
|
||||
void DescribeDiskMonitorDataRequest::setPeriod(int period)
|
||||
{
|
||||
period_ = period;
|
||||
setParameter("Period", std::to_string(period));
|
||||
setCoreParameter("Period", std::to_string(period));
|
||||
}
|
||||
|
||||
std::string DescribeDiskMonitorDataRequest::getResourceOwnerAccount()const
|
||||
@@ -231,7 +231,7 @@ std::string DescribeDiskMonitorDataRequest::getResourceOwnerAccount()const
|
||||
void DescribeDiskMonitorDataRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeDiskMonitorDataRequest::getOwnerAccount()const
|
||||
@@ -242,7 +242,7 @@ std::string DescribeDiskMonitorDataRequest::getOwnerAccount()const
|
||||
void DescribeDiskMonitorDataRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeDiskMonitorDataRequest::getEndTime()const
|
||||
@@ -253,7 +253,7 @@ std::string DescribeDiskMonitorDataRequest::getEndTime()const
|
||||
void DescribeDiskMonitorDataRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setParameter("EndTime", endTime);
|
||||
setCoreParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
std::string DescribeDiskMonitorDataRequest::getCallerBid()const
|
||||
@@ -264,7 +264,7 @@ std::string DescribeDiskMonitorDataRequest::getCallerBid()const
|
||||
void DescribeDiskMonitorDataRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long DescribeDiskMonitorDataRequest::getOwnerId()const
|
||||
@@ -275,7 +275,7 @@ long DescribeDiskMonitorDataRequest::getOwnerId()const
|
||||
void DescribeDiskMonitorDataRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool DescribeDiskMonitorDataRequest::getProxy_trust_transport_info()const
|
||||
@@ -286,7 +286,7 @@ bool DescribeDiskMonitorDataRequest::getProxy_trust_transport_info()const
|
||||
void DescribeDiskMonitorDataRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DescribeDiskMonitorDataRequest::getAk_mfa_present()const
|
||||
@@ -297,7 +297,7 @@ bool DescribeDiskMonitorDataRequest::getAk_mfa_present()const
|
||||
void DescribeDiskMonitorDataRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DescribeDiskMonitorDataRequest::getSecurity_transport()const
|
||||
@@ -308,7 +308,7 @@ bool DescribeDiskMonitorDataRequest::getSecurity_transport()const
|
||||
void DescribeDiskMonitorDataRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeDiskMonitorDataRequest::getRequestId()const
|
||||
@@ -319,6 +319,6 @@ std::string DescribeDiskMonitorDataRequest::getRequestId()const
|
||||
void DescribeDiskMonitorDataRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ void DescribeDisksFullStatusRequest::setEventId(const std::vector<std::string>&
|
||||
{
|
||||
eventId_ = eventId;
|
||||
for(int i = 0; i!= eventId.size(); i++)
|
||||
setParameter("EventId."+ std::to_string(i), eventId.at(i));
|
||||
setCoreParameter("EventId."+ std::to_string(i), eventId.at(i));
|
||||
}
|
||||
|
||||
long DescribeDisksFullStatusRequest::getResourceOwnerId()const
|
||||
@@ -45,7 +45,7 @@ long DescribeDisksFullStatusRequest::getResourceOwnerId()const
|
||||
void DescribeDisksFullStatusRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
long DescribeDisksFullStatusRequest::getCallerParentId()const
|
||||
@@ -56,7 +56,7 @@ long DescribeDisksFullStatusRequest::getCallerParentId()const
|
||||
void DescribeDisksFullStatusRequest::setCallerParentId(long callerParentId)
|
||||
{
|
||||
callerParentId_ = callerParentId;
|
||||
setParameter("CallerParentId", std::to_string(callerParentId));
|
||||
setCoreParameter("CallerParentId", std::to_string(callerParentId));
|
||||
}
|
||||
|
||||
bool DescribeDisksFullStatusRequest::getProxy_original_security_transport()const
|
||||
@@ -67,7 +67,7 @@ bool DescribeDisksFullStatusRequest::getProxy_original_security_transport()const
|
||||
void DescribeDisksFullStatusRequest::setProxy_original_security_transport(bool proxy_original_security_transport)
|
||||
{
|
||||
proxy_original_security_transport_ = proxy_original_security_transport;
|
||||
setParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
setCoreParameter("Proxy_original_security_transport", proxy_original_security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeDisksFullStatusRequest::getProxy_original_source_ip()const
|
||||
@@ -78,7 +78,7 @@ std::string DescribeDisksFullStatusRequest::getProxy_original_source_ip()const
|
||||
void DescribeDisksFullStatusRequest::setProxy_original_source_ip(const std::string& proxy_original_source_ip)
|
||||
{
|
||||
proxy_original_source_ip_ = proxy_original_source_ip;
|
||||
setParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
setCoreParameter("Proxy_original_source_ip", proxy_original_source_ip);
|
||||
}
|
||||
|
||||
std::string DescribeDisksFullStatusRequest::getOwnerIdLoginEmail()const
|
||||
@@ -89,7 +89,7 @@ std::string DescribeDisksFullStatusRequest::getOwnerIdLoginEmail()const
|
||||
void DescribeDisksFullStatusRequest::setOwnerIdLoginEmail(const std::string& ownerIdLoginEmail)
|
||||
{
|
||||
ownerIdLoginEmail_ = ownerIdLoginEmail;
|
||||
setParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
setCoreParameter("OwnerIdLoginEmail", ownerIdLoginEmail);
|
||||
}
|
||||
|
||||
std::string DescribeDisksFullStatusRequest::getCallerType()const
|
||||
@@ -100,7 +100,7 @@ std::string DescribeDisksFullStatusRequest::getCallerType()const
|
||||
void DescribeDisksFullStatusRequest::setCallerType(const std::string& callerType)
|
||||
{
|
||||
callerType_ = callerType;
|
||||
setParameter("CallerType", callerType);
|
||||
setCoreParameter("CallerType", callerType);
|
||||
}
|
||||
|
||||
int DescribeDisksFullStatusRequest::getPageNumber()const
|
||||
@@ -111,7 +111,7 @@ int DescribeDisksFullStatusRequest::getPageNumber()const
|
||||
void DescribeDisksFullStatusRequest::setPageNumber(int pageNumber)
|
||||
{
|
||||
pageNumber_ = pageNumber;
|
||||
setParameter("PageNumber", std::to_string(pageNumber));
|
||||
setCoreParameter("PageNumber", std::to_string(pageNumber));
|
||||
}
|
||||
|
||||
std::string DescribeDisksFullStatusRequest::getAccessKeyId()const
|
||||
@@ -122,7 +122,7 @@ std::string DescribeDisksFullStatusRequest::getAccessKeyId()const
|
||||
void DescribeDisksFullStatusRequest::setAccessKeyId(const std::string& accessKeyId)
|
||||
{
|
||||
accessKeyId_ = accessKeyId;
|
||||
setParameter("AccessKeyId", accessKeyId);
|
||||
setCoreParameter("AccessKeyId", accessKeyId);
|
||||
}
|
||||
|
||||
std::string DescribeDisksFullStatusRequest::getSourceRegionId()const
|
||||
@@ -133,7 +133,7 @@ std::string DescribeDisksFullStatusRequest::getSourceRegionId()const
|
||||
void DescribeDisksFullStatusRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string DescribeDisksFullStatusRequest::getEventTimeStart()const
|
||||
@@ -144,7 +144,7 @@ std::string DescribeDisksFullStatusRequest::getEventTimeStart()const
|
||||
void DescribeDisksFullStatusRequest::setEventTimeStart(const std::string& eventTimeStart)
|
||||
{
|
||||
eventTimeStart_ = eventTimeStart;
|
||||
setParameter("EventTimeStart", eventTimeStart);
|
||||
setCoreParameter("EventTimeStart", eventTimeStart);
|
||||
}
|
||||
|
||||
std::string DescribeDisksFullStatusRequest::getSecurityToken()const
|
||||
@@ -155,7 +155,7 @@ std::string DescribeDisksFullStatusRequest::getSecurityToken()const
|
||||
void DescribeDisksFullStatusRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setParameter("SecurityToken", securityToken);
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string DescribeDisksFullStatusRequest::getRegionId()const
|
||||
@@ -166,7 +166,7 @@ std::string DescribeDisksFullStatusRequest::getRegionId()const
|
||||
void DescribeDisksFullStatusRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
bool DescribeDisksFullStatusRequest::getEnable()const
|
||||
@@ -177,7 +177,7 @@ bool DescribeDisksFullStatusRequest::getEnable()const
|
||||
void DescribeDisksFullStatusRequest::setEnable(bool enable)
|
||||
{
|
||||
enable_ = enable;
|
||||
setParameter("Enable", enable ? "true" : "false");
|
||||
setCoreParameter("Enable", enable ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeDisksFullStatusRequest::getRequestContent()const
|
||||
@@ -188,7 +188,7 @@ std::string DescribeDisksFullStatusRequest::getRequestContent()const
|
||||
void DescribeDisksFullStatusRequest::setRequestContent(const std::string& requestContent)
|
||||
{
|
||||
requestContent_ = requestContent;
|
||||
setParameter("RequestContent", requestContent);
|
||||
setCoreParameter("RequestContent", requestContent);
|
||||
}
|
||||
|
||||
int DescribeDisksFullStatusRequest::getPageSize()const
|
||||
@@ -199,7 +199,7 @@ int DescribeDisksFullStatusRequest::getPageSize()const
|
||||
void DescribeDisksFullStatusRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string DescribeDisksFullStatusRequest::getCallerBidEmail()const
|
||||
@@ -210,7 +210,7 @@ std::string DescribeDisksFullStatusRequest::getCallerBidEmail()const
|
||||
void DescribeDisksFullStatusRequest::setCallerBidEmail(const std::string& callerBidEmail)
|
||||
{
|
||||
callerBidEmail_ = callerBidEmail;
|
||||
setParameter("CallerBidEmail", callerBidEmail);
|
||||
setCoreParameter("CallerBidEmail", callerBidEmail);
|
||||
}
|
||||
|
||||
std::vector<std::string> DescribeDisksFullStatusRequest::getDiskId()const
|
||||
@@ -222,7 +222,7 @@ void DescribeDisksFullStatusRequest::setDiskId(const std::vector<std::string>& d
|
||||
{
|
||||
diskId_ = diskId;
|
||||
for(int i = 0; i!= diskId.size(); i++)
|
||||
setParameter("DiskId."+ std::to_string(i), diskId.at(i));
|
||||
setCoreParameter("DiskId."+ std::to_string(i), diskId.at(i));
|
||||
}
|
||||
|
||||
std::string DescribeDisksFullStatusRequest::getCallerUidEmail()const
|
||||
@@ -233,7 +233,7 @@ std::string DescribeDisksFullStatusRequest::getCallerUidEmail()const
|
||||
void DescribeDisksFullStatusRequest::setCallerUidEmail(const std::string& callerUidEmail)
|
||||
{
|
||||
callerUidEmail_ = callerUidEmail;
|
||||
setParameter("CallerUidEmail", callerUidEmail);
|
||||
setCoreParameter("CallerUidEmail", callerUidEmail);
|
||||
}
|
||||
|
||||
long DescribeDisksFullStatusRequest::getCallerUid()const
|
||||
@@ -244,7 +244,7 @@ long DescribeDisksFullStatusRequest::getCallerUid()const
|
||||
void DescribeDisksFullStatusRequest::setCallerUid(long callerUid)
|
||||
{
|
||||
callerUid_ = callerUid;
|
||||
setParameter("CallerUid", std::to_string(callerUid));
|
||||
setCoreParameter("CallerUid", std::to_string(callerUid));
|
||||
}
|
||||
|
||||
std::string DescribeDisksFullStatusRequest::getApp_ip()const
|
||||
@@ -255,7 +255,7 @@ std::string DescribeDisksFullStatusRequest::getApp_ip()const
|
||||
void DescribeDisksFullStatusRequest::setApp_ip(const std::string& app_ip)
|
||||
{
|
||||
app_ip_ = app_ip;
|
||||
setParameter("App_ip", app_ip);
|
||||
setCoreParameter("App_ip", app_ip);
|
||||
}
|
||||
|
||||
std::string DescribeDisksFullStatusRequest::getResourceOwnerAccount()const
|
||||
@@ -266,7 +266,7 @@ std::string DescribeDisksFullStatusRequest::getResourceOwnerAccount()const
|
||||
void DescribeDisksFullStatusRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeDisksFullStatusRequest::getOwnerAccount()const
|
||||
@@ -277,7 +277,7 @@ std::string DescribeDisksFullStatusRequest::getOwnerAccount()const
|
||||
void DescribeDisksFullStatusRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeDisksFullStatusRequest::getCallerBid()const
|
||||
@@ -288,7 +288,7 @@ std::string DescribeDisksFullStatusRequest::getCallerBid()const
|
||||
void DescribeDisksFullStatusRequest::setCallerBid(const std::string& callerBid)
|
||||
{
|
||||
callerBid_ = callerBid;
|
||||
setParameter("CallerBid", callerBid);
|
||||
setCoreParameter("CallerBid", callerBid);
|
||||
}
|
||||
|
||||
long DescribeDisksFullStatusRequest::getOwnerId()const
|
||||
@@ -299,7 +299,7 @@ long DescribeDisksFullStatusRequest::getOwnerId()const
|
||||
void DescribeDisksFullStatusRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
bool DescribeDisksFullStatusRequest::getProxy_trust_transport_info()const
|
||||
@@ -310,7 +310,7 @@ bool DescribeDisksFullStatusRequest::getProxy_trust_transport_info()const
|
||||
void DescribeDisksFullStatusRequest::setProxy_trust_transport_info(bool proxy_trust_transport_info)
|
||||
{
|
||||
proxy_trust_transport_info_ = proxy_trust_transport_info;
|
||||
setParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
setCoreParameter("Proxy_trust_transport_info", proxy_trust_transport_info ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DescribeDisksFullStatusRequest::getAk_mfa_present()const
|
||||
@@ -321,7 +321,7 @@ bool DescribeDisksFullStatusRequest::getAk_mfa_present()const
|
||||
void DescribeDisksFullStatusRequest::setAk_mfa_present(bool ak_mfa_present)
|
||||
{
|
||||
ak_mfa_present_ = ak_mfa_present;
|
||||
setParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
setCoreParameter("Ak_mfa_present", ak_mfa_present ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeDisksFullStatusRequest::getEventTimeEnd()const
|
||||
@@ -332,7 +332,7 @@ std::string DescribeDisksFullStatusRequest::getEventTimeEnd()const
|
||||
void DescribeDisksFullStatusRequest::setEventTimeEnd(const std::string& eventTimeEnd)
|
||||
{
|
||||
eventTimeEnd_ = eventTimeEnd;
|
||||
setParameter("EventTimeEnd", eventTimeEnd);
|
||||
setCoreParameter("EventTimeEnd", eventTimeEnd);
|
||||
}
|
||||
|
||||
bool DescribeDisksFullStatusRequest::getSecurity_transport()const
|
||||
@@ -343,7 +343,7 @@ bool DescribeDisksFullStatusRequest::getSecurity_transport()const
|
||||
void DescribeDisksFullStatusRequest::setSecurity_transport(bool security_transport)
|
||||
{
|
||||
security_transport_ = security_transport;
|
||||
setParameter("Security_transport", security_transport ? "true" : "false");
|
||||
setCoreParameter("Security_transport", security_transport ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeDisksFullStatusRequest::getRequestId()const
|
||||
@@ -354,7 +354,7 @@ std::string DescribeDisksFullStatusRequest::getRequestId()const
|
||||
void DescribeDisksFullStatusRequest::setRequestId(const std::string& requestId)
|
||||
{
|
||||
requestId_ = requestId;
|
||||
setParameter("RequestId", requestId);
|
||||
setCoreParameter("RequestId", requestId);
|
||||
}
|
||||
|
||||
std::string DescribeDisksFullStatusRequest::getHealthStatus()const
|
||||
@@ -365,7 +365,7 @@ std::string DescribeDisksFullStatusRequest::getHealthStatus()const
|
||||
void DescribeDisksFullStatusRequest::setHealthStatus(const std::string& healthStatus)
|
||||
{
|
||||
healthStatus_ = healthStatus;
|
||||
setParameter("HealthStatus", healthStatus);
|
||||
setCoreParameter("HealthStatus", healthStatus);
|
||||
}
|
||||
|
||||
std::string DescribeDisksFullStatusRequest::getEventType()const
|
||||
@@ -376,7 +376,7 @@ std::string DescribeDisksFullStatusRequest::getEventType()const
|
||||
void DescribeDisksFullStatusRequest::setEventType(const std::string& eventType)
|
||||
{
|
||||
eventType_ = eventType;
|
||||
setParameter("EventType", eventType);
|
||||
setCoreParameter("EventType", eventType);
|
||||
}
|
||||
|
||||
std::string DescribeDisksFullStatusRequest::getStatus()const
|
||||
@@ -387,6 +387,6 @@ std::string DescribeDisksFullStatusRequest::getStatus()const
|
||||
void DescribeDisksFullStatusRequest::setStatus(const std::string& status)
|
||||
{
|
||||
status_ = status;
|
||||
setParameter("Status", status);
|
||||
setCoreParameter("Status", status);
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ long DescribeDisksRequest::getResourceOwnerId()const
|
||||
void DescribeDisksRequest::setResourceOwnerId(long resourceOwnerId)
|
||||
{
|
||||
resourceOwnerId_ = resourceOwnerId;
|
||||
setParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
setCoreParameter("ResourceOwnerId", std::to_string(resourceOwnerId));
|
||||
}
|
||||
|
||||
std::string DescribeDisksRequest::getSnapshotId()const
|
||||
@@ -44,7 +44,7 @@ std::string DescribeDisksRequest::getSnapshotId()const
|
||||
void DescribeDisksRequest::setSnapshotId(const std::string& snapshotId)
|
||||
{
|
||||
snapshotId_ = snapshotId;
|
||||
setParameter("SnapshotId", snapshotId);
|
||||
setCoreParameter("SnapshotId", snapshotId);
|
||||
}
|
||||
|
||||
std::string DescribeDisksRequest::getFilter2Value()const
|
||||
@@ -55,7 +55,7 @@ std::string DescribeDisksRequest::getFilter2Value()const
|
||||
void DescribeDisksRequest::setFilter2Value(const std::string& filter2Value)
|
||||
{
|
||||
filter2Value_ = filter2Value;
|
||||
setParameter("Filter2Value", filter2Value);
|
||||
setCoreParameter("Filter2Value", filter2Value);
|
||||
}
|
||||
|
||||
std::string DescribeDisksRequest::getAutoSnapshotPolicyId()const
|
||||
@@ -66,7 +66,7 @@ std::string DescribeDisksRequest::getAutoSnapshotPolicyId()const
|
||||
void DescribeDisksRequest::setAutoSnapshotPolicyId(const std::string& autoSnapshotPolicyId)
|
||||
{
|
||||
autoSnapshotPolicyId_ = autoSnapshotPolicyId;
|
||||
setParameter("AutoSnapshotPolicyId", autoSnapshotPolicyId);
|
||||
setCoreParameter("AutoSnapshotPolicyId", autoSnapshotPolicyId);
|
||||
}
|
||||
|
||||
int DescribeDisksRequest::getPageNumber()const
|
||||
@@ -77,7 +77,7 @@ int DescribeDisksRequest::getPageNumber()const
|
||||
void DescribeDisksRequest::setPageNumber(int pageNumber)
|
||||
{
|
||||
pageNumber_ = pageNumber;
|
||||
setParameter("PageNumber", std::to_string(pageNumber));
|
||||
setCoreParameter("PageNumber", std::to_string(pageNumber));
|
||||
}
|
||||
|
||||
std::string DescribeDisksRequest::getSourceRegionId()const
|
||||
@@ -88,7 +88,7 @@ std::string DescribeDisksRequest::getSourceRegionId()const
|
||||
void DescribeDisksRequest::setSourceRegionId(const std::string& sourceRegionId)
|
||||
{
|
||||
sourceRegionId_ = sourceRegionId;
|
||||
setParameter("SourceRegionId", sourceRegionId);
|
||||
setCoreParameter("SourceRegionId", sourceRegionId);
|
||||
}
|
||||
|
||||
std::string DescribeDisksRequest::getDiskName()const
|
||||
@@ -99,7 +99,7 @@ std::string DescribeDisksRequest::getDiskName()const
|
||||
void DescribeDisksRequest::setDiskName(const std::string& diskName)
|
||||
{
|
||||
diskName_ = diskName;
|
||||
setParameter("DiskName", diskName);
|
||||
setCoreParameter("DiskName", diskName);
|
||||
}
|
||||
|
||||
bool DescribeDisksRequest::getDeleteAutoSnapshot()const
|
||||
@@ -110,7 +110,7 @@ bool DescribeDisksRequest::getDeleteAutoSnapshot()const
|
||||
void DescribeDisksRequest::setDeleteAutoSnapshot(bool deleteAutoSnapshot)
|
||||
{
|
||||
deleteAutoSnapshot_ = deleteAutoSnapshot;
|
||||
setParameter("DeleteAutoSnapshot", deleteAutoSnapshot ? "true" : "false");
|
||||
setCoreParameter("DeleteAutoSnapshot", deleteAutoSnapshot ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeDisksRequest::getResourceGroupId()const
|
||||
@@ -121,7 +121,7 @@ std::string DescribeDisksRequest::getResourceGroupId()const
|
||||
void DescribeDisksRequest::setResourceGroupId(const std::string& resourceGroupId)
|
||||
{
|
||||
resourceGroupId_ = resourceGroupId;
|
||||
setParameter("ResourceGroupId", resourceGroupId);
|
||||
setCoreParameter("ResourceGroupId", resourceGroupId);
|
||||
}
|
||||
|
||||
std::string DescribeDisksRequest::getDiskChargeType()const
|
||||
@@ -132,7 +132,7 @@ std::string DescribeDisksRequest::getDiskChargeType()const
|
||||
void DescribeDisksRequest::setDiskChargeType(const std::string& diskChargeType)
|
||||
{
|
||||
diskChargeType_ = diskChargeType;
|
||||
setParameter("DiskChargeType", diskChargeType);
|
||||
setCoreParameter("DiskChargeType", diskChargeType);
|
||||
}
|
||||
|
||||
std::string DescribeDisksRequest::getLockReason()const
|
||||
@@ -143,7 +143,7 @@ std::string DescribeDisksRequest::getLockReason()const
|
||||
void DescribeDisksRequest::setLockReason(const std::string& lockReason)
|
||||
{
|
||||
lockReason_ = lockReason;
|
||||
setParameter("LockReason", lockReason);
|
||||
setCoreParameter("LockReason", lockReason);
|
||||
}
|
||||
|
||||
std::string DescribeDisksRequest::getFilter1Key()const
|
||||
@@ -154,7 +154,7 @@ std::string DescribeDisksRequest::getFilter1Key()const
|
||||
void DescribeDisksRequest::setFilter1Key(const std::string& filter1Key)
|
||||
{
|
||||
filter1Key_ = filter1Key;
|
||||
setParameter("Filter1Key", filter1Key);
|
||||
setCoreParameter("Filter1Key", filter1Key);
|
||||
}
|
||||
|
||||
std::string DescribeDisksRequest::getRegionId()const
|
||||
@@ -165,7 +165,7 @@ std::string DescribeDisksRequest::getRegionId()const
|
||||
void DescribeDisksRequest::setRegionId(const std::string& regionId)
|
||||
{
|
||||
regionId_ = regionId;
|
||||
setParameter("RegionId", regionId);
|
||||
setCoreParameter("RegionId", regionId);
|
||||
}
|
||||
|
||||
int DescribeDisksRequest::getPageSize()const
|
||||
@@ -176,7 +176,7 @@ int DescribeDisksRequest::getPageSize()const
|
||||
void DescribeDisksRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string DescribeDisksRequest::getDiskIds()const
|
||||
@@ -187,7 +187,7 @@ std::string DescribeDisksRequest::getDiskIds()const
|
||||
void DescribeDisksRequest::setDiskIds(const std::string& diskIds)
|
||||
{
|
||||
diskIds_ = diskIds;
|
||||
setParameter("DiskIds", diskIds);
|
||||
setCoreParameter("DiskIds", diskIds);
|
||||
}
|
||||
|
||||
std::vector<DescribeDisksRequest::Tag> DescribeDisksRequest::getTag()const
|
||||
@@ -202,8 +202,8 @@ void DescribeDisksRequest::setTag(const std::vector<Tag>& tag)
|
||||
for(int i = 0; i!= tag.size(); i++) {
|
||||
auto obj = tag.at(i);
|
||||
std::string str ="Tag."+ std::to_string(i);
|
||||
setParameter(str + ".Value", obj.value);
|
||||
setParameter(str + ".Key", obj.key);
|
||||
setCoreParameter(str + ".Value", obj.value);
|
||||
setCoreParameter(str + ".Key", obj.key);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -215,7 +215,7 @@ bool DescribeDisksRequest::getDeleteWithInstance()const
|
||||
void DescribeDisksRequest::setDeleteWithInstance(bool deleteWithInstance)
|
||||
{
|
||||
deleteWithInstance_ = deleteWithInstance;
|
||||
setParameter("DeleteWithInstance", deleteWithInstance ? "true" : "false");
|
||||
setCoreParameter("DeleteWithInstance", deleteWithInstance ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DescribeDisksRequest::getEnableAutoSnapshot()const
|
||||
@@ -226,7 +226,7 @@ bool DescribeDisksRequest::getEnableAutoSnapshot()const
|
||||
void DescribeDisksRequest::setEnableAutoSnapshot(bool enableAutoSnapshot)
|
||||
{
|
||||
enableAutoSnapshot_ = enableAutoSnapshot;
|
||||
setParameter("EnableAutoSnapshot", enableAutoSnapshot ? "true" : "false");
|
||||
setCoreParameter("EnableAutoSnapshot", enableAutoSnapshot ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DescribeDisksRequest::getDryRun()const
|
||||
@@ -237,7 +237,7 @@ bool DescribeDisksRequest::getDryRun()const
|
||||
void DescribeDisksRequest::setDryRun(bool dryRun)
|
||||
{
|
||||
dryRun_ = dryRun;
|
||||
setParameter("DryRun", dryRun ? "true" : "false");
|
||||
setCoreParameter("DryRun", dryRun ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeDisksRequest::getResourceOwnerAccount()const
|
||||
@@ -248,7 +248,7 @@ std::string DescribeDisksRequest::getResourceOwnerAccount()const
|
||||
void DescribeDisksRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
|
||||
{
|
||||
resourceOwnerAccount_ = resourceOwnerAccount;
|
||||
setParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeDisksRequest::getOwnerAccount()const
|
||||
@@ -259,7 +259,7 @@ std::string DescribeDisksRequest::getOwnerAccount()const
|
||||
void DescribeDisksRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DescribeDisksRequest::getFilter1Value()const
|
||||
@@ -270,7 +270,7 @@ std::string DescribeDisksRequest::getFilter1Value()const
|
||||
void DescribeDisksRequest::setFilter1Value(const std::string& filter1Value)
|
||||
{
|
||||
filter1Value_ = filter1Value;
|
||||
setParameter("Filter1Value", filter1Value);
|
||||
setCoreParameter("Filter1Value", filter1Value);
|
||||
}
|
||||
|
||||
bool DescribeDisksRequest::getPortable()const
|
||||
@@ -281,7 +281,7 @@ bool DescribeDisksRequest::getPortable()const
|
||||
void DescribeDisksRequest::setPortable(bool portable)
|
||||
{
|
||||
portable_ = portable;
|
||||
setParameter("Portable", portable ? "true" : "false");
|
||||
setCoreParameter("Portable", portable ? "true" : "false");
|
||||
}
|
||||
|
||||
bool DescribeDisksRequest::getEnableAutomatedSnapshotPolicy()const
|
||||
@@ -292,7 +292,7 @@ bool DescribeDisksRequest::getEnableAutomatedSnapshotPolicy()const
|
||||
void DescribeDisksRequest::setEnableAutomatedSnapshotPolicy(bool enableAutomatedSnapshotPolicy)
|
||||
{
|
||||
enableAutomatedSnapshotPolicy_ = enableAutomatedSnapshotPolicy;
|
||||
setParameter("EnableAutomatedSnapshotPolicy", enableAutomatedSnapshotPolicy ? "true" : "false");
|
||||
setCoreParameter("EnableAutomatedSnapshotPolicy", enableAutomatedSnapshotPolicy ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeDisksRequest::getFilter2Key()const
|
||||
@@ -303,7 +303,7 @@ std::string DescribeDisksRequest::getFilter2Key()const
|
||||
void DescribeDisksRequest::setFilter2Key(const std::string& filter2Key)
|
||||
{
|
||||
filter2Key_ = filter2Key;
|
||||
setParameter("Filter2Key", filter2Key);
|
||||
setCoreParameter("Filter2Key", filter2Key);
|
||||
}
|
||||
|
||||
long DescribeDisksRequest::getOwnerId()const
|
||||
@@ -314,7 +314,7 @@ long DescribeDisksRequest::getOwnerId()const
|
||||
void DescribeDisksRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeDisksRequest::getDiskType()const
|
||||
@@ -325,7 +325,7 @@ std::string DescribeDisksRequest::getDiskType()const
|
||||
void DescribeDisksRequest::setDiskType(const std::string& diskType)
|
||||
{
|
||||
diskType_ = diskType;
|
||||
setParameter("DiskType", diskType);
|
||||
setCoreParameter("DiskType", diskType);
|
||||
}
|
||||
|
||||
std::vector<std::string> DescribeDisksRequest::getAdditionalAttributes()const
|
||||
@@ -337,7 +337,7 @@ void DescribeDisksRequest::setAdditionalAttributes(const std::vector<std::string
|
||||
{
|
||||
additionalAttributes_ = additionalAttributes;
|
||||
for(int i = 0; i!= additionalAttributes.size(); i++)
|
||||
setParameter("AdditionalAttributes."+ std::to_string(i), additionalAttributes.at(i));
|
||||
setCoreParameter("AdditionalAttributes."+ std::to_string(i), additionalAttributes.at(i));
|
||||
}
|
||||
|
||||
bool DescribeDisksRequest::getEnableShared()const
|
||||
@@ -348,7 +348,7 @@ bool DescribeDisksRequest::getEnableShared()const
|
||||
void DescribeDisksRequest::setEnableShared(bool enableShared)
|
||||
{
|
||||
enableShared_ = enableShared;
|
||||
setParameter("EnableShared", enableShared ? "true" : "false");
|
||||
setCoreParameter("EnableShared", enableShared ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeDisksRequest::getInstanceId()const
|
||||
@@ -359,7 +359,7 @@ std::string DescribeDisksRequest::getInstanceId()const
|
||||
void DescribeDisksRequest::setInstanceId(const std::string& instanceId)
|
||||
{
|
||||
instanceId_ = instanceId;
|
||||
setParameter("InstanceId", instanceId);
|
||||
setCoreParameter("InstanceId", instanceId);
|
||||
}
|
||||
|
||||
bool DescribeDisksRequest::getEncrypted()const
|
||||
@@ -370,7 +370,7 @@ bool DescribeDisksRequest::getEncrypted()const
|
||||
void DescribeDisksRequest::setEncrypted(bool encrypted)
|
||||
{
|
||||
encrypted_ = encrypted;
|
||||
setParameter("Encrypted", encrypted ? "true" : "false");
|
||||
setCoreParameter("Encrypted", encrypted ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string DescribeDisksRequest::getZoneId()const
|
||||
@@ -381,7 +381,7 @@ std::string DescribeDisksRequest::getZoneId()const
|
||||
void DescribeDisksRequest::setZoneId(const std::string& zoneId)
|
||||
{
|
||||
zoneId_ = zoneId;
|
||||
setParameter("ZoneId", zoneId);
|
||||
setCoreParameter("ZoneId", zoneId);
|
||||
}
|
||||
|
||||
std::string DescribeDisksRequest::getCategory()const
|
||||
@@ -392,7 +392,7 @@ std::string DescribeDisksRequest::getCategory()const
|
||||
void DescribeDisksRequest::setCategory(const std::string& category)
|
||||
{
|
||||
category_ = category;
|
||||
setParameter("Category", category);
|
||||
setCoreParameter("Category", category);
|
||||
}
|
||||
|
||||
std::string DescribeDisksRequest::getKMSKeyId()const
|
||||
@@ -403,7 +403,7 @@ std::string DescribeDisksRequest::getKMSKeyId()const
|
||||
void DescribeDisksRequest::setKMSKeyId(const std::string& kMSKeyId)
|
||||
{
|
||||
kMSKeyId_ = kMSKeyId;
|
||||
setParameter("KMSKeyId", kMSKeyId);
|
||||
setCoreParameter("KMSKeyId", kMSKeyId);
|
||||
}
|
||||
|
||||
std::string DescribeDisksRequest::getStatus()const
|
||||
@@ -414,6 +414,6 @@ std::string DescribeDisksRequest::getStatus()const
|
||||
void DescribeDisksRequest::setStatus(const std::string& status)
|
||||
{
|
||||
status_ = status;
|
||||
setParameter("Status", status);
|
||||
setCoreParameter("Status", status);
|
||||
}
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user