Support Latest APIs.

This commit is contained in:
sdk-team
2022-05-05 08:28:28 +00:00
parent 735d46b11a
commit d175c6ad31
14 changed files with 36 additions and 1 deletions

View File

@@ -40,6 +40,7 @@ public:
};
struct ZoneMappings {
std::string vSwitchId;
std::string eipType;
std::string zoneId;
std::string allocationId;
};

View File

@@ -69,6 +69,8 @@ namespace AlibabaCloud
{
std::string intranetAddress;
std::string address;
std::string allocationId;
std::string eipType;
std::string ipv6Address;
};
std::string zoneId;

View File

@@ -70,11 +70,13 @@ namespace AlibabaCloud
};
bool serviceManagedEnabled;
std::vector<std::string> relatedLoadBalancerIds;
std::vector<std::string> relatedListenerIds;
std::string resourceGroupId;
UchConfig uchConfig;
std::string scheduler;
bool upstreamKeepaliveEnabled;
StickySessionConfig stickySessionConfig;
std::vector<std::string> relatedRuleIds;
std::string serverGroupId;
int serverCount;
std::string serverGroupType;

View File

@@ -36,6 +36,8 @@ public:
~UnTagResourcesRequest();
std::vector<Tag> getTag() const;
void setTag(const std::vector<Tag> &tag);
bool getAll() const;
void setAll(bool all);
std::vector<std::string> getResourceId() const;
void setResourceId(const std::vector<std::string> &resourceId);
std::string getResourceType() const;
@@ -45,6 +47,7 @@ public:
private:
std::vector<Tag> tag_;
bool all_;
std::vector<std::string> resourceId_;
std::string resourceType_;
std::vector<std::string> tagKey_;

View File

@@ -30,6 +30,7 @@ class ALIBABACLOUD_ALB_EXPORT UpdateLoadBalancerAddressTypeConfigRequest : publi
public:
struct ZoneMappings {
std::string vSwitchId;
std::string eipType;
std::string zoneId;
std::string allocationId;
};

View File

@@ -30,6 +30,7 @@ class ALIBABACLOUD_ALB_EXPORT UpdateLoadBalancerZonesRequest : public RpcService
public:
struct ZoneMappings {
std::string vSwitchId;
std::string eipType;
std::string zoneId;
std::string allocationId;
};