File tree Expand file tree Collapse file tree 4 files changed +7
-1
lines changed
include/alibabacloud/slb/model Expand file tree Collapse file tree 4 files changed +7
-1
lines changed Original file line number Diff line number Diff line change
1
+ 2021-05-21 Version: 1.36.750
2
+ - Supported DescribeLoadBalancers with DeleteProtection and so on.
3
+
1
4
2021-05-21 Version: 1.36.749
2
5
- Support StrictResourceProvision in ApplyNodes.
3
6
Original file line number Diff line number Diff line change 1
- 1.36.749
1
+ 1.36.750
Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ namespace AlibabaCloud
60
60
std::string internetChargeTypeAlias;
61
61
std::string loadBalancerName;
62
62
std::string vpcId;
63
+ std::string deleteProtection;
63
64
std::string regionId;
64
65
std::string addressType;
65
66
std::string loadBalancerStatus;
Original file line number Diff line number Diff line change @@ -91,6 +91,8 @@ void DescribeLoadBalancersResult::parse(const std::string &payload)
91
91
loadBalancersObject.internetChargeTypeAlias = valueLoadBalancersLoadBalancer[" InternetChargeTypeAlias" ].asString ();
92
92
if (!valueLoadBalancersLoadBalancer[" LoadBalancerSpec" ].isNull ())
93
93
loadBalancersObject.loadBalancerSpec = valueLoadBalancersLoadBalancer[" LoadBalancerSpec" ].asString ();
94
+ if (!valueLoadBalancersLoadBalancer[" DeleteProtection" ].isNull ())
95
+ loadBalancersObject.deleteProtection = valueLoadBalancersLoadBalancer[" DeleteProtection" ].asString ();
94
96
auto allTagsNode = valueLoadBalancersLoadBalancer[" Tags" ][" Tag" ];
95
97
for (auto valueLoadBalancersLoadBalancerTagsTag : allTagsNode)
96
98
{
You can’t perform that action at this time.
0 commit comments