75 lines
2.5 KiB
C++
75 lines
2.5 KiB
C++
/*
|
|
* 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_DESCRIBEDEPLOYMENTSETTOPOLOGYREQUEST_H_
|
|
#define ALIBABACLOUD_ECS_MODEL_DESCRIBEDEPLOYMENTSETTOPOLOGYREQUEST_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 DescribeDeploymentSetTopologyRequest : public RpcServiceRequest
|
|
{
|
|
|
|
public:
|
|
DescribeDeploymentSetTopologyRequest();
|
|
~DescribeDeploymentSetTopologyRequest();
|
|
|
|
std::string getDeploymentSetId()const;
|
|
void setDeploymentSetId(const std::string& deploymentSetId);
|
|
long getResourceOwnerId()const;
|
|
void setResourceOwnerId(long resourceOwnerId);
|
|
std::string getResourceOwnerAccount()const;
|
|
void setResourceOwnerAccount(const std::string& resourceOwnerAccount);
|
|
std::string getRegionId()const;
|
|
void setRegionId(const std::string& regionId);
|
|
std::string getGranularity()const;
|
|
void setGranularity(const std::string& granularity);
|
|
std::string getDomain()const;
|
|
void setDomain(const std::string& domain);
|
|
std::string getNetworkType()const;
|
|
void setNetworkType(const std::string& networkType);
|
|
std::string getDeploymentSetName()const;
|
|
void setDeploymentSetName(const std::string& deploymentSetName);
|
|
long getOwnerId()const;
|
|
void setOwnerId(long ownerId);
|
|
std::string getStrategy()const;
|
|
void setStrategy(const std::string& strategy);
|
|
|
|
private:
|
|
std::string deploymentSetId_;
|
|
long resourceOwnerId_;
|
|
std::string resourceOwnerAccount_;
|
|
std::string regionId_;
|
|
std::string granularity_;
|
|
std::string domain_;
|
|
std::string networkType_;
|
|
std::string deploymentSetName_;
|
|
long ownerId_;
|
|
std::string strategy_;
|
|
|
|
};
|
|
}
|
|
}
|
|
}
|
|
#endif // !ALIBABACLOUD_ECS_MODEL_DESCRIBEDEPLOYMENTSETTOPOLOGYREQUEST_H_
|