Skip to content

Commit d834c73

Browse files
committed
Add image search api.
1 parent 922a4a4 commit d834c73

File tree

4 files changed

+95
-1
lines changed

4 files changed

+95
-1
lines changed

aliyun-python-sdk-websitebuild/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-09-09 Version: 1.0.6
2+
- Add image search api.
3+
14
2025-08-01 Version: 1.0.5
25
- Add image search api.
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'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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+
22+
class GetIcpFilingInfoForPartnerRequest(RpcRequest):
23+
24+
def __init__(self):
25+
RpcRequest.__init__(self, 'WebsiteBuild', '2025-04-29', 'GetIcpFilingInfoForPartner')
26+
self.set_protocol_type('https')
27+
self.set_method('POST')
28+
29+
def get_Domain(self): # String
30+
return self.get_query_params().get('Domain')
31+
32+
def set_Domain(self, Domain): # String
33+
self.add_query_param('Domain', Domain)
34+
def get_BizId(self): # String
35+
return self.get_query_params().get('BizId')
36+
37+
def set_BizId(self, BizId): # String
38+
self.add_query_param('BizId', BizId)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
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+
22+
class GetUserTmpIdentityForPartnerRequest(RpcRequest):
23+
24+
def __init__(self):
25+
RpcRequest.__init__(self, 'WebsiteBuild', '2025-04-29', 'GetUserTmpIdentityForPartner')
26+
self.set_protocol_type('https')
27+
self.set_method('POST')
28+
29+
def get_AuthPurpose(self): # String
30+
return self.get_query_params().get('AuthPurpose')
31+
32+
def set_AuthPurpose(self, AuthPurpose): # String
33+
self.add_query_param('AuthPurpose', AuthPurpose)
34+
def get_UserId(self): # String
35+
return self.get_query_params().get('UserId')
36+
37+
def set_UserId(self, UserId): # String
38+
self.add_query_param('UserId', UserId)
39+
def get_Extend(self): # String
40+
return self.get_query_params().get('Extend')
41+
42+
def set_Extend(self, Extend): # String
43+
self.add_query_param('Extend', Extend)
44+
def get_ServiceLinkedRole(self): # String
45+
return self.get_query_params().get('ServiceLinkedRole')
46+
47+
def set_ServiceLinkedRole(self, ServiceLinkedRole): # String
48+
self.add_query_param('ServiceLinkedRole', ServiceLinkedRole)
49+
def get_BizId(self): # String
50+
return self.get_query_params().get('BizId')
51+
52+
def set_BizId(self, BizId): # String
53+
self.add_query_param('BizId', BizId)

0 commit comments

Comments
 (0)