published on Thursday, Apr 23, 2026 by Volcengine
published on Thursday, Apr 23, 2026 by Volcengine
When you need to grant SSO authorization to Cloud Identity Center users in bulk, you can first manage users in bulk through user groups
Example Usage
Example coming soon!
Example coming soon!
Example coming soon!
Example coming soon!
Example coming soon!
resources:
cloudIdentityGroupDemo:
type: volcenginecc:cloudidentity:Group
name: CloudIdentityGroupDemo
properties:
description: ccapi-multi-des
displayName: test for ccapi
groupName: ccapi-multi
joinType: Manual
members:
- user_id: '***********'
- user_id: '*************'
Create Group Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Group(name: string, args: GroupArgs, opts?: CustomResourceOptions);@overload
def Group(resource_name: str,
args: GroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Group(resource_name: str,
opts: Optional[ResourceOptions] = None,
group_name: Optional[str] = None,
join_type: Optional[str] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
members: Optional[Sequence[GroupMemberArgs]] = None)func NewGroup(ctx *Context, name string, args GroupArgs, opts ...ResourceOption) (*Group, error)public Group(string name, GroupArgs args, CustomResourceOptions? opts = null)type: volcenginecc:cloudidentity:Group
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 GroupArgs
- 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 GroupArgs
- 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 GroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GroupArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var volcengineccGroupResource = new Volcenginecc.Cloudidentity.Group("volcengineccGroupResource", new()
{
GroupName = "string",
JoinType = "string",
Description = "string",
DisplayName = "string",
Members = new[]
{
new Volcenginecc.Cloudidentity.Inputs.GroupMemberArgs
{
UserId = "string",
},
},
});
example, err := cloudidentity.NewGroup(ctx, "volcengineccGroupResource", &cloudidentity.GroupArgs{
GroupName: pulumi.String("string"),
JoinType: pulumi.String("string"),
Description: pulumi.String("string"),
DisplayName: pulumi.String("string"),
Members: cloudidentity.GroupMemberArray{
&cloudidentity.GroupMemberArgs{
UserId: pulumi.String("string"),
},
},
})
var volcengineccGroupResource = new com.volcengine.volcenginecc.cloudidentity.Group("volcengineccGroupResource", com.volcengine.volcenginecc.cloudidentity.GroupArgs.builder()
.groupName("string")
.joinType("string")
.description("string")
.displayName("string")
.members(GroupMemberArgs.builder()
.userId("string")
.build())
.build());
volcenginecc_group_resource = volcenginecc.cloudidentity.Group("volcengineccGroupResource",
group_name="string",
join_type="string",
description="string",
display_name="string",
members=[{
"user_id": "string",
}])
const volcengineccGroupResource = new volcenginecc.cloudidentity.Group("volcengineccGroupResource", {
groupName: "string",
joinType: "string",
description: "string",
displayName: "string",
members: [{
userId: "string",
}],
});
type: volcenginecc:cloudidentity:Group
properties:
description: string
displayName: string
groupName: string
joinType: string
members:
- userId: string
Group 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 Group resource accepts the following input properties:
- Group
Name string - User Group Name
- Join
Type string - User Group Type
- Description string
- Description
- Display
Name string - Display Name
- Members
List<Volcengine.
Group Member>
- Group
Name string - User Group Name
- Join
Type string - User Group Type
- Description string
- Description
- Display
Name string - Display Name
- Members
[]Group
Member Args
- group
Name String - User Group Name
- join
Type String - User Group Type
- description String
- Description
- display
Name String - Display Name
- members
List<Group
Member>
- group
Name string - User Group Name
- join
Type string - User Group Type
- description string
- Description
- display
Name string - Display Name
- members
Group
Member[]
- group_
name str - User Group Name
- join_
type str - User Group Type
- description str
- Description
- display_
name str - Display Name
- members
Sequence[Group
Member Args]
- group
Name String - User Group Name
- join
Type String - User Group Type
- description String
- Description
- display
Name String - Display Name
- members List<Property Map>
Outputs
All input properties are implicitly available as output properties. Additionally, the Group resource produces the following output properties:
- Created
Time string - Creation Time
- Group
Id string - User Group ID
- Id string
- The provider-assigned unique ID for this managed resource.
- Source string
- User Group Source
- Updated
Time string - Update Time
- Created
Time string - Creation Time
- Group
Id string - User Group ID
- Id string
- The provider-assigned unique ID for this managed resource.
- Source string
- User Group Source
- Updated
Time string - Update Time
- created
Time String - Creation Time
- group
Id String - User Group ID
- id String
- The provider-assigned unique ID for this managed resource.
- source String
- User Group Source
- updated
Time String - Update Time
- created
Time string - Creation Time
- group
Id string - User Group ID
- id string
- The provider-assigned unique ID for this managed resource.
- source string
- User Group Source
- updated
Time string - Update Time
- created_
time str - Creation Time
- group_
id str - User Group ID
- id str
- The provider-assigned unique ID for this managed resource.
- source str
- User Group Source
- updated_
time str - Update Time
- created
Time String - Creation Time
- group
Id String - User Group ID
- id String
- The provider-assigned unique ID for this managed resource.
- source String
- User Group Source
- updated
Time String - Update Time
Look up Existing Group Resource
Get an existing Group 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?: GroupState, opts?: CustomResourceOptions): Group@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_time: Optional[str] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
group_id: Optional[str] = None,
group_name: Optional[str] = None,
join_type: Optional[str] = None,
members: Optional[Sequence[GroupMemberArgs]] = None,
source: Optional[str] = None,
updated_time: Optional[str] = None) -> Groupfunc GetGroup(ctx *Context, name string, id IDInput, state *GroupState, opts ...ResourceOption) (*Group, error)public static Group Get(string name, Input<string> id, GroupState? state, CustomResourceOptions? opts = null)public static Group get(String name, Output<String> id, GroupState state, CustomResourceOptions options)resources: _: type: volcenginecc:cloudidentity:Group 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.
- Created
Time string - Creation Time
- Description string
- Description
- Display
Name string - Display Name
- Group
Id string - User Group ID
- Group
Name string - User Group Name
- Join
Type string - User Group Type
- Members
List<Volcengine.
Group Member> - Source string
- User Group Source
- Updated
Time string - Update Time
- Created
Time string - Creation Time
- Description string
- Description
- Display
Name string - Display Name
- Group
Id string - User Group ID
- Group
Name string - User Group Name
- Join
Type string - User Group Type
- Members
[]Group
Member Args - Source string
- User Group Source
- Updated
Time string - Update Time
- created
Time String - Creation Time
- description String
- Description
- display
Name String - Display Name
- group
Id String - User Group ID
- group
Name String - User Group Name
- join
Type String - User Group Type
- members
List<Group
Member> - source String
- User Group Source
- updated
Time String - Update Time
- created
Time string - Creation Time
- description string
- Description
- display
Name string - Display Name
- group
Id string - User Group ID
- group
Name string - User Group Name
- join
Type string - User Group Type
- members
Group
Member[] - source string
- User Group Source
- updated
Time string - Update Time
- created_
time str - Creation Time
- description str
- Description
- display_
name str - Display Name
- group_
id str - User Group ID
- group_
name str - User Group Name
- join_
type str - User Group Type
- members
Sequence[Group
Member Args] - source str
- User Group Source
- updated_
time str - Update Time
- created
Time String - Creation Time
- description String
- Description
- display
Name String - Display Name
- group
Id String - User Group ID
- group
Name String - User Group Name
- join
Type String - User Group Type
- members List<Property Map>
- source String
- User Group Source
- updated
Time String - Update Time
Supporting Types
GroupMember, GroupMemberArgs
- User
Id string - User ID
- User
Id string - User ID
- user
Id String - User ID
- user
Id string - User ID
- user_
id str - User ID
- user
Id String - User ID
Import
$ pulumi import volcenginecc:cloudidentity/group:Group example "group_id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- volcenginecc volcengine/pulumi-volcenginecc
- License
- MPL-2.0
- Notes
- This Pulumi package is based on the
volcengineccTerraform Provider.
published on Thursday, Apr 23, 2026 by Volcengine
