tencentcloud 1.82.18 published on Thursday, Aug 21, 2025 by tencentcloudstack
tencentcloud.getDlcDescribeUserType
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 type
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getDlcDescribeUserType({
userId: "100021240183",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_dlc_describe_user_type(user_id="100021240183")
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.GetDlcDescribeUserType(ctx, &tencentcloud.GetDlcDescribeUserTypeArgs{
UserId: pulumi.StringRef("100021240183"),
}, 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.GetDlcDescribeUserType.Invoke(new()
{
UserId = "100021240183",
});
});
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.GetDlcDescribeUserTypeArgs;
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.getDlcDescribeUserType(GetDlcDescribeUserTypeArgs.builder()
.userId("100021240183")
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getDlcDescribeUserType
arguments:
userId: '100021240183'
Using getDlcDescribeUserType
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 getDlcDescribeUserType(args: GetDlcDescribeUserTypeArgs, opts?: InvokeOptions): Promise<GetDlcDescribeUserTypeResult>
function getDlcDescribeUserTypeOutput(args: GetDlcDescribeUserTypeOutputArgs, opts?: InvokeOptions): Output<GetDlcDescribeUserTypeResult>
def get_dlc_describe_user_type(id: Optional[str] = None,
result_output_file: Optional[str] = None,
user_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDlcDescribeUserTypeResult
def get_dlc_describe_user_type_output(id: Optional[pulumi.Input[str]] = None,
result_output_file: Optional[pulumi.Input[str]] = None,
user_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDlcDescribeUserTypeResult]
func GetDlcDescribeUserType(ctx *Context, args *GetDlcDescribeUserTypeArgs, opts ...InvokeOption) (*GetDlcDescribeUserTypeResult, error)
func GetDlcDescribeUserTypeOutput(ctx *Context, args *GetDlcDescribeUserTypeOutputArgs, opts ...InvokeOption) GetDlcDescribeUserTypeResultOutput
> Note: This function is named GetDlcDescribeUserType
in the Go SDK.
public static class GetDlcDescribeUserType
{
public static Task<GetDlcDescribeUserTypeResult> InvokeAsync(GetDlcDescribeUserTypeArgs args, InvokeOptions? opts = null)
public static Output<GetDlcDescribeUserTypeResult> Invoke(GetDlcDescribeUserTypeInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDlcDescribeUserTypeResult> getDlcDescribeUserType(GetDlcDescribeUserTypeArgs args, InvokeOptions options)
public static Output<GetDlcDescribeUserTypeResult> getDlcDescribeUserType(GetDlcDescribeUserTypeArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getDlcDescribeUserType:getDlcDescribeUserType
arguments:
# arguments dictionary
The following arguments are supported:
- Id string
- Result
Output stringFile - Used to save results.
- User
Id string - User ID (UIN). If it is not specified, it will be the sub-UIN of the caller by default.
- Id string
- Result
Output stringFile - Used to save results.
- User
Id string - User ID (UIN). If it is not specified, it will be the sub-UIN of the caller by default.
- id String
- result
Output StringFile - Used to save results.
- user
Id String - User ID (UIN). If it is not specified, it will be the sub-UIN of the caller by default.
- id string
- result
Output stringFile - Used to save results.
- user
Id string - User ID (UIN). If it is not specified, it will be the sub-UIN of the caller by default.
- id str
- result_
output_ strfile - Used to save results.
- user_
id str - User ID (UIN). If it is not specified, it will be the sub-UIN of the caller by default.
- id String
- result
Output StringFile - Used to save results.
- user
Id String - User ID (UIN). If it is not specified, it will be the sub-UIN of the caller by default.
getDlcDescribeUserType Result
The following output properties are available:
- Id string
- User
Type string - Types of users. ADMIN: administrators; COMMON: general users.
- Result
Output stringFile - User
Id string
- Id string
- User
Type string - Types of users. ADMIN: administrators; COMMON: general users.
- Result
Output stringFile - User
Id string
- id String
- user
Type String - Types of users. ADMIN: administrators; COMMON: general users.
- result
Output StringFile - user
Id String
- id string
- user
Type string - Types of users. ADMIN: administrators; COMMON: general users.
- result
Output stringFile - user
Id string
- id str
- user_
type str - Types of users. ADMIN: administrators; COMMON: general users.
- result_
output_ strfile - user_
id str
- id String
- user
Type String - Types of users. ADMIN: administrators; COMMON: general users.
- result
Output StringFile - user
Id String
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