Skip to content

Commit 4e6e72b

Browse files
committed
-Add API ListApiByApp.
1 parent 9ef71cd commit 4e6e72b

File tree

3 files changed

+43
-1
lines changed

3 files changed

+43
-1
lines changed

aliyun-python-sdk-dataphin-public/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-04-17 Version: 1.0.6
2+
-- Add API ListApiByApp.
3+
14
2025-04-16 Version: 1.0.5
25
-- API CreateDataSource input param fix.
36

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.5'
1+
__version__ = '1.0.6'
Lines changed: 39 additions & 0 deletions
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 RpcRequest
21+
import json
22+
23+
class ListApiByAppRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'dataphin-public', '2023-06-30', 'ListApiByApp')
27+
self.set_protocol_type('https')
28+
self.set_method('POST')
29+
30+
def get_OpTenantId(self): # Long
31+
return self.get_query_params().get('OpTenantId')
32+
33+
def set_OpTenantId(self, OpTenantId): # Long
34+
self.add_query_param('OpTenantId', OpTenantId)
35+
def get_PageQuery(self): # Struct
36+
return self.get_body_params().get('PageQuery')
37+
38+
def set_PageQuery(self, PageQuery): # Struct
39+
self.add_body_params("PageQuery", json.dumps(PageQuery))

0 commit comments

Comments
 (0)