File tree Expand file tree Collapse file tree 4 files changed +18
-1
lines changed
include/alibabacloud/ehpc/model Expand file tree Collapse file tree 4 files changed +18
-1
lines changed Original file line number Diff line number Diff line change
1
+ 2021-05-21 Version: 1.36.749
2
+ - Support StrictResourceProvision in ApplyNodes.
3
+
1
4
2021-05-20 Version: 1.36.748
2
5
- Upgrade mongodb sdk.
3
6
Original file line number Diff line number Diff line change 1
- 1.36.748
1
+ 1.36.749
Original file line number Diff line number Diff line change @@ -59,6 +59,8 @@ namespace AlibabaCloud
59
59
void setInternetMaxBandWidthOut (int internetMaxBandWidthOut);
60
60
std::string getResourceAmountType ()const ;
61
61
void setResourceAmountType (const std::string& resourceAmountType);
62
+ bool getStrictResourceProvision ()const ;
63
+ void setStrictResourceProvision (bool strictResourceProvision);
62
64
std::string getAccessKeyId ()const ;
63
65
void setAccessKeyId (const std::string& accessKeyId);
64
66
std::string getSystemDiskType ()const ;
@@ -101,6 +103,7 @@ namespace AlibabaCloud
101
103
bool allocatePublicAddress_;
102
104
int internetMaxBandWidthOut_;
103
105
std::string resourceAmountType_;
106
+ bool strictResourceProvision_;
104
107
std::string accessKeyId_;
105
108
std::string systemDiskType_;
106
109
int cores_;
Original file line number Diff line number Diff line change @@ -93,6 +93,17 @@ void ApplyNodesRequest::setResourceAmountType(const std::string& resourceAmountT
93
93
setParameter (" ResourceAmountType" , resourceAmountType);
94
94
}
95
95
96
+ bool ApplyNodesRequest::getStrictResourceProvision ()const
97
+ {
98
+ return strictResourceProvision_;
99
+ }
100
+
101
+ void ApplyNodesRequest::setStrictResourceProvision (bool strictResourceProvision)
102
+ {
103
+ strictResourceProvision_ = strictResourceProvision;
104
+ setParameter (" StrictResourceProvision" , strictResourceProvision ? " true" : " false" );
105
+ }
106
+
96
107
std::string ApplyNodesRequest::getAccessKeyId ()const
97
108
{
98
109
return accessKeyId_;
You can’t perform that action at this time.
0 commit comments