Skip to content

Commit 575f0b7

Browse files
committed
Add API ReadSchedulerxDesignateInfo.
1 parent 796c636 commit 575f0b7

File tree

3 files changed

+58
-1
lines changed

3 files changed

+58
-1
lines changed

aliyun-python-sdk-schedulerx2/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-06-10 Version: 1.1.15
2+
- Add API ReadSchedulerxDesignateInfo.
3+
14
2025-05-13 Version: 1.1.14
25
- Add Api ReadSchedulerxDesignateDetail.
36

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.1.14'
1+
__version__ = '1.1.15'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
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 aliyunsdkschedulerx2.endpoint import endpoint_data
22+
23+
class ReadSchedulerxDesignateInfoRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'schedulerx2', '2019-04-30', 'ReadSchedulerxDesignateInfo','schedulerx2')
27+
self.set_protocol_type('https')
28+
self.set_method('POST')
29+
30+
if hasattr(self, "endpoint_map"):
31+
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
32+
if hasattr(self, "endpoint_regional"):
33+
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
34+
35+
def get_NamespaceSource(self): # String
36+
return self.get_query_params().get('NamespaceSource')
37+
38+
def set_NamespaceSource(self, NamespaceSource): # String
39+
self.add_query_param('NamespaceSource', NamespaceSource)
40+
def get_GroupId(self): # String
41+
return self.get_query_params().get('GroupId')
42+
43+
def set_GroupId(self, GroupId): # String
44+
self.add_query_param('GroupId', GroupId)
45+
def get_JobId(self): # Long
46+
return self.get_query_params().get('JobId')
47+
48+
def set_JobId(self, JobId): # Long
49+
self.add_query_param('JobId', JobId)
50+
def get_Namespace(self): # String
51+
return self.get_query_params().get('Namespace')
52+
53+
def set_Namespace(self, Namespace): # String
54+
self.add_query_param('Namespace', Namespace)

0 commit comments

Comments
 (0)