| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- /*
- * Copyright 2009-2017 Alibaba Cloud All rights reserved.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #include <alibabacloud/eais/model/CreateEaiRequest.h>
- using AlibabaCloud::Eais::Model::CreateEaiRequest;
- CreateEaiRequest::CreateEaiRequest()
- : RpcServiceRequest("eais", "2019-06-24", "CreateEai") {
- setMethod(HttpRequest::Method::Post);
- }
- CreateEaiRequest::~CreateEaiRequest() {}
- std::string CreateEaiRequest::getImage() const {
- return image_;
- }
- void CreateEaiRequest::setImage(const std::string &image) {
- image_ = image;
- setParameter(std::string("Image"), image);
- }
- std::string CreateEaiRequest::getClientToken() const {
- return clientToken_;
- }
- void CreateEaiRequest::setClientToken(const std::string &clientToken) {
- clientToken_ = clientToken;
- setParameter(std::string("ClientToken"), clientToken);
- }
- std::string CreateEaiRequest::getSecurityGroupId() const {
- return securityGroupId_;
- }
- void CreateEaiRequest::setSecurityGroupId(const std::string &securityGroupId) {
- securityGroupId_ = securityGroupId;
- setParameter(std::string("SecurityGroupId"), securityGroupId);
- }
- std::string CreateEaiRequest::getVSwitchId() const {
- return vSwitchId_;
- }
- void CreateEaiRequest::setVSwitchId(const std::string &vSwitchId) {
- vSwitchId_ = vSwitchId;
- setParameter(std::string("VSwitchId"), vSwitchId);
- }
- std::string CreateEaiRequest::getResourceGroupId() const {
- return resourceGroupId_;
- }
- void CreateEaiRequest::setResourceGroupId(const std::string &resourceGroupId) {
- resourceGroupId_ = resourceGroupId;
- setParameter(std::string("ResourceGroupId"), resourceGroupId);
- }
- std::string CreateEaiRequest::getInstanceName() const {
- return instanceName_;
- }
- void CreateEaiRequest::setInstanceName(const std::string &instanceName) {
- instanceName_ = instanceName;
- setParameter(std::string("InstanceName"), instanceName);
- }
- std::string CreateEaiRequest::getRegionId() const {
- return regionId_;
- }
- void CreateEaiRequest::setRegionId(const std::string ®ionId) {
- regionId_ = regionId;
- setParameter(std::string("RegionId"), regionId);
- }
- std::string CreateEaiRequest::getInstanceType() const {
- return instanceType_;
- }
- void CreateEaiRequest::setInstanceType(const std::string &instanceType) {
- instanceType_ = instanceType;
- setParameter(std::string("InstanceType"), instanceType);
- }
|