1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. IdentityCenterUserSyncProvisioning
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

tencentcloud.IdentityCenterUserSyncProvisioning

Explore with Pulumi AI

tencentcloud logo
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

    Provides a resource to create a organization identity_center_user_sync_provisioning

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const identityCenterUserSyncProvisioning = new tencentcloud.IdentityCenterUserSyncProvisioning("identityCenterUserSyncProvisioning", {
        deletionStrategy: "Keep",
        description: "tf-test",
        duplicationStrategy: "TakeOver",
        principalId: "u-xxxxxx",
        principalType: "User",
        targetType: "MemberUin",
        targetUin: "xxxxxx",
        zoneId: "z-xxxxxx",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    identity_center_user_sync_provisioning = tencentcloud.IdentityCenterUserSyncProvisioning("identityCenterUserSyncProvisioning",
        deletion_strategy="Keep",
        description="tf-test",
        duplication_strategy="TakeOver",
        principal_id="u-xxxxxx",
        principal_type="User",
        target_type="MemberUin",
        target_uin="xxxxxx",
        zone_id="z-xxxxxx")
    
    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.NewIdentityCenterUserSyncProvisioning(ctx, "identityCenterUserSyncProvisioning", &tencentcloud.IdentityCenterUserSyncProvisioningArgs{
    			DeletionStrategy:    pulumi.String("Keep"),
    			Description:         pulumi.String("tf-test"),
    			DuplicationStrategy: pulumi.String("TakeOver"),
    			PrincipalId:         pulumi.String("u-xxxxxx"),
    			PrincipalType:       pulumi.String("User"),
    			TargetType:          pulumi.String("MemberUin"),
    			TargetUin:           pulumi.Float64("xxxxxx"),
    			ZoneId:              pulumi.String("z-xxxxxx"),
    		})
    		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 identityCenterUserSyncProvisioning = new Tencentcloud.IdentityCenterUserSyncProvisioning("identityCenterUserSyncProvisioning", new()
        {
            DeletionStrategy = "Keep",
            Description = "tf-test",
            DuplicationStrategy = "TakeOver",
            PrincipalId = "u-xxxxxx",
            PrincipalType = "User",
            TargetType = "MemberUin",
            TargetUin = "xxxxxx",
            ZoneId = "z-xxxxxx",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.IdentityCenterUserSyncProvisioning;
    import com.pulumi.tencentcloud.IdentityCenterUserSyncProvisioningArgs;
    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) {
            var identityCenterUserSyncProvisioning = new IdentityCenterUserSyncProvisioning("identityCenterUserSyncProvisioning", IdentityCenterUserSyncProvisioningArgs.builder()
                .deletionStrategy("Keep")
                .description("tf-test")
                .duplicationStrategy("TakeOver")
                .principalId("u-xxxxxx")
                .principalType("User")
                .targetType("MemberUin")
                .targetUin("xxxxxx")
                .zoneId("z-xxxxxx")
                .build());
    
        }
    }
    
    resources:
      identityCenterUserSyncProvisioning:
        type: tencentcloud:IdentityCenterUserSyncProvisioning
        properties:
          deletionStrategy: Keep
          description: tf-test
          duplicationStrategy: TakeOver
          principalId: u-xxxxxx
          principalType: User
          targetType: MemberUin
          targetUin: xxxxxx
          zoneId: z-xxxxxx
    

    Create IdentityCenterUserSyncProvisioning Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new IdentityCenterUserSyncProvisioning(name: string, args: IdentityCenterUserSyncProvisioningArgs, opts?: CustomResourceOptions);
    @overload
    def IdentityCenterUserSyncProvisioning(resource_name: str,
                                           args: IdentityCenterUserSyncProvisioningArgs,
                                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def IdentityCenterUserSyncProvisioning(resource_name: str,
                                           opts: Optional[ResourceOptions] = None,
                                           zone_id: Optional[str] = None,
                                           deletion_strategy: Optional[str] = None,
                                           description: Optional[str] = None,
                                           duplication_strategy: Optional[str] = None,
                                           identity_center_user_sync_provisioning_id: Optional[str] = None,
                                           principal_id: Optional[str] = None,
                                           principal_type: Optional[str] = None,
                                           target_type: Optional[str] = None,
                                           target_uin: Optional[float] = None)
    func NewIdentityCenterUserSyncProvisioning(ctx *Context, name string, args IdentityCenterUserSyncProvisioningArgs, opts ...ResourceOption) (*IdentityCenterUserSyncProvisioning, error)
    public IdentityCenterUserSyncProvisioning(string name, IdentityCenterUserSyncProvisioningArgs args, CustomResourceOptions? opts = null)
    public IdentityCenterUserSyncProvisioning(String name, IdentityCenterUserSyncProvisioningArgs args)
    public IdentityCenterUserSyncProvisioning(String name, IdentityCenterUserSyncProvisioningArgs args, CustomResourceOptions options)
    
    type: tencentcloud:IdentityCenterUserSyncProvisioning
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args IdentityCenterUserSyncProvisioningArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args IdentityCenterUserSyncProvisioningArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args IdentityCenterUserSyncProvisioningArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IdentityCenterUserSyncProvisioningArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IdentityCenterUserSyncProvisioningArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    IdentityCenterUserSyncProvisioning Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The IdentityCenterUserSyncProvisioning resource accepts the following input properties:

    ZoneId string
    Space ID.
    DeletionStrategy string
    Deletion policy. It indicates the handling policy for CAM users already synchronized when the CAM user synchronization is deleted. Valid values: Delete: Delete the CAM users already synchronized from CIC to CAM when the CAM user synchronization is deleted; Keep: Keep the CAM users already synchronized from CIC to CAM when the CAM user synchronization is deleted.
    Description string
    Description.
    DuplicationStrategy string
    Conflict policy. It indicates the handling policy for existence of a user with the same username when CIC users are synchronized to CAM. Valid values: KeepBoth: Keep both, that is, add the _cic suffix to the CIC user's username and then try to create a CAM user with the username when CIC users are synchronized to CAM and a user with the same username already exists in CAM; TakeOver: Replace, that is, directly replace the existing CAM user with the synchronized CIC user when CIC users are synchronized to CAM and a user with the same username already exists in CAM.
    IdentityCenterUserSyncProvisioningId string
    ID of the resource.
    PrincipalId string
    Identity ID for the CAM user synchronization. Valid values: When the PrincipalType value is Group, it is the CIC user group ID (g-). When the PrincipalType value is User, it is the CIC user ID (u-).
    PrincipalType string

    Identity type for the CAM user synchronization. Valid values:

    User: indicates that the identity for the CAM user synchronization is a CIC user. Group: indicates that the identity for the CAM user synchronization is a CIC user group.

    TargetType string
    Type of the synchronized target account of the Tencent Cloud Organization. ManagerUin: admin account; MemberUin: member account.
    TargetUin double
    UIN of the synchronized target account of the Tencent Cloud Organization.
    ZoneId string
    Space ID.
    DeletionStrategy string
    Deletion policy. It indicates the handling policy for CAM users already synchronized when the CAM user synchronization is deleted. Valid values: Delete: Delete the CAM users already synchronized from CIC to CAM when the CAM user synchronization is deleted; Keep: Keep the CAM users already synchronized from CIC to CAM when the CAM user synchronization is deleted.
    Description string
    Description.
    DuplicationStrategy string
    Conflict policy. It indicates the handling policy for existence of a user with the same username when CIC users are synchronized to CAM. Valid values: KeepBoth: Keep both, that is, add the _cic suffix to the CIC user's username and then try to create a CAM user with the username when CIC users are synchronized to CAM and a user with the same username already exists in CAM; TakeOver: Replace, that is, directly replace the existing CAM user with the synchronized CIC user when CIC users are synchronized to CAM and a user with the same username already exists in CAM.
    IdentityCenterUserSyncProvisioningId string
    ID of the resource.
    PrincipalId string
    Identity ID for the CAM user synchronization. Valid values: When the PrincipalType value is Group, it is the CIC user group ID (g-). When the PrincipalType value is User, it is the CIC user ID (u-).
    PrincipalType string

    Identity type for the CAM user synchronization. Valid values:

    User: indicates that the identity for the CAM user synchronization is a CIC user. Group: indicates that the identity for the CAM user synchronization is a CIC user group.

    TargetType string
    Type of the synchronized target account of the Tencent Cloud Organization. ManagerUin: admin account; MemberUin: member account.
    TargetUin float64
    UIN of the synchronized target account of the Tencent Cloud Organization.
    zoneId String
    Space ID.
    deletionStrategy String
    Deletion policy. It indicates the handling policy for CAM users already synchronized when the CAM user synchronization is deleted. Valid values: Delete: Delete the CAM users already synchronized from CIC to CAM when the CAM user synchronization is deleted; Keep: Keep the CAM users already synchronized from CIC to CAM when the CAM user synchronization is deleted.
    description String
    Description.
    duplicationStrategy String
    Conflict policy. It indicates the handling policy for existence of a user with the same username when CIC users are synchronized to CAM. Valid values: KeepBoth: Keep both, that is, add the _cic suffix to the CIC user's username and then try to create a CAM user with the username when CIC users are synchronized to CAM and a user with the same username already exists in CAM; TakeOver: Replace, that is, directly replace the existing CAM user with the synchronized CIC user when CIC users are synchronized to CAM and a user with the same username already exists in CAM.
    identityCenterUserSyncProvisioningId String
    ID of the resource.
    principalId String
    Identity ID for the CAM user synchronization. Valid values: When the PrincipalType value is Group, it is the CIC user group ID (g-). When the PrincipalType value is User, it is the CIC user ID (u-).
    principalType String

    Identity type for the CAM user synchronization. Valid values:

    User: indicates that the identity for the CAM user synchronization is a CIC user. Group: indicates that the identity for the CAM user synchronization is a CIC user group.

    targetType String
    Type of the synchronized target account of the Tencent Cloud Organization. ManagerUin: admin account; MemberUin: member account.
    targetUin Double
    UIN of the synchronized target account of the Tencent Cloud Organization.
    zoneId string
    Space ID.
    deletionStrategy string
    Deletion policy. It indicates the handling policy for CAM users already synchronized when the CAM user synchronization is deleted. Valid values: Delete: Delete the CAM users already synchronized from CIC to CAM when the CAM user synchronization is deleted; Keep: Keep the CAM users already synchronized from CIC to CAM when the CAM user synchronization is deleted.
    description string
    Description.
    duplicationStrategy string
    Conflict policy. It indicates the handling policy for existence of a user with the same username when CIC users are synchronized to CAM. Valid values: KeepBoth: Keep both, that is, add the _cic suffix to the CIC user's username and then try to create a CAM user with the username when CIC users are synchronized to CAM and a user with the same username already exists in CAM; TakeOver: Replace, that is, directly replace the existing CAM user with the synchronized CIC user when CIC users are synchronized to CAM and a user with the same username already exists in CAM.
    identityCenterUserSyncProvisioningId string
    ID of the resource.
    principalId string
    Identity ID for the CAM user synchronization. Valid values: When the PrincipalType value is Group, it is the CIC user group ID (g-). When the PrincipalType value is User, it is the CIC user ID (u-).
    principalType string

    Identity type for the CAM user synchronization. Valid values:

    User: indicates that the identity for the CAM user synchronization is a CIC user. Group: indicates that the identity for the CAM user synchronization is a CIC user group.

    targetType string
    Type of the synchronized target account of the Tencent Cloud Organization. ManagerUin: admin account; MemberUin: member account.
    targetUin number
    UIN of the synchronized target account of the Tencent Cloud Organization.
    zone_id str
    Space ID.
    deletion_strategy str
    Deletion policy. It indicates the handling policy for CAM users already synchronized when the CAM user synchronization is deleted. Valid values: Delete: Delete the CAM users already synchronized from CIC to CAM when the CAM user synchronization is deleted; Keep: Keep the CAM users already synchronized from CIC to CAM when the CAM user synchronization is deleted.
    description str
    Description.
    duplication_strategy str
    Conflict policy. It indicates the handling policy for existence of a user with the same username when CIC users are synchronized to CAM. Valid values: KeepBoth: Keep both, that is, add the _cic suffix to the CIC user's username and then try to create a CAM user with the username when CIC users are synchronized to CAM and a user with the same username already exists in CAM; TakeOver: Replace, that is, directly replace the existing CAM user with the synchronized CIC user when CIC users are synchronized to CAM and a user with the same username already exists in CAM.
    identity_center_user_sync_provisioning_id str
    ID of the resource.
    principal_id str
    Identity ID for the CAM user synchronization. Valid values: When the PrincipalType value is Group, it is the CIC user group ID (g-). When the PrincipalType value is User, it is the CIC user ID (u-).
    principal_type str

    Identity type for the CAM user synchronization. Valid values:

    User: indicates that the identity for the CAM user synchronization is a CIC user. Group: indicates that the identity for the CAM user synchronization is a CIC user group.

    target_type str
    Type of the synchronized target account of the Tencent Cloud Organization. ManagerUin: admin account; MemberUin: member account.
    target_uin float
    UIN of the synchronized target account of the Tencent Cloud Organization.
    zoneId String
    Space ID.
    deletionStrategy String
    Deletion policy. It indicates the handling policy for CAM users already synchronized when the CAM user synchronization is deleted. Valid values: Delete: Delete the CAM users already synchronized from CIC to CAM when the CAM user synchronization is deleted; Keep: Keep the CAM users already synchronized from CIC to CAM when the CAM user synchronization is deleted.
    description String
    Description.
    duplicationStrategy String
    Conflict policy. It indicates the handling policy for existence of a user with the same username when CIC users are synchronized to CAM. Valid values: KeepBoth: Keep both, that is, add the _cic suffix to the CIC user's username and then try to create a CAM user with the username when CIC users are synchronized to CAM and a user with the same username already exists in CAM; TakeOver: Replace, that is, directly replace the existing CAM user with the synchronized CIC user when CIC users are synchronized to CAM and a user with the same username already exists in CAM.
    identityCenterUserSyncProvisioningId String
    ID of the resource.
    principalId String
    Identity ID for the CAM user synchronization. Valid values: When the PrincipalType value is Group, it is the CIC user group ID (g-). When the PrincipalType value is User, it is the CIC user ID (u-).
    principalType String

    Identity type for the CAM user synchronization. Valid values:

    User: indicates that the identity for the CAM user synchronization is a CIC user. Group: indicates that the identity for the CAM user synchronization is a CIC user group.

    targetType String
    Type of the synchronized target account of the Tencent Cloud Organization. ManagerUin: admin account; MemberUin: member account.
    targetUin Number
    UIN of the synchronized target account of the Tencent Cloud Organization.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the IdentityCenterUserSyncProvisioning resource produces the following output properties:

    CreateTime string
    Create time.
    Id string
    The provider-assigned unique ID for this managed resource.
    PrincipalName string
    The identity name of the CAM user synchronization. Value: When PrincipalType is Group, the value is the CIC user group name; When PrincipalType takes the value to User, the value is the CIC user name.
    Status string
    Status of CAM user synchronization. Value:

    • Enabled: CAM user synchronization is enabled;
    • Disabled: CAM user synchronization is not enabled.
    TargetName string
    Group account The name of the target account..
    UpdateTime string
    Update time.
    UserProvisioningId string
    User provisioning id.
    CreateTime string
    Create time.
    Id string
    The provider-assigned unique ID for this managed resource.
    PrincipalName string
    The identity name of the CAM user synchronization. Value: When PrincipalType is Group, the value is the CIC user group name; When PrincipalType takes the value to User, the value is the CIC user name.
    Status string
    Status of CAM user synchronization. Value:

    • Enabled: CAM user synchronization is enabled;
    • Disabled: CAM user synchronization is not enabled.
    TargetName string
    Group account The name of the target account..
    UpdateTime string
    Update time.
    UserProvisioningId string
    User provisioning id.
    createTime String
    Create time.
    id String
    The provider-assigned unique ID for this managed resource.
    principalName String
    The identity name of the CAM user synchronization. Value: When PrincipalType is Group, the value is the CIC user group name; When PrincipalType takes the value to User, the value is the CIC user name.
    status String
    Status of CAM user synchronization. Value:

    • Enabled: CAM user synchronization is enabled;
    • Disabled: CAM user synchronization is not enabled.
    targetName String
    Group account The name of the target account..
    updateTime String
    Update time.
    userProvisioningId String
    User provisioning id.
    createTime string
    Create time.
    id string
    The provider-assigned unique ID for this managed resource.
    principalName string
    The identity name of the CAM user synchronization. Value: When PrincipalType is Group, the value is the CIC user group name; When PrincipalType takes the value to User, the value is the CIC user name.
    status string
    Status of CAM user synchronization. Value:

    • Enabled: CAM user synchronization is enabled;
    • Disabled: CAM user synchronization is not enabled.
    targetName string
    Group account The name of the target account..
    updateTime string
    Update time.
    userProvisioningId string
    User provisioning id.
    create_time str
    Create time.
    id str
    The provider-assigned unique ID for this managed resource.
    principal_name str
    The identity name of the CAM user synchronization. Value: When PrincipalType is Group, the value is the CIC user group name; When PrincipalType takes the value to User, the value is the CIC user name.
    status str
    Status of CAM user synchronization. Value:

    • Enabled: CAM user synchronization is enabled;
    • Disabled: CAM user synchronization is not enabled.
    target_name str
    Group account The name of the target account..
    update_time str
    Update time.
    user_provisioning_id str
    User provisioning id.
    createTime String
    Create time.
    id String
    The provider-assigned unique ID for this managed resource.
    principalName String
    The identity name of the CAM user synchronization. Value: When PrincipalType is Group, the value is the CIC user group name; When PrincipalType takes the value to User, the value is the CIC user name.
    status String
    Status of CAM user synchronization. Value:

    • Enabled: CAM user synchronization is enabled;
    • Disabled: CAM user synchronization is not enabled.
    targetName String
    Group account The name of the target account..
    updateTime String
    Update time.
    userProvisioningId String
    User provisioning id.

    Look up Existing IdentityCenterUserSyncProvisioning Resource

    Get an existing IdentityCenterUserSyncProvisioning resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: IdentityCenterUserSyncProvisioningState, opts?: CustomResourceOptions): IdentityCenterUserSyncProvisioning
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            create_time: Optional[str] = None,
            deletion_strategy: Optional[str] = None,
            description: Optional[str] = None,
            duplication_strategy: Optional[str] = None,
            identity_center_user_sync_provisioning_id: Optional[str] = None,
            principal_id: Optional[str] = None,
            principal_name: Optional[str] = None,
            principal_type: Optional[str] = None,
            status: Optional[str] = None,
            target_name: Optional[str] = None,
            target_type: Optional[str] = None,
            target_uin: Optional[float] = None,
            update_time: Optional[str] = None,
            user_provisioning_id: Optional[str] = None,
            zone_id: Optional[str] = None) -> IdentityCenterUserSyncProvisioning
    func GetIdentityCenterUserSyncProvisioning(ctx *Context, name string, id IDInput, state *IdentityCenterUserSyncProvisioningState, opts ...ResourceOption) (*IdentityCenterUserSyncProvisioning, error)
    public static IdentityCenterUserSyncProvisioning Get(string name, Input<string> id, IdentityCenterUserSyncProvisioningState? state, CustomResourceOptions? opts = null)
    public static IdentityCenterUserSyncProvisioning get(String name, Output<String> id, IdentityCenterUserSyncProvisioningState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:IdentityCenterUserSyncProvisioning    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CreateTime string
    Create time.
    DeletionStrategy string
    Deletion policy. It indicates the handling policy for CAM users already synchronized when the CAM user synchronization is deleted. Valid values: Delete: Delete the CAM users already synchronized from CIC to CAM when the CAM user synchronization is deleted; Keep: Keep the CAM users already synchronized from CIC to CAM when the CAM user synchronization is deleted.
    Description string
    Description.
    DuplicationStrategy string
    Conflict policy. It indicates the handling policy for existence of a user with the same username when CIC users are synchronized to CAM. Valid values: KeepBoth: Keep both, that is, add the _cic suffix to the CIC user's username and then try to create a CAM user with the username when CIC users are synchronized to CAM and a user with the same username already exists in CAM; TakeOver: Replace, that is, directly replace the existing CAM user with the synchronized CIC user when CIC users are synchronized to CAM and a user with the same username already exists in CAM.
    IdentityCenterUserSyncProvisioningId string
    ID of the resource.
    PrincipalId string
    Identity ID for the CAM user synchronization. Valid values: When the PrincipalType value is Group, it is the CIC user group ID (g-). When the PrincipalType value is User, it is the CIC user ID (u-).
    PrincipalName string
    The identity name of the CAM user synchronization. Value: When PrincipalType is Group, the value is the CIC user group name; When PrincipalType takes the value to User, the value is the CIC user name.
    PrincipalType string

    Identity type for the CAM user synchronization. Valid values:

    User: indicates that the identity for the CAM user synchronization is a CIC user. Group: indicates that the identity for the CAM user synchronization is a CIC user group.

    Status string
    Status of CAM user synchronization. Value:

    • Enabled: CAM user synchronization is enabled;
    • Disabled: CAM user synchronization is not enabled.
    TargetName string
    Group account The name of the target account..
    TargetType string
    Type of the synchronized target account of the Tencent Cloud Organization. ManagerUin: admin account; MemberUin: member account.
    TargetUin double
    UIN of the synchronized target account of the Tencent Cloud Organization.
    UpdateTime string
    Update time.
    UserProvisioningId string
    User provisioning id.
    ZoneId string
    Space ID.
    CreateTime string
    Create time.
    DeletionStrategy string
    Deletion policy. It indicates the handling policy for CAM users already synchronized when the CAM user synchronization is deleted. Valid values: Delete: Delete the CAM users already synchronized from CIC to CAM when the CAM user synchronization is deleted; Keep: Keep the CAM users already synchronized from CIC to CAM when the CAM user synchronization is deleted.
    Description string
    Description.
    DuplicationStrategy string
    Conflict policy. It indicates the handling policy for existence of a user with the same username when CIC users are synchronized to CAM. Valid values: KeepBoth: Keep both, that is, add the _cic suffix to the CIC user's username and then try to create a CAM user with the username when CIC users are synchronized to CAM and a user with the same username already exists in CAM; TakeOver: Replace, that is, directly replace the existing CAM user with the synchronized CIC user when CIC users are synchronized to CAM and a user with the same username already exists in CAM.
    IdentityCenterUserSyncProvisioningId string
    ID of the resource.
    PrincipalId string
    Identity ID for the CAM user synchronization. Valid values: When the PrincipalType value is Group, it is the CIC user group ID (g-). When the PrincipalType value is User, it is the CIC user ID (u-).
    PrincipalName string
    The identity name of the CAM user synchronization. Value: When PrincipalType is Group, the value is the CIC user group name; When PrincipalType takes the value to User, the value is the CIC user name.
    PrincipalType string

    Identity type for the CAM user synchronization. Valid values:

    User: indicates that the identity for the CAM user synchronization is a CIC user. Group: indicates that the identity for the CAM user synchronization is a CIC user group.

    Status string
    Status of CAM user synchronization. Value:

    • Enabled: CAM user synchronization is enabled;
    • Disabled: CAM user synchronization is not enabled.
    TargetName string
    Group account The name of the target account..
    TargetType string
    Type of the synchronized target account of the Tencent Cloud Organization. ManagerUin: admin account; MemberUin: member account.
    TargetUin float64
    UIN of the synchronized target account of the Tencent Cloud Organization.
    UpdateTime string
    Update time.
    UserProvisioningId string
    User provisioning id.
    ZoneId string
    Space ID.
    createTime String
    Create time.
    deletionStrategy String
    Deletion policy. It indicates the handling policy for CAM users already synchronized when the CAM user synchronization is deleted. Valid values: Delete: Delete the CAM users already synchronized from CIC to CAM when the CAM user synchronization is deleted; Keep: Keep the CAM users already synchronized from CIC to CAM when the CAM user synchronization is deleted.
    description String
    Description.
    duplicationStrategy String
    Conflict policy. It indicates the handling policy for existence of a user with the same username when CIC users are synchronized to CAM. Valid values: KeepBoth: Keep both, that is, add the _cic suffix to the CIC user's username and then try to create a CAM user with the username when CIC users are synchronized to CAM and a user with the same username already exists in CAM; TakeOver: Replace, that is, directly replace the existing CAM user with the synchronized CIC user when CIC users are synchronized to CAM and a user with the same username already exists in CAM.
    identityCenterUserSyncProvisioningId String
    ID of the resource.
    principalId String
    Identity ID for the CAM user synchronization. Valid values: When the PrincipalType value is Group, it is the CIC user group ID (g-). When the PrincipalType value is User, it is the CIC user ID (u-).
    principalName String
    The identity name of the CAM user synchronization. Value: When PrincipalType is Group, the value is the CIC user group name; When PrincipalType takes the value to User, the value is the CIC user name.
    principalType String

    Identity type for the CAM user synchronization. Valid values:

    User: indicates that the identity for the CAM user synchronization is a CIC user. Group: indicates that the identity for the CAM user synchronization is a CIC user group.

    status String
    Status of CAM user synchronization. Value:

    • Enabled: CAM user synchronization is enabled;
    • Disabled: CAM user synchronization is not enabled.
    targetName String
    Group account The name of the target account..
    targetType String
    Type of the synchronized target account of the Tencent Cloud Organization. ManagerUin: admin account; MemberUin: member account.
    targetUin Double
    UIN of the synchronized target account of the Tencent Cloud Organization.
    updateTime String
    Update time.
    userProvisioningId String
    User provisioning id.
    zoneId String
    Space ID.
    createTime string
    Create time.
    deletionStrategy string
    Deletion policy. It indicates the handling policy for CAM users already synchronized when the CAM user synchronization is deleted. Valid values: Delete: Delete the CAM users already synchronized from CIC to CAM when the CAM user synchronization is deleted; Keep: Keep the CAM users already synchronized from CIC to CAM when the CAM user synchronization is deleted.
    description string
    Description.
    duplicationStrategy string
    Conflict policy. It indicates the handling policy for existence of a user with the same username when CIC users are synchronized to CAM. Valid values: KeepBoth: Keep both, that is, add the _cic suffix to the CIC user's username and then try to create a CAM user with the username when CIC users are synchronized to CAM and a user with the same username already exists in CAM; TakeOver: Replace, that is, directly replace the existing CAM user with the synchronized CIC user when CIC users are synchronized to CAM and a user with the same username already exists in CAM.
    identityCenterUserSyncProvisioningId string
    ID of the resource.
    principalId string
    Identity ID for the CAM user synchronization. Valid values: When the PrincipalType value is Group, it is the CIC user group ID (g-). When the PrincipalType value is User, it is the CIC user ID (u-).
    principalName string
    The identity name of the CAM user synchronization. Value: When PrincipalType is Group, the value is the CIC user group name; When PrincipalType takes the value to User, the value is the CIC user name.
    principalType string

    Identity type for the CAM user synchronization. Valid values:

    User: indicates that the identity for the CAM user synchronization is a CIC user. Group: indicates that the identity for the CAM user synchronization is a CIC user group.

    status string
    Status of CAM user synchronization. Value:

    • Enabled: CAM user synchronization is enabled;
    • Disabled: CAM user synchronization is not enabled.
    targetName string
    Group account The name of the target account..
    targetType string
    Type of the synchronized target account of the Tencent Cloud Organization. ManagerUin: admin account; MemberUin: member account.
    targetUin number
    UIN of the synchronized target account of the Tencent Cloud Organization.
    updateTime string
    Update time.
    userProvisioningId string
    User provisioning id.
    zoneId string
    Space ID.
    create_time str
    Create time.
    deletion_strategy str
    Deletion policy. It indicates the handling policy for CAM users already synchronized when the CAM user synchronization is deleted. Valid values: Delete: Delete the CAM users already synchronized from CIC to CAM when the CAM user synchronization is deleted; Keep: Keep the CAM users already synchronized from CIC to CAM when the CAM user synchronization is deleted.
    description str
    Description.
    duplication_strategy str
    Conflict policy. It indicates the handling policy for existence of a user with the same username when CIC users are synchronized to CAM. Valid values: KeepBoth: Keep both, that is, add the _cic suffix to the CIC user's username and then try to create a CAM user with the username when CIC users are synchronized to CAM and a user with the same username already exists in CAM; TakeOver: Replace, that is, directly replace the existing CAM user with the synchronized CIC user when CIC users are synchronized to CAM and a user with the same username already exists in CAM.
    identity_center_user_sync_provisioning_id str
    ID of the resource.
    principal_id str
    Identity ID for the CAM user synchronization. Valid values: When the PrincipalType value is Group, it is the CIC user group ID (g-). When the PrincipalType value is User, it is the CIC user ID (u-).
    principal_name str
    The identity name of the CAM user synchronization. Value: When PrincipalType is Group, the value is the CIC user group name; When PrincipalType takes the value to User, the value is the CIC user name.
    principal_type str

    Identity type for the CAM user synchronization. Valid values:

    User: indicates that the identity for the CAM user synchronization is a CIC user. Group: indicates that the identity for the CAM user synchronization is a CIC user group.

    status str
    Status of CAM user synchronization. Value:

    • Enabled: CAM user synchronization is enabled;
    • Disabled: CAM user synchronization is not enabled.
    target_name str
    Group account The name of the target account..
    target_type str
    Type of the synchronized target account of the Tencent Cloud Organization. ManagerUin: admin account; MemberUin: member account.
    target_uin float
    UIN of the synchronized target account of the Tencent Cloud Organization.
    update_time str
    Update time.
    user_provisioning_id str
    User provisioning id.
    zone_id str
    Space ID.
    createTime String
    Create time.
    deletionStrategy String
    Deletion policy. It indicates the handling policy for CAM users already synchronized when the CAM user synchronization is deleted. Valid values: Delete: Delete the CAM users already synchronized from CIC to CAM when the CAM user synchronization is deleted; Keep: Keep the CAM users already synchronized from CIC to CAM when the CAM user synchronization is deleted.
    description String
    Description.
    duplicationStrategy String
    Conflict policy. It indicates the handling policy for existence of a user with the same username when CIC users are synchronized to CAM. Valid values: KeepBoth: Keep both, that is, add the _cic suffix to the CIC user's username and then try to create a CAM user with the username when CIC users are synchronized to CAM and a user with the same username already exists in CAM; TakeOver: Replace, that is, directly replace the existing CAM user with the synchronized CIC user when CIC users are synchronized to CAM and a user with the same username already exists in CAM.
    identityCenterUserSyncProvisioningId String
    ID of the resource.
    principalId String
    Identity ID for the CAM user synchronization. Valid values: When the PrincipalType value is Group, it is the CIC user group ID (g-). When the PrincipalType value is User, it is the CIC user ID (u-).
    principalName String
    The identity name of the CAM user synchronization. Value: When PrincipalType is Group, the value is the CIC user group name; When PrincipalType takes the value to User, the value is the CIC user name.
    principalType String

    Identity type for the CAM user synchronization. Valid values:

    User: indicates that the identity for the CAM user synchronization is a CIC user. Group: indicates that the identity for the CAM user synchronization is a CIC user group.

    status String
    Status of CAM user synchronization. Value:

    • Enabled: CAM user synchronization is enabled;
    • Disabled: CAM user synchronization is not enabled.
    targetName String
    Group account The name of the target account..
    targetType String
    Type of the synchronized target account of the Tencent Cloud Organization. ManagerUin: admin account; MemberUin: member account.
    targetUin Number
    UIN of the synchronized target account of the Tencent Cloud Organization.
    updateTime String
    Update time.
    userProvisioningId String
    User provisioning id.
    zoneId String
    Space ID.

    Import

    organization identity_center_user_sync_provisioning can be imported using the id, e.g.

    $ pulumi import tencentcloud:index/identityCenterUserSyncProvisioning:IdentityCenterUserSyncProvisioning identity_center_user_sync_provisioning ${zoneId}#${userProvisioningId}
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    tencentcloud logo
    tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack