Skip to content

Commit

Permalink
Generated 2021-09-31 for BPStudio.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Sep 3, 2024
1 parent b166437 commit 0620a79
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 1 deletion.
3 changes: 3 additions & 0 deletions aliyun-python-sdk-bpstudio/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-09-03 Version: 1.0.8
- Generated 2021-09-31 for `BPStudio`.

2024-08-30 Version: 1.0.7
- Fix bug asyncExecute Error.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-python-sdk-bpstudio/aliyunsdkbpstudio/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.7'
__version__ = '1.0.8'
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
#
# http://www.apache.org/licenses/LICENSE-2.0
#
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

from aliyunsdkcore.request import RpcRequest

class GetApplicationVariablesRequest(RpcRequest):

def __init__(self):
RpcRequest.__init__(self, 'BPStudio', '2021-09-31', 'GetApplicationVariables','bpstudio')
self.set_protocol_type('https')
self.set_method('POST')

def get_AppId(self): # String
return self.get_body_params().get('AppId')

def set_AppId(self, AppId): # String
self.add_body_params('AppId', AppId)

0 comments on commit 0620a79

Please sign in to comment.