| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- /*
- * 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.
- */
- #ifndef ALIBABACLOUD_ECS_MODEL_IMPORTIMAGEREQUEST_H_
- #define ALIBABACLOUD_ECS_MODEL_IMPORTIMAGEREQUEST_H_
- #include <string>
- #include <vector>
- #include <alibabacloud/core/RpcServiceRequest.h>
- #include <alibabacloud/ecs/EcsExport.h>
- namespace AlibabaCloud
- {
- namespace Ecs
- {
- namespace Model
- {
- class ALIBABACLOUD_ECS_EXPORT ImportImageRequest : public RpcServiceRequest
- {
- public:
- struct DiskDeviceMapping
- {
- std::string oSSBucket;
- int diskImSize;
- std::string format;
- std::string device;
- std::string oSSObject;
- int diskImageSize;
- };
- struct Tag
- {
- std::string value;
- std::string key;
- };
- public:
- ImportImageRequest();
- ~ImportImageRequest();
- std::vector<DiskDeviceMapping> getDiskDeviceMapping()const;
- void setDiskDeviceMapping(const std::vector<DiskDeviceMapping>& diskDeviceMapping);
- long getResourceOwnerId()const;
- void setResourceOwnerId(long resourceOwnerId);
- std::string getDescription()const;
- void setDescription(const std::string& description);
- std::string getPlatform()const;
- void setPlatform(const std::string& platform);
- std::string getResourceGroupId()const;
- void setResourceGroupId(const std::string& resourceGroupId);
- std::string getBootMode()const;
- void setBootMode(const std::string& bootMode);
- std::string getRegionId()const;
- void setRegionId(const std::string& regionId);
- std::string getImageName()const;
- void setImageName(const std::string& imageName);
- std::vector<Tag> getTag()const;
- void setTag(const std::vector<Tag>& tag);
- std::string getArchitecture()const;
- void setArchitecture(const std::string& architecture);
- std::string getLicenseType()const;
- void setLicenseType(const std::string& licenseType);
- std::string getResourceOwnerAccount()const;
- void setResourceOwnerAccount(const std::string& resourceOwnerAccount);
- std::string getRoleName()const;
- void setRoleName(const std::string& roleName);
- std::string getOSType()const;
- void setOSType(const std::string& oSType);
- long getOwnerId()const;
- void setOwnerId(long ownerId);
- private:
- std::vector<DiskDeviceMapping> diskDeviceMapping_;
- long resourceOwnerId_;
- std::string description_;
- std::string platform_;
- std::string resourceGroupId_;
- std::string bootMode_;
- std::string regionId_;
- std::string imageName_;
- std::vector<Tag> tag_;
- std::string architecture_;
- std::string licenseType_;
- std::string resourceOwnerAccount_;
- std::string roleName_;
- std::string oSType_;
- long ownerId_;
- };
- }
- }
- }
- #endif // !ALIBABACLOUD_ECS_MODEL_IMPORTIMAGEREQUEST_H_
|