From 0620a7919a559b0645fdbf64cae845163038c549 Mon Sep 17 00:00:00 2001 From: sdk-team Date: Tue, 3 Sep 2024 02:32:14 +0000 Subject: [PATCH] Generated 2021-09-31 for BPStudio. --- aliyun-python-sdk-bpstudio/ChangeLog.txt | 3 ++ .../aliyunsdkbpstudio/__init__.py | 2 +- .../GetApplicationVariablesRequest.py | 33 +++++++++++++++++++ 3 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 aliyun-python-sdk-bpstudio/aliyunsdkbpstudio/request/v20210931/GetApplicationVariablesRequest.py diff --git a/aliyun-python-sdk-bpstudio/ChangeLog.txt b/aliyun-python-sdk-bpstudio/ChangeLog.txt index 1a9b9bb944..f56a193645 100644 --- a/aliyun-python-sdk-bpstudio/ChangeLog.txt +++ b/aliyun-python-sdk-bpstudio/ChangeLog.txt @@ -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. diff --git a/aliyun-python-sdk-bpstudio/aliyunsdkbpstudio/__init__.py b/aliyun-python-sdk-bpstudio/aliyunsdkbpstudio/__init__.py index 8eb8a7b70f..5e2a317df7 100644 --- a/aliyun-python-sdk-bpstudio/aliyunsdkbpstudio/__init__.py +++ b/aliyun-python-sdk-bpstudio/aliyunsdkbpstudio/__init__.py @@ -1 +1 @@ -__version__ = '1.0.7' \ No newline at end of file +__version__ = '1.0.8' \ No newline at end of file diff --git a/aliyun-python-sdk-bpstudio/aliyunsdkbpstudio/request/v20210931/GetApplicationVariablesRequest.py b/aliyun-python-sdk-bpstudio/aliyunsdkbpstudio/request/v20210931/GetApplicationVariablesRequest.py new file mode 100644 index 0000000000..9a6783d0d1 --- /dev/null +++ b/aliyun-python-sdk-bpstudio/aliyunsdkbpstudio/request/v20210931/GetApplicationVariablesRequest.py @@ -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)