|
|
@@ -30,18 +30,24 @@ class ALIBABACLOUD_EFLO_EXPORT GetFabricTopologyRequest : public RpcServiceReque
|
|
|
public:
|
|
|
GetFabricTopologyRequest();
|
|
|
~GetFabricTopologyRequest();
|
|
|
+ std::string getClusterId() const;
|
|
|
+ void setClusterId(const std::string &clusterId);
|
|
|
std::string getRegionId() const;
|
|
|
void setRegionId(const std::string ®ionId);
|
|
|
std::string getVpdId() const;
|
|
|
void setVpdId(const std::string &vpdId);
|
|
|
+ std::string getVpcId() const;
|
|
|
+ void setVpcId(const std::string &vpcId);
|
|
|
std::vector<std::string> getLniIds() const;
|
|
|
void setLniIds(const std::vector<std::string> &lniIds);
|
|
|
std::vector<std::string> getNodeIds() const;
|
|
|
void setNodeIds(const std::vector<std::string> &nodeIds);
|
|
|
|
|
|
private:
|
|
|
+ std::string clusterId_;
|
|
|
std::string regionId_;
|
|
|
std::string vpdId_;
|
|
|
+ std::string vpcId_;
|
|
|
std::vector<std::string> lniIds_;
|
|
|
std::vector<std::string> nodeIds_;
|
|
|
};
|