Skip to content

Commit 73488fa

Browse files
committed
Add GrtApplicationList.
1 parent de7633d commit 73488fa

File tree

5 files changed

+92
-64
lines changed

5 files changed

+92
-64
lines changed

aliyun-python-sdk-mse/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2022-04-30 Version: 3.0.18
2+
- Add GrtApplicationList.
3+
14
2022-04-07 Version: 3.0.16
25
- Add Message Queue Route API.
36

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '3.0.16'
1+
__version__ = '3.0.18'

aliyun-python-sdk-mse/aliyunsdkmse/request/v20190531/CreateEngineNamespaceRequest.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,11 @@ def get_AcceptLanguage(self): # String
5656

5757
def set_AcceptLanguage(self, AcceptLanguage): # String
5858
self.add_query_param('AcceptLanguage', AcceptLanguage)
59+
def get_Id(self): # String
60+
return self.get_query_params().get('Id')
61+
62+
def set_Id(self, Id): # String
63+
self.add_query_param('Id', Id)
5964
def get_Desc(self): # String
6065
return self.get_query_params().get('Desc')
6166

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
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 RpcRequest
21+
from aliyunsdkmse.endpoint import endpoint_data
22+
23+
class GetApplicationListRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'mse', '2019-05-31', 'GetApplicationList','mse')
27+
self.set_method('POST')
28+
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+
def get_Language(self): # String
35+
return self.get_query_params().get('Language')
36+
37+
def set_Language(self, Language): # String
38+
self.add_query_param('Language', Language)
39+
def get_Source(self): # String
40+
return self.get_query_params().get('Source')
41+
42+
def set_Source(self, Source): # String
43+
self.add_query_param('Source', Source)
44+
def get_PageNumber(self): # Integer
45+
return self.get_query_params().get('PageNumber')
46+
47+
def set_PageNumber(self, PageNumber): # Integer
48+
self.add_query_param('PageNumber', PageNumber)
49+
def get_AppName(self): # String
50+
return self.get_query_params().get('AppName')
51+
52+
def set_AppName(self, AppName): # String
53+
self.add_query_param('AppName', AppName)
54+
def get_PageSize(self): # Integer
55+
return self.get_query_params().get('PageSize')
56+
57+
def set_PageSize(self, PageSize): # Integer
58+
self.add_query_param('PageSize', PageSize)
59+
def get_SwitchEnable(self): # Boolean
60+
return self.get_query_params().get('SwitchEnable')
61+
62+
def set_SwitchEnable(self, SwitchEnable): # Boolean
63+
self.add_query_param('SwitchEnable', SwitchEnable)
64+
def get_AppId(self): # String
65+
return self.get_query_params().get('AppId')
66+
67+
def set_AppId(self, AppId): # String
68+
self.add_query_param('AppId', AppId)
69+
def get_AcceptLanguage(self): # String
70+
return self.get_query_params().get('AcceptLanguage')
71+
72+
def set_AcceptLanguage(self, AcceptLanguage): # String
73+
self.add_query_param('AcceptLanguage', AcceptLanguage)
74+
def get_SentinelEnable(self): # Boolean
75+
return self.get_query_params().get('SentinelEnable')
76+
77+
def set_SentinelEnable(self, SentinelEnable): # Boolean
78+
self.add_query_param('SentinelEnable', SentinelEnable)
79+
def get_Region(self): # String
80+
return self.get_query_params().get('Region')
81+
82+
def set_Region(self, Region): # String
83+
self.add_query_param('Region', Region)

aliyun-python-sdk-mse/aliyunsdkmse/request/v20190531/ScalingClusterRequest.py

Lines changed: 0 additions & 63 deletions
This file was deleted.

0 commit comments

Comments
 (0)