Skip to content

Commit 2f3cfc2

Browse files
committed
Generated 2025-04-29 for WebsiteBuild.
1 parent f82decc commit 2f3cfc2

File tree

4 files changed

+85
-1
lines changed

4 files changed

+85
-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-06-24 Version: 1.0.2
2+
- Generated 2025-04-29 for `WebsiteBuild`.
3+
14
2025-06-12 Version: 1.0.1
25
- Generated 2025-04-29 for `WebsiteBuild`.
36

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.1'
1+
__version__ = '1.0.2'
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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 CreateLogoTaskRequest(RpcRequest):
23+
24+
def __init__(self):
25+
RpcRequest.__init__(self, 'WebsiteBuild', '2025-04-29', 'CreateLogoTask')
26+
self.set_protocol_type('https')
27+
self.set_method('POST')
28+
29+
def get_NegativePrompt(self): # String
30+
return self.get_query_params().get('NegativePrompt')
31+
32+
def set_NegativePrompt(self, NegativePrompt): # String
33+
self.add_query_param('NegativePrompt', NegativePrompt)
34+
def get_Version(self): # String
35+
return self.get_query_params().get('Version')
36+
37+
def set_Version(self, Version): # String
38+
self.add_query_param('Version', Version)
39+
def get_Prompt(self): # String
40+
return self.get_query_params().get('Prompt')
41+
42+
def set_Prompt(self, Prompt): # String
43+
self.add_query_param('Prompt', Prompt)
44+
def get_Parameters(self): # String
45+
return self.get_query_params().get('Parameters')
46+
47+
def set_Parameters(self, Parameters): # String
48+
self.add_query_param('Parameters', Parameters)
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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 GetCreateLogoTaskRequest(RpcRequest):
23+
24+
def __init__(self):
25+
RpcRequest.__init__(self, 'WebsiteBuild', '2025-04-29', 'GetCreateLogoTask')
26+
self.set_protocol_type('https')
27+
self.set_method('POST')
28+
29+
def get_TaskId(self): # String
30+
return self.get_query_params().get('TaskId')
31+
32+
def set_TaskId(self, TaskId): # String
33+
self.add_query_param('TaskId', TaskId)

0 commit comments

Comments
 (0)