Skip to content

Commit d9918e1

Browse files
committed
Generated 2017-08-01 for Edas.
1 parent 51f6e3f commit d9918e1

File tree

128 files changed

+673
-123
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+673
-123
lines changed

aliyun-python-sdk-edas/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2020-07-28 Version: 3.4.1
2+
- Generated 2017-08-01 for `Edas`.
3+
14
2020-05-20 Version: 3.4.0
25
- Add supportting for deploy K8s application across zones.
36
- Add supportting for choosing K8s application runtime class.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '3.4.0'
1+
__version__ = '3.4.1'

aliyun-python-sdk-edas/aliyunsdkedas/request/v20170801/AbortAndRollbackChangeOrderRequest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
class AbortAndRollbackChangeOrderRequest(RoaRequest):
2424

2525
def __init__(self):
26-
RoaRequest.__init__(self, 'Edas', '2017-08-01', 'AbortAndRollbackChangeOrder','Edas')
26+
RoaRequest.__init__(self, 'Edas', '2017-08-01', 'AbortAndRollbackChangeOrder','edas')
2727
self.set_uri_pattern('/pop/v5/changeorder/change_order_abort_and_rollback')
2828
self.set_method('PUT')
2929
if hasattr(self, "endpoint_map"):

aliyun-python-sdk-edas/aliyunsdkedas/request/v20170801/AbortChangeOrderRequest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
class AbortChangeOrderRequest(RoaRequest):
2424

2525
def __init__(self):
26-
RoaRequest.__init__(self, 'Edas', '2017-08-01', 'AbortChangeOrder','Edas')
26+
RoaRequest.__init__(self, 'Edas', '2017-08-01', 'AbortChangeOrder','edas')
2727
self.set_uri_pattern('/pop/v5/changeorder/change_order_abort')
2828
self.set_method('PUT')
2929
if hasattr(self, "endpoint_map"):

aliyun-python-sdk-edas/aliyunsdkedas/request/v20170801/AddLogPathRequest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
class AddLogPathRequest(RoaRequest):
2424

2525
def __init__(self):
26-
RoaRequest.__init__(self, 'Edas', '2017-08-01', 'AddLogPath','Edas')
26+
RoaRequest.__init__(self, 'Edas', '2017-08-01', 'AddLogPath','edas')
2727
self.set_uri_pattern('/pop/v5/log/popListLogDirs')
2828
self.set_method('POST')
2929
if hasattr(self, "endpoint_map"):

aliyun-python-sdk-edas/aliyunsdkedas/request/v20170801/AuthorizeApplicationRequest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
class AuthorizeApplicationRequest(RoaRequest):
2424

2525
def __init__(self):
26-
RoaRequest.__init__(self, 'Edas', '2017-08-01', 'AuthorizeApplication','Edas')
26+
RoaRequest.__init__(self, 'Edas', '2017-08-01', 'AuthorizeApplication','edas')
2727
self.set_uri_pattern('/pop/v5/account/authorize_app')
2828
self.set_method('POST')
2929
if hasattr(self, "endpoint_map"):

aliyun-python-sdk-edas/aliyunsdkedas/request/v20170801/AuthorizeResourceGroupRequest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
class AuthorizeResourceGroupRequest(RoaRequest):
2424

2525
def __init__(self):
26-
RoaRequest.__init__(self, 'Edas', '2017-08-01', 'AuthorizeResourceGroup','Edas')
26+
RoaRequest.__init__(self, 'Edas', '2017-08-01', 'AuthorizeResourceGroup','edas')
2727
self.set_uri_pattern('/pop/v5/account/authorize_res_group')
2828
self.set_method('POST')
2929
if hasattr(self, "endpoint_map"):

aliyun-python-sdk-edas/aliyunsdkedas/request/v20170801/AuthorizeRoleRequest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
class AuthorizeRoleRequest(RoaRequest):
2424

2525
def __init__(self):
26-
RoaRequest.__init__(self, 'Edas', '2017-08-01', 'AuthorizeRole','Edas')
26+
RoaRequest.__init__(self, 'Edas', '2017-08-01', 'AuthorizeRole','edas')
2727
self.set_uri_pattern('/pop/v5/account/authorize_role')
2828
self.set_method('POST')
2929
if hasattr(self, "endpoint_map"):
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RoaRequest
21+
from aliyunsdkedas.endpoint import endpoint_data
22+
23+
class BindEcsSlbRequest(RoaRequest):
24+
25+
def __init__(self):
26+
RoaRequest.__init__(self, 'Edas', '2017-08-01', 'BindEcsSlb','edas')
27+
self.set_uri_pattern('/pop/v5/app/slb/bind_slb')
28+
self.set_method('POST')
29+
if hasattr(self, "endpoint_map"):
30+
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
31+
if hasattr(self, "endpoint_regional"):
32+
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
33+
34+
35+
def get_VServerGroupId(self):
36+
return self.get_query_params().get('VServerGroupId')
37+
38+
def set_VServerGroupId(self,VServerGroupId):
39+
self.add_query_param('VServerGroupId',VServerGroupId)
40+
41+
def get_ListenerPort(self):
42+
return self.get_query_params().get('ListenerPort')
43+
44+
def set_ListenerPort(self,ListenerPort):
45+
self.add_query_param('ListenerPort',ListenerPort)
46+
47+
def get_VForwardingUrlRule(self):
48+
return self.get_query_params().get('VForwardingUrlRule')
49+
50+
def set_VForwardingUrlRule(self,VForwardingUrlRule):
51+
self.add_query_param('VForwardingUrlRule',VForwardingUrlRule)
52+
53+
def get_SlbId(self):
54+
return self.get_query_params().get('SlbId')
55+
56+
def set_SlbId(self,SlbId):
57+
self.add_query_param('SlbId',SlbId)
58+
59+
def get_DeployGroupId(self):
60+
return self.get_query_params().get('DeployGroupId')
61+
62+
def set_DeployGroupId(self,DeployGroupId):
63+
self.add_query_param('DeployGroupId',DeployGroupId)
64+
65+
def get_ListenerHealthCheckUrl(self):
66+
return self.get_query_params().get('ListenerHealthCheckUrl')
67+
68+
def set_ListenerHealthCheckUrl(self,ListenerHealthCheckUrl):
69+
self.add_query_param('ListenerHealthCheckUrl',ListenerHealthCheckUrl)
70+
71+
def get_AppId(self):
72+
return self.get_query_params().get('AppId')
73+
74+
def set_AppId(self,AppId):
75+
self.add_query_param('AppId',AppId)
76+
77+
def get_ListenerProtocol(self):
78+
return self.get_query_params().get('ListenerProtocol')
79+
80+
def set_ListenerProtocol(self,ListenerProtocol):
81+
self.add_query_param('ListenerProtocol',ListenerProtocol)
82+
83+
def get_VServerGroupName(self):
84+
return self.get_query_params().get('VServerGroupName')
85+
86+
def set_VServerGroupName(self,VServerGroupName):
87+
self.add_query_param('VServerGroupName',VServerGroupName)

aliyun-python-sdk-edas/aliyunsdkedas/request/v20170801/BindK8sSlbRequest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
class BindK8sSlbRequest(RoaRequest):
2424

2525
def __init__(self):
26-
RoaRequest.__init__(self, 'Edas', '2017-08-01', 'BindK8sSlb','Edas')
26+
RoaRequest.__init__(self, 'Edas', '2017-08-01', 'BindK8sSlb','edas')
2727
self.set_uri_pattern('/pop/v5/k8s/acs/k8s_slb_binding')
2828
self.set_method('POST')
2929
if hasattr(self, "endpoint_map"):

0 commit comments

Comments
 (0)