Supported gateway for hdeni api.

This commit is contained in:
sdk-team
2024-06-03 07:01:54 +00:00
parent 051077c805
commit 886cef155f
9 changed files with 40 additions and 1 deletions

View File

@@ -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 &regionId);
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_;
};

View File

@@ -40,7 +40,9 @@ namespace AlibabaCloud
std::vector<std::string> nextLayer;
std::string layerType;
};
std::string vpcId;
std::string vpdId;
std::string clusterId;
std::string regionId;
std::vector<Layer> topoInfo;
};

View File

@@ -34,6 +34,7 @@ namespace AlibabaCloud
public:
struct Content
{
int leniSipQuota;
std::string zoneId;
std::string vpcId;
int hdeniQuota;

View File

@@ -34,8 +34,10 @@ namespace AlibabaCloud
public:
struct ContentItem
{
int leniSipQuota;
std::string zoneId;
std::string vpcId;
int hdeniQuota;
std::string clusterId;
int lniSipQuota;
std::string nodeId;