CreateNetworkInterface supports to allocate Ipv6.
This commit is contained in:
@@ -148,6 +148,17 @@ void DescribePriceRequest::setInstanceCpuCoreCount(int instanceCpuCoreCount)
|
||||
setParameter("InstanceCpuCoreCount", std::to_string(instanceCpuCoreCount));
|
||||
}
|
||||
|
||||
std::string DescribePriceRequest::getSpotStrategy()const
|
||||
{
|
||||
return spotStrategy_;
|
||||
}
|
||||
|
||||
void DescribePriceRequest::setSpotStrategy(const std::string& spotStrategy)
|
||||
{
|
||||
spotStrategy_ = spotStrategy;
|
||||
setParameter("SpotStrategy", spotStrategy);
|
||||
}
|
||||
|
||||
std::string DescribePriceRequest::getInternetChargeType()const
|
||||
{
|
||||
return internetChargeType_;
|
||||
@@ -159,6 +170,17 @@ void DescribePriceRequest::setInternetChargeType(const std::string& internetChar
|
||||
setParameter("InternetChargeType", internetChargeType);
|
||||
}
|
||||
|
||||
std::string DescribePriceRequest::getZoneId()const
|
||||
{
|
||||
return zoneId_;
|
||||
}
|
||||
|
||||
void DescribePriceRequest::setZoneId(const std::string& zoneId)
|
||||
{
|
||||
zoneId_ = zoneId;
|
||||
setParameter("ZoneId", zoneId);
|
||||
}
|
||||
|
||||
std::string DescribePriceRequest::getInstanceNetworkType()const
|
||||
{
|
||||
return instanceNetworkType_;
|
||||
@@ -414,6 +436,17 @@ void DescribePriceRequest::setDataDisk2Size(int dataDisk2Size)
|
||||
setParameter("DataDisk2Size", std::to_string(dataDisk2Size));
|
||||
}
|
||||
|
||||
int DescribePriceRequest::getSpotDuration()const
|
||||
{
|
||||
return spotDuration_;
|
||||
}
|
||||
|
||||
void DescribePriceRequest::setSpotDuration(int spotDuration)
|
||||
{
|
||||
spotDuration_ = spotDuration;
|
||||
setParameter("SpotDuration", std::to_string(spotDuration));
|
||||
}
|
||||
|
||||
std::string DescribePriceRequest::getResourceType()const
|
||||
{
|
||||
return resourceType_;
|
||||
|
||||
Reference in New Issue
Block a user