Skip to content

Commit

Permalink
Support fromData for UpdateRulesAttribute and Createrules
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Dec 11, 2024
1 parent cc856a7 commit 6b43157
Show file tree
Hide file tree
Showing 6 changed files with 118 additions and 105 deletions.
3 changes: 3 additions & 0 deletions aliyun-python-sdk-alb/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-12-11 Version: 1.0.21
- Support fromData for UpdateRulesAttribute and Createrules

2024-11-04 Version: 1.0.20
- Support Ipv4LocalAddresses and Ipv6LocalAddresses.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-python-sdk-alb/aliyunsdkalb/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.20'
__version__ = '1.0.21'

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ def __init__(self):
if hasattr(self, "endpoint_regional"):
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())

def get_CrossZoneEnabled(self): # Boolean
return self.get_query_params().get('CrossZoneEnabled')

def set_CrossZoneEnabled(self, CrossZoneEnabled): # Boolean
self.add_query_param('CrossZoneEnabled', CrossZoneEnabled)
def get_ServerGroupName(self): # String
return self.get_query_params().get('ServerGroupName')

Expand Down
Loading

0 comments on commit 6b43157

Please sign in to comment.