Skip to content

Commit 4166ee3

Browse files
committedApr 28, 2020
Generated 2017-08-01 for Edas.
1 parent 3f71c96 commit 4166ee3

8 files changed

+224
-2
lines changed
 

‎aliyun-python-sdk-edas/ChangeLog.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2020-04-28 Version: 3.0.5
2+
- Generated 2017-08-01 for `Edas`.
3+
14
2020-04-09 Version: 3.0.4
25
- Generated 2017-08-01 for `Edas`.
36

Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '3.0.4'
1+
__version__ = '3.0.5'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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 AddLogPathRequest(RoaRequest):
24+
25+
def __init__(self):
26+
RoaRequest.__init__(self, 'Edas', '2017-08-01', 'AddLogPath','edas')
27+
self.set_uri_pattern('/pop/v5/log/popListLogDirs')
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_Path(self):
36+
return self.get_body_params().get('Path')
37+
38+
def set_Path(self,Path):
39+
self.add_body_params('Path', Path)
40+
41+
def get_AppId(self):
42+
return self.get_body_params().get('AppId')
43+
44+
def set_AppId(self,AppId):
45+
self.add_body_params('AppId', AppId)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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 DelegateAdminRoleRequest(RoaRequest):
24+
25+
def __init__(self):
26+
RoaRequest.__init__(self, 'Edas', '2017-08-01', 'DelegateAdminRole','edas')
27+
self.set_uri_pattern('/pop/v5/account/delegate_admin_role')
28+
self.set_method('PUT')
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_TargetUserId(self):
36+
return self.get_query_params().get('TargetUserId')
37+
38+
def set_TargetUserId(self,TargetUserId):
39+
self.add_query_param('TargetUserId',TargetUserId)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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 DeleteLogPathRequest(RoaRequest):
24+
25+
def __init__(self):
26+
RoaRequest.__init__(self, 'Edas', '2017-08-01', 'DeleteLogPath','edas')
27+
self.set_uri_pattern('/pop/v5/log/popListLogDirs')
28+
self.set_method('DELETE')
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_Path(self):
36+
return self.get_query_params().get('Path')
37+
38+
def set_Path(self,Path):
39+
self.add_query_param('Path',Path)
40+
41+
def get_AppId(self):
42+
return self.get_query_params().get('AppId')
43+
44+
def set_AppId(self,AppId):
45+
self.add_query_param('AppId',AppId)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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 GetSubAccountInfoRequest(RoaRequest):
24+
25+
def __init__(self):
26+
RoaRequest.__init__(self, 'Edas', '2017-08-01', 'GetSubAccountInfo','edas')
27+
self.set_uri_pattern('/pop/v5/account/sub_account_info')
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_TargetUserId(self):
36+
return self.get_query_params().get('TargetUserId')
37+
38+
def set_TargetUserId(self,TargetUserId):
39+
self.add_query_param('TargetUserId',TargetUserId)

‎aliyun-python-sdk-edas/aliyunsdkedas/request/v20170801/ListClusterMembersRequest.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,10 @@ def get_ClusterId(self):
4848
return self.get_query_params().get('ClusterId')
4949

5050
def set_ClusterId(self,ClusterId):
51-
self.add_query_param('ClusterId',ClusterId)
51+
self.add_query_param('ClusterId',ClusterId)
52+
53+
def get_EcsList(self):
54+
return self.get_query_params().get('EcsList')
55+
56+
def set_EcsList(self,EcsList):
57+
self.add_query_param('EcsList',EcsList)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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 RestartApplicationRequest(RoaRequest):
24+
25+
def __init__(self):
26+
RoaRequest.__init__(self, 'Edas', '2017-08-01', 'RestartApplication','edas')
27+
self.set_uri_pattern('/pop/v5/changeorder/co_restart')
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_AppId(self):
36+
return self.get_query_params().get('AppId')
37+
38+
def set_AppId(self,AppId):
39+
self.add_query_param('AppId',AppId)
40+
41+
def get_EccInfo(self):
42+
return self.get_query_params().get('EccInfo')
43+
44+
def set_EccInfo(self,EccInfo):
45+
self.add_query_param('EccInfo',EccInfo)

0 commit comments

Comments
 (0)
Please sign in to comment.