|
|
@@ -25,6 +25,24 @@ CreateElasticNetworkInterfaceRequest::CreateElasticNetworkInterfaceRequest()
|
|
|
|
|
|
CreateElasticNetworkInterfaceRequest::~CreateElasticNetworkInterfaceRequest() {}
|
|
|
|
|
|
+std::string CreateElasticNetworkInterfaceRequest::getClientToken() const {
|
|
|
+ return clientToken_;
|
|
|
+}
|
|
|
+
|
|
|
+void CreateElasticNetworkInterfaceRequest::setClientToken(const std::string &clientToken) {
|
|
|
+ clientToken_ = clientToken;
|
|
|
+ setBodyParameter(std::string("ClientToken"), clientToken);
|
|
|
+}
|
|
|
+
|
|
|
+std::string CreateElasticNetworkInterfaceRequest::getSecurityGroupId() const {
|
|
|
+ return securityGroupId_;
|
|
|
+}
|
|
|
+
|
|
|
+void CreateElasticNetworkInterfaceRequest::setSecurityGroupId(const std::string &securityGroupId) {
|
|
|
+ securityGroupId_ = securityGroupId;
|
|
|
+ setBodyParameter(std::string("SecurityGroupId"), securityGroupId);
|
|
|
+}
|
|
|
+
|
|
|
std::string CreateElasticNetworkInterfaceRequest::getDescription() const {
|
|
|
return description_;
|
|
|
}
|
|
|
@@ -34,15 +52,6 @@ void CreateElasticNetworkInterfaceRequest::setDescription(const std::string &des
|
|
|
setBodyParameter(std::string("Description"), description);
|
|
|
}
|
|
|
|
|
|
-std::string CreateElasticNetworkInterfaceRequest::getVSwitchId() const {
|
|
|
- return vSwitchId_;
|
|
|
-}
|
|
|
-
|
|
|
-void CreateElasticNetworkInterfaceRequest::setVSwitchId(const std::string &vSwitchId) {
|
|
|
- vSwitchId_ = vSwitchId;
|
|
|
- setBodyParameter(std::string("VSwitchId"), vSwitchId);
|
|
|
-}
|
|
|
-
|
|
|
std::string CreateElasticNetworkInterfaceRequest::getRegionId() const {
|
|
|
return regionId_;
|
|
|
}
|
|
|
@@ -52,6 +61,24 @@ void CreateElasticNetworkInterfaceRequest::setRegionId(const std::string ®ion
|
|
|
setBodyParameter(std::string("RegionId"), regionId);
|
|
|
}
|
|
|
|
|
|
+std::string CreateElasticNetworkInterfaceRequest::getNodeId() const {
|
|
|
+ return nodeId_;
|
|
|
+}
|
|
|
+
|
|
|
+void CreateElasticNetworkInterfaceRequest::setNodeId(const std::string &nodeId) {
|
|
|
+ nodeId_ = nodeId;
|
|
|
+ setBodyParameter(std::string("NodeId"), nodeId);
|
|
|
+}
|
|
|
+
|
|
|
+std::string CreateElasticNetworkInterfaceRequest::getVSwitchId() const {
|
|
|
+ return vSwitchId_;
|
|
|
+}
|
|
|
+
|
|
|
+void CreateElasticNetworkInterfaceRequest::setVSwitchId(const std::string &vSwitchId) {
|
|
|
+ vSwitchId_ = vSwitchId;
|
|
|
+ setBodyParameter(std::string("VSwitchId"), vSwitchId);
|
|
|
+}
|
|
|
+
|
|
|
std::string CreateElasticNetworkInterfaceRequest::getVpcId() const {
|
|
|
return vpcId_;
|
|
|
}
|
|
|
@@ -70,12 +97,3 @@ void CreateElasticNetworkInterfaceRequest::setZoneId(const std::string &zoneId)
|
|
|
setBodyParameter(std::string("ZoneId"), zoneId);
|
|
|
}
|
|
|
|
|
|
-std::string CreateElasticNetworkInterfaceRequest::getNodeId() const {
|
|
|
- return nodeId_;
|
|
|
-}
|
|
|
-
|
|
|
-void CreateElasticNetworkInterfaceRequest::setNodeId(const std::string &nodeId) {
|
|
|
- nodeId_ = nodeId;
|
|
|
- setBodyParameter(std::string("NodeId"), nodeId);
|
|
|
-}
|
|
|
-
|