Skip to content

Commit c6d7ca5

Browse files
committed
delete prompt
1 parent ecfd776 commit c6d7ca5

File tree

3 files changed

+39
-1
lines changed

3 files changed

+39
-1
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2025-05-06 Version: 1.0.1
2+
- delete prompt
3+
- PromptMaganer v1.0 sdk publish
4+
15
2025-04-14 Version: 1.0.0
26
- PromptMaganer v1.0 sdk publish
37

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.0'
1+
__version__ = '1.0.1'
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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 RoaRequest
21+
22+
class DeletePromptRequest(RoaRequest):
23+
24+
def __init__(self):
25+
RoaRequest.__init__(self, 'DashDeviceConsole', '2025-04-08', 'DeletePrompt')
26+
self.set_protocol_type('https')
27+
self.set_uri_pattern('/prompt/delete')
28+
self.set_method('DELETE')
29+
30+
def get_groupId(self): # String
31+
return self.get_query_params().get('groupId')
32+
33+
def set_groupId(self, groupId): # String
34+
self.add_query_param('groupId', groupId)

0 commit comments

Comments
 (0)