tencentcloud.IdentityCenterUserSyncProvisioning
Explore with Pulumi AI
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:
- Zone
Id string - Space ID.
- Deletion
Strategy 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.
- Duplication
Strategy 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.
- Identity
Center stringUser Sync Provisioning Id - ID of the resource.
- Principal
Id 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-).
- Principal
Type 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.
- Target
Type string - Type of the synchronized target account of the Tencent Cloud Organization. ManagerUin: admin account; MemberUin: member account.
- Target
Uin double - UIN of the synchronized target account of the Tencent Cloud Organization.
- Zone
Id string - Space ID.
- Deletion
Strategy 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.
- Duplication
Strategy 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.
- Identity
Center stringUser Sync Provisioning Id - ID of the resource.
- Principal
Id 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-).
- Principal
Type 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.
- Target
Type string - Type of the synchronized target account of the Tencent Cloud Organization. ManagerUin: admin account; MemberUin: member account.
- Target
Uin float64 - UIN of the synchronized target account of the Tencent Cloud Organization.
- zone
Id String - Space ID.
- deletion
Strategy 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.
- duplication
Strategy 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.
- identity
Center StringUser Sync Provisioning Id - ID of the resource.
- principal
Id 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-).
- principal
Type 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.
- target
Type String - Type of the synchronized target account of the Tencent Cloud Organization. ManagerUin: admin account; MemberUin: member account.
- target
Uin Double - UIN of the synchronized target account of the Tencent Cloud Organization.
- zone
Id string - Space ID.
- deletion
Strategy 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.
- duplication
Strategy 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.
- identity
Center stringUser Sync Provisioning Id - ID of the resource.
- principal
Id 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-).
- principal
Type 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.
- target
Type string - Type of the synchronized target account of the Tencent Cloud Organization. ManagerUin: admin account; MemberUin: member account.
- target
Uin 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_ struser_ sync_ provisioning_ id - 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.
- zone
Id String - Space ID.
- deletion
Strategy 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.
- duplication
Strategy 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.
- identity
Center StringUser Sync Provisioning Id - ID of the resource.
- principal
Id 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-).
- principal
Type 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.
- target
Type String - Type of the synchronized target account of the Tencent Cloud Organization. ManagerUin: admin account; MemberUin: member account.
- target
Uin 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:
- Create
Time string - Create time.
- Id string
- The provider-assigned unique ID for this managed resource.
- Principal
Name 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.
- Target
Name string - Group account The name of the target account..
- Update
Time string - Update time.
- User
Provisioning stringId - User provisioning id.
- Create
Time string - Create time.
- Id string
- The provider-assigned unique ID for this managed resource.
- Principal
Name 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.
- Target
Name string - Group account The name of the target account..
- Update
Time string - Update time.
- User
Provisioning stringId - User provisioning id.
- create
Time String - Create time.
- id String
- The provider-assigned unique ID for this managed resource.
- principal
Name 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.
- target
Name String - Group account The name of the target account..
- update
Time String - Update time.
- user
Provisioning StringId - User provisioning id.
- create
Time string - Create time.
- id string
- The provider-assigned unique ID for this managed resource.
- principal
Name 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.
- target
Name string - Group account The name of the target account..
- update
Time string - Update time.
- user
Provisioning stringId - 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_ strid - User provisioning id.
- create
Time String - Create time.
- id String
- The provider-assigned unique ID for this managed resource.
- principal
Name 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.
- target
Name String - Group account The name of the target account..
- update
Time String - Update time.
- user
Provisioning StringId - 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.
- Create
Time string - Create time.
- Deletion
Strategy 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.
- Duplication
Strategy 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.
- Identity
Center stringUser Sync Provisioning Id - ID of the resource.
- Principal
Id 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-).
- Principal
Name 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.
- Principal
Type 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.
- Target
Name string - Group account The name of the target account..
- Target
Type string - Type of the synchronized target account of the Tencent Cloud Organization. ManagerUin: admin account; MemberUin: member account.
- Target
Uin double - UIN of the synchronized target account of the Tencent Cloud Organization.
- Update
Time string - Update time.
- User
Provisioning stringId - User provisioning id.
- Zone
Id string - Space ID.
- Create
Time string - Create time.
- Deletion
Strategy 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.
- Duplication
Strategy 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.
- Identity
Center stringUser Sync Provisioning Id - ID of the resource.
- Principal
Id 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-).
- Principal
Name 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.
- Principal
Type 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.
- Target
Name string - Group account The name of the target account..
- Target
Type string - Type of the synchronized target account of the Tencent Cloud Organization. ManagerUin: admin account; MemberUin: member account.
- Target
Uin float64 - UIN of the synchronized target account of the Tencent Cloud Organization.
- Update
Time string - Update time.
- User
Provisioning stringId - User provisioning id.
- Zone
Id string - Space ID.
- create
Time String - Create time.
- deletion
Strategy 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.
- duplication
Strategy 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.
- identity
Center StringUser Sync Provisioning Id - ID of the resource.
- principal
Id 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-).
- principal
Name 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.
- principal
Type 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.
- target
Name String - Group account The name of the target account..
- target
Type String - Type of the synchronized target account of the Tencent Cloud Organization. ManagerUin: admin account; MemberUin: member account.
- target
Uin Double - UIN of the synchronized target account of the Tencent Cloud Organization.
- update
Time String - Update time.
- user
Provisioning StringId - User provisioning id.
- zone
Id String - Space ID.
- create
Time string - Create time.
- deletion
Strategy 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.
- duplication
Strategy 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.
- identity
Center stringUser Sync Provisioning Id - ID of the resource.
- principal
Id 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-).
- principal
Name 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.
- principal
Type 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.
- target
Name string - Group account The name of the target account..
- target
Type string - Type of the synchronized target account of the Tencent Cloud Organization. ManagerUin: admin account; MemberUin: member account.
- target
Uin number - UIN of the synchronized target account of the Tencent Cloud Organization.
- update
Time string - Update time.
- user
Provisioning stringId - User provisioning id.
- zone
Id 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_ struser_ sync_ provisioning_ id - 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_ strid - User provisioning id.
- zone_
id str - Space ID.
- create
Time String - Create time.
- deletion
Strategy 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.
- duplication
Strategy 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.
- identity
Center StringUser Sync Provisioning Id - ID of the resource.
- principal
Id 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-).
- principal
Name 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.
- principal
Type 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.
- target
Name String - Group account The name of the target account..
- target
Type String - Type of the synchronized target account of the Tencent Cloud Organization. ManagerUin: admin account; MemberUin: member account.
- target
Uin Number - UIN of the synchronized target account of the Tencent Cloud Organization.
- update
Time String - Update time.
- user
Provisioning StringId - User provisioning id.
- zone
Id 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.