googleworkspace.Role
Explore with Pulumi AI
Example Usage
Create Role Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Role(name: string, args: RoleArgs, opts?: CustomResourceOptions);
@overload
def Role(resource_name: str,
args: RoleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Role(resource_name: str,
opts: Optional[ResourceOptions] = None,
privileges: Optional[Sequence[RolePrivilegeArgs]] = None,
description: Optional[str] = None,
name: Optional[str] = None)
func NewRole(ctx *Context, name string, args RoleArgs, opts ...ResourceOption) (*Role, error)
public Role(string name, RoleArgs args, CustomResourceOptions? opts = null)
type: googleworkspace:Role
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 RoleArgs
- 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 RoleArgs
- 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 RoleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RoleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RoleArgs
- 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 roleResource = new Googleworkspace.Role("roleResource", new()
{
Privileges = new[]
{
new Googleworkspace.Inputs.RolePrivilegeArgs
{
PrivilegeName = "string",
ServiceId = "string",
},
},
Description = "string",
Name = "string",
});
example, err := googleworkspace.NewRole(ctx, "roleResource", &googleworkspace.RoleArgs{
Privileges: .RolePrivilegeArray{
&.RolePrivilegeArgs{
PrivilegeName: pulumi.String("string"),
ServiceId: pulumi.String("string"),
},
},
Description: pulumi.String("string"),
Name: pulumi.String("string"),
})
var roleResource = new Role("roleResource", RoleArgs.builder()
.privileges(RolePrivilegeArgs.builder()
.privilegeName("string")
.serviceId("string")
.build())
.description("string")
.name("string")
.build());
role_resource = googleworkspace.Role("roleResource",
privileges=[{
"privilege_name": "string",
"service_id": "string",
}],
description="string",
name="string")
const roleResource = new googleworkspace.Role("roleResource", {
privileges: [{
privilegeName: "string",
serviceId: "string",
}],
description: "string",
name: "string",
});
type: googleworkspace:Role
properties:
description: string
name: string
privileges:
- privilegeName: string
serviceId: string
Role 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 Role resource accepts the following input properties:
- Privileges
List<Role
Privilege> - The set of privileges that are granted to this role.
- Description string
- A short description of the role.
- Name string
- Name of the role.
- Privileges
[]Role
Privilege Args - The set of privileges that are granted to this role.
- Description string
- A short description of the role.
- Name string
- Name of the role.
- privileges
List<Role
Privilege> - The set of privileges that are granted to this role.
- description String
- A short description of the role.
- name String
- Name of the role.
- privileges
Role
Privilege[] - The set of privileges that are granted to this role.
- description string
- A short description of the role.
- name string
- Name of the role.
- privileges
Sequence[Role
Privilege Args] - The set of privileges that are granted to this role.
- description str
- A short description of the role.
- name str
- Name of the role.
- privileges List<Property Map>
- The set of privileges that are granted to this role.
- description String
- A short description of the role.
- name String
- Name of the role.
Outputs
All input properties are implicitly available as output properties. Additionally, the Role resource produces the following output properties:
- Etag string
- ETag of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Super boolAdmin Role - Returns true if the role is a super admin role.
- Is
System boolRole - Returns true if this is a pre-defined system role.
- Etag string
- ETag of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Super boolAdmin Role - Returns true if the role is a super admin role.
- Is
System boolRole - Returns true if this is a pre-defined system role.
- etag String
- ETag of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Super BooleanAdmin Role - Returns true if the role is a super admin role.
- is
System BooleanRole - Returns true if this is a pre-defined system role.
- etag string
- ETag of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- is
Super booleanAdmin Role - Returns true if the role is a super admin role.
- is
System booleanRole - Returns true if this is a pre-defined system role.
- etag str
- ETag of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- is_
super_ booladmin_ role - Returns true if the role is a super admin role.
- is_
system_ boolrole - Returns true if this is a pre-defined system role.
- etag String
- ETag of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Super BooleanAdmin Role - Returns true if the role is a super admin role.
- is
System BooleanRole - Returns true if this is a pre-defined system role.
Look up Existing Role Resource
Get an existing Role 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?: RoleState, opts?: CustomResourceOptions): Role
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
etag: Optional[str] = None,
is_super_admin_role: Optional[bool] = None,
is_system_role: Optional[bool] = None,
name: Optional[str] = None,
privileges: Optional[Sequence[RolePrivilegeArgs]] = None) -> Role
func GetRole(ctx *Context, name string, id IDInput, state *RoleState, opts ...ResourceOption) (*Role, error)
public static Role Get(string name, Input<string> id, RoleState? state, CustomResourceOptions? opts = null)
public static Role get(String name, Output<String> id, RoleState state, CustomResourceOptions options)
resources: _: type: googleworkspace:Role 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.
- Description string
- A short description of the role.
- Etag string
- ETag of the resource.
- Is
Super boolAdmin Role - Returns true if the role is a super admin role.
- Is
System boolRole - Returns true if this is a pre-defined system role.
- Name string
- Name of the role.
- Privileges
List<Role
Privilege> - The set of privileges that are granted to this role.
- Description string
- A short description of the role.
- Etag string
- ETag of the resource.
- Is
Super boolAdmin Role - Returns true if the role is a super admin role.
- Is
System boolRole - Returns true if this is a pre-defined system role.
- Name string
- Name of the role.
- Privileges
[]Role
Privilege Args - The set of privileges that are granted to this role.
- description String
- A short description of the role.
- etag String
- ETag of the resource.
- is
Super BooleanAdmin Role - Returns true if the role is a super admin role.
- is
System BooleanRole - Returns true if this is a pre-defined system role.
- name String
- Name of the role.
- privileges
List<Role
Privilege> - The set of privileges that are granted to this role.
- description string
- A short description of the role.
- etag string
- ETag of the resource.
- is
Super booleanAdmin Role - Returns true if the role is a super admin role.
- is
System booleanRole - Returns true if this is a pre-defined system role.
- name string
- Name of the role.
- privileges
Role
Privilege[] - The set of privileges that are granted to this role.
- description str
- A short description of the role.
- etag str
- ETag of the resource.
- is_
super_ booladmin_ role - Returns true if the role is a super admin role.
- is_
system_ boolrole - Returns true if this is a pre-defined system role.
- name str
- Name of the role.
- privileges
Sequence[Role
Privilege Args] - The set of privileges that are granted to this role.
- description String
- A short description of the role.
- etag String
- ETag of the resource.
- is
Super BooleanAdmin Role - Returns true if the role is a super admin role.
- is
System BooleanRole - Returns true if this is a pre-defined system role.
- name String
- Name of the role.
- privileges List<Property Map>
- The set of privileges that are granted to this role.
Supporting Types
RolePrivilege, RolePrivilegeArgs
- Privilege
Name string - The name of the privilege.
- Service
Id string - The obfuscated ID of the service this privilege is for.
- Privilege
Name string - The name of the privilege.
- Service
Id string - The obfuscated ID of the service this privilege is for.
- privilege
Name String - The name of the privilege.
- service
Id String - The obfuscated ID of the service this privilege is for.
- privilege
Name string - The name of the privilege.
- service
Id string - The obfuscated ID of the service this privilege is for.
- privilege_
name str - The name of the privilege.
- service_
id str - The obfuscated ID of the service this privilege is for.
- privilege
Name String - The name of the privilege.
- service
Id String - The obfuscated ID of the service this privilege is for.
Import
$ pulumi import googleworkspace:index/role:Role admin 12345678901234567
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- googleworkspace hashicorp/terraform-provider-googleworkspace
- License
- Notes
- This Pulumi package is based on the
googleworkspace
Terraform Provider.