From f811c43d0ce682c46e0af6af986215fbfec0cc3a Mon Sep 17 00:00:00 2001 From: sdk-team Date: Tue, 27 Feb 2024 03:26:30 +0000 Subject: [PATCH] Generated 2022-01-01 for quickbi-public. --- ChangeLog.txt | 5 +++++ services/quickbi-public/add_user.go | 1 + .../query_user_info_by_account.go | 9 ++++---- services/quickbi-public/struct_data_item.go | 1 + services/quickbi-public/struct_result.go | 1 + .../struct_role_id_list_in_add_user.go | 21 +++++++++++++++++++ ...e_id_list_in_query_user_info_by_account.go | 21 +++++++++++++++++++ ...e_id_list_in_query_user_info_by_user_id.go | 21 +++++++++++++++++++ .../struct_role_id_list_in_query_user_list.go | 21 +++++++++++++++++++ services/quickbi-public/update_user.go | 1 + 10 files changed, 98 insertions(+), 4 deletions(-) create mode 100644 services/quickbi-public/struct_role_id_list_in_add_user.go create mode 100644 services/quickbi-public/struct_role_id_list_in_query_user_info_by_account.go create mode 100644 services/quickbi-public/struct_role_id_list_in_query_user_info_by_user_id.go create mode 100644 services/quickbi-public/struct_role_id_list_in_query_user_list.go diff --git a/ChangeLog.txt b/ChangeLog.txt index e4090159e..1239752e6 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,8 @@ +2024-02-27 Version: v1.62.683 +- Generated 2022-01-01 for `quickbi-public`. +- AllotDatasetAccelerationTask API add error code. +- QueryUserInfoByAccount, QueryUserInfoByUserId, AddUser, UpdateUser, and QueryUserList APIs add query or response parameters. + 2024-02-27 Version: v1.62.682 - Generated 2019-01-03 for `Sddp`. - Add DescribeParentInstance open api. diff --git a/services/quickbi-public/add_user.go b/services/quickbi-public/add_user.go index 39b906789..8f17b4afe 100644 --- a/services/quickbi-public/add_user.go +++ b/services/quickbi-public/add_user.go @@ -78,6 +78,7 @@ type AddUserRequest struct { UserType requests.Integer `position:"Query" name:"UserType"` SignType string `position:"Query" name:"SignType"` AccountId string `position:"Query" name:"AccountId"` + RoleIds string `position:"Body" name:"RoleIds"` AccountName string `position:"Query" name:"AccountName"` Phone string `position:"Query" name:"Phone"` NickName string `position:"Query" name:"NickName"` diff --git a/services/quickbi-public/query_user_info_by_account.go b/services/quickbi-public/query_user_info_by_account.go index 7babb7c1c..7c4d532bc 100644 --- a/services/quickbi-public/query_user_info_by_account.go +++ b/services/quickbi-public/query_user_info_by_account.go @@ -71,10 +71,11 @@ func (client *Client) QueryUserInfoByAccountWithCallback(request *QueryUserInfoB // QueryUserInfoByAccountRequest is the request struct for api QueryUserInfoByAccount type QueryUserInfoByAccountRequest struct { *requests.RpcRequest - AccessPoint string `position:"Query" name:"AccessPoint"` - AccountType requests.Integer `position:"Query" name:"AccountType"` - SignType string `position:"Query" name:"SignType"` - Account string `position:"Query" name:"Account"` + AccessPoint string `position:"Query" name:"AccessPoint"` + AccountType requests.Integer `position:"Query" name:"AccountType"` + SignType string `position:"Query" name:"SignType"` + ParentAccountName string `position:"Query" name:"ParentAccountName"` + Account string `position:"Query" name:"Account"` } // QueryUserInfoByAccountResponse is the response struct for api QueryUserInfoByAccount diff --git a/services/quickbi-public/struct_data_item.go b/services/quickbi-public/struct_data_item.go index fb8942dd0..6b0fb9868 100644 --- a/services/quickbi-public/struct_data_item.go +++ b/services/quickbi-public/struct_data_item.go @@ -75,6 +75,7 @@ type DataItem struct { AccountName string `json:"AccountName" xml:"AccountName"` OwnerId string `json:"OwnerId" xml:"OwnerId"` HasEditAuth bool `json:"HasEditAuth" xml:"HasEditAuth"` + RoleIdList []int64 `json:"RoleIdList" xml:"RoleIdList"` Directory Directory `json:"Directory" xml:"Directory"` Role Role `json:"Role" xml:"Role"` DataSource DataSource `json:"DataSource" xml:"DataSource"` diff --git a/services/quickbi-public/struct_result.go b/services/quickbi-public/struct_result.go index 45a565553..6b2c3072e 100644 --- a/services/quickbi-public/struct_result.go +++ b/services/quickbi-public/struct_result.go @@ -78,6 +78,7 @@ type Result struct { OwnerId string `json:"OwnerId" xml:"OwnerId"` DsType string `json:"DsType" xml:"DsType"` Values []map[string]interface{} `json:"Values" xml:"Values"` + RoleIdList []int64 `json:"RoleIdList" xml:"RoleIdList"` FailedUserGroupIds []string `json:"FailedUserGroupIds" xml:"FailedUserGroupIds"` UsersModel UsersModel `json:"UsersModel" xml:"UsersModel"` Detail Detail `json:"Detail" xml:"Detail"` diff --git a/services/quickbi-public/struct_role_id_list_in_add_user.go b/services/quickbi-public/struct_role_id_list_in_add_user.go new file mode 100644 index 000000000..33a216cad --- /dev/null +++ b/services/quickbi-public/struct_role_id_list_in_add_user.go @@ -0,0 +1,21 @@ +package quickbi_public + +//Licensed 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. +// +// Code generated by Alibaba Cloud SDK Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +// RoleIdListInAddUser is a nested struct in quickbi_public response +type RoleIdListInAddUser struct { + RoleIdList []int64 `json:"RoleIdList" xml:"RoleIdList"` +} diff --git a/services/quickbi-public/struct_role_id_list_in_query_user_info_by_account.go b/services/quickbi-public/struct_role_id_list_in_query_user_info_by_account.go new file mode 100644 index 000000000..20418c6d8 --- /dev/null +++ b/services/quickbi-public/struct_role_id_list_in_query_user_info_by_account.go @@ -0,0 +1,21 @@ +package quickbi_public + +//Licensed 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. +// +// Code generated by Alibaba Cloud SDK Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +// RoleIdListInQueryUserInfoByAccount is a nested struct in quickbi_public response +type RoleIdListInQueryUserInfoByAccount struct { + RoleIdList []int64 `json:"RoleIdList" xml:"RoleIdList"` +} diff --git a/services/quickbi-public/struct_role_id_list_in_query_user_info_by_user_id.go b/services/quickbi-public/struct_role_id_list_in_query_user_info_by_user_id.go new file mode 100644 index 000000000..264283ac3 --- /dev/null +++ b/services/quickbi-public/struct_role_id_list_in_query_user_info_by_user_id.go @@ -0,0 +1,21 @@ +package quickbi_public + +//Licensed 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. +// +// Code generated by Alibaba Cloud SDK Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +// RoleIdListInQueryUserInfoByUserId is a nested struct in quickbi_public response +type RoleIdListInQueryUserInfoByUserId struct { + RoleIdList []int64 `json:"RoleIdList" xml:"RoleIdList"` +} diff --git a/services/quickbi-public/struct_role_id_list_in_query_user_list.go b/services/quickbi-public/struct_role_id_list_in_query_user_list.go new file mode 100644 index 000000000..8252210cf --- /dev/null +++ b/services/quickbi-public/struct_role_id_list_in_query_user_list.go @@ -0,0 +1,21 @@ +package quickbi_public + +//Licensed 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. +// +// Code generated by Alibaba Cloud SDK Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +// RoleIdListInQueryUserList is a nested struct in quickbi_public response +type RoleIdListInQueryUserList struct { + RoleIdList []int64 `json:"roleIdList" xml:"roleIdList"` +} diff --git a/services/quickbi-public/update_user.go b/services/quickbi-public/update_user.go index 56907a659..6677a91ff 100644 --- a/services/quickbi-public/update_user.go +++ b/services/quickbi-public/update_user.go @@ -77,6 +77,7 @@ type UpdateUserRequest struct { UserType requests.Integer `position:"Query" name:"UserType"` SignType string `position:"Query" name:"SignType"` UserId string `position:"Query" name:"UserId"` + RoleIds string `position:"Query" name:"RoleIds"` Phone string `position:"Query" name:"Phone"` NickName string `position:"Query" name:"NickName"` AuthAdminUser requests.Boolean `position:"Query" name:"AuthAdminUser"`