-
Notifications
You must be signed in to change notification settings - Fork 587
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
281 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
aliyun-python-sdk-quickbi-public/aliyunsdkquickbi_public/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '2.1.11' | ||
__version__ = '2.1.12' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
...bi-public/aliyunsdkquickbi_public/request/v20220101/GetDataSourceConnectionInfoRequest.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 GetDataSourceConnectionInfoRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'quickbi-public', '2022-01-01', 'GetDataSourceConnectionInfo','2.2.0') | ||
self.set_protocol_type('https') | ||
self.set_method('POST') | ||
|
||
def get_DsId(self): # String | ||
return self.get_query_params().get('DsId') | ||
|
||
def set_DsId(self, DsId): # String | ||
self.add_query_param('DsId', DsId) |
38 changes: 38 additions & 0 deletions
38
...hon-sdk-quickbi-public/aliyunsdkquickbi_public/request/v20220101/ListDataSourceRequest.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# 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 ListDataSourceRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'quickbi-public', '2022-01-01', 'ListDataSource','2.2.0') | ||
self.set_protocol_type('https') | ||
self.set_method('POST') | ||
|
||
def get_DsType(self): # String | ||
return self.get_query_params().get('DsType') | ||
|
||
def set_DsType(self, DsType): # String | ||
self.add_query_param('DsType', DsType) | ||
def get_WorkspaceId(self): # String | ||
return self.get_query_params().get('WorkspaceId') | ||
|
||
def set_WorkspaceId(self, WorkspaceId): # String | ||
self.add_query_param('WorkspaceId', WorkspaceId) |
33 changes: 33 additions & 0 deletions
33
...ickbi-public/aliyunsdkquickbi_public/request/v20220101/QueryDatasetSmartqStatusRequest.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 QueryDatasetSmartqStatusRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'quickbi-public', '2022-01-01', 'QueryDatasetSmartqStatus','2.2.0') | ||
self.set_protocol_type('https') | ||
self.set_method('POST') | ||
|
||
def get_CubeId(self): # String | ||
return self.get_query_params().get('CubeId') | ||
|
||
def set_CubeId(self, CubeId): # String | ||
self.add_query_param('CubeId', CubeId) |
33 changes: 33 additions & 0 deletions
33
...lic/aliyunsdkquickbi_public/request/v20220101/QueryLlmCubeWithThemeListByUserIdRequest.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 QueryLlmCubeWithThemeListByUserIdRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'quickbi-public', '2022-01-01', 'QueryLlmCubeWithThemeListByUserId','2.2.0') | ||
self.set_protocol_type('https') | ||
self.set_method('POST') | ||
|
||
def get_UserId(self): # String | ||
return self.get_query_params().get('UserId') | ||
|
||
def set_UserId(self, UserId): # String | ||
self.add_query_param('UserId', UserId) |
38 changes: 38 additions & 0 deletions
38
...-public/aliyunsdkquickbi_public/request/v20220101/QuerySmartqPermissionByCubeIdRequest.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# 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 QuerySmartqPermissionByCubeIdRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'quickbi-public', '2022-01-01', 'QuerySmartqPermissionByCubeId','2.2.0') | ||
self.set_protocol_type('https') | ||
self.set_method('POST') | ||
|
||
def get_UserId(self): # String | ||
return self.get_query_params().get('UserId') | ||
|
||
def set_UserId(self, UserId): # String | ||
self.add_query_param('UserId', UserId) | ||
def get_CubeId(self): # String | ||
return self.get_query_params().get('CubeId') | ||
|
||
def set_CubeId(self, CubeId): # String | ||
self.add_query_param('CubeId', CubeId) |
38 changes: 38 additions & 0 deletions
38
...sdk-quickbi-public/aliyunsdkquickbi_public/request/v20220101/SmartqAuthTransferRequest.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# 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 SmartqAuthTransferRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'quickbi-public', '2022-01-01', 'SmartqAuthTransfer','2.2.0') | ||
self.set_protocol_type('https') | ||
self.set_method('POST') | ||
|
||
def get_TargetUserIds(self): # String | ||
return self.get_query_params().get('TargetUserIds') | ||
|
||
def set_TargetUserIds(self, TargetUserIds): # String | ||
self.add_query_param('TargetUserIds', TargetUserIds) | ||
def get_OriginUserId(self): # String | ||
return self.get_query_params().get('OriginUserId') | ||
|
||
def set_OriginUserId(self, OriginUserId): # String | ||
self.add_query_param('OriginUserId', OriginUserId) |
53 changes: 53 additions & 0 deletions
53
...on-sdk-quickbi-public/aliyunsdkquickbi_public/request/v20220101/SmartqAuthorizeRequest.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# 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 SmartqAuthorizeRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'quickbi-public', '2022-01-01', 'SmartqAuthorize','2.2.0') | ||
self.set_protocol_type('https') | ||
self.set_method('POST') | ||
|
||
def get_LlmCubeThemes(self): # String | ||
return self.get_query_params().get('LlmCubeThemes') | ||
|
||
def set_LlmCubeThemes(self, LlmCubeThemes): # String | ||
self.add_query_param('LlmCubeThemes', LlmCubeThemes) | ||
def get_LlmCubes(self): # String | ||
return self.get_query_params().get('LlmCubes') | ||
|
||
def set_LlmCubes(self, LlmCubes): # String | ||
self.add_query_param('LlmCubes', LlmCubes) | ||
def get_OperationType(self): # Integer | ||
return self.get_query_params().get('OperationType') | ||
|
||
def set_OperationType(self, OperationType): # Integer | ||
self.add_query_param('OperationType', OperationType) | ||
def get_ExpireDay(self): # String | ||
return self.get_query_params().get('ExpireDay') | ||
|
||
def set_ExpireDay(self, ExpireDay): # String | ||
self.add_query_param('ExpireDay', ExpireDay) | ||
def get_UserIds(self): # String | ||
return self.get_query_params().get('UserIds') | ||
|
||
def set_UserIds(self, UserIds): # String | ||
self.add_query_param('UserIds', UserIds) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters