tencentcloud 1.82.18 published on Thursday, Aug 21, 2025 by tencentcloudstack
tencentcloud.getDlcDescribeUserInfo
Explore with Pulumi AI
tencentcloud 1.82.18 published on Thursday, Aug 21, 2025 by tencentcloudstack
Use this data source to query detailed information of DLC describe user info
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getDlcDescribeUserInfo({
sortBy: "create-time",
sorting: "desc",
type: "Group",
userId: "100021240189",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_dlc_describe_user_info(sort_by="create-time",
sorting="desc",
type="Group",
user_id="100021240189")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.GetDlcDescribeUserInfo(ctx, &tencentcloud.GetDlcDescribeUserInfoArgs{
SortBy: pulumi.StringRef("create-time"),
Sorting: pulumi.StringRef("desc"),
Type: pulumi.StringRef("Group"),
UserId: pulumi.StringRef("100021240189"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var example = Tencentcloud.GetDlcDescribeUserInfo.Invoke(new()
{
SortBy = "create-time",
Sorting = "desc",
Type = "Group",
UserId = "100021240189",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TencentcloudFunctions;
import com.pulumi.tencentcloud.inputs.GetDlcDescribeUserInfoArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var example = TencentcloudFunctions.getDlcDescribeUserInfo(GetDlcDescribeUserInfoArgs.builder()
.sortBy("create-time")
.sorting("desc")
.type("Group")
.userId("100021240189")
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getDlcDescribeUserInfo
arguments:
sortBy: create-time
sorting: desc
type: Group
userId: '100021240189'
Using getDlcDescribeUserInfo
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getDlcDescribeUserInfo(args: GetDlcDescribeUserInfoArgs, opts?: InvokeOptions): Promise<GetDlcDescribeUserInfoResult>
function getDlcDescribeUserInfoOutput(args: GetDlcDescribeUserInfoOutputArgs, opts?: InvokeOptions): Output<GetDlcDescribeUserInfoResult>
def get_dlc_describe_user_info(filters: Optional[Sequence[GetDlcDescribeUserInfoFilter]] = None,
id: Optional[str] = None,
result_output_file: Optional[str] = None,
sort_by: Optional[str] = None,
sorting: Optional[str] = None,
type: Optional[str] = None,
user_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDlcDescribeUserInfoResult
def get_dlc_describe_user_info_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetDlcDescribeUserInfoFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
result_output_file: Optional[pulumi.Input[str]] = None,
sort_by: Optional[pulumi.Input[str]] = None,
sorting: Optional[pulumi.Input[str]] = None,
type: Optional[pulumi.Input[str]] = None,
user_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDlcDescribeUserInfoResult]
func GetDlcDescribeUserInfo(ctx *Context, args *GetDlcDescribeUserInfoArgs, opts ...InvokeOption) (*GetDlcDescribeUserInfoResult, error)
func GetDlcDescribeUserInfoOutput(ctx *Context, args *GetDlcDescribeUserInfoOutputArgs, opts ...InvokeOption) GetDlcDescribeUserInfoResultOutput
> Note: This function is named GetDlcDescribeUserInfo
in the Go SDK.
public static class GetDlcDescribeUserInfo
{
public static Task<GetDlcDescribeUserInfoResult> InvokeAsync(GetDlcDescribeUserInfoArgs args, InvokeOptions? opts = null)
public static Output<GetDlcDescribeUserInfoResult> Invoke(GetDlcDescribeUserInfoInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDlcDescribeUserInfoResult> getDlcDescribeUserInfo(GetDlcDescribeUserInfoArgs args, InvokeOptions options)
public static Output<GetDlcDescribeUserInfoResult> getDlcDescribeUserInfo(GetDlcDescribeUserInfoArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getDlcDescribeUserInfo:getDlcDescribeUserInfo
arguments:
# arguments dictionary
The following arguments are supported:
- Filters
List<Get
Dlc Describe User Info Filter> - Filter criteria that are queriedWhen the type is Group, the fuzzy search is supported as the key is workgroup-name.When the type is DataAuth, the keys supported are:policy-type: types of permissions;policy-source: data sources;data-name: fuzzy search of the database and table.When the type is EngineAuth, the keys supported are:policy-type: types of permissions;policy-source: data sources;engine-name: fuzzy search of the database and table.
- Id string
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- Result
Output stringFile - Used to save results.
- Sort
By string - Sort fields.When the type is Group, the create-time and group-name are supported.When the type is DataAuth, create-time is supported.When the type is EngineAuth, create-time is supported.
- Sorting string
- Sorting methods: desc means in order; asc means in reverse order; it is asc by default.
- Type string
- Type of queried information. Group: working group; DataAuth: data permission; EngineAuth: engine permission.
- User
Id string - User ID.
- Filters
[]Get
Dlc Describe User Info Filter - Filter criteria that are queriedWhen the type is Group, the fuzzy search is supported as the key is workgroup-name.When the type is DataAuth, the keys supported are:policy-type: types of permissions;policy-source: data sources;data-name: fuzzy search of the database and table.When the type is EngineAuth, the keys supported are:policy-type: types of permissions;policy-source: data sources;engine-name: fuzzy search of the database and table.
- Id string
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- Result
Output stringFile - Used to save results.
- Sort
By string - Sort fields.When the type is Group, the create-time and group-name are supported.When the type is DataAuth, create-time is supported.When the type is EngineAuth, create-time is supported.
- Sorting string
- Sorting methods: desc means in order; asc means in reverse order; it is asc by default.
- Type string
- Type of queried information. Group: working group; DataAuth: data permission; EngineAuth: engine permission.
- User
Id string - User ID.
- filters
List<Get
Dlc Describe User Info Filter> - Filter criteria that are queriedWhen the type is Group, the fuzzy search is supported as the key is workgroup-name.When the type is DataAuth, the keys supported are:policy-type: types of permissions;policy-source: data sources;data-name: fuzzy search of the database and table.When the type is EngineAuth, the keys supported are:policy-type: types of permissions;policy-source: data sources;engine-name: fuzzy search of the database and table.
- id String
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- result
Output StringFile - Used to save results.
- sort
By String - Sort fields.When the type is Group, the create-time and group-name are supported.When the type is DataAuth, create-time is supported.When the type is EngineAuth, create-time is supported.
- sorting String
- Sorting methods: desc means in order; asc means in reverse order; it is asc by default.
- type String
- Type of queried information. Group: working group; DataAuth: data permission; EngineAuth: engine permission.
- user
Id String - User ID.
- filters
Get
Dlc Describe User Info Filter[] - Filter criteria that are queriedWhen the type is Group, the fuzzy search is supported as the key is workgroup-name.When the type is DataAuth, the keys supported are:policy-type: types of permissions;policy-source: data sources;data-name: fuzzy search of the database and table.When the type is EngineAuth, the keys supported are:policy-type: types of permissions;policy-source: data sources;engine-name: fuzzy search of the database and table.
- id string
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- result
Output stringFile - Used to save results.
- sort
By string - Sort fields.When the type is Group, the create-time and group-name are supported.When the type is DataAuth, create-time is supported.When the type is EngineAuth, create-time is supported.
- sorting string
- Sorting methods: desc means in order; asc means in reverse order; it is asc by default.
- type string
- Type of queried information. Group: working group; DataAuth: data permission; EngineAuth: engine permission.
- user
Id string - User ID.
- filters
Sequence[Get
Dlc Describe User Info Filter] - Filter criteria that are queriedWhen the type is Group, the fuzzy search is supported as the key is workgroup-name.When the type is DataAuth, the keys supported are:policy-type: types of permissions;policy-source: data sources;data-name: fuzzy search of the database and table.When the type is EngineAuth, the keys supported are:policy-type: types of permissions;policy-source: data sources;engine-name: fuzzy search of the database and table.
- id str
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- result_
output_ strfile - Used to save results.
- sort_
by str - Sort fields.When the type is Group, the create-time and group-name are supported.When the type is DataAuth, create-time is supported.When the type is EngineAuth, create-time is supported.
- sorting str
- Sorting methods: desc means in order; asc means in reverse order; it is asc by default.
- type str
- Type of queried information. Group: working group; DataAuth: data permission; EngineAuth: engine permission.
- user_
id str - User ID.
- filters List<Property Map>
- Filter criteria that are queriedWhen the type is Group, the fuzzy search is supported as the key is workgroup-name.When the type is DataAuth, the keys supported are:policy-type: types of permissions;policy-source: data sources;data-name: fuzzy search of the database and table.When the type is EngineAuth, the keys supported are:policy-type: types of permissions;policy-source: data sources;engine-name: fuzzy search of the database and table.
- id String
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- result
Output StringFile - Used to save results.
- sort
By String - Sort fields.When the type is Group, the create-time and group-name are supported.When the type is DataAuth, create-time is supported.When the type is EngineAuth, create-time is supported.
- sorting String
- Sorting methods: desc means in order; asc means in reverse order; it is asc by default.
- type String
- Type of queried information. Group: working group; DataAuth: data permission; EngineAuth: engine permission.
- user
Id String - User ID.
getDlcDescribeUserInfo Result
The following output properties are available:
- Id string
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- User
Infos List<GetDlc Describe User Info User Info> - Detailed user informationNote: This field may return null, indicating that no valid values can be obtained.
- Filters
List<Get
Dlc Describe User Info Filter> - Result
Output stringFile - Sort
By string - Sorting string
- Type string
- Types of returned information. Group: returned information about the working group where the current user is; DataAuth: returned information about the current user's data permission; EngineAuth: returned information about the current user's engine permissionNote: This field may return null, indicating that no valid values can be obtained.
- User
Id string - User IDNote: This field may return null, indicating that no valid values can be obtained.
- Id string
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- User
Infos []GetDlc Describe User Info User Info - Detailed user informationNote: This field may return null, indicating that no valid values can be obtained.
- Filters
[]Get
Dlc Describe User Info Filter - Result
Output stringFile - Sort
By string - Sorting string
- Type string
- Types of returned information. Group: returned information about the working group where the current user is; DataAuth: returned information about the current user's data permission; EngineAuth: returned information about the current user's engine permissionNote: This field may return null, indicating that no valid values can be obtained.
- User
Id string - User IDNote: This field may return null, indicating that no valid values can be obtained.
- id String
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- user
Infos List<GetDlc Describe User Info User Info> - Detailed user informationNote: This field may return null, indicating that no valid values can be obtained.
- filters
List<Get
Dlc Describe User Info Filter> - result
Output StringFile - sort
By String - sorting String
- type String
- Types of returned information. Group: returned information about the working group where the current user is; DataAuth: returned information about the current user's data permission; EngineAuth: returned information about the current user's engine permissionNote: This field may return null, indicating that no valid values can be obtained.
- user
Id String - User IDNote: This field may return null, indicating that no valid values can be obtained.
- id string
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- user
Infos GetDlc Describe User Info User Info[] - Detailed user informationNote: This field may return null, indicating that no valid values can be obtained.
- filters
Get
Dlc Describe User Info Filter[] - result
Output stringFile - sort
By string - sorting string
- type string
- Types of returned information. Group: returned information about the working group where the current user is; DataAuth: returned information about the current user's data permission; EngineAuth: returned information about the current user's engine permissionNote: This field may return null, indicating that no valid values can be obtained.
- user
Id string - User IDNote: This field may return null, indicating that no valid values can be obtained.
- id str
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- user_
infos Sequence[GetDlc Describe User Info User Info] - Detailed user informationNote: This field may return null, indicating that no valid values can be obtained.
- filters
Sequence[Get
Dlc Describe User Info Filter] - result_
output_ strfile - sort_
by str - sorting str
- type str
- Types of returned information. Group: returned information about the working group where the current user is; DataAuth: returned information about the current user's data permission; EngineAuth: returned information about the current user's engine permissionNote: This field may return null, indicating that no valid values can be obtained.
- user_
id str - User IDNote: This field may return null, indicating that no valid values can be obtained.
- id String
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- user
Infos List<Property Map> - Detailed user informationNote: This field may return null, indicating that no valid values can be obtained.
- filters List<Property Map>
- result
Output StringFile - sort
By String - sorting String
- type String
- Types of returned information. Group: returned information about the working group where the current user is; DataAuth: returned information about the current user's data permission; EngineAuth: returned information about the current user's engine permissionNote: This field may return null, indicating that no valid values can be obtained.
- user
Id String - User IDNote: This field may return null, indicating that no valid values can be obtained.
Supporting Types
GetDlcDescribeUserInfoFilter
GetDlcDescribeUserInfoUserInfo
- Account
Type string - Account type.
- Catalog
Policy List<GetInfos Dlc Describe User Info User Info Catalog Policy Info> - Collection of catalog permissionsNote: This field may return null, indicating that no valid values can be obtained.
- Data
Policy List<GetInfos Dlc Describe User Info User Info Data Policy Info> - Collection of data permission informationNote: This field may return null, indicating that no valid values can be obtained.
- Engine
Policy List<GetInfos Dlc Describe User Info User Info Engine Policy Info> - Collection of engine permissionsNote: This field may return null, indicating that no valid values can be obtained.
- Row
Filter List<GetInfos Dlc Describe User Info User Info Row Filter Info> - Collection of filtered rowsNote: This field may return null, indicating that no valid values can be obtained.
- Type string
- Type of queried information. Group: working group; DataAuth: data permission; EngineAuth: engine permission.
- User
Alias string - User aliasNote: This field may return null, indicating that no valid values can be obtained.
- User
Description string - User descriptionNote: This field may return null, indicating that no valid values can be obtained.
- User
Id string - User ID.
- User
Type string - Types of users. ADMIN: administrators; COMMON: general usersNote: This field may return null, indicating that no valid values can be obtained.
- Work
Group List<GetInfos Dlc Describe User Info User Info Work Group Info> - Information about collections of working groups bound to the userNote: This field may return null, indicating that no valid values can be obtained.
- Account
Type string - Account type.
- Catalog
Policy []GetInfos Dlc Describe User Info User Info Catalog Policy Info - Collection of catalog permissionsNote: This field may return null, indicating that no valid values can be obtained.
- Data
Policy []GetInfos Dlc Describe User Info User Info Data Policy Info - Collection of data permission informationNote: This field may return null, indicating that no valid values can be obtained.
- Engine
Policy []GetInfos Dlc Describe User Info User Info Engine Policy Info - Collection of engine permissionsNote: This field may return null, indicating that no valid values can be obtained.
- Row
Filter []GetInfos Dlc Describe User Info User Info Row Filter Info - Collection of filtered rowsNote: This field may return null, indicating that no valid values can be obtained.
- Type string
- Type of queried information. Group: working group; DataAuth: data permission; EngineAuth: engine permission.
- User
Alias string - User aliasNote: This field may return null, indicating that no valid values can be obtained.
- User
Description string - User descriptionNote: This field may return null, indicating that no valid values can be obtained.
- User
Id string - User ID.
- User
Type string - Types of users. ADMIN: administrators; COMMON: general usersNote: This field may return null, indicating that no valid values can be obtained.
- Work
Group []GetInfos Dlc Describe User Info User Info Work Group Info - Information about collections of working groups bound to the userNote: This field may return null, indicating that no valid values can be obtained.
- account
Type String - Account type.
- catalog
Policy List<GetInfos Dlc Describe User Info User Info Catalog Policy Info> - Collection of catalog permissionsNote: This field may return null, indicating that no valid values can be obtained.
- data
Policy List<GetInfos Dlc Describe User Info User Info Data Policy Info> - Collection of data permission informationNote: This field may return null, indicating that no valid values can be obtained.
- engine
Policy List<GetInfos Dlc Describe User Info User Info Engine Policy Info> - Collection of engine permissionsNote: This field may return null, indicating that no valid values can be obtained.
- row
Filter List<GetInfos Dlc Describe User Info User Info Row Filter Info> - Collection of filtered rowsNote: This field may return null, indicating that no valid values can be obtained.
- type String
- Type of queried information. Group: working group; DataAuth: data permission; EngineAuth: engine permission.
- user
Alias String - User aliasNote: This field may return null, indicating that no valid values can be obtained.
- user
Description String - User descriptionNote: This field may return null, indicating that no valid values can be obtained.
- user
Id String - User ID.
- user
Type String - Types of users. ADMIN: administrators; COMMON: general usersNote: This field may return null, indicating that no valid values can be obtained.
- work
Group List<GetInfos Dlc Describe User Info User Info Work Group Info> - Information about collections of working groups bound to the userNote: This field may return null, indicating that no valid values can be obtained.
- account
Type string - Account type.
- catalog
Policy GetInfos Dlc Describe User Info User Info Catalog Policy Info[] - Collection of catalog permissionsNote: This field may return null, indicating that no valid values can be obtained.
- data
Policy GetInfos Dlc Describe User Info User Info Data Policy Info[] - Collection of data permission informationNote: This field may return null, indicating that no valid values can be obtained.
- engine
Policy GetInfos Dlc Describe User Info User Info Engine Policy Info[] - Collection of engine permissionsNote: This field may return null, indicating that no valid values can be obtained.
- row
Filter GetInfos Dlc Describe User Info User Info Row Filter Info[] - Collection of filtered rowsNote: This field may return null, indicating that no valid values can be obtained.
- type string
- Type of queried information. Group: working group; DataAuth: data permission; EngineAuth: engine permission.
- user
Alias string - User aliasNote: This field may return null, indicating that no valid values can be obtained.
- user
Description string - User descriptionNote: This field may return null, indicating that no valid values can be obtained.
- user
Id string - User ID.
- user
Type string - Types of users. ADMIN: administrators; COMMON: general usersNote: This field may return null, indicating that no valid values can be obtained.
- work
Group GetInfos Dlc Describe User Info User Info Work Group Info[] - Information about collections of working groups bound to the userNote: This field may return null, indicating that no valid values can be obtained.
- account_
type str - Account type.
- catalog_
policy_ Sequence[Getinfos Dlc Describe User Info User Info Catalog Policy Info] - Collection of catalog permissionsNote: This field may return null, indicating that no valid values can be obtained.
- data_
policy_ Sequence[Getinfos Dlc Describe User Info User Info Data Policy Info] - Collection of data permission informationNote: This field may return null, indicating that no valid values can be obtained.
- engine_
policy_ Sequence[Getinfos Dlc Describe User Info User Info Engine Policy Info] - Collection of engine permissionsNote: This field may return null, indicating that no valid values can be obtained.
- row_
filter_ Sequence[Getinfos Dlc Describe User Info User Info Row Filter Info] - Collection of filtered rowsNote: This field may return null, indicating that no valid values can be obtained.
- type str
- Type of queried information. Group: working group; DataAuth: data permission; EngineAuth: engine permission.
- user_
alias str - User aliasNote: This field may return null, indicating that no valid values can be obtained.
- user_
description str - User descriptionNote: This field may return null, indicating that no valid values can be obtained.
- user_
id str - User ID.
- user_
type str - Types of users. ADMIN: administrators; COMMON: general usersNote: This field may return null, indicating that no valid values can be obtained.
- work_
group_ Sequence[Getinfos Dlc Describe User Info User Info Work Group Info] - Information about collections of working groups bound to the userNote: This field may return null, indicating that no valid values can be obtained.
- account
Type String - Account type.
- catalog
Policy List<Property Map>Infos - Collection of catalog permissionsNote: This field may return null, indicating that no valid values can be obtained.
- data
Policy List<Property Map>Infos - Collection of data permission informationNote: This field may return null, indicating that no valid values can be obtained.
- engine
Policy List<Property Map>Infos - Collection of engine permissionsNote: This field may return null, indicating that no valid values can be obtained.
- row
Filter List<Property Map>Infos - Collection of filtered rowsNote: This field may return null, indicating that no valid values can be obtained.
- type String
- Type of queried information. Group: working group; DataAuth: data permission; EngineAuth: engine permission.
- user
Alias String - User aliasNote: This field may return null, indicating that no valid values can be obtained.
- user
Description String - User descriptionNote: This field may return null, indicating that no valid values can be obtained.
- user
Id String - User ID.
- user
Type String - Types of users. ADMIN: administrators; COMMON: general usersNote: This field may return null, indicating that no valid values can be obtained.
- work
Group List<Property Map>Infos - Information about collections of working groups bound to the userNote: This field may return null, indicating that no valid values can be obtained.
GetDlcDescribeUserInfoUserInfoCatalogPolicyInfo
- Policy
Sets List<GetDlc Describe User Info User Info Catalog Policy Info Policy Set> - Collection of policiesNote: This field may return null, indicating that no valid values can be obtained.
- Total
Count double - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- Policy
Sets []GetDlc Describe User Info User Info Catalog Policy Info Policy Set - Collection of policiesNote: This field may return null, indicating that no valid values can be obtained.
- Total
Count float64 - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- policy
Sets List<GetDlc Describe User Info User Info Catalog Policy Info Policy Set> - Collection of policiesNote: This field may return null, indicating that no valid values can be obtained.
- total
Count Double - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- policy
Sets GetDlc Describe User Info User Info Catalog Policy Info Policy Set[] - Collection of policiesNote: This field may return null, indicating that no valid values can be obtained.
- total
Count number - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- policy_
sets Sequence[GetDlc Describe User Info User Info Catalog Policy Info Policy Set] - Collection of policiesNote: This field may return null, indicating that no valid values can be obtained.
- total_
count float - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- policy
Sets List<Property Map> - Collection of policiesNote: This field may return null, indicating that no valid values can be obtained.
- total
Count Number - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
GetDlcDescribeUserInfoUserInfoCatalogPolicyInfoPolicySet
- Catalog string
- The name of the target data source. To grant admin permission, it must be
*
(all resources at this level); to grant data source and database permissions, it must beCOSDataCatalog
or*
; to grant table permissions, it can be a custom data source; if it is left empty,DataLakeCatalog
is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console. - Column string
- The name of the target column.
*
represents all columns. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - Create
Time string - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- Data
Engine string - The name of the target data engine.
*
represents all engines. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - Database string
- The name of the target database.
*
represents all databases in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any database. - Function string
- The name of the target function.
*
represents all functions in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.Note: This field may return null, indicating that no valid values can be obtained. - Id double
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- Mode string
- The grant mode, which is not required as an input parameter. Valid values:
COMMON
andSENIOR
.Note: This field may return null, indicating that no valid values can be obtained. - Operation string
- The target permissions, which vary by permission level. Admin:
ALL
(default); data connection:CREATE
; database:ALL
,CREATE
,ALTER
, andDROP
; table:ALL
,SELECT
,INSERT
,ALTER
,DELETE
,DROP
, andUPDATE
. Note: For table permissions, if a data source other thanCOSDataCatalog
is specified, only theSELECT
permission can be granted here. - Operator string
- The operator, which is not required as an input parameter.Note: This field may return null, indicating that no valid values can be obtained.
- Policy
Type string - The permission type. Valid values:
ADMIN
,DATASOURCE
,DATABASE
,TABLE
,VIEW
,FUNCTION
,COLUMN
, andENGINE
. Note: If it is left empty,ADMIN
is used. - Re
Auth bool - Whether the grantee is allowed to further grant the permissions. Valid values:
false
(default) andtrue
(the grantee can grant permissions gained here to other sub-users).Note: This field may return null, indicating that no valid values can be obtained. - Source string
- The permission source, which is not required when input parameters are passed in. Valid values:
USER
(from the user) andWORKGROUP
(from one or more associated work groups).Note: This field may return null, indicating that no valid values can be obtained. - Source
Id double - The ID of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - Source
Name string - The name of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - Table string
- The name of the target table.
*
represents all tables in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table. - View string
- The name of the target view.
*
represents all views in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.Note: This field may return null, indicating that no valid values can be obtained.
- Catalog string
- The name of the target data source. To grant admin permission, it must be
*
(all resources at this level); to grant data source and database permissions, it must beCOSDataCatalog
or*
; to grant table permissions, it can be a custom data source; if it is left empty,DataLakeCatalog
is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console. - Column string
- The name of the target column.
*
represents all columns. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - Create
Time string - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- Data
Engine string - The name of the target data engine.
*
represents all engines. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - Database string
- The name of the target database.
*
represents all databases in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any database. - Function string
- The name of the target function.
*
represents all functions in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.Note: This field may return null, indicating that no valid values can be obtained. - Id float64
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- Mode string
- The grant mode, which is not required as an input parameter. Valid values:
COMMON
andSENIOR
.Note: This field may return null, indicating that no valid values can be obtained. - Operation string
- The target permissions, which vary by permission level. Admin:
ALL
(default); data connection:CREATE
; database:ALL
,CREATE
,ALTER
, andDROP
; table:ALL
,SELECT
,INSERT
,ALTER
,DELETE
,DROP
, andUPDATE
. Note: For table permissions, if a data source other thanCOSDataCatalog
is specified, only theSELECT
permission can be granted here. - Operator string
- The operator, which is not required as an input parameter.Note: This field may return null, indicating that no valid values can be obtained.
- Policy
Type string - The permission type. Valid values:
ADMIN
,DATASOURCE
,DATABASE
,TABLE
,VIEW
,FUNCTION
,COLUMN
, andENGINE
. Note: If it is left empty,ADMIN
is used. - Re
Auth bool - Whether the grantee is allowed to further grant the permissions. Valid values:
false
(default) andtrue
(the grantee can grant permissions gained here to other sub-users).Note: This field may return null, indicating that no valid values can be obtained. - Source string
- The permission source, which is not required when input parameters are passed in. Valid values:
USER
(from the user) andWORKGROUP
(from one or more associated work groups).Note: This field may return null, indicating that no valid values can be obtained. - Source
Id float64 - The ID of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - Source
Name string - The name of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - Table string
- The name of the target table.
*
represents all tables in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table. - View string
- The name of the target view.
*
represents all views in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.Note: This field may return null, indicating that no valid values can be obtained.
- catalog String
- The name of the target data source. To grant admin permission, it must be
*
(all resources at this level); to grant data source and database permissions, it must beCOSDataCatalog
or*
; to grant table permissions, it can be a custom data source; if it is left empty,DataLakeCatalog
is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console. - column String
- The name of the target column.
*
represents all columns. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - create
Time String - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- data
Engine String - The name of the target data engine.
*
represents all engines. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - database String
- The name of the target database.
*
represents all databases in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any database. - function String
- The name of the target function.
*
represents all functions in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.Note: This field may return null, indicating that no valid values can be obtained. - id Double
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- mode String
- The grant mode, which is not required as an input parameter. Valid values:
COMMON
andSENIOR
.Note: This field may return null, indicating that no valid values can be obtained. - operation String
- The target permissions, which vary by permission level. Admin:
ALL
(default); data connection:CREATE
; database:ALL
,CREATE
,ALTER
, andDROP
; table:ALL
,SELECT
,INSERT
,ALTER
,DELETE
,DROP
, andUPDATE
. Note: For table permissions, if a data source other thanCOSDataCatalog
is specified, only theSELECT
permission can be granted here. - operator String
- The operator, which is not required as an input parameter.Note: This field may return null, indicating that no valid values can be obtained.
- policy
Type String - The permission type. Valid values:
ADMIN
,DATASOURCE
,DATABASE
,TABLE
,VIEW
,FUNCTION
,COLUMN
, andENGINE
. Note: If it is left empty,ADMIN
is used. - re
Auth Boolean - Whether the grantee is allowed to further grant the permissions. Valid values:
false
(default) andtrue
(the grantee can grant permissions gained here to other sub-users).Note: This field may return null, indicating that no valid values can be obtained. - source String
- The permission source, which is not required when input parameters are passed in. Valid values:
USER
(from the user) andWORKGROUP
(from one or more associated work groups).Note: This field may return null, indicating that no valid values can be obtained. - source
Id Double - The ID of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - source
Name String - The name of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - table String
- The name of the target table.
*
represents all tables in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table. - view String
- The name of the target view.
*
represents all views in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.Note: This field may return null, indicating that no valid values can be obtained.
- catalog string
- The name of the target data source. To grant admin permission, it must be
*
(all resources at this level); to grant data source and database permissions, it must beCOSDataCatalog
or*
; to grant table permissions, it can be a custom data source; if it is left empty,DataLakeCatalog
is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console. - column string
- The name of the target column.
*
represents all columns. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - create
Time string - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- data
Engine string - The name of the target data engine.
*
represents all engines. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - database string
- The name of the target database.
*
represents all databases in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any database. - function string
- The name of the target function.
*
represents all functions in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.Note: This field may return null, indicating that no valid values can be obtained. - id number
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- mode string
- The grant mode, which is not required as an input parameter. Valid values:
COMMON
andSENIOR
.Note: This field may return null, indicating that no valid values can be obtained. - operation string
- The target permissions, which vary by permission level. Admin:
ALL
(default); data connection:CREATE
; database:ALL
,CREATE
,ALTER
, andDROP
; table:ALL
,SELECT
,INSERT
,ALTER
,DELETE
,DROP
, andUPDATE
. Note: For table permissions, if a data source other thanCOSDataCatalog
is specified, only theSELECT
permission can be granted here. - operator string
- The operator, which is not required as an input parameter.Note: This field may return null, indicating that no valid values can be obtained.
- policy
Type string - The permission type. Valid values:
ADMIN
,DATASOURCE
,DATABASE
,TABLE
,VIEW
,FUNCTION
,COLUMN
, andENGINE
. Note: If it is left empty,ADMIN
is used. - re
Auth boolean - Whether the grantee is allowed to further grant the permissions. Valid values:
false
(default) andtrue
(the grantee can grant permissions gained here to other sub-users).Note: This field may return null, indicating that no valid values can be obtained. - source string
- The permission source, which is not required when input parameters are passed in. Valid values:
USER
(from the user) andWORKGROUP
(from one or more associated work groups).Note: This field may return null, indicating that no valid values can be obtained. - source
Id number - The ID of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - source
Name string - The name of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - table string
- The name of the target table.
*
represents all tables in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table. - view string
- The name of the target view.
*
represents all views in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.Note: This field may return null, indicating that no valid values can be obtained.
- catalog str
- The name of the target data source. To grant admin permission, it must be
*
(all resources at this level); to grant data source and database permissions, it must beCOSDataCatalog
or*
; to grant table permissions, it can be a custom data source; if it is left empty,DataLakeCatalog
is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console. - column str
- The name of the target column.
*
represents all columns. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - create_
time str - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- data_
engine str - The name of the target data engine.
*
represents all engines. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - database str
- The name of the target database.
*
represents all databases in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any database. - function str
- The name of the target function.
*
represents all functions in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.Note: This field may return null, indicating that no valid values can be obtained. - id float
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- mode str
- The grant mode, which is not required as an input parameter. Valid values:
COMMON
andSENIOR
.Note: This field may return null, indicating that no valid values can be obtained. - operation str
- The target permissions, which vary by permission level. Admin:
ALL
(default); data connection:CREATE
; database:ALL
,CREATE
,ALTER
, andDROP
; table:ALL
,SELECT
,INSERT
,ALTER
,DELETE
,DROP
, andUPDATE
. Note: For table permissions, if a data source other thanCOSDataCatalog
is specified, only theSELECT
permission can be granted here. - operator str
- The operator, which is not required as an input parameter.Note: This field may return null, indicating that no valid values can be obtained.
- policy_
type str - The permission type. Valid values:
ADMIN
,DATASOURCE
,DATABASE
,TABLE
,VIEW
,FUNCTION
,COLUMN
, andENGINE
. Note: If it is left empty,ADMIN
is used. - re_
auth bool - Whether the grantee is allowed to further grant the permissions. Valid values:
false
(default) andtrue
(the grantee can grant permissions gained here to other sub-users).Note: This field may return null, indicating that no valid values can be obtained. - source str
- The permission source, which is not required when input parameters are passed in. Valid values:
USER
(from the user) andWORKGROUP
(from one or more associated work groups).Note: This field may return null, indicating that no valid values can be obtained. - source_
id float - The ID of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - source_
name str - The name of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - table str
- The name of the target table.
*
represents all tables in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table. - view str
- The name of the target view.
*
represents all views in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.Note: This field may return null, indicating that no valid values can be obtained.
- catalog String
- The name of the target data source. To grant admin permission, it must be
*
(all resources at this level); to grant data source and database permissions, it must beCOSDataCatalog
or*
; to grant table permissions, it can be a custom data source; if it is left empty,DataLakeCatalog
is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console. - column String
- The name of the target column.
*
represents all columns. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - create
Time String - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- data
Engine String - The name of the target data engine.
*
represents all engines. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - database String
- The name of the target database.
*
represents all databases in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any database. - function String
- The name of the target function.
*
represents all functions in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.Note: This field may return null, indicating that no valid values can be obtained. - id Number
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- mode String
- The grant mode, which is not required as an input parameter. Valid values:
COMMON
andSENIOR
.Note: This field may return null, indicating that no valid values can be obtained. - operation String
- The target permissions, which vary by permission level. Admin:
ALL
(default); data connection:CREATE
; database:ALL
,CREATE
,ALTER
, andDROP
; table:ALL
,SELECT
,INSERT
,ALTER
,DELETE
,DROP
, andUPDATE
. Note: For table permissions, if a data source other thanCOSDataCatalog
is specified, only theSELECT
permission can be granted here. - operator String
- The operator, which is not required as an input parameter.Note: This field may return null, indicating that no valid values can be obtained.
- policy
Type String - The permission type. Valid values:
ADMIN
,DATASOURCE
,DATABASE
,TABLE
,VIEW
,FUNCTION
,COLUMN
, andENGINE
. Note: If it is left empty,ADMIN
is used. - re
Auth Boolean - Whether the grantee is allowed to further grant the permissions. Valid values:
false
(default) andtrue
(the grantee can grant permissions gained here to other sub-users).Note: This field may return null, indicating that no valid values can be obtained. - source String
- The permission source, which is not required when input parameters are passed in. Valid values:
USER
(from the user) andWORKGROUP
(from one or more associated work groups).Note: This field may return null, indicating that no valid values can be obtained. - source
Id Number - The ID of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - source
Name String - The name of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - table String
- The name of the target table.
*
represents all tables in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table. - view String
- The name of the target view.
*
represents all views in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.Note: This field may return null, indicating that no valid values can be obtained.
GetDlcDescribeUserInfoUserInfoDataPolicyInfo
- Policy
Sets List<GetDlc Describe User Info User Info Data Policy Info Policy Set> - Collection of policiesNote: This field may return null, indicating that no valid values can be obtained.
- Total
Count double - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- Policy
Sets []GetDlc Describe User Info User Info Data Policy Info Policy Set - Collection of policiesNote: This field may return null, indicating that no valid values can be obtained.
- Total
Count float64 - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- policy
Sets List<GetDlc Describe User Info User Info Data Policy Info Policy Set> - Collection of policiesNote: This field may return null, indicating that no valid values can be obtained.
- total
Count Double - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- policy
Sets GetDlc Describe User Info User Info Data Policy Info Policy Set[] - Collection of policiesNote: This field may return null, indicating that no valid values can be obtained.
- total
Count number - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- policy_
sets Sequence[GetDlc Describe User Info User Info Data Policy Info Policy Set] - Collection of policiesNote: This field may return null, indicating that no valid values can be obtained.
- total_
count float - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- policy
Sets List<Property Map> - Collection of policiesNote: This field may return null, indicating that no valid values can be obtained.
- total
Count Number - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
GetDlcDescribeUserInfoUserInfoDataPolicyInfoPolicySet
- Catalog string
- The name of the target data source. To grant admin permission, it must be
*
(all resources at this level); to grant data source and database permissions, it must beCOSDataCatalog
or*
; to grant table permissions, it can be a custom data source; if it is left empty,DataLakeCatalog
is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console. - Column string
- The name of the target column.
*
represents all columns. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - Create
Time string - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- Data
Engine string - The name of the target data engine.
*
represents all engines. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - Database string
- The name of the target database.
*
represents all databases in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any database. - Function string
- The name of the target function.
*
represents all functions in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.Note: This field may return null, indicating that no valid values can be obtained. - Id double
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- Mode string
- The grant mode, which is not required as an input parameter. Valid values:
COMMON
andSENIOR
.Note: This field may return null, indicating that no valid values can be obtained. - Operation string
- The target permissions, which vary by permission level. Admin:
ALL
(default); data connection:CREATE
; database:ALL
,CREATE
,ALTER
, andDROP
; table:ALL
,SELECT
,INSERT
,ALTER
,DELETE
,DROP
, andUPDATE
. Note: For table permissions, if a data source other thanCOSDataCatalog
is specified, only theSELECT
permission can be granted here. - Operator string
- The operator, which is not required as an input parameter.Note: This field may return null, indicating that no valid values can be obtained.
- Policy
Type string - The permission type. Valid values:
ADMIN
,DATASOURCE
,DATABASE
,TABLE
,VIEW
,FUNCTION
,COLUMN
, andENGINE
. Note: If it is left empty,ADMIN
is used. - Re
Auth bool - Whether the grantee is allowed to further grant the permissions. Valid values:
false
(default) andtrue
(the grantee can grant permissions gained here to other sub-users).Note: This field may return null, indicating that no valid values can be obtained. - Source string
- The permission source, which is not required when input parameters are passed in. Valid values:
USER
(from the user) andWORKGROUP
(from one or more associated work groups).Note: This field may return null, indicating that no valid values can be obtained. - Source
Id double - The ID of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - Source
Name string - The name of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - Table string
- The name of the target table.
*
represents all tables in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table. - View string
- The name of the target view.
*
represents all views in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.Note: This field may return null, indicating that no valid values can be obtained.
- Catalog string
- The name of the target data source. To grant admin permission, it must be
*
(all resources at this level); to grant data source and database permissions, it must beCOSDataCatalog
or*
; to grant table permissions, it can be a custom data source; if it is left empty,DataLakeCatalog
is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console. - Column string
- The name of the target column.
*
represents all columns. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - Create
Time string - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- Data
Engine string - The name of the target data engine.
*
represents all engines. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - Database string
- The name of the target database.
*
represents all databases in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any database. - Function string
- The name of the target function.
*
represents all functions in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.Note: This field may return null, indicating that no valid values can be obtained. - Id float64
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- Mode string
- The grant mode, which is not required as an input parameter. Valid values:
COMMON
andSENIOR
.Note: This field may return null, indicating that no valid values can be obtained. - Operation string
- The target permissions, which vary by permission level. Admin:
ALL
(default); data connection:CREATE
; database:ALL
,CREATE
,ALTER
, andDROP
; table:ALL
,SELECT
,INSERT
,ALTER
,DELETE
,DROP
, andUPDATE
. Note: For table permissions, if a data source other thanCOSDataCatalog
is specified, only theSELECT
permission can be granted here. - Operator string
- The operator, which is not required as an input parameter.Note: This field may return null, indicating that no valid values can be obtained.
- Policy
Type string - The permission type. Valid values:
ADMIN
,DATASOURCE
,DATABASE
,TABLE
,VIEW
,FUNCTION
,COLUMN
, andENGINE
. Note: If it is left empty,ADMIN
is used. - Re
Auth bool - Whether the grantee is allowed to further grant the permissions. Valid values:
false
(default) andtrue
(the grantee can grant permissions gained here to other sub-users).Note: This field may return null, indicating that no valid values can be obtained. - Source string
- The permission source, which is not required when input parameters are passed in. Valid values:
USER
(from the user) andWORKGROUP
(from one or more associated work groups).Note: This field may return null, indicating that no valid values can be obtained. - Source
Id float64 - The ID of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - Source
Name string - The name of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - Table string
- The name of the target table.
*
represents all tables in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table. - View string
- The name of the target view.
*
represents all views in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.Note: This field may return null, indicating that no valid values can be obtained.
- catalog String
- The name of the target data source. To grant admin permission, it must be
*
(all resources at this level); to grant data source and database permissions, it must beCOSDataCatalog
or*
; to grant table permissions, it can be a custom data source; if it is left empty,DataLakeCatalog
is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console. - column String
- The name of the target column.
*
represents all columns. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - create
Time String - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- data
Engine String - The name of the target data engine.
*
represents all engines. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - database String
- The name of the target database.
*
represents all databases in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any database. - function String
- The name of the target function.
*
represents all functions in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.Note: This field may return null, indicating that no valid values can be obtained. - id Double
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- mode String
- The grant mode, which is not required as an input parameter. Valid values:
COMMON
andSENIOR
.Note: This field may return null, indicating that no valid values can be obtained. - operation String
- The target permissions, which vary by permission level. Admin:
ALL
(default); data connection:CREATE
; database:ALL
,CREATE
,ALTER
, andDROP
; table:ALL
,SELECT
,INSERT
,ALTER
,DELETE
,DROP
, andUPDATE
. Note: For table permissions, if a data source other thanCOSDataCatalog
is specified, only theSELECT
permission can be granted here. - operator String
- The operator, which is not required as an input parameter.Note: This field may return null, indicating that no valid values can be obtained.
- policy
Type String - The permission type. Valid values:
ADMIN
,DATASOURCE
,DATABASE
,TABLE
,VIEW
,FUNCTION
,COLUMN
, andENGINE
. Note: If it is left empty,ADMIN
is used. - re
Auth Boolean - Whether the grantee is allowed to further grant the permissions. Valid values:
false
(default) andtrue
(the grantee can grant permissions gained here to other sub-users).Note: This field may return null, indicating that no valid values can be obtained. - source String
- The permission source, which is not required when input parameters are passed in. Valid values:
USER
(from the user) andWORKGROUP
(from one or more associated work groups).Note: This field may return null, indicating that no valid values can be obtained. - source
Id Double - The ID of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - source
Name String - The name of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - table String
- The name of the target table.
*
represents all tables in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table. - view String
- The name of the target view.
*
represents all views in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.Note: This field may return null, indicating that no valid values can be obtained.
- catalog string
- The name of the target data source. To grant admin permission, it must be
*
(all resources at this level); to grant data source and database permissions, it must beCOSDataCatalog
or*
; to grant table permissions, it can be a custom data source; if it is left empty,DataLakeCatalog
is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console. - column string
- The name of the target column.
*
represents all columns. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - create
Time string - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- data
Engine string - The name of the target data engine.
*
represents all engines. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - database string
- The name of the target database.
*
represents all databases in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any database. - function string
- The name of the target function.
*
represents all functions in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.Note: This field may return null, indicating that no valid values can be obtained. - id number
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- mode string
- The grant mode, which is not required as an input parameter. Valid values:
COMMON
andSENIOR
.Note: This field may return null, indicating that no valid values can be obtained. - operation string
- The target permissions, which vary by permission level. Admin:
ALL
(default); data connection:CREATE
; database:ALL
,CREATE
,ALTER
, andDROP
; table:ALL
,SELECT
,INSERT
,ALTER
,DELETE
,DROP
, andUPDATE
. Note: For table permissions, if a data source other thanCOSDataCatalog
is specified, only theSELECT
permission can be granted here. - operator string
- The operator, which is not required as an input parameter.Note: This field may return null, indicating that no valid values can be obtained.
- policy
Type string - The permission type. Valid values:
ADMIN
,DATASOURCE
,DATABASE
,TABLE
,VIEW
,FUNCTION
,COLUMN
, andENGINE
. Note: If it is left empty,ADMIN
is used. - re
Auth boolean - Whether the grantee is allowed to further grant the permissions. Valid values:
false
(default) andtrue
(the grantee can grant permissions gained here to other sub-users).Note: This field may return null, indicating that no valid values can be obtained. - source string
- The permission source, which is not required when input parameters are passed in. Valid values:
USER
(from the user) andWORKGROUP
(from one or more associated work groups).Note: This field may return null, indicating that no valid values can be obtained. - source
Id number - The ID of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - source
Name string - The name of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - table string
- The name of the target table.
*
represents all tables in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table. - view string
- The name of the target view.
*
represents all views in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.Note: This field may return null, indicating that no valid values can be obtained.
- catalog str
- The name of the target data source. To grant admin permission, it must be
*
(all resources at this level); to grant data source and database permissions, it must beCOSDataCatalog
or*
; to grant table permissions, it can be a custom data source; if it is left empty,DataLakeCatalog
is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console. - column str
- The name of the target column.
*
represents all columns. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - create_
time str - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- data_
engine str - The name of the target data engine.
*
represents all engines. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - database str
- The name of the target database.
*
represents all databases in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any database. - function str
- The name of the target function.
*
represents all functions in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.Note: This field may return null, indicating that no valid values can be obtained. - id float
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- mode str
- The grant mode, which is not required as an input parameter. Valid values:
COMMON
andSENIOR
.Note: This field may return null, indicating that no valid values can be obtained. - operation str
- The target permissions, which vary by permission level. Admin:
ALL
(default); data connection:CREATE
; database:ALL
,CREATE
,ALTER
, andDROP
; table:ALL
,SELECT
,INSERT
,ALTER
,DELETE
,DROP
, andUPDATE
. Note: For table permissions, if a data source other thanCOSDataCatalog
is specified, only theSELECT
permission can be granted here. - operator str
- The operator, which is not required as an input parameter.Note: This field may return null, indicating that no valid values can be obtained.
- policy_
type str - The permission type. Valid values:
ADMIN
,DATASOURCE
,DATABASE
,TABLE
,VIEW
,FUNCTION
,COLUMN
, andENGINE
. Note: If it is left empty,ADMIN
is used. - re_
auth bool - Whether the grantee is allowed to further grant the permissions. Valid values:
false
(default) andtrue
(the grantee can grant permissions gained here to other sub-users).Note: This field may return null, indicating that no valid values can be obtained. - source str
- The permission source, which is not required when input parameters are passed in. Valid values:
USER
(from the user) andWORKGROUP
(from one or more associated work groups).Note: This field may return null, indicating that no valid values can be obtained. - source_
id float - The ID of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - source_
name str - The name of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - table str
- The name of the target table.
*
represents all tables in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table. - view str
- The name of the target view.
*
represents all views in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.Note: This field may return null, indicating that no valid values can be obtained.
- catalog String
- The name of the target data source. To grant admin permission, it must be
*
(all resources at this level); to grant data source and database permissions, it must beCOSDataCatalog
or*
; to grant table permissions, it can be a custom data source; if it is left empty,DataLakeCatalog
is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console. - column String
- The name of the target column.
*
represents all columns. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - create
Time String - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- data
Engine String - The name of the target data engine.
*
represents all engines. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - database String
- The name of the target database.
*
represents all databases in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any database. - function String
- The name of the target function.
*
represents all functions in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.Note: This field may return null, indicating that no valid values can be obtained. - id Number
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- mode String
- The grant mode, which is not required as an input parameter. Valid values:
COMMON
andSENIOR
.Note: This field may return null, indicating that no valid values can be obtained. - operation String
- The target permissions, which vary by permission level. Admin:
ALL
(default); data connection:CREATE
; database:ALL
,CREATE
,ALTER
, andDROP
; table:ALL
,SELECT
,INSERT
,ALTER
,DELETE
,DROP
, andUPDATE
. Note: For table permissions, if a data source other thanCOSDataCatalog
is specified, only theSELECT
permission can be granted here. - operator String
- The operator, which is not required as an input parameter.Note: This field may return null, indicating that no valid values can be obtained.
- policy
Type String - The permission type. Valid values:
ADMIN
,DATASOURCE
,DATABASE
,TABLE
,VIEW
,FUNCTION
,COLUMN
, andENGINE
. Note: If it is left empty,ADMIN
is used. - re
Auth Boolean - Whether the grantee is allowed to further grant the permissions. Valid values:
false
(default) andtrue
(the grantee can grant permissions gained here to other sub-users).Note: This field may return null, indicating that no valid values can be obtained. - source String
- The permission source, which is not required when input parameters are passed in. Valid values:
USER
(from the user) andWORKGROUP
(from one or more associated work groups).Note: This field may return null, indicating that no valid values can be obtained. - source
Id Number - The ID of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - source
Name String - The name of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - table String
- The name of the target table.
*
represents all tables in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table. - view String
- The name of the target view.
*
represents all views in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.Note: This field may return null, indicating that no valid values can be obtained.
GetDlcDescribeUserInfoUserInfoEnginePolicyInfo
- Policy
Sets List<GetDlc Describe User Info User Info Engine Policy Info Policy Set> - Collection of policiesNote: This field may return null, indicating that no valid values can be obtained.
- Total
Count double - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- Policy
Sets []GetDlc Describe User Info User Info Engine Policy Info Policy Set - Collection of policiesNote: This field may return null, indicating that no valid values can be obtained.
- Total
Count float64 - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- policy
Sets List<GetDlc Describe User Info User Info Engine Policy Info Policy Set> - Collection of policiesNote: This field may return null, indicating that no valid values can be obtained.
- total
Count Double - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- policy
Sets GetDlc Describe User Info User Info Engine Policy Info Policy Set[] - Collection of policiesNote: This field may return null, indicating that no valid values can be obtained.
- total
Count number - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- policy_
sets Sequence[GetDlc Describe User Info User Info Engine Policy Info Policy Set] - Collection of policiesNote: This field may return null, indicating that no valid values can be obtained.
- total_
count float - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- policy
Sets List<Property Map> - Collection of policiesNote: This field may return null, indicating that no valid values can be obtained.
- total
Count Number - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
GetDlcDescribeUserInfoUserInfoEnginePolicyInfoPolicySet
- Catalog string
- The name of the target data source. To grant admin permission, it must be
*
(all resources at this level); to grant data source and database permissions, it must beCOSDataCatalog
or*
; to grant table permissions, it can be a custom data source; if it is left empty,DataLakeCatalog
is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console. - Column string
- The name of the target column.
*
represents all columns. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - Create
Time string - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- Data
Engine string - The name of the target data engine.
*
represents all engines. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - Database string
- The name of the target database.
*
represents all databases in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any database. - Function string
- The name of the target function.
*
represents all functions in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.Note: This field may return null, indicating that no valid values can be obtained. - Id double
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- Mode string
- The grant mode, which is not required as an input parameter. Valid values:
COMMON
andSENIOR
.Note: This field may return null, indicating that no valid values can be obtained. - Operation string
- The target permissions, which vary by permission level. Admin:
ALL
(default); data connection:CREATE
; database:ALL
,CREATE
,ALTER
, andDROP
; table:ALL
,SELECT
,INSERT
,ALTER
,DELETE
,DROP
, andUPDATE
. Note: For table permissions, if a data source other thanCOSDataCatalog
is specified, only theSELECT
permission can be granted here. - Operator string
- The operator, which is not required as an input parameter.Note: This field may return null, indicating that no valid values can be obtained.
- Policy
Type string - The permission type. Valid values:
ADMIN
,DATASOURCE
,DATABASE
,TABLE
,VIEW
,FUNCTION
,COLUMN
, andENGINE
. Note: If it is left empty,ADMIN
is used. - Re
Auth bool - Whether the grantee is allowed to further grant the permissions. Valid values:
false
(default) andtrue
(the grantee can grant permissions gained here to other sub-users).Note: This field may return null, indicating that no valid values can be obtained. - Source string
- The permission source, which is not required when input parameters are passed in. Valid values:
USER
(from the user) andWORKGROUP
(from one or more associated work groups).Note: This field may return null, indicating that no valid values can be obtained. - Source
Id double - The ID of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - Source
Name string - The name of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - Table string
- The name of the target table.
*
represents all tables in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table. - View string
- The name of the target view.
*
represents all views in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.Note: This field may return null, indicating that no valid values can be obtained.
- Catalog string
- The name of the target data source. To grant admin permission, it must be
*
(all resources at this level); to grant data source and database permissions, it must beCOSDataCatalog
or*
; to grant table permissions, it can be a custom data source; if it is left empty,DataLakeCatalog
is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console. - Column string
- The name of the target column.
*
represents all columns. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - Create
Time string - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- Data
Engine string - The name of the target data engine.
*
represents all engines. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - Database string
- The name of the target database.
*
represents all databases in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any database. - Function string
- The name of the target function.
*
represents all functions in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.Note: This field may return null, indicating that no valid values can be obtained. - Id float64
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- Mode string
- The grant mode, which is not required as an input parameter. Valid values:
COMMON
andSENIOR
.Note: This field may return null, indicating that no valid values can be obtained. - Operation string
- The target permissions, which vary by permission level. Admin:
ALL
(default); data connection:CREATE
; database:ALL
,CREATE
,ALTER
, andDROP
; table:ALL
,SELECT
,INSERT
,ALTER
,DELETE
,DROP
, andUPDATE
. Note: For table permissions, if a data source other thanCOSDataCatalog
is specified, only theSELECT
permission can be granted here. - Operator string
- The operator, which is not required as an input parameter.Note: This field may return null, indicating that no valid values can be obtained.
- Policy
Type string - The permission type. Valid values:
ADMIN
,DATASOURCE
,DATABASE
,TABLE
,VIEW
,FUNCTION
,COLUMN
, andENGINE
. Note: If it is left empty,ADMIN
is used. - Re
Auth bool - Whether the grantee is allowed to further grant the permissions. Valid values:
false
(default) andtrue
(the grantee can grant permissions gained here to other sub-users).Note: This field may return null, indicating that no valid values can be obtained. - Source string
- The permission source, which is not required when input parameters are passed in. Valid values:
USER
(from the user) andWORKGROUP
(from one or more associated work groups).Note: This field may return null, indicating that no valid values can be obtained. - Source
Id float64 - The ID of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - Source
Name string - The name of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - Table string
- The name of the target table.
*
represents all tables in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table. - View string
- The name of the target view.
*
represents all views in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.Note: This field may return null, indicating that no valid values can be obtained.
- catalog String
- The name of the target data source. To grant admin permission, it must be
*
(all resources at this level); to grant data source and database permissions, it must beCOSDataCatalog
or*
; to grant table permissions, it can be a custom data source; if it is left empty,DataLakeCatalog
is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console. - column String
- The name of the target column.
*
represents all columns. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - create
Time String - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- data
Engine String - The name of the target data engine.
*
represents all engines. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - database String
- The name of the target database.
*
represents all databases in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any database. - function String
- The name of the target function.
*
represents all functions in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.Note: This field may return null, indicating that no valid values can be obtained. - id Double
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- mode String
- The grant mode, which is not required as an input parameter. Valid values:
COMMON
andSENIOR
.Note: This field may return null, indicating that no valid values can be obtained. - operation String
- The target permissions, which vary by permission level. Admin:
ALL
(default); data connection:CREATE
; database:ALL
,CREATE
,ALTER
, andDROP
; table:ALL
,SELECT
,INSERT
,ALTER
,DELETE
,DROP
, andUPDATE
. Note: For table permissions, if a data source other thanCOSDataCatalog
is specified, only theSELECT
permission can be granted here. - operator String
- The operator, which is not required as an input parameter.Note: This field may return null, indicating that no valid values can be obtained.
- policy
Type String - The permission type. Valid values:
ADMIN
,DATASOURCE
,DATABASE
,TABLE
,VIEW
,FUNCTION
,COLUMN
, andENGINE
. Note: If it is left empty,ADMIN
is used. - re
Auth Boolean - Whether the grantee is allowed to further grant the permissions. Valid values:
false
(default) andtrue
(the grantee can grant permissions gained here to other sub-users).Note: This field may return null, indicating that no valid values can be obtained. - source String
- The permission source, which is not required when input parameters are passed in. Valid values:
USER
(from the user) andWORKGROUP
(from one or more associated work groups).Note: This field may return null, indicating that no valid values can be obtained. - source
Id Double - The ID of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - source
Name String - The name of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - table String
- The name of the target table.
*
represents all tables in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table. - view String
- The name of the target view.
*
represents all views in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.Note: This field may return null, indicating that no valid values can be obtained.
- catalog string
- The name of the target data source. To grant admin permission, it must be
*
(all resources at this level); to grant data source and database permissions, it must beCOSDataCatalog
or*
; to grant table permissions, it can be a custom data source; if it is left empty,DataLakeCatalog
is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console. - column string
- The name of the target column.
*
represents all columns. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - create
Time string - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- data
Engine string - The name of the target data engine.
*
represents all engines. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - database string
- The name of the target database.
*
represents all databases in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any database. - function string
- The name of the target function.
*
represents all functions in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.Note: This field may return null, indicating that no valid values can be obtained. - id number
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- mode string
- The grant mode, which is not required as an input parameter. Valid values:
COMMON
andSENIOR
.Note: This field may return null, indicating that no valid values can be obtained. - operation string
- The target permissions, which vary by permission level. Admin:
ALL
(default); data connection:CREATE
; database:ALL
,CREATE
,ALTER
, andDROP
; table:ALL
,SELECT
,INSERT
,ALTER
,DELETE
,DROP
, andUPDATE
. Note: For table permissions, if a data source other thanCOSDataCatalog
is specified, only theSELECT
permission can be granted here. - operator string
- The operator, which is not required as an input parameter.Note: This field may return null, indicating that no valid values can be obtained.
- policy
Type string - The permission type. Valid values:
ADMIN
,DATASOURCE
,DATABASE
,TABLE
,VIEW
,FUNCTION
,COLUMN
, andENGINE
. Note: If it is left empty,ADMIN
is used. - re
Auth boolean - Whether the grantee is allowed to further grant the permissions. Valid values:
false
(default) andtrue
(the grantee can grant permissions gained here to other sub-users).Note: This field may return null, indicating that no valid values can be obtained. - source string
- The permission source, which is not required when input parameters are passed in. Valid values:
USER
(from the user) andWORKGROUP
(from one or more associated work groups).Note: This field may return null, indicating that no valid values can be obtained. - source
Id number - The ID of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - source
Name string - The name of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - table string
- The name of the target table.
*
represents all tables in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table. - view string
- The name of the target view.
*
represents all views in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.Note: This field may return null, indicating that no valid values can be obtained.
- catalog str
- The name of the target data source. To grant admin permission, it must be
*
(all resources at this level); to grant data source and database permissions, it must beCOSDataCatalog
or*
; to grant table permissions, it can be a custom data source; if it is left empty,DataLakeCatalog
is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console. - column str
- The name of the target column.
*
represents all columns. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - create_
time str - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- data_
engine str - The name of the target data engine.
*
represents all engines. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - database str
- The name of the target database.
*
represents all databases in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any database. - function str
- The name of the target function.
*
represents all functions in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.Note: This field may return null, indicating that no valid values can be obtained. - id float
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- mode str
- The grant mode, which is not required as an input parameter. Valid values:
COMMON
andSENIOR
.Note: This field may return null, indicating that no valid values can be obtained. - operation str
- The target permissions, which vary by permission level. Admin:
ALL
(default); data connection:CREATE
; database:ALL
,CREATE
,ALTER
, andDROP
; table:ALL
,SELECT
,INSERT
,ALTER
,DELETE
,DROP
, andUPDATE
. Note: For table permissions, if a data source other thanCOSDataCatalog
is specified, only theSELECT
permission can be granted here. - operator str
- The operator, which is not required as an input parameter.Note: This field may return null, indicating that no valid values can be obtained.
- policy_
type str - The permission type. Valid values:
ADMIN
,DATASOURCE
,DATABASE
,TABLE
,VIEW
,FUNCTION
,COLUMN
, andENGINE
. Note: If it is left empty,ADMIN
is used. - re_
auth bool - Whether the grantee is allowed to further grant the permissions. Valid values:
false
(default) andtrue
(the grantee can grant permissions gained here to other sub-users).Note: This field may return null, indicating that no valid values can be obtained. - source str
- The permission source, which is not required when input parameters are passed in. Valid values:
USER
(from the user) andWORKGROUP
(from one or more associated work groups).Note: This field may return null, indicating that no valid values can be obtained. - source_
id float - The ID of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - source_
name str - The name of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - table str
- The name of the target table.
*
represents all tables in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table. - view str
- The name of the target view.
*
represents all views in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.Note: This field may return null, indicating that no valid values can be obtained.
- catalog String
- The name of the target data source. To grant admin permission, it must be
*
(all resources at this level); to grant data source and database permissions, it must beCOSDataCatalog
or*
; to grant table permissions, it can be a custom data source; if it is left empty,DataLakeCatalog
is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console. - column String
- The name of the target column.
*
represents all columns. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - create
Time String - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- data
Engine String - The name of the target data engine.
*
represents all engines. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - database String
- The name of the target database.
*
represents all databases in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any database. - function String
- The name of the target function.
*
represents all functions in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.Note: This field may return null, indicating that no valid values can be obtained. - id Number
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- mode String
- The grant mode, which is not required as an input parameter. Valid values:
COMMON
andSENIOR
.Note: This field may return null, indicating that no valid values can be obtained. - operation String
- The target permissions, which vary by permission level. Admin:
ALL
(default); data connection:CREATE
; database:ALL
,CREATE
,ALTER
, andDROP
; table:ALL
,SELECT
,INSERT
,ALTER
,DELETE
,DROP
, andUPDATE
. Note: For table permissions, if a data source other thanCOSDataCatalog
is specified, only theSELECT
permission can be granted here. - operator String
- The operator, which is not required as an input parameter.Note: This field may return null, indicating that no valid values can be obtained.
- policy
Type String - The permission type. Valid values:
ADMIN
,DATASOURCE
,DATABASE
,TABLE
,VIEW
,FUNCTION
,COLUMN
, andENGINE
. Note: If it is left empty,ADMIN
is used. - re
Auth Boolean - Whether the grantee is allowed to further grant the permissions. Valid values:
false
(default) andtrue
(the grantee can grant permissions gained here to other sub-users).Note: This field may return null, indicating that no valid values can be obtained. - source String
- The permission source, which is not required when input parameters are passed in. Valid values:
USER
(from the user) andWORKGROUP
(from one or more associated work groups).Note: This field may return null, indicating that no valid values can be obtained. - source
Id Number - The ID of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - source
Name String - The name of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - table String
- The name of the target table.
*
represents all tables in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table. - view String
- The name of the target view.
*
represents all views in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.Note: This field may return null, indicating that no valid values can be obtained.
GetDlcDescribeUserInfoUserInfoRowFilterInfo
- Policy
Sets List<GetDlc Describe User Info User Info Row Filter Info Policy Set> - Collection of policiesNote: This field may return null, indicating that no valid values can be obtained.
- Total
Count double - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- Policy
Sets []GetDlc Describe User Info User Info Row Filter Info Policy Set - Collection of policiesNote: This field may return null, indicating that no valid values can be obtained.
- Total
Count float64 - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- policy
Sets List<GetDlc Describe User Info User Info Row Filter Info Policy Set> - Collection of policiesNote: This field may return null, indicating that no valid values can be obtained.
- total
Count Double - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- policy
Sets GetDlc Describe User Info User Info Row Filter Info Policy Set[] - Collection of policiesNote: This field may return null, indicating that no valid values can be obtained.
- total
Count number - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- policy_
sets Sequence[GetDlc Describe User Info User Info Row Filter Info Policy Set] - Collection of policiesNote: This field may return null, indicating that no valid values can be obtained.
- total_
count float - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- policy
Sets List<Property Map> - Collection of policiesNote: This field may return null, indicating that no valid values can be obtained.
- total
Count Number - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
GetDlcDescribeUserInfoUserInfoRowFilterInfoPolicySet
- Catalog string
- The name of the target data source. To grant admin permission, it must be
*
(all resources at this level); to grant data source and database permissions, it must beCOSDataCatalog
or*
; to grant table permissions, it can be a custom data source; if it is left empty,DataLakeCatalog
is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console. - Column string
- The name of the target column.
*
represents all columns. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - Create
Time string - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- Data
Engine string - The name of the target data engine.
*
represents all engines. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - Database string
- The name of the target database.
*
represents all databases in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any database. - Function string
- The name of the target function.
*
represents all functions in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.Note: This field may return null, indicating that no valid values can be obtained. - Id double
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- Mode string
- The grant mode, which is not required as an input parameter. Valid values:
COMMON
andSENIOR
.Note: This field may return null, indicating that no valid values can be obtained. - Operation string
- The target permissions, which vary by permission level. Admin:
ALL
(default); data connection:CREATE
; database:ALL
,CREATE
,ALTER
, andDROP
; table:ALL
,SELECT
,INSERT
,ALTER
,DELETE
,DROP
, andUPDATE
. Note: For table permissions, if a data source other thanCOSDataCatalog
is specified, only theSELECT
permission can be granted here. - Operator string
- The operator, which is not required as an input parameter.Note: This field may return null, indicating that no valid values can be obtained.
- Policy
Type string - The permission type. Valid values:
ADMIN
,DATASOURCE
,DATABASE
,TABLE
,VIEW
,FUNCTION
,COLUMN
, andENGINE
. Note: If it is left empty,ADMIN
is used. - Re
Auth bool - Whether the grantee is allowed to further grant the permissions. Valid values:
false
(default) andtrue
(the grantee can grant permissions gained here to other sub-users).Note: This field may return null, indicating that no valid values can be obtained. - Source string
- The permission source, which is not required when input parameters are passed in. Valid values:
USER
(from the user) andWORKGROUP
(from one or more associated work groups).Note: This field may return null, indicating that no valid values can be obtained. - Source
Id double - The ID of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - Source
Name string - The name of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - Table string
- The name of the target table.
*
represents all tables in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table. - View string
- The name of the target view.
*
represents all views in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.Note: This field may return null, indicating that no valid values can be obtained.
- Catalog string
- The name of the target data source. To grant admin permission, it must be
*
(all resources at this level); to grant data source and database permissions, it must beCOSDataCatalog
or*
; to grant table permissions, it can be a custom data source; if it is left empty,DataLakeCatalog
is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console. - Column string
- The name of the target column.
*
represents all columns. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - Create
Time string - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- Data
Engine string - The name of the target data engine.
*
represents all engines. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - Database string
- The name of the target database.
*
represents all databases in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any database. - Function string
- The name of the target function.
*
represents all functions in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.Note: This field may return null, indicating that no valid values can be obtained. - Id float64
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- Mode string
- The grant mode, which is not required as an input parameter. Valid values:
COMMON
andSENIOR
.Note: This field may return null, indicating that no valid values can be obtained. - Operation string
- The target permissions, which vary by permission level. Admin:
ALL
(default); data connection:CREATE
; database:ALL
,CREATE
,ALTER
, andDROP
; table:ALL
,SELECT
,INSERT
,ALTER
,DELETE
,DROP
, andUPDATE
. Note: For table permissions, if a data source other thanCOSDataCatalog
is specified, only theSELECT
permission can be granted here. - Operator string
- The operator, which is not required as an input parameter.Note: This field may return null, indicating that no valid values can be obtained.
- Policy
Type string - The permission type. Valid values:
ADMIN
,DATASOURCE
,DATABASE
,TABLE
,VIEW
,FUNCTION
,COLUMN
, andENGINE
. Note: If it is left empty,ADMIN
is used. - Re
Auth bool - Whether the grantee is allowed to further grant the permissions. Valid values:
false
(default) andtrue
(the grantee can grant permissions gained here to other sub-users).Note: This field may return null, indicating that no valid values can be obtained. - Source string
- The permission source, which is not required when input parameters are passed in. Valid values:
USER
(from the user) andWORKGROUP
(from one or more associated work groups).Note: This field may return null, indicating that no valid values can be obtained. - Source
Id float64 - The ID of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - Source
Name string - The name of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - Table string
- The name of the target table.
*
represents all tables in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table. - View string
- The name of the target view.
*
represents all views in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.Note: This field may return null, indicating that no valid values can be obtained.
- catalog String
- The name of the target data source. To grant admin permission, it must be
*
(all resources at this level); to grant data source and database permissions, it must beCOSDataCatalog
or*
; to grant table permissions, it can be a custom data source; if it is left empty,DataLakeCatalog
is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console. - column String
- The name of the target column.
*
represents all columns. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - create
Time String - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- data
Engine String - The name of the target data engine.
*
represents all engines. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - database String
- The name of the target database.
*
represents all databases in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any database. - function String
- The name of the target function.
*
represents all functions in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.Note: This field may return null, indicating that no valid values can be obtained. - id Double
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- mode String
- The grant mode, which is not required as an input parameter. Valid values:
COMMON
andSENIOR
.Note: This field may return null, indicating that no valid values can be obtained. - operation String
- The target permissions, which vary by permission level. Admin:
ALL
(default); data connection:CREATE
; database:ALL
,CREATE
,ALTER
, andDROP
; table:ALL
,SELECT
,INSERT
,ALTER
,DELETE
,DROP
, andUPDATE
. Note: For table permissions, if a data source other thanCOSDataCatalog
is specified, only theSELECT
permission can be granted here. - operator String
- The operator, which is not required as an input parameter.Note: This field may return null, indicating that no valid values can be obtained.
- policy
Type String - The permission type. Valid values:
ADMIN
,DATASOURCE
,DATABASE
,TABLE
,VIEW
,FUNCTION
,COLUMN
, andENGINE
. Note: If it is left empty,ADMIN
is used. - re
Auth Boolean - Whether the grantee is allowed to further grant the permissions. Valid values:
false
(default) andtrue
(the grantee can grant permissions gained here to other sub-users).Note: This field may return null, indicating that no valid values can be obtained. - source String
- The permission source, which is not required when input parameters are passed in. Valid values:
USER
(from the user) andWORKGROUP
(from one or more associated work groups).Note: This field may return null, indicating that no valid values can be obtained. - source
Id Double - The ID of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - source
Name String - The name of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - table String
- The name of the target table.
*
represents all tables in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table. - view String
- The name of the target view.
*
represents all views in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.Note: This field may return null, indicating that no valid values can be obtained.
- catalog string
- The name of the target data source. To grant admin permission, it must be
*
(all resources at this level); to grant data source and database permissions, it must beCOSDataCatalog
or*
; to grant table permissions, it can be a custom data source; if it is left empty,DataLakeCatalog
is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console. - column string
- The name of the target column.
*
represents all columns. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - create
Time string - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- data
Engine string - The name of the target data engine.
*
represents all engines. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - database string
- The name of the target database.
*
represents all databases in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any database. - function string
- The name of the target function.
*
represents all functions in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.Note: This field may return null, indicating that no valid values can be obtained. - id number
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- mode string
- The grant mode, which is not required as an input parameter. Valid values:
COMMON
andSENIOR
.Note: This field may return null, indicating that no valid values can be obtained. - operation string
- The target permissions, which vary by permission level. Admin:
ALL
(default); data connection:CREATE
; database:ALL
,CREATE
,ALTER
, andDROP
; table:ALL
,SELECT
,INSERT
,ALTER
,DELETE
,DROP
, andUPDATE
. Note: For table permissions, if a data source other thanCOSDataCatalog
is specified, only theSELECT
permission can be granted here. - operator string
- The operator, which is not required as an input parameter.Note: This field may return null, indicating that no valid values can be obtained.
- policy
Type string - The permission type. Valid values:
ADMIN
,DATASOURCE
,DATABASE
,TABLE
,VIEW
,FUNCTION
,COLUMN
, andENGINE
. Note: If it is left empty,ADMIN
is used. - re
Auth boolean - Whether the grantee is allowed to further grant the permissions. Valid values:
false
(default) andtrue
(the grantee can grant permissions gained here to other sub-users).Note: This field may return null, indicating that no valid values can be obtained. - source string
- The permission source, which is not required when input parameters are passed in. Valid values:
USER
(from the user) andWORKGROUP
(from one or more associated work groups).Note: This field may return null, indicating that no valid values can be obtained. - source
Id number - The ID of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - source
Name string - The name of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - table string
- The name of the target table.
*
represents all tables in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table. - view string
- The name of the target view.
*
represents all views in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.Note: This field may return null, indicating that no valid values can be obtained.
- catalog str
- The name of the target data source. To grant admin permission, it must be
*
(all resources at this level); to grant data source and database permissions, it must beCOSDataCatalog
or*
; to grant table permissions, it can be a custom data source; if it is left empty,DataLakeCatalog
is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console. - column str
- The name of the target column.
*
represents all columns. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - create_
time str - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- data_
engine str - The name of the target data engine.
*
represents all engines. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - database str
- The name of the target database.
*
represents all databases in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any database. - function str
- The name of the target function.
*
represents all functions in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.Note: This field may return null, indicating that no valid values can be obtained. - id float
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- mode str
- The grant mode, which is not required as an input parameter. Valid values:
COMMON
andSENIOR
.Note: This field may return null, indicating that no valid values can be obtained. - operation str
- The target permissions, which vary by permission level. Admin:
ALL
(default); data connection:CREATE
; database:ALL
,CREATE
,ALTER
, andDROP
; table:ALL
,SELECT
,INSERT
,ALTER
,DELETE
,DROP
, andUPDATE
. Note: For table permissions, if a data source other thanCOSDataCatalog
is specified, only theSELECT
permission can be granted here. - operator str
- The operator, which is not required as an input parameter.Note: This field may return null, indicating that no valid values can be obtained.
- policy_
type str - The permission type. Valid values:
ADMIN
,DATASOURCE
,DATABASE
,TABLE
,VIEW
,FUNCTION
,COLUMN
, andENGINE
. Note: If it is left empty,ADMIN
is used. - re_
auth bool - Whether the grantee is allowed to further grant the permissions. Valid values:
false
(default) andtrue
(the grantee can grant permissions gained here to other sub-users).Note: This field may return null, indicating that no valid values can be obtained. - source str
- The permission source, which is not required when input parameters are passed in. Valid values:
USER
(from the user) andWORKGROUP
(from one or more associated work groups).Note: This field may return null, indicating that no valid values can be obtained. - source_
id float - The ID of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - source_
name str - The name of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - table str
- The name of the target table.
*
represents all tables in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table. - view str
- The name of the target view.
*
represents all views in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.Note: This field may return null, indicating that no valid values can be obtained.
- catalog String
- The name of the target data source. To grant admin permission, it must be
*
(all resources at this level); to grant data source and database permissions, it must beCOSDataCatalog
or*
; to grant table permissions, it can be a custom data source; if it is left empty,DataLakeCatalog
is used. Note: To grant permissions on a custom data source, the permissions that can be managed in the Data Lake Compute console are subsets of the account permissions granted when you connect the data source to the console. - column String
- The name of the target column.
*
represents all columns. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - create
Time String - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- data
Engine String - The name of the target data engine.
*
represents all engines. To grant admin permissions, it must be*
.Note: This field may return null, indicating that no valid values can be obtained. - database String
- The name of the target database.
*
represents all databases in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any database. - function String
- The name of the target function.
*
represents all functions in the current catalog. To grant admin permissions, it must be*
; to grant data connection permissions, it must be null; to grant other permissions, it can be any function.Note: This field may return null, indicating that no valid values can be obtained. - id Number
- The policy ID.Note: This field may return null, indicating that no valid values can be obtained.
- mode String
- The grant mode, which is not required as an input parameter. Valid values:
COMMON
andSENIOR
.Note: This field may return null, indicating that no valid values can be obtained. - operation String
- The target permissions, which vary by permission level. Admin:
ALL
(default); data connection:CREATE
; database:ALL
,CREATE
,ALTER
, andDROP
; table:ALL
,SELECT
,INSERT
,ALTER
,DELETE
,DROP
, andUPDATE
. Note: For table permissions, if a data source other thanCOSDataCatalog
is specified, only theSELECT
permission can be granted here. - operator String
- The operator, which is not required as an input parameter.Note: This field may return null, indicating that no valid values can be obtained.
- policy
Type String - The permission type. Valid values:
ADMIN
,DATASOURCE
,DATABASE
,TABLE
,VIEW
,FUNCTION
,COLUMN
, andENGINE
. Note: If it is left empty,ADMIN
is used. - re
Auth Boolean - Whether the grantee is allowed to further grant the permissions. Valid values:
false
(default) andtrue
(the grantee can grant permissions gained here to other sub-users).Note: This field may return null, indicating that no valid values can be obtained. - source String
- The permission source, which is not required when input parameters are passed in. Valid values:
USER
(from the user) andWORKGROUP
(from one or more associated work groups).Note: This field may return null, indicating that no valid values can be obtained. - source
Id Number - The ID of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - source
Name String - The name of the work group, which applies only when the value of the
Source
field isWORKGROUP
.Note: This field may return null, indicating that no valid values can be obtained. - table String
- The name of the target table.
*
represents all tables in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any table. - view String
- The name of the target view.
*
represents all views in the current database. To grant admin permissions, it must be*
; to grant data connection and database permissions, it must be null; to grant other permissions, it can be any view.Note: This field may return null, indicating that no valid values can be obtained.
GetDlcDescribeUserInfoUserInfoWorkGroupInfo
- Total
Count double - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- Work
Group List<GetSets Dlc Describe User Info User Info Work Group Info Work Group Set> - Collection of working group informationNote: This field may return null, indicating that no valid values can be obtained.
- Total
Count float64 - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- Work
Group []GetSets Dlc Describe User Info User Info Work Group Info Work Group Set - Collection of working group informationNote: This field may return null, indicating that no valid values can be obtained.
- total
Count Double - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- work
Group List<GetSets Dlc Describe User Info User Info Work Group Info Work Group Set> - Collection of working group informationNote: This field may return null, indicating that no valid values can be obtained.
- total
Count number - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- work
Group GetSets Dlc Describe User Info User Info Work Group Info Work Group Set[] - Collection of working group informationNote: This field may return null, indicating that no valid values can be obtained.
- total_
count float - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- work_
group_ Sequence[Getsets Dlc Describe User Info User Info Work Group Info Work Group Set] - Collection of working group informationNote: This field may return null, indicating that no valid values can be obtained.
- total
Count Number - Total working groupsNote: This field may return null, indicating that no valid values can be obtained.
- work
Group List<Property Map>Sets - Collection of working group informationNote: This field may return null, indicating that no valid values can be obtained.
GetDlcDescribeUserInfoUserInfoWorkGroupInfoWorkGroupSet
- Create
Time string - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- Creator string
- Creator.
- Work
Group stringDescription - Working group descriptionNote: This field may return null, indicating that no valid values can be obtained.
- Work
Group doubleId - Unique ID of the working group.
- Work
Group stringName - Working group name.
- Create
Time string - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- Creator string
- Creator.
- Work
Group stringDescription - Working group descriptionNote: This field may return null, indicating that no valid values can be obtained.
- Work
Group float64Id - Unique ID of the working group.
- Work
Group stringName - Working group name.
- create
Time String - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- creator String
- Creator.
- work
Group StringDescription - Working group descriptionNote: This field may return null, indicating that no valid values can be obtained.
- work
Group DoubleId - Unique ID of the working group.
- work
Group StringName - Working group name.
- create
Time string - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- creator string
- Creator.
- work
Group stringDescription - Working group descriptionNote: This field may return null, indicating that no valid values can be obtained.
- work
Group numberId - Unique ID of the working group.
- work
Group stringName - Working group name.
- create_
time str - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- creator str
- Creator.
- work_
group_ strdescription - Working group descriptionNote: This field may return null, indicating that no valid values can be obtained.
- work_
group_ floatid - Unique ID of the working group.
- work_
group_ strname - Working group name.
- create
Time String - The creation time of the working group, e.g. at 16:19:32 on Jul 28, 2021.
- creator String
- Creator.
- work
Group StringDescription - Working group descriptionNote: This field may return null, indicating that no valid values can be obtained.
- work
Group NumberId - Unique ID of the working group.
- work
Group StringName - Working group name.
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloud
Terraform Provider.
tencentcloud 1.82.18 published on Thursday, Aug 21, 2025 by tencentcloudstack