googleworkspace.User
Explore with Pulumi AI
User resource manages Google Workspace Users. User resides under the https://www.googleapis.com/auth/admin.directory.user
client scope.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as googleworkspace from "@pulumi/googleworkspace";
const birthday = new googleworkspace.Schema("birthday", {
schemaName: "birthday",
fields: [
{
fieldName: "birthday",
fieldType: "DATE",
},
{
fieldName: "favorite-numbers",
fieldType: "INT64",
multiValued: true,
numericIndexingSpec: {
minValue: 1,
maxValue: 100,
},
},
],
});
const dwight = new googleworkspace.User("dwight", {
primaryEmail: "dwight.schrute@example.com",
password: "34819d7beeabb9260a5c854bc85b3e44",
hashFunction: "MD5",
name: {
familyName: "Schrute",
givenName: "Dwight",
},
aliases: ["assistant_to_regional_manager@example.com"],
emails: [{
address: "dwight.schrute.dunder.mifflin@example.com",
type: "work",
}],
relations: [{
type: "assistant",
value: "Michael Scott",
}],
addresses: [{
country: "USA",
countryCode: "US",
locality: "Scranton",
poBox: "123",
postalCode: "18508",
region: "PA",
streetAddress: "123 Dunder Mifflin Pkwy",
type: "work",
}],
organizations: [{
department: "sales",
location: "Scranton",
name: "Dunder Mifflin",
primary: true,
symbol: "DUMI",
title: "member",
type: "work",
}],
phones: [
{
type: "home",
value: "555-123-7890",
},
{
type: "work",
primary: true,
value: "555-123-0987",
},
],
keywords: [{
type: "occupation",
value: "salesperson",
}],
customSchemas: [{
schemaName: birthday.schemaName,
schemaValues: {
birthday: JSON.stringify("1970-01-20"),
"favorite-numbers": JSON.stringify([
1,
2,
3,
]),
},
}],
recoveryEmail: "dwightkschrute@example.com",
});
import pulumi
import json
import pulumi_googleworkspace as googleworkspace
birthday = googleworkspace.Schema("birthday",
schema_name="birthday",
fields=[
{
"field_name": "birthday",
"field_type": "DATE",
},
{
"field_name": "favorite-numbers",
"field_type": "INT64",
"multi_valued": True,
"numeric_indexing_spec": {
"min_value": 1,
"max_value": 100,
},
},
])
dwight = googleworkspace.User("dwight",
primary_email="dwight.schrute@example.com",
password="34819d7beeabb9260a5c854bc85b3e44",
hash_function="MD5",
name={
"family_name": "Schrute",
"given_name": "Dwight",
},
aliases=["assistant_to_regional_manager@example.com"],
emails=[{
"address": "dwight.schrute.dunder.mifflin@example.com",
"type": "work",
}],
relations=[{
"type": "assistant",
"value": "Michael Scott",
}],
addresses=[{
"country": "USA",
"country_code": "US",
"locality": "Scranton",
"po_box": "123",
"postal_code": "18508",
"region": "PA",
"street_address": "123 Dunder Mifflin Pkwy",
"type": "work",
}],
organizations=[{
"department": "sales",
"location": "Scranton",
"name": "Dunder Mifflin",
"primary": True,
"symbol": "DUMI",
"title": "member",
"type": "work",
}],
phones=[
{
"type": "home",
"value": "555-123-7890",
},
{
"type": "work",
"primary": True,
"value": "555-123-0987",
},
],
keywords=[{
"type": "occupation",
"value": "salesperson",
}],
custom_schemas=[{
"schema_name": birthday.schema_name,
"schema_values": {
"birthday": json.dumps("1970-01-20"),
"favorite-numbers": json.dumps([
1,
2,
3,
]),
},
}],
recovery_email="dwightkschrute@example.com")
package main
import (
"encoding/json"
"github.com/pulumi/pulumi-terraform-provider/sdks/go/googleworkspace/googleworkspace"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
birthday, err := googleworkspace.NewSchema(ctx, "birthday", &googleworkspace.SchemaArgs{
SchemaName: pulumi.String("birthday"),
Fields: googleworkspace.SchemaFieldArray{
&googleworkspace.SchemaFieldArgs{
FieldName: pulumi.String("birthday"),
FieldType: pulumi.String("DATE"),
},
&googleworkspace.SchemaFieldArgs{
FieldName: pulumi.String("favorite-numbers"),
FieldType: pulumi.String("INT64"),
MultiValued: pulumi.Bool(true),
NumericIndexingSpec: &googleworkspace.SchemaFieldNumericIndexingSpecArgs{
MinValue: pulumi.Float64(1),
MaxValue: pulumi.Float64(100),
},
},
},
})
if err != nil {
return err
}
tmpJSON0, err := json.Marshal("1970-01-20")
if err != nil {
return err
}
json0 := string(tmpJSON0)
tmpJSON1, err := json.Marshal([]float64{
1,
2,
3,
})
if err != nil {
return err
}
json1 := string(tmpJSON1)
_, err = googleworkspace.NewUser(ctx, "dwight", &googleworkspace.UserArgs{
PrimaryEmail: pulumi.String("dwight.schrute@example.com"),
Password: pulumi.String("34819d7beeabb9260a5c854bc85b3e44"),
HashFunction: pulumi.String("MD5"),
Name: &googleworkspace.UserNameArgs{
FamilyName: pulumi.String("Schrute"),
GivenName: pulumi.String("Dwight"),
},
Aliases: pulumi.StringArray{
pulumi.String("assistant_to_regional_manager@example.com"),
},
Emails: googleworkspace.UserEmailArray{
&googleworkspace.UserEmailArgs{
Address: pulumi.String("dwight.schrute.dunder.mifflin@example.com"),
Type: pulumi.String("work"),
},
},
Relations: googleworkspace.UserRelationArray{
&googleworkspace.UserRelationArgs{
Type: pulumi.String("assistant"),
Value: pulumi.String("Michael Scott"),
},
},
Addresses: googleworkspace.UserAddressArray{
&googleworkspace.UserAddressArgs{
Country: pulumi.String("USA"),
CountryCode: pulumi.String("US"),
Locality: pulumi.String("Scranton"),
PoBox: pulumi.String("123"),
PostalCode: pulumi.String("18508"),
Region: pulumi.String("PA"),
StreetAddress: pulumi.String("123 Dunder Mifflin Pkwy"),
Type: pulumi.String("work"),
},
},
Organizations: googleworkspace.UserOrganizationArray{
&googleworkspace.UserOrganizationArgs{
Department: pulumi.String("sales"),
Location: pulumi.String("Scranton"),
Name: pulumi.String("Dunder Mifflin"),
Primary: pulumi.Bool(true),
Symbol: pulumi.String("DUMI"),
Title: pulumi.String("member"),
Type: pulumi.String("work"),
},
},
Phones: googleworkspace.UserPhoneArray{
&googleworkspace.UserPhoneArgs{
Type: pulumi.String("home"),
Value: pulumi.String("555-123-7890"),
},
&googleworkspace.UserPhoneArgs{
Type: pulumi.String("work"),
Primary: pulumi.Bool(true),
Value: pulumi.String("555-123-0987"),
},
},
Keywords: googleworkspace.UserKeywordArray{
&googleworkspace.UserKeywordArgs{
Type: pulumi.String("occupation"),
Value: pulumi.String("salesperson"),
},
},
CustomSchemas: googleworkspace.UserCustomSchemaArray{
&googleworkspace.UserCustomSchemaArgs{
SchemaName: birthday.SchemaName,
SchemaValues: pulumi.StringMap{
"birthday": pulumi.String(json0),
"favorite-numbers": pulumi.String(json1),
},
},
},
RecoveryEmail: pulumi.String("dwightkschrute@example.com"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using System.Text.Json;
using Pulumi;
using Googleworkspace = Pulumi.Googleworkspace;
return await Deployment.RunAsync(() =>
{
var birthday = new Googleworkspace.Schema("birthday", new()
{
SchemaName = "birthday",
Fields = new[]
{
new Googleworkspace.Inputs.SchemaFieldArgs
{
FieldName = "birthday",
FieldType = "DATE",
},
new Googleworkspace.Inputs.SchemaFieldArgs
{
FieldName = "favorite-numbers",
FieldType = "INT64",
MultiValued = true,
NumericIndexingSpec = new Googleworkspace.Inputs.SchemaFieldNumericIndexingSpecArgs
{
MinValue = 1,
MaxValue = 100,
},
},
},
});
var dwight = new Googleworkspace.User("dwight", new()
{
PrimaryEmail = "dwight.schrute@example.com",
Password = "34819d7beeabb9260a5c854bc85b3e44",
HashFunction = "MD5",
Name = new Googleworkspace.Inputs.UserNameArgs
{
FamilyName = "Schrute",
GivenName = "Dwight",
},
Aliases = new[]
{
"assistant_to_regional_manager@example.com",
},
Emails = new[]
{
new Googleworkspace.Inputs.UserEmailArgs
{
Address = "dwight.schrute.dunder.mifflin@example.com",
Type = "work",
},
},
Relations = new[]
{
new Googleworkspace.Inputs.UserRelationArgs
{
Type = "assistant",
Value = "Michael Scott",
},
},
Addresses = new[]
{
new Googleworkspace.Inputs.UserAddressArgs
{
Country = "USA",
CountryCode = "US",
Locality = "Scranton",
PoBox = "123",
PostalCode = "18508",
Region = "PA",
StreetAddress = "123 Dunder Mifflin Pkwy",
Type = "work",
},
},
Organizations = new[]
{
new Googleworkspace.Inputs.UserOrganizationArgs
{
Department = "sales",
Location = "Scranton",
Name = "Dunder Mifflin",
Primary = true,
Symbol = "DUMI",
Title = "member",
Type = "work",
},
},
Phones = new[]
{
new Googleworkspace.Inputs.UserPhoneArgs
{
Type = "home",
Value = "555-123-7890",
},
new Googleworkspace.Inputs.UserPhoneArgs
{
Type = "work",
Primary = true,
Value = "555-123-0987",
},
},
Keywords = new[]
{
new Googleworkspace.Inputs.UserKeywordArgs
{
Type = "occupation",
Value = "salesperson",
},
},
CustomSchemas = new[]
{
new Googleworkspace.Inputs.UserCustomSchemaArgs
{
SchemaName = birthday.SchemaName,
SchemaValues =
{
{ "birthday", JsonSerializer.Serialize("1970-01-20") },
{ "favorite-numbers", JsonSerializer.Serialize(new object?[]
{
1,
2,
3,
}) },
},
},
},
RecoveryEmail = "dwightkschrute@example.com",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.googleworkspace.Schema;
import com.pulumi.googleworkspace.SchemaArgs;
import com.pulumi.googleworkspace.inputs.SchemaFieldArgs;
import com.pulumi.googleworkspace.inputs.SchemaFieldNumericIndexingSpecArgs;
import com.pulumi.googleworkspace.User;
import com.pulumi.googleworkspace.UserArgs;
import com.pulumi.googleworkspace.inputs.UserNameArgs;
import com.pulumi.googleworkspace.inputs.UserEmailArgs;
import com.pulumi.googleworkspace.inputs.UserRelationArgs;
import com.pulumi.googleworkspace.inputs.UserAddressArgs;
import com.pulumi.googleworkspace.inputs.UserOrganizationArgs;
import com.pulumi.googleworkspace.inputs.UserPhoneArgs;
import com.pulumi.googleworkspace.inputs.UserKeywordArgs;
import com.pulumi.googleworkspace.inputs.UserCustomSchemaArgs;
import static com.pulumi.codegen.internal.Serialization.*;
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 birthday = new Schema("birthday", SchemaArgs.builder()
.schemaName("birthday")
.fields(
SchemaFieldArgs.builder()
.fieldName("birthday")
.fieldType("DATE")
.build(),
SchemaFieldArgs.builder()
.fieldName("favorite-numbers")
.fieldType("INT64")
.multiValued(true)
.numericIndexingSpec(SchemaFieldNumericIndexingSpecArgs.builder()
.minValue(1)
.maxValue(100)
.build())
.build())
.build());
var dwight = new User("dwight", UserArgs.builder()
.primaryEmail("dwight.schrute@example.com")
.password("34819d7beeabb9260a5c854bc85b3e44")
.hashFunction("MD5")
.name(UserNameArgs.builder()
.familyName("Schrute")
.givenName("Dwight")
.build())
.aliases("assistant_to_regional_manager@example.com")
.emails(UserEmailArgs.builder()
.address("dwight.schrute.dunder.mifflin@example.com")
.type("work")
.build())
.relations(UserRelationArgs.builder()
.type("assistant")
.value("Michael Scott")
.build())
.addresses(UserAddressArgs.builder()
.country("USA")
.countryCode("US")
.locality("Scranton")
.poBox("123")
.postalCode("18508")
.region("PA")
.streetAddress("123 Dunder Mifflin Pkwy")
.type("work")
.build())
.organizations(UserOrganizationArgs.builder()
.department("sales")
.location("Scranton")
.name("Dunder Mifflin")
.primary(true)
.symbol("DUMI")
.title("member")
.type("work")
.build())
.phones(
UserPhoneArgs.builder()
.type("home")
.value("555-123-7890")
.build(),
UserPhoneArgs.builder()
.type("work")
.primary(true)
.value("555-123-0987")
.build())
.keywords(UserKeywordArgs.builder()
.type("occupation")
.value("salesperson")
.build())
.customSchemas(UserCustomSchemaArgs.builder()
.schemaName(birthday.schemaName())
.schemaValues(Map.ofEntries(
Map.entry("birthday", serializeJson(
"1970-01-20")),
Map.entry("favorite-numbers", serializeJson(
jsonArray(
1,
2,
3
)))
))
.build())
.recoveryEmail("dwightkschrute@example.com")
.build());
}
}
resources:
birthday:
type: googleworkspace:Schema
properties:
schemaName: birthday
fields:
- fieldName: birthday
fieldType: DATE
- fieldName: favorite-numbers
fieldType: INT64
multiValued: true
numericIndexingSpec:
minValue: 1
maxValue: 100
dwight:
type: googleworkspace:User
properties:
primaryEmail: dwight.schrute@example.com
password: 34819d7beeabb9260a5c854bc85b3e44
hashFunction: MD5
name:
familyName: Schrute
givenName: Dwight
aliases:
- assistant_to_regional_manager@example.com
emails:
- address: dwight.schrute.dunder.mifflin@example.com
type: work
relations:
- type: assistant
value: Michael Scott
addresses:
- country: USA
countryCode: US
locality: Scranton
poBox: '123'
postalCode: '18508'
region: PA
streetAddress: 123 Dunder Mifflin Pkwy
type: work
organizations:
- department: sales
location: Scranton
name: Dunder Mifflin
primary: true
symbol: DUMI
title: member
type: work
phones:
- type: home
value: 555-123-7890
- type: work
primary: true
value: 555-123-0987
keywords:
- type: occupation
value: salesperson
customSchemas:
- schemaName: ${birthday.schemaName}
schemaValues:
birthday:
fn::toJSON: 1970-01-20
favorite-numbers:
fn::toJSON:
- 1
- 2
- 3
recoveryEmail: dwightkschrute@example.com
Create User Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new User(name: string, args: UserArgs, opts?: CustomResourceOptions);
@overload
def User(resource_name: str,
args: UserArgs,
opts: Optional[ResourceOptions] = None)
@overload
def User(resource_name: str,
opts: Optional[ResourceOptions] = None,
name: Optional[UserNameArgs] = None,
primary_email: Optional[str] = None,
hash_function: Optional[str] = None,
websites: Optional[Sequence[UserWebsiteArgs]] = None,
locations: Optional[Sequence[UserLocationArgs]] = None,
emails: Optional[Sequence[UserEmailArgs]] = None,
external_ids: Optional[Sequence[UserExternalIdArgs]] = None,
addresses: Optional[Sequence[UserAddressArgs]] = None,
ims: Optional[Sequence[UserImArgs]] = None,
include_in_global_address_list: Optional[bool] = None,
ip_allowlist: Optional[bool] = None,
is_admin: Optional[bool] = None,
keywords: Optional[Sequence[UserKeywordArgs]] = None,
languages: Optional[Sequence[UserLanguageArgs]] = None,
custom_schemas: Optional[Sequence[UserCustomSchemaArgs]] = None,
change_password_at_next_login: Optional[bool] = None,
recovery_phone: Optional[str] = None,
organizations: Optional[Sequence[UserOrganizationArgs]] = None,
password: Optional[str] = None,
phones: Optional[Sequence[UserPhoneArgs]] = None,
posix_accounts: Optional[Sequence[UserPosixAccountArgs]] = None,
aliases: Optional[Sequence[str]] = None,
recovery_email: Optional[str] = None,
org_unit_path: Optional[str] = None,
relations: Optional[Sequence[UserRelationArgs]] = None,
ssh_public_keys: Optional[Sequence[UserSshPublicKeyArgs]] = None,
suspended: Optional[bool] = None,
timeouts: Optional[UserTimeoutsArgs] = None,
archived: Optional[bool] = None)
func NewUser(ctx *Context, name string, args UserArgs, opts ...ResourceOption) (*User, error)
public User(string name, UserArgs args, CustomResourceOptions? opts = null)
type: googleworkspace:User
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 UserArgs
- 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 UserArgs
- 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 UserArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args UserArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args UserArgs
- 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 userResource = new Googleworkspace.User("userResource", new()
{
Name = new Googleworkspace.Inputs.UserNameArgs
{
FamilyName = "string",
FullName = "string",
GivenName = "string",
},
PrimaryEmail = "string",
HashFunction = "string",
Websites = new[]
{
new Googleworkspace.Inputs.UserWebsiteArgs
{
Type = "string",
Value = "string",
CustomType = "string",
Primary = false,
},
},
Locations = new[]
{
new Googleworkspace.Inputs.UserLocationArgs
{
Type = "string",
Area = "string",
BuildingId = "string",
CustomType = "string",
DeskCode = "string",
FloorName = "string",
FloorSection = "string",
},
},
Emails = new[]
{
new Googleworkspace.Inputs.UserEmailArgs
{
Type = "string",
Address = "string",
CustomType = "string",
Primary = false,
},
},
ExternalIds = new[]
{
new Googleworkspace.Inputs.UserExternalIdArgs
{
Type = "string",
Value = "string",
CustomType = "string",
},
},
Addresses = new[]
{
new Googleworkspace.Inputs.UserAddressArgs
{
Type = "string",
PoBox = "string",
CustomType = "string",
ExtendedAddress = "string",
Formatted = "string",
Locality = "string",
Country = "string",
PostalCode = "string",
Primary = false,
Region = "string",
SourceIsStructured = false,
StreetAddress = "string",
CountryCode = "string",
},
},
Ims = new[]
{
new Googleworkspace.Inputs.UserImArgs
{
Protocol = "string",
Type = "string",
CustomProtocol = "string",
CustomType = "string",
Im = "string",
Primary = false,
},
},
IncludeInGlobalAddressList = false,
IpAllowlist = false,
IsAdmin = false,
Keywords = new[]
{
new Googleworkspace.Inputs.UserKeywordArgs
{
Type = "string",
Value = "string",
CustomType = "string",
},
},
Languages = new[]
{
new Googleworkspace.Inputs.UserLanguageArgs
{
CustomLanguage = "string",
LanguageCode = "string",
Preference = "string",
},
},
CustomSchemas = new[]
{
new Googleworkspace.Inputs.UserCustomSchemaArgs
{
SchemaName = "string",
SchemaValues =
{
{ "string", "string" },
},
},
},
ChangePasswordAtNextLogin = false,
RecoveryPhone = "string",
Organizations = new[]
{
new Googleworkspace.Inputs.UserOrganizationArgs
{
Type = "string",
CostCenter = "string",
CustomType = "string",
Department = "string",
Description = "string",
Domain = "string",
FullTimeEquivalent = 0,
Location = "string",
Name = "string",
Primary = false,
Symbol = "string",
Title = "string",
},
},
Password = "string",
Phones = new[]
{
new Googleworkspace.Inputs.UserPhoneArgs
{
Type = "string",
Value = "string",
CustomType = "string",
Primary = false,
},
},
PosixAccounts = new[]
{
new Googleworkspace.Inputs.UserPosixAccountArgs
{
AccountId = "string",
Gecos = "string",
Gid = "string",
HomeDirectory = "string",
OperatingSystemType = "string",
Primary = false,
Shell = "string",
SystemId = "string",
Uid = "string",
Username = "string",
},
},
Aliases = new[]
{
"string",
},
RecoveryEmail = "string",
OrgUnitPath = "string",
Relations = new[]
{
new Googleworkspace.Inputs.UserRelationArgs
{
Type = "string",
Value = "string",
CustomType = "string",
},
},
SshPublicKeys = new[]
{
new Googleworkspace.Inputs.UserSshPublicKeyArgs
{
Key = "string",
ExpirationTimeUsec = "string",
Fingerprint = "string",
},
},
Suspended = false,
Timeouts = new Googleworkspace.Inputs.UserTimeoutsArgs
{
Create = "string",
Update = "string",
},
Archived = false,
});
example, err := googleworkspace.NewUser(ctx, "userResource", &googleworkspace.UserArgs{
Name: &.UserNameArgs{
FamilyName: pulumi.String("string"),
FullName: pulumi.String("string"),
GivenName: pulumi.String("string"),
},
PrimaryEmail: pulumi.String("string"),
HashFunction: pulumi.String("string"),
Websites: .UserWebsiteArray{
&.UserWebsiteArgs{
Type: pulumi.String("string"),
Value: pulumi.String("string"),
CustomType: pulumi.String("string"),
Primary: pulumi.Bool(false),
},
},
Locations: .UserLocationArray{
&.UserLocationArgs{
Type: pulumi.String("string"),
Area: pulumi.String("string"),
BuildingId: pulumi.String("string"),
CustomType: pulumi.String("string"),
DeskCode: pulumi.String("string"),
FloorName: pulumi.String("string"),
FloorSection: pulumi.String("string"),
},
},
Emails: .UserEmailArray{
&.UserEmailArgs{
Type: pulumi.String("string"),
Address: pulumi.String("string"),
CustomType: pulumi.String("string"),
Primary: pulumi.Bool(false),
},
},
ExternalIds: .UserExternalIdArray{
&.UserExternalIdArgs{
Type: pulumi.String("string"),
Value: pulumi.String("string"),
CustomType: pulumi.String("string"),
},
},
Addresses: .UserAddressArray{
&.UserAddressArgs{
Type: pulumi.String("string"),
PoBox: pulumi.String("string"),
CustomType: pulumi.String("string"),
ExtendedAddress: pulumi.String("string"),
Formatted: pulumi.String("string"),
Locality: pulumi.String("string"),
Country: pulumi.String("string"),
PostalCode: pulumi.String("string"),
Primary: pulumi.Bool(false),
Region: pulumi.String("string"),
SourceIsStructured: pulumi.Bool(false),
StreetAddress: pulumi.String("string"),
CountryCode: pulumi.String("string"),
},
},
Ims: .UserImArray{
&.UserImArgs{
Protocol: pulumi.String("string"),
Type: pulumi.String("string"),
CustomProtocol: pulumi.String("string"),
CustomType: pulumi.String("string"),
Im: pulumi.String("string"),
Primary: pulumi.Bool(false),
},
},
IncludeInGlobalAddressList: pulumi.Bool(false),
IpAllowlist: pulumi.Bool(false),
IsAdmin: pulumi.Bool(false),
Keywords: .UserKeywordArray{
&.UserKeywordArgs{
Type: pulumi.String("string"),
Value: pulumi.String("string"),
CustomType: pulumi.String("string"),
},
},
Languages: .UserLanguageArray{
&.UserLanguageArgs{
CustomLanguage: pulumi.String("string"),
LanguageCode: pulumi.String("string"),
Preference: pulumi.String("string"),
},
},
CustomSchemas: .UserCustomSchemaArray{
&.UserCustomSchemaArgs{
SchemaName: pulumi.String("string"),
SchemaValues: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
},
ChangePasswordAtNextLogin: pulumi.Bool(false),
RecoveryPhone: pulumi.String("string"),
Organizations: .UserOrganizationArray{
&.UserOrganizationArgs{
Type: pulumi.String("string"),
CostCenter: pulumi.String("string"),
CustomType: pulumi.String("string"),
Department: pulumi.String("string"),
Description: pulumi.String("string"),
Domain: pulumi.String("string"),
FullTimeEquivalent: pulumi.Float64(0),
Location: pulumi.String("string"),
Name: pulumi.String("string"),
Primary: pulumi.Bool(false),
Symbol: pulumi.String("string"),
Title: pulumi.String("string"),
},
},
Password: pulumi.String("string"),
Phones: .UserPhoneArray{
&.UserPhoneArgs{
Type: pulumi.String("string"),
Value: pulumi.String("string"),
CustomType: pulumi.String("string"),
Primary: pulumi.Bool(false),
},
},
PosixAccounts: .UserPosixAccountArray{
&.UserPosixAccountArgs{
AccountId: pulumi.String("string"),
Gecos: pulumi.String("string"),
Gid: pulumi.String("string"),
HomeDirectory: pulumi.String("string"),
OperatingSystemType: pulumi.String("string"),
Primary: pulumi.Bool(false),
Shell: pulumi.String("string"),
SystemId: pulumi.String("string"),
Uid: pulumi.String("string"),
Username: pulumi.String("string"),
},
},
Aliases: pulumi.StringArray{
pulumi.String("string"),
},
RecoveryEmail: pulumi.String("string"),
OrgUnitPath: pulumi.String("string"),
Relations: .UserRelationArray{
&.UserRelationArgs{
Type: pulumi.String("string"),
Value: pulumi.String("string"),
CustomType: pulumi.String("string"),
},
},
SshPublicKeys: .UserSshPublicKeyArray{
&.UserSshPublicKeyArgs{
Key: pulumi.String("string"),
ExpirationTimeUsec: pulumi.String("string"),
Fingerprint: pulumi.String("string"),
},
},
Suspended: pulumi.Bool(false),
Timeouts: &.UserTimeoutsArgs{
Create: pulumi.String("string"),
Update: pulumi.String("string"),
},
Archived: pulumi.Bool(false),
})
var userResource = new User("userResource", UserArgs.builder()
.name(UserNameArgs.builder()
.familyName("string")
.fullName("string")
.givenName("string")
.build())
.primaryEmail("string")
.hashFunction("string")
.websites(UserWebsiteArgs.builder()
.type("string")
.value("string")
.customType("string")
.primary(false)
.build())
.locations(UserLocationArgs.builder()
.type("string")
.area("string")
.buildingId("string")
.customType("string")
.deskCode("string")
.floorName("string")
.floorSection("string")
.build())
.emails(UserEmailArgs.builder()
.type("string")
.address("string")
.customType("string")
.primary(false)
.build())
.externalIds(UserExternalIdArgs.builder()
.type("string")
.value("string")
.customType("string")
.build())
.addresses(UserAddressArgs.builder()
.type("string")
.poBox("string")
.customType("string")
.extendedAddress("string")
.formatted("string")
.locality("string")
.country("string")
.postalCode("string")
.primary(false)
.region("string")
.sourceIsStructured(false)
.streetAddress("string")
.countryCode("string")
.build())
.ims(UserImArgs.builder()
.protocol("string")
.type("string")
.customProtocol("string")
.customType("string")
.im("string")
.primary(false)
.build())
.includeInGlobalAddressList(false)
.ipAllowlist(false)
.isAdmin(false)
.keywords(UserKeywordArgs.builder()
.type("string")
.value("string")
.customType("string")
.build())
.languages(UserLanguageArgs.builder()
.customLanguage("string")
.languageCode("string")
.preference("string")
.build())
.customSchemas(UserCustomSchemaArgs.builder()
.schemaName("string")
.schemaValues(Map.of("string", "string"))
.build())
.changePasswordAtNextLogin(false)
.recoveryPhone("string")
.organizations(UserOrganizationArgs.builder()
.type("string")
.costCenter("string")
.customType("string")
.department("string")
.description("string")
.domain("string")
.fullTimeEquivalent(0)
.location("string")
.name("string")
.primary(false)
.symbol("string")
.title("string")
.build())
.password("string")
.phones(UserPhoneArgs.builder()
.type("string")
.value("string")
.customType("string")
.primary(false)
.build())
.posixAccounts(UserPosixAccountArgs.builder()
.accountId("string")
.gecos("string")
.gid("string")
.homeDirectory("string")
.operatingSystemType("string")
.primary(false)
.shell("string")
.systemId("string")
.uid("string")
.username("string")
.build())
.aliases("string")
.recoveryEmail("string")
.orgUnitPath("string")
.relations(UserRelationArgs.builder()
.type("string")
.value("string")
.customType("string")
.build())
.sshPublicKeys(UserSshPublicKeyArgs.builder()
.key("string")
.expirationTimeUsec("string")
.fingerprint("string")
.build())
.suspended(false)
.timeouts(UserTimeoutsArgs.builder()
.create("string")
.update("string")
.build())
.archived(false)
.build());
user_resource = googleworkspace.User("userResource",
name={
"family_name": "string",
"full_name": "string",
"given_name": "string",
},
primary_email="string",
hash_function="string",
websites=[{
"type": "string",
"value": "string",
"custom_type": "string",
"primary": False,
}],
locations=[{
"type": "string",
"area": "string",
"building_id": "string",
"custom_type": "string",
"desk_code": "string",
"floor_name": "string",
"floor_section": "string",
}],
emails=[{
"type": "string",
"address": "string",
"custom_type": "string",
"primary": False,
}],
external_ids=[{
"type": "string",
"value": "string",
"custom_type": "string",
}],
addresses=[{
"type": "string",
"po_box": "string",
"custom_type": "string",
"extended_address": "string",
"formatted": "string",
"locality": "string",
"country": "string",
"postal_code": "string",
"primary": False,
"region": "string",
"source_is_structured": False,
"street_address": "string",
"country_code": "string",
}],
ims=[{
"protocol": "string",
"type": "string",
"custom_protocol": "string",
"custom_type": "string",
"im": "string",
"primary": False,
}],
include_in_global_address_list=False,
ip_allowlist=False,
is_admin=False,
keywords=[{
"type": "string",
"value": "string",
"custom_type": "string",
}],
languages=[{
"custom_language": "string",
"language_code": "string",
"preference": "string",
}],
custom_schemas=[{
"schema_name": "string",
"schema_values": {
"string": "string",
},
}],
change_password_at_next_login=False,
recovery_phone="string",
organizations=[{
"type": "string",
"cost_center": "string",
"custom_type": "string",
"department": "string",
"description": "string",
"domain": "string",
"full_time_equivalent": 0,
"location": "string",
"name": "string",
"primary": False,
"symbol": "string",
"title": "string",
}],
password="string",
phones=[{
"type": "string",
"value": "string",
"custom_type": "string",
"primary": False,
}],
posix_accounts=[{
"account_id": "string",
"gecos": "string",
"gid": "string",
"home_directory": "string",
"operating_system_type": "string",
"primary": False,
"shell": "string",
"system_id": "string",
"uid": "string",
"username": "string",
}],
aliases=["string"],
recovery_email="string",
org_unit_path="string",
relations=[{
"type": "string",
"value": "string",
"custom_type": "string",
}],
ssh_public_keys=[{
"key": "string",
"expiration_time_usec": "string",
"fingerprint": "string",
}],
suspended=False,
timeouts={
"create": "string",
"update": "string",
},
archived=False)
const userResource = new googleworkspace.User("userResource", {
name: {
familyName: "string",
fullName: "string",
givenName: "string",
},
primaryEmail: "string",
hashFunction: "string",
websites: [{
type: "string",
value: "string",
customType: "string",
primary: false,
}],
locations: [{
type: "string",
area: "string",
buildingId: "string",
customType: "string",
deskCode: "string",
floorName: "string",
floorSection: "string",
}],
emails: [{
type: "string",
address: "string",
customType: "string",
primary: false,
}],
externalIds: [{
type: "string",
value: "string",
customType: "string",
}],
addresses: [{
type: "string",
poBox: "string",
customType: "string",
extendedAddress: "string",
formatted: "string",
locality: "string",
country: "string",
postalCode: "string",
primary: false,
region: "string",
sourceIsStructured: false,
streetAddress: "string",
countryCode: "string",
}],
ims: [{
protocol: "string",
type: "string",
customProtocol: "string",
customType: "string",
im: "string",
primary: false,
}],
includeInGlobalAddressList: false,
ipAllowlist: false,
isAdmin: false,
keywords: [{
type: "string",
value: "string",
customType: "string",
}],
languages: [{
customLanguage: "string",
languageCode: "string",
preference: "string",
}],
customSchemas: [{
schemaName: "string",
schemaValues: {
string: "string",
},
}],
changePasswordAtNextLogin: false,
recoveryPhone: "string",
organizations: [{
type: "string",
costCenter: "string",
customType: "string",
department: "string",
description: "string",
domain: "string",
fullTimeEquivalent: 0,
location: "string",
name: "string",
primary: false,
symbol: "string",
title: "string",
}],
password: "string",
phones: [{
type: "string",
value: "string",
customType: "string",
primary: false,
}],
posixAccounts: [{
accountId: "string",
gecos: "string",
gid: "string",
homeDirectory: "string",
operatingSystemType: "string",
primary: false,
shell: "string",
systemId: "string",
uid: "string",
username: "string",
}],
aliases: ["string"],
recoveryEmail: "string",
orgUnitPath: "string",
relations: [{
type: "string",
value: "string",
customType: "string",
}],
sshPublicKeys: [{
key: "string",
expirationTimeUsec: "string",
fingerprint: "string",
}],
suspended: false,
timeouts: {
create: "string",
update: "string",
},
archived: false,
});
type: googleworkspace:User
properties:
addresses:
- country: string
countryCode: string
customType: string
extendedAddress: string
formatted: string
locality: string
poBox: string
postalCode: string
primary: false
region: string
sourceIsStructured: false
streetAddress: string
type: string
aliases:
- string
archived: false
changePasswordAtNextLogin: false
customSchemas:
- schemaName: string
schemaValues:
string: string
emails:
- address: string
customType: string
primary: false
type: string
externalIds:
- customType: string
type: string
value: string
hashFunction: string
ims:
- customProtocol: string
customType: string
im: string
primary: false
protocol: string
type: string
includeInGlobalAddressList: false
ipAllowlist: false
isAdmin: false
keywords:
- customType: string
type: string
value: string
languages:
- customLanguage: string
languageCode: string
preference: string
locations:
- area: string
buildingId: string
customType: string
deskCode: string
floorName: string
floorSection: string
type: string
name:
familyName: string
fullName: string
givenName: string
orgUnitPath: string
organizations:
- costCenter: string
customType: string
department: string
description: string
domain: string
fullTimeEquivalent: 0
location: string
name: string
primary: false
symbol: string
title: string
type: string
password: string
phones:
- customType: string
primary: false
type: string
value: string
posixAccounts:
- accountId: string
gecos: string
gid: string
homeDirectory: string
operatingSystemType: string
primary: false
shell: string
systemId: string
uid: string
username: string
primaryEmail: string
recoveryEmail: string
recoveryPhone: string
relations:
- customType: string
type: string
value: string
sshPublicKeys:
- expirationTimeUsec: string
fingerprint: string
key: string
suspended: false
timeouts:
create: string
update: string
websites:
- customType: string
primary: false
type: string
value: string
User 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 User resource accepts the following input properties:
- Name
User
Name - Holds the given and family names of the user, and the read-only fullName value. The maximum number of characters in the givenName and in the familyName values is 60. In addition, name values support unicode/UTF-8 characters, and can contain spaces, letters (a-z), numbers (0-9), dashes (-), forward slashes (/), and periods (.). Maximum allowed data size for this field is 1Kb.
- Primary
Email string - The user's primary email address. The primaryEmail must be unique and cannot be an alias of another user.
- Addresses
List<User
Address> - A list of the user's addresses. The maximum allowed data size is 10Kb.
- Aliases List<string>
- asps.list of the user's alias email addresses.
- Archived bool
- Indicates if user is archived.
- Change
Password boolAt Next Login - Indicates if the user is forced to change their password at next login. This setting doesn't apply when the user signs in via a third-party identity provider.
- Custom
Schemas List<UserCustom Schema> - Custom fields of the user.
- Emails
List<User
Email> - A list of the user's email addresses. The maximum allowed data size is 10Kb.
- External
Ids List<UserExternal Id> - A list of external IDs for the user, such as an employee or network ID. The maximum allowed data size is 2Kb.
- Hash
Function string - Stores the hash format of the password property. We recommend sending the password property value as a base 16 bit hexadecimal-encoded hash value. Set the hashFunction values as either the SHA-1, MD5, or crypt hash format.
- Ims
List<User
Im> - The user's Instant Messenger (IM) accounts. A user account can have multiple ims properties. But, only one of these ims properties can be the primary IM contact. The maximum allowed data size is 2Kb.
- Include
In boolGlobal Address List - Defaults to
true
. Indicates if the user's profile is visible in the Google Workspace global address list when the contact sharing feature is enabled for the domain. - Ip
Allowlist bool - If true, the user's IP address is added to the allow list.
- Is
Admin bool - Indicates a user with super admininistrator privileges.
- Keywords
List<User
Keyword> - A list of the user's keywords. The maximum allowed data size is 1Kb.
- Languages
List<User
Language> - A list of the user's languages. The maximum allowed data size is 1Kb.
- Locations
List<User
Location> - A list of the user's locations. The maximum allowed data size is 10Kb.
- Org
Unit stringPath - The full path of the parent organization associated with the user. If the parent organization is the top-level, it is represented as a forward slash (/).
- Organizations
List<User
Organization> - A list of organizations the user belongs to. The maximum allowed data size is 10Kb.
- Password string
- Stores the password for the user account. A password can contain any combination of ASCII characters. A minimum of 8 characters is required. The maximum length is 100 characters. As the API does not return the value of password, this field is write-only, and the value stored in the state will be what is provided in the configuration. The field is required on create and will be empty on import.
- Phones
List<User
Phone> - A list of the user's phone numbers. The maximum allowed data size is 1Kb.
- Posix
Accounts List<UserPosix Account> - A list of POSIX account information for the user.
- Recovery
Email string - Recovery email of the user.
- Recovery
Phone string - Recovery phone of the user. The phone number must be in the E.164 format, starting with the plus sign (+). Example: +16506661212.
- Relations
List<User
Relation> - A list of the user's relationships to other users. The maximum allowed data size for this field is 2Kb.
- Ssh
Public List<UserKeys Ssh Public Key> - A list of SSH public keys. The maximum allowed data size is 10Kb.
- Suspended bool
- Indicates if user is suspended.
- Timeouts
User
Timeouts - Websites
List<User
Website> - A list of the user's websites. The maximum allowed data size is 2Kb.
- Name
User
Name Args - Holds the given and family names of the user, and the read-only fullName value. The maximum number of characters in the givenName and in the familyName values is 60. In addition, name values support unicode/UTF-8 characters, and can contain spaces, letters (a-z), numbers (0-9), dashes (-), forward slashes (/), and periods (.). Maximum allowed data size for this field is 1Kb.
- Primary
Email string - The user's primary email address. The primaryEmail must be unique and cannot be an alias of another user.
- Addresses
[]User
Address Args - A list of the user's addresses. The maximum allowed data size is 10Kb.
- Aliases []string
- asps.list of the user's alias email addresses.
- Archived bool
- Indicates if user is archived.
- Change
Password boolAt Next Login - Indicates if the user is forced to change their password at next login. This setting doesn't apply when the user signs in via a third-party identity provider.
- Custom
Schemas []UserCustom Schema Args - Custom fields of the user.
- Emails
[]User
Email Args - A list of the user's email addresses. The maximum allowed data size is 10Kb.
- External
Ids []UserExternal Id Args - A list of external IDs for the user, such as an employee or network ID. The maximum allowed data size is 2Kb.
- Hash
Function string - Stores the hash format of the password property. We recommend sending the password property value as a base 16 bit hexadecimal-encoded hash value. Set the hashFunction values as either the SHA-1, MD5, or crypt hash format.
- Ims
[]User
Im Args - The user's Instant Messenger (IM) accounts. A user account can have multiple ims properties. But, only one of these ims properties can be the primary IM contact. The maximum allowed data size is 2Kb.
- Include
In boolGlobal Address List - Defaults to
true
. Indicates if the user's profile is visible in the Google Workspace global address list when the contact sharing feature is enabled for the domain. - Ip
Allowlist bool - If true, the user's IP address is added to the allow list.
- Is
Admin bool - Indicates a user with super admininistrator privileges.
- Keywords
[]User
Keyword Args - A list of the user's keywords. The maximum allowed data size is 1Kb.
- Languages
[]User
Language Args - A list of the user's languages. The maximum allowed data size is 1Kb.
- Locations
[]User
Location Args - A list of the user's locations. The maximum allowed data size is 10Kb.
- Org
Unit stringPath - The full path of the parent organization associated with the user. If the parent organization is the top-level, it is represented as a forward slash (/).
- Organizations
[]User
Organization Args - A list of organizations the user belongs to. The maximum allowed data size is 10Kb.
- Password string
- Stores the password for the user account. A password can contain any combination of ASCII characters. A minimum of 8 characters is required. The maximum length is 100 characters. As the API does not return the value of password, this field is write-only, and the value stored in the state will be what is provided in the configuration. The field is required on create and will be empty on import.
- Phones
[]User
Phone Args - A list of the user's phone numbers. The maximum allowed data size is 1Kb.
- Posix
Accounts []UserPosix Account Args - A list of POSIX account information for the user.
- Recovery
Email string - Recovery email of the user.
- Recovery
Phone string - Recovery phone of the user. The phone number must be in the E.164 format, starting with the plus sign (+). Example: +16506661212.
- Relations
[]User
Relation Args - A list of the user's relationships to other users. The maximum allowed data size for this field is 2Kb.
- Ssh
Public []UserKeys Ssh Public Key Args - A list of SSH public keys. The maximum allowed data size is 10Kb.
- Suspended bool
- Indicates if user is suspended.
- Timeouts
User
Timeouts Args - Websites
[]User
Website Args - A list of the user's websites. The maximum allowed data size is 2Kb.
- name
User
Name - Holds the given and family names of the user, and the read-only fullName value. The maximum number of characters in the givenName and in the familyName values is 60. In addition, name values support unicode/UTF-8 characters, and can contain spaces, letters (a-z), numbers (0-9), dashes (-), forward slashes (/), and periods (.). Maximum allowed data size for this field is 1Kb.
- primary
Email String - The user's primary email address. The primaryEmail must be unique and cannot be an alias of another user.
- addresses
List<User
Address> - A list of the user's addresses. The maximum allowed data size is 10Kb.
- aliases List<String>
- asps.list of the user's alias email addresses.
- archived Boolean
- Indicates if user is archived.
- change
Password BooleanAt Next Login - Indicates if the user is forced to change their password at next login. This setting doesn't apply when the user signs in via a third-party identity provider.
- custom
Schemas List<UserCustom Schema> - Custom fields of the user.
- emails
List<User
Email> - A list of the user's email addresses. The maximum allowed data size is 10Kb.
- external
Ids List<UserExternal Id> - A list of external IDs for the user, such as an employee or network ID. The maximum allowed data size is 2Kb.
- hash
Function String - Stores the hash format of the password property. We recommend sending the password property value as a base 16 bit hexadecimal-encoded hash value. Set the hashFunction values as either the SHA-1, MD5, or crypt hash format.
- ims
List<User
Im> - The user's Instant Messenger (IM) accounts. A user account can have multiple ims properties. But, only one of these ims properties can be the primary IM contact. The maximum allowed data size is 2Kb.
- include
In BooleanGlobal Address List - Defaults to
true
. Indicates if the user's profile is visible in the Google Workspace global address list when the contact sharing feature is enabled for the domain. - ip
Allowlist Boolean - If true, the user's IP address is added to the allow list.
- is
Admin Boolean - Indicates a user with super admininistrator privileges.
- keywords
List<User
Keyword> - A list of the user's keywords. The maximum allowed data size is 1Kb.
- languages
List<User
Language> - A list of the user's languages. The maximum allowed data size is 1Kb.
- locations
List<User
Location> - A list of the user's locations. The maximum allowed data size is 10Kb.
- org
Unit StringPath - The full path of the parent organization associated with the user. If the parent organization is the top-level, it is represented as a forward slash (/).
- organizations
List<User
Organization> - A list of organizations the user belongs to. The maximum allowed data size is 10Kb.
- password String
- Stores the password for the user account. A password can contain any combination of ASCII characters. A minimum of 8 characters is required. The maximum length is 100 characters. As the API does not return the value of password, this field is write-only, and the value stored in the state will be what is provided in the configuration. The field is required on create and will be empty on import.
- phones
List<User
Phone> - A list of the user's phone numbers. The maximum allowed data size is 1Kb.
- posix
Accounts List<UserPosix Account> - A list of POSIX account information for the user.
- recovery
Email String - Recovery email of the user.
- recovery
Phone String - Recovery phone of the user. The phone number must be in the E.164 format, starting with the plus sign (+). Example: +16506661212.
- relations
List<User
Relation> - A list of the user's relationships to other users. The maximum allowed data size for this field is 2Kb.
- ssh
Public List<UserKeys Ssh Public Key> - A list of SSH public keys. The maximum allowed data size is 10Kb.
- suspended Boolean
- Indicates if user is suspended.
- timeouts
User
Timeouts - websites
List<User
Website> - A list of the user's websites. The maximum allowed data size is 2Kb.
- name
User
Name - Holds the given and family names of the user, and the read-only fullName value. The maximum number of characters in the givenName and in the familyName values is 60. In addition, name values support unicode/UTF-8 characters, and can contain spaces, letters (a-z), numbers (0-9), dashes (-), forward slashes (/), and periods (.). Maximum allowed data size for this field is 1Kb.
- primary
Email string - The user's primary email address. The primaryEmail must be unique and cannot be an alias of another user.
- addresses
User
Address[] - A list of the user's addresses. The maximum allowed data size is 10Kb.
- aliases string[]
- asps.list of the user's alias email addresses.
- archived boolean
- Indicates if user is archived.
- change
Password booleanAt Next Login - Indicates if the user is forced to change their password at next login. This setting doesn't apply when the user signs in via a third-party identity provider.
- custom
Schemas UserCustom Schema[] - Custom fields of the user.
- emails
User
Email[] - A list of the user's email addresses. The maximum allowed data size is 10Kb.
- external
Ids UserExternal Id[] - A list of external IDs for the user, such as an employee or network ID. The maximum allowed data size is 2Kb.
- hash
Function string - Stores the hash format of the password property. We recommend sending the password property value as a base 16 bit hexadecimal-encoded hash value. Set the hashFunction values as either the SHA-1, MD5, or crypt hash format.
- ims
User
Im[] - The user's Instant Messenger (IM) accounts. A user account can have multiple ims properties. But, only one of these ims properties can be the primary IM contact. The maximum allowed data size is 2Kb.
- include
In booleanGlobal Address List - Defaults to
true
. Indicates if the user's profile is visible in the Google Workspace global address list when the contact sharing feature is enabled for the domain. - ip
Allowlist boolean - If true, the user's IP address is added to the allow list.
- is
Admin boolean - Indicates a user with super admininistrator privileges.
- keywords
User
Keyword[] - A list of the user's keywords. The maximum allowed data size is 1Kb.
- languages
User
Language[] - A list of the user's languages. The maximum allowed data size is 1Kb.
- locations
User
Location[] - A list of the user's locations. The maximum allowed data size is 10Kb.
- org
Unit stringPath - The full path of the parent organization associated with the user. If the parent organization is the top-level, it is represented as a forward slash (/).
- organizations
User
Organization[] - A list of organizations the user belongs to. The maximum allowed data size is 10Kb.
- password string
- Stores the password for the user account. A password can contain any combination of ASCII characters. A minimum of 8 characters is required. The maximum length is 100 characters. As the API does not return the value of password, this field is write-only, and the value stored in the state will be what is provided in the configuration. The field is required on create and will be empty on import.
- phones
User
Phone[] - A list of the user's phone numbers. The maximum allowed data size is 1Kb.
- posix
Accounts UserPosix Account[] - A list of POSIX account information for the user.
- recovery
Email string - Recovery email of the user.
- recovery
Phone string - Recovery phone of the user. The phone number must be in the E.164 format, starting with the plus sign (+). Example: +16506661212.
- relations
User
Relation[] - A list of the user's relationships to other users. The maximum allowed data size for this field is 2Kb.
- ssh
Public UserKeys Ssh Public Key[] - A list of SSH public keys. The maximum allowed data size is 10Kb.
- suspended boolean
- Indicates if user is suspended.
- timeouts
User
Timeouts - websites
User
Website[] - A list of the user's websites. The maximum allowed data size is 2Kb.
- name
User
Name Args - Holds the given and family names of the user, and the read-only fullName value. The maximum number of characters in the givenName and in the familyName values is 60. In addition, name values support unicode/UTF-8 characters, and can contain spaces, letters (a-z), numbers (0-9), dashes (-), forward slashes (/), and periods (.). Maximum allowed data size for this field is 1Kb.
- primary_
email str - The user's primary email address. The primaryEmail must be unique and cannot be an alias of another user.
- addresses
Sequence[User
Address Args] - A list of the user's addresses. The maximum allowed data size is 10Kb.
- aliases Sequence[str]
- asps.list of the user's alias email addresses.
- archived bool
- Indicates if user is archived.
- change_
password_ boolat_ next_ login - Indicates if the user is forced to change their password at next login. This setting doesn't apply when the user signs in via a third-party identity provider.
- custom_
schemas Sequence[UserCustom Schema Args] - Custom fields of the user.
- emails
Sequence[User
Email Args] - A list of the user's email addresses. The maximum allowed data size is 10Kb.
- external_
ids Sequence[UserExternal Id Args] - A list of external IDs for the user, such as an employee or network ID. The maximum allowed data size is 2Kb.
- hash_
function str - Stores the hash format of the password property. We recommend sending the password property value as a base 16 bit hexadecimal-encoded hash value. Set the hashFunction values as either the SHA-1, MD5, or crypt hash format.
- ims
Sequence[User
Im Args] - The user's Instant Messenger (IM) accounts. A user account can have multiple ims properties. But, only one of these ims properties can be the primary IM contact. The maximum allowed data size is 2Kb.
- include_
in_ boolglobal_ address_ list - Defaults to
true
. Indicates if the user's profile is visible in the Google Workspace global address list when the contact sharing feature is enabled for the domain. - ip_
allowlist bool - If true, the user's IP address is added to the allow list.
- is_
admin bool - Indicates a user with super admininistrator privileges.
- keywords
Sequence[User
Keyword Args] - A list of the user's keywords. The maximum allowed data size is 1Kb.
- languages
Sequence[User
Language Args] - A list of the user's languages. The maximum allowed data size is 1Kb.
- locations
Sequence[User
Location Args] - A list of the user's locations. The maximum allowed data size is 10Kb.
- org_
unit_ strpath - The full path of the parent organization associated with the user. If the parent organization is the top-level, it is represented as a forward slash (/).
- organizations
Sequence[User
Organization Args] - A list of organizations the user belongs to. The maximum allowed data size is 10Kb.
- password str
- Stores the password for the user account. A password can contain any combination of ASCII characters. A minimum of 8 characters is required. The maximum length is 100 characters. As the API does not return the value of password, this field is write-only, and the value stored in the state will be what is provided in the configuration. The field is required on create and will be empty on import.
- phones
Sequence[User
Phone Args] - A list of the user's phone numbers. The maximum allowed data size is 1Kb.
- posix_
accounts Sequence[UserPosix Account Args] - A list of POSIX account information for the user.
- recovery_
email str - Recovery email of the user.
- recovery_
phone str - Recovery phone of the user. The phone number must be in the E.164 format, starting with the plus sign (+). Example: +16506661212.
- relations
Sequence[User
Relation Args] - A list of the user's relationships to other users. The maximum allowed data size for this field is 2Kb.
- ssh_
public_ Sequence[Userkeys Ssh Public Key Args] - A list of SSH public keys. The maximum allowed data size is 10Kb.
- suspended bool
- Indicates if user is suspended.
- timeouts
User
Timeouts Args - websites
Sequence[User
Website Args] - A list of the user's websites. The maximum allowed data size is 2Kb.
- name Property Map
- Holds the given and family names of the user, and the read-only fullName value. The maximum number of characters in the givenName and in the familyName values is 60. In addition, name values support unicode/UTF-8 characters, and can contain spaces, letters (a-z), numbers (0-9), dashes (-), forward slashes (/), and periods (.). Maximum allowed data size for this field is 1Kb.
- primary
Email String - The user's primary email address. The primaryEmail must be unique and cannot be an alias of another user.
- addresses List<Property Map>
- A list of the user's addresses. The maximum allowed data size is 10Kb.
- aliases List<String>
- asps.list of the user's alias email addresses.
- archived Boolean
- Indicates if user is archived.
- change
Password BooleanAt Next Login - Indicates if the user is forced to change their password at next login. This setting doesn't apply when the user signs in via a third-party identity provider.
- custom
Schemas List<Property Map> - Custom fields of the user.
- emails List<Property Map>
- A list of the user's email addresses. The maximum allowed data size is 10Kb.
- external
Ids List<Property Map> - A list of external IDs for the user, such as an employee or network ID. The maximum allowed data size is 2Kb.
- hash
Function String - Stores the hash format of the password property. We recommend sending the password property value as a base 16 bit hexadecimal-encoded hash value. Set the hashFunction values as either the SHA-1, MD5, or crypt hash format.
- ims List<Property Map>
- The user's Instant Messenger (IM) accounts. A user account can have multiple ims properties. But, only one of these ims properties can be the primary IM contact. The maximum allowed data size is 2Kb.
- include
In BooleanGlobal Address List - Defaults to
true
. Indicates if the user's profile is visible in the Google Workspace global address list when the contact sharing feature is enabled for the domain. - ip
Allowlist Boolean - If true, the user's IP address is added to the allow list.
- is
Admin Boolean - Indicates a user with super admininistrator privileges.
- keywords List<Property Map>
- A list of the user's keywords. The maximum allowed data size is 1Kb.
- languages List<Property Map>
- A list of the user's languages. The maximum allowed data size is 1Kb.
- locations List<Property Map>
- A list of the user's locations. The maximum allowed data size is 10Kb.
- org
Unit StringPath - The full path of the parent organization associated with the user. If the parent organization is the top-level, it is represented as a forward slash (/).
- organizations List<Property Map>
- A list of organizations the user belongs to. The maximum allowed data size is 10Kb.
- password String
- Stores the password for the user account. A password can contain any combination of ASCII characters. A minimum of 8 characters is required. The maximum length is 100 characters. As the API does not return the value of password, this field is write-only, and the value stored in the state will be what is provided in the configuration. The field is required on create and will be empty on import.
- phones List<Property Map>
- A list of the user's phone numbers. The maximum allowed data size is 1Kb.
- posix
Accounts List<Property Map> - A list of POSIX account information for the user.
- recovery
Email String - Recovery email of the user.
- recovery
Phone String - Recovery phone of the user. The phone number must be in the E.164 format, starting with the plus sign (+). Example: +16506661212.
- relations List<Property Map>
- A list of the user's relationships to other users. The maximum allowed data size for this field is 2Kb.
- ssh
Public List<Property Map>Keys - A list of SSH public keys. The maximum allowed data size is 10Kb.
- suspended Boolean
- Indicates if user is suspended.
- timeouts Property Map
- websites List<Property Map>
- A list of the user's websites. The maximum allowed data size is 2Kb.
Outputs
All input properties are implicitly available as output properties. Additionally, the User resource produces the following output properties:
- Agreed
To boolTerms - This property is true if the user has completed an initial login and accepted the Terms of Service agreement.
- Creation
Time string - The time the user's account was created. The value is in ISO 8601 date and time format. The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example, 2010-04-05T17:30:04+01:00.
- Customer
Id string - The customer ID to retrieve all account users. You can use the alias my_customer to represent your account's customerId. As a reseller administrator, you can use the resold customer account's customerId. To get a customerId, use the account's primary domain in the domain parameter of a users.list request.
- Deletion
Time string - The time the user's account was deleted. The value is in ISO 8601 date and time format The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example 2010-04-05T17:30:04+01:00.
- Etag string
- ETag of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Delegated boolAdmin - Indicates if the user is a delegated administrator.
- Is
Enforced boolIn2Step Verification - Is 2-step verification enforced.
- Is
Enrolled boolIn2Step Verification - Is enrolled in 2-step verification.
- Is
Mailbox boolSetup - Indicates if the user's Google mailbox is created. This property is only applicable if the user has been assigned a Gmail license.
- Last
Login stringTime - The last time the user logged into the user's account. The value is in ISO 8601 date and time format. The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example, 2010-04-05T17:30:04+01:00.
- Non
Editable List<string>Aliases - asps.list of the user's non-editable alias email addresses. These are typically outside the account's primary domain or sub-domain.
- Suspension
Reason string - Has the reason a user account is suspended either by the administrator or by Google at the time of suspension. The property is returned only if the suspended property is true.
- Thumbnail
Photo stringEtag - ETag of the user's photo
- Thumbnail
Photo stringUrl - Photo Url of the user.
- Agreed
To boolTerms - This property is true if the user has completed an initial login and accepted the Terms of Service agreement.
- Creation
Time string - The time the user's account was created. The value is in ISO 8601 date and time format. The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example, 2010-04-05T17:30:04+01:00.
- Customer
Id string - The customer ID to retrieve all account users. You can use the alias my_customer to represent your account's customerId. As a reseller administrator, you can use the resold customer account's customerId. To get a customerId, use the account's primary domain in the domain parameter of a users.list request.
- Deletion
Time string - The time the user's account was deleted. The value is in ISO 8601 date and time format The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example 2010-04-05T17:30:04+01:00.
- Etag string
- ETag of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Delegated boolAdmin - Indicates if the user is a delegated administrator.
- Is
Enforced boolIn2Step Verification - Is 2-step verification enforced.
- Is
Enrolled boolIn2Step Verification - Is enrolled in 2-step verification.
- Is
Mailbox boolSetup - Indicates if the user's Google mailbox is created. This property is only applicable if the user has been assigned a Gmail license.
- Last
Login stringTime - The last time the user logged into the user's account. The value is in ISO 8601 date and time format. The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example, 2010-04-05T17:30:04+01:00.
- Non
Editable []stringAliases - asps.list of the user's non-editable alias email addresses. These are typically outside the account's primary domain or sub-domain.
- Suspension
Reason string - Has the reason a user account is suspended either by the administrator or by Google at the time of suspension. The property is returned only if the suspended property is true.
- Thumbnail
Photo stringEtag - ETag of the user's photo
- Thumbnail
Photo stringUrl - Photo Url of the user.
- agreed
To BooleanTerms - This property is true if the user has completed an initial login and accepted the Terms of Service agreement.
- creation
Time String - The time the user's account was created. The value is in ISO 8601 date and time format. The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example, 2010-04-05T17:30:04+01:00.
- customer
Id String - The customer ID to retrieve all account users. You can use the alias my_customer to represent your account's customerId. As a reseller administrator, you can use the resold customer account's customerId. To get a customerId, use the account's primary domain in the domain parameter of a users.list request.
- deletion
Time String - The time the user's account was deleted. The value is in ISO 8601 date and time format The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example 2010-04-05T17:30:04+01:00.
- etag String
- ETag of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Delegated BooleanAdmin - Indicates if the user is a delegated administrator.
- is
Enforced BooleanIn2Step Verification - Is 2-step verification enforced.
- is
Enrolled BooleanIn2Step Verification - Is enrolled in 2-step verification.
- is
Mailbox BooleanSetup - Indicates if the user's Google mailbox is created. This property is only applicable if the user has been assigned a Gmail license.
- last
Login StringTime - The last time the user logged into the user's account. The value is in ISO 8601 date and time format. The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example, 2010-04-05T17:30:04+01:00.
- non
Editable List<String>Aliases - asps.list of the user's non-editable alias email addresses. These are typically outside the account's primary domain or sub-domain.
- suspension
Reason String - Has the reason a user account is suspended either by the administrator or by Google at the time of suspension. The property is returned only if the suspended property is true.
- thumbnail
Photo StringEtag - ETag of the user's photo
- thumbnail
Photo StringUrl - Photo Url of the user.
- agreed
To booleanTerms - This property is true if the user has completed an initial login and accepted the Terms of Service agreement.
- creation
Time string - The time the user's account was created. The value is in ISO 8601 date and time format. The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example, 2010-04-05T17:30:04+01:00.
- customer
Id string - The customer ID to retrieve all account users. You can use the alias my_customer to represent your account's customerId. As a reseller administrator, you can use the resold customer account's customerId. To get a customerId, use the account's primary domain in the domain parameter of a users.list request.
- deletion
Time string - The time the user's account was deleted. The value is in ISO 8601 date and time format The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example 2010-04-05T17:30:04+01:00.
- etag string
- ETag of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- is
Delegated booleanAdmin - Indicates if the user is a delegated administrator.
- is
Enforced booleanIn2Step Verification - Is 2-step verification enforced.
- is
Enrolled booleanIn2Step Verification - Is enrolled in 2-step verification.
- is
Mailbox booleanSetup - Indicates if the user's Google mailbox is created. This property is only applicable if the user has been assigned a Gmail license.
- last
Login stringTime - The last time the user logged into the user's account. The value is in ISO 8601 date and time format. The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example, 2010-04-05T17:30:04+01:00.
- non
Editable string[]Aliases - asps.list of the user's non-editable alias email addresses. These are typically outside the account's primary domain or sub-domain.
- suspension
Reason string - Has the reason a user account is suspended either by the administrator or by Google at the time of suspension. The property is returned only if the suspended property is true.
- thumbnail
Photo stringEtag - ETag of the user's photo
- thumbnail
Photo stringUrl - Photo Url of the user.
- agreed_
to_ boolterms - This property is true if the user has completed an initial login and accepted the Terms of Service agreement.
- creation_
time str - The time the user's account was created. The value is in ISO 8601 date and time format. The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example, 2010-04-05T17:30:04+01:00.
- customer_
id str - The customer ID to retrieve all account users. You can use the alias my_customer to represent your account's customerId. As a reseller administrator, you can use the resold customer account's customerId. To get a customerId, use the account's primary domain in the domain parameter of a users.list request.
- deletion_
time str - The time the user's account was deleted. The value is in ISO 8601 date and time format The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example 2010-04-05T17:30:04+01:00.
- etag str
- ETag of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- is_
delegated_ booladmin - Indicates if the user is a delegated administrator.
- is_
enforced_ boolin2_ step_ verification - Is 2-step verification enforced.
- is_
enrolled_ boolin2_ step_ verification - Is enrolled in 2-step verification.
- is_
mailbox_ boolsetup - Indicates if the user's Google mailbox is created. This property is only applicable if the user has been assigned a Gmail license.
- last_
login_ strtime - The last time the user logged into the user's account. The value is in ISO 8601 date and time format. The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example, 2010-04-05T17:30:04+01:00.
- non_
editable_ Sequence[str]aliases - asps.list of the user's non-editable alias email addresses. These are typically outside the account's primary domain or sub-domain.
- suspension_
reason str - Has the reason a user account is suspended either by the administrator or by Google at the time of suspension. The property is returned only if the suspended property is true.
- thumbnail_
photo_ stretag - ETag of the user's photo
- thumbnail_
photo_ strurl - Photo Url of the user.
- agreed
To BooleanTerms - This property is true if the user has completed an initial login and accepted the Terms of Service agreement.
- creation
Time String - The time the user's account was created. The value is in ISO 8601 date and time format. The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example, 2010-04-05T17:30:04+01:00.
- customer
Id String - The customer ID to retrieve all account users. You can use the alias my_customer to represent your account's customerId. As a reseller administrator, you can use the resold customer account's customerId. To get a customerId, use the account's primary domain in the domain parameter of a users.list request.
- deletion
Time String - The time the user's account was deleted. The value is in ISO 8601 date and time format The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example 2010-04-05T17:30:04+01:00.
- etag String
- ETag of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Delegated BooleanAdmin - Indicates if the user is a delegated administrator.
- is
Enforced BooleanIn2Step Verification - Is 2-step verification enforced.
- is
Enrolled BooleanIn2Step Verification - Is enrolled in 2-step verification.
- is
Mailbox BooleanSetup - Indicates if the user's Google mailbox is created. This property is only applicable if the user has been assigned a Gmail license.
- last
Login StringTime - The last time the user logged into the user's account. The value is in ISO 8601 date and time format. The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example, 2010-04-05T17:30:04+01:00.
- non
Editable List<String>Aliases - asps.list of the user's non-editable alias email addresses. These are typically outside the account's primary domain or sub-domain.
- suspension
Reason String - Has the reason a user account is suspended either by the administrator or by Google at the time of suspension. The property is returned only if the suspended property is true.
- thumbnail
Photo StringEtag - ETag of the user's photo
- thumbnail
Photo StringUrl - Photo Url of the user.
Look up Existing User Resource
Get an existing User 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?: UserState, opts?: CustomResourceOptions): User
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
addresses: Optional[Sequence[UserAddressArgs]] = None,
agreed_to_terms: Optional[bool] = None,
aliases: Optional[Sequence[str]] = None,
archived: Optional[bool] = None,
change_password_at_next_login: Optional[bool] = None,
creation_time: Optional[str] = None,
custom_schemas: Optional[Sequence[UserCustomSchemaArgs]] = None,
customer_id: Optional[str] = None,
deletion_time: Optional[str] = None,
emails: Optional[Sequence[UserEmailArgs]] = None,
etag: Optional[str] = None,
external_ids: Optional[Sequence[UserExternalIdArgs]] = None,
hash_function: Optional[str] = None,
ims: Optional[Sequence[UserImArgs]] = None,
include_in_global_address_list: Optional[bool] = None,
ip_allowlist: Optional[bool] = None,
is_admin: Optional[bool] = None,
is_delegated_admin: Optional[bool] = None,
is_enforced_in2_step_verification: Optional[bool] = None,
is_enrolled_in2_step_verification: Optional[bool] = None,
is_mailbox_setup: Optional[bool] = None,
keywords: Optional[Sequence[UserKeywordArgs]] = None,
languages: Optional[Sequence[UserLanguageArgs]] = None,
last_login_time: Optional[str] = None,
locations: Optional[Sequence[UserLocationArgs]] = None,
name: Optional[UserNameArgs] = None,
non_editable_aliases: Optional[Sequence[str]] = None,
org_unit_path: Optional[str] = None,
organizations: Optional[Sequence[UserOrganizationArgs]] = None,
password: Optional[str] = None,
phones: Optional[Sequence[UserPhoneArgs]] = None,
posix_accounts: Optional[Sequence[UserPosixAccountArgs]] = None,
primary_email: Optional[str] = None,
recovery_email: Optional[str] = None,
recovery_phone: Optional[str] = None,
relations: Optional[Sequence[UserRelationArgs]] = None,
ssh_public_keys: Optional[Sequence[UserSshPublicKeyArgs]] = None,
suspended: Optional[bool] = None,
suspension_reason: Optional[str] = None,
thumbnail_photo_etag: Optional[str] = None,
thumbnail_photo_url: Optional[str] = None,
timeouts: Optional[UserTimeoutsArgs] = None,
websites: Optional[Sequence[UserWebsiteArgs]] = None) -> User
func GetUser(ctx *Context, name string, id IDInput, state *UserState, opts ...ResourceOption) (*User, error)
public static User Get(string name, Input<string> id, UserState? state, CustomResourceOptions? opts = null)
public static User get(String name, Output<String> id, UserState state, CustomResourceOptions options)
resources: _: type: googleworkspace:User 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.
- Addresses
List<User
Address> - A list of the user's addresses. The maximum allowed data size is 10Kb.
- Agreed
To boolTerms - This property is true if the user has completed an initial login and accepted the Terms of Service agreement.
- Aliases List<string>
- asps.list of the user's alias email addresses.
- Archived bool
- Indicates if user is archived.
- Change
Password boolAt Next Login - Indicates if the user is forced to change their password at next login. This setting doesn't apply when the user signs in via a third-party identity provider.
- Creation
Time string - The time the user's account was created. The value is in ISO 8601 date and time format. The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example, 2010-04-05T17:30:04+01:00.
- Custom
Schemas List<UserCustom Schema> - Custom fields of the user.
- Customer
Id string - The customer ID to retrieve all account users. You can use the alias my_customer to represent your account's customerId. As a reseller administrator, you can use the resold customer account's customerId. To get a customerId, use the account's primary domain in the domain parameter of a users.list request.
- Deletion
Time string - The time the user's account was deleted. The value is in ISO 8601 date and time format The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example 2010-04-05T17:30:04+01:00.
- Emails
List<User
Email> - A list of the user's email addresses. The maximum allowed data size is 10Kb.
- Etag string
- ETag of the resource.
- External
Ids List<UserExternal Id> - A list of external IDs for the user, such as an employee or network ID. The maximum allowed data size is 2Kb.
- Hash
Function string - Stores the hash format of the password property. We recommend sending the password property value as a base 16 bit hexadecimal-encoded hash value. Set the hashFunction values as either the SHA-1, MD5, or crypt hash format.
- Ims
List<User
Im> - The user's Instant Messenger (IM) accounts. A user account can have multiple ims properties. But, only one of these ims properties can be the primary IM contact. The maximum allowed data size is 2Kb.
- Include
In boolGlobal Address List - Defaults to
true
. Indicates if the user's profile is visible in the Google Workspace global address list when the contact sharing feature is enabled for the domain. - Ip
Allowlist bool - If true, the user's IP address is added to the allow list.
- Is
Admin bool - Indicates a user with super admininistrator privileges.
- Is
Delegated boolAdmin - Indicates if the user is a delegated administrator.
- Is
Enforced boolIn2Step Verification - Is 2-step verification enforced.
- Is
Enrolled boolIn2Step Verification - Is enrolled in 2-step verification.
- Is
Mailbox boolSetup - Indicates if the user's Google mailbox is created. This property is only applicable if the user has been assigned a Gmail license.
- Keywords
List<User
Keyword> - A list of the user's keywords. The maximum allowed data size is 1Kb.
- Languages
List<User
Language> - A list of the user's languages. The maximum allowed data size is 1Kb.
- Last
Login stringTime - The last time the user logged into the user's account. The value is in ISO 8601 date and time format. The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example, 2010-04-05T17:30:04+01:00.
- Locations
List<User
Location> - A list of the user's locations. The maximum allowed data size is 10Kb.
- Name
User
Name - Holds the given and family names of the user, and the read-only fullName value. The maximum number of characters in the givenName and in the familyName values is 60. In addition, name values support unicode/UTF-8 characters, and can contain spaces, letters (a-z), numbers (0-9), dashes (-), forward slashes (/), and periods (.). Maximum allowed data size for this field is 1Kb.
- Non
Editable List<string>Aliases - asps.list of the user's non-editable alias email addresses. These are typically outside the account's primary domain or sub-domain.
- Org
Unit stringPath - The full path of the parent organization associated with the user. If the parent organization is the top-level, it is represented as a forward slash (/).
- Organizations
List<User
Organization> - A list of organizations the user belongs to. The maximum allowed data size is 10Kb.
- Password string
- Stores the password for the user account. A password can contain any combination of ASCII characters. A minimum of 8 characters is required. The maximum length is 100 characters. As the API does not return the value of password, this field is write-only, and the value stored in the state will be what is provided in the configuration. The field is required on create and will be empty on import.
- Phones
List<User
Phone> - A list of the user's phone numbers. The maximum allowed data size is 1Kb.
- Posix
Accounts List<UserPosix Account> - A list of POSIX account information for the user.
- Primary
Email string - The user's primary email address. The primaryEmail must be unique and cannot be an alias of another user.
- Recovery
Email string - Recovery email of the user.
- Recovery
Phone string - Recovery phone of the user. The phone number must be in the E.164 format, starting with the plus sign (+). Example: +16506661212.
- Relations
List<User
Relation> - A list of the user's relationships to other users. The maximum allowed data size for this field is 2Kb.
- Ssh
Public List<UserKeys Ssh Public Key> - A list of SSH public keys. The maximum allowed data size is 10Kb.
- Suspended bool
- Indicates if user is suspended.
- Suspension
Reason string - Has the reason a user account is suspended either by the administrator or by Google at the time of suspension. The property is returned only if the suspended property is true.
- Thumbnail
Photo stringEtag - ETag of the user's photo
- Thumbnail
Photo stringUrl - Photo Url of the user.
- Timeouts
User
Timeouts - Websites
List<User
Website> - A list of the user's websites. The maximum allowed data size is 2Kb.
- Addresses
[]User
Address Args - A list of the user's addresses. The maximum allowed data size is 10Kb.
- Agreed
To boolTerms - This property is true if the user has completed an initial login and accepted the Terms of Service agreement.
- Aliases []string
- asps.list of the user's alias email addresses.
- Archived bool
- Indicates if user is archived.
- Change
Password boolAt Next Login - Indicates if the user is forced to change their password at next login. This setting doesn't apply when the user signs in via a third-party identity provider.
- Creation
Time string - The time the user's account was created. The value is in ISO 8601 date and time format. The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example, 2010-04-05T17:30:04+01:00.
- Custom
Schemas []UserCustom Schema Args - Custom fields of the user.
- Customer
Id string - The customer ID to retrieve all account users. You can use the alias my_customer to represent your account's customerId. As a reseller administrator, you can use the resold customer account's customerId. To get a customerId, use the account's primary domain in the domain parameter of a users.list request.
- Deletion
Time string - The time the user's account was deleted. The value is in ISO 8601 date and time format The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example 2010-04-05T17:30:04+01:00.
- Emails
[]User
Email Args - A list of the user's email addresses. The maximum allowed data size is 10Kb.
- Etag string
- ETag of the resource.
- External
Ids []UserExternal Id Args - A list of external IDs for the user, such as an employee or network ID. The maximum allowed data size is 2Kb.
- Hash
Function string - Stores the hash format of the password property. We recommend sending the password property value as a base 16 bit hexadecimal-encoded hash value. Set the hashFunction values as either the SHA-1, MD5, or crypt hash format.
- Ims
[]User
Im Args - The user's Instant Messenger (IM) accounts. A user account can have multiple ims properties. But, only one of these ims properties can be the primary IM contact. The maximum allowed data size is 2Kb.
- Include
In boolGlobal Address List - Defaults to
true
. Indicates if the user's profile is visible in the Google Workspace global address list when the contact sharing feature is enabled for the domain. - Ip
Allowlist bool - If true, the user's IP address is added to the allow list.
- Is
Admin bool - Indicates a user with super admininistrator privileges.
- Is
Delegated boolAdmin - Indicates if the user is a delegated administrator.
- Is
Enforced boolIn2Step Verification - Is 2-step verification enforced.
- Is
Enrolled boolIn2Step Verification - Is enrolled in 2-step verification.
- Is
Mailbox boolSetup - Indicates if the user's Google mailbox is created. This property is only applicable if the user has been assigned a Gmail license.
- Keywords
[]User
Keyword Args - A list of the user's keywords. The maximum allowed data size is 1Kb.
- Languages
[]User
Language Args - A list of the user's languages. The maximum allowed data size is 1Kb.
- Last
Login stringTime - The last time the user logged into the user's account. The value is in ISO 8601 date and time format. The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example, 2010-04-05T17:30:04+01:00.
- Locations
[]User
Location Args - A list of the user's locations. The maximum allowed data size is 10Kb.
- Name
User
Name Args - Holds the given and family names of the user, and the read-only fullName value. The maximum number of characters in the givenName and in the familyName values is 60. In addition, name values support unicode/UTF-8 characters, and can contain spaces, letters (a-z), numbers (0-9), dashes (-), forward slashes (/), and periods (.). Maximum allowed data size for this field is 1Kb.
- Non
Editable []stringAliases - asps.list of the user's non-editable alias email addresses. These are typically outside the account's primary domain or sub-domain.
- Org
Unit stringPath - The full path of the parent organization associated with the user. If the parent organization is the top-level, it is represented as a forward slash (/).
- Organizations
[]User
Organization Args - A list of organizations the user belongs to. The maximum allowed data size is 10Kb.
- Password string
- Stores the password for the user account. A password can contain any combination of ASCII characters. A minimum of 8 characters is required. The maximum length is 100 characters. As the API does not return the value of password, this field is write-only, and the value stored in the state will be what is provided in the configuration. The field is required on create and will be empty on import.
- Phones
[]User
Phone Args - A list of the user's phone numbers. The maximum allowed data size is 1Kb.
- Posix
Accounts []UserPosix Account Args - A list of POSIX account information for the user.
- Primary
Email string - The user's primary email address. The primaryEmail must be unique and cannot be an alias of another user.
- Recovery
Email string - Recovery email of the user.
- Recovery
Phone string - Recovery phone of the user. The phone number must be in the E.164 format, starting with the plus sign (+). Example: +16506661212.
- Relations
[]User
Relation Args - A list of the user's relationships to other users. The maximum allowed data size for this field is 2Kb.
- Ssh
Public []UserKeys Ssh Public Key Args - A list of SSH public keys. The maximum allowed data size is 10Kb.
- Suspended bool
- Indicates if user is suspended.
- Suspension
Reason string - Has the reason a user account is suspended either by the administrator or by Google at the time of suspension. The property is returned only if the suspended property is true.
- Thumbnail
Photo stringEtag - ETag of the user's photo
- Thumbnail
Photo stringUrl - Photo Url of the user.
- Timeouts
User
Timeouts Args - Websites
[]User
Website Args - A list of the user's websites. The maximum allowed data size is 2Kb.
- addresses
List<User
Address> - A list of the user's addresses. The maximum allowed data size is 10Kb.
- agreed
To BooleanTerms - This property is true if the user has completed an initial login and accepted the Terms of Service agreement.
- aliases List<String>
- asps.list of the user's alias email addresses.
- archived Boolean
- Indicates if user is archived.
- change
Password BooleanAt Next Login - Indicates if the user is forced to change their password at next login. This setting doesn't apply when the user signs in via a third-party identity provider.
- creation
Time String - The time the user's account was created. The value is in ISO 8601 date and time format. The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example, 2010-04-05T17:30:04+01:00.
- custom
Schemas List<UserCustom Schema> - Custom fields of the user.
- customer
Id String - The customer ID to retrieve all account users. You can use the alias my_customer to represent your account's customerId. As a reseller administrator, you can use the resold customer account's customerId. To get a customerId, use the account's primary domain in the domain parameter of a users.list request.
- deletion
Time String - The time the user's account was deleted. The value is in ISO 8601 date and time format The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example 2010-04-05T17:30:04+01:00.
- emails
List<User
Email> - A list of the user's email addresses. The maximum allowed data size is 10Kb.
- etag String
- ETag of the resource.
- external
Ids List<UserExternal Id> - A list of external IDs for the user, such as an employee or network ID. The maximum allowed data size is 2Kb.
- hash
Function String - Stores the hash format of the password property. We recommend sending the password property value as a base 16 bit hexadecimal-encoded hash value. Set the hashFunction values as either the SHA-1, MD5, or crypt hash format.
- ims
List<User
Im> - The user's Instant Messenger (IM) accounts. A user account can have multiple ims properties. But, only one of these ims properties can be the primary IM contact. The maximum allowed data size is 2Kb.
- include
In BooleanGlobal Address List - Defaults to
true
. Indicates if the user's profile is visible in the Google Workspace global address list when the contact sharing feature is enabled for the domain. - ip
Allowlist Boolean - If true, the user's IP address is added to the allow list.
- is
Admin Boolean - Indicates a user with super admininistrator privileges.
- is
Delegated BooleanAdmin - Indicates if the user is a delegated administrator.
- is
Enforced BooleanIn2Step Verification - Is 2-step verification enforced.
- is
Enrolled BooleanIn2Step Verification - Is enrolled in 2-step verification.
- is
Mailbox BooleanSetup - Indicates if the user's Google mailbox is created. This property is only applicable if the user has been assigned a Gmail license.
- keywords
List<User
Keyword> - A list of the user's keywords. The maximum allowed data size is 1Kb.
- languages
List<User
Language> - A list of the user's languages. The maximum allowed data size is 1Kb.
- last
Login StringTime - The last time the user logged into the user's account. The value is in ISO 8601 date and time format. The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example, 2010-04-05T17:30:04+01:00.
- locations
List<User
Location> - A list of the user's locations. The maximum allowed data size is 10Kb.
- name
User
Name - Holds the given and family names of the user, and the read-only fullName value. The maximum number of characters in the givenName and in the familyName values is 60. In addition, name values support unicode/UTF-8 characters, and can contain spaces, letters (a-z), numbers (0-9), dashes (-), forward slashes (/), and periods (.). Maximum allowed data size for this field is 1Kb.
- non
Editable List<String>Aliases - asps.list of the user's non-editable alias email addresses. These are typically outside the account's primary domain or sub-domain.
- org
Unit StringPath - The full path of the parent organization associated with the user. If the parent organization is the top-level, it is represented as a forward slash (/).
- organizations
List<User
Organization> - A list of organizations the user belongs to. The maximum allowed data size is 10Kb.
- password String
- Stores the password for the user account. A password can contain any combination of ASCII characters. A minimum of 8 characters is required. The maximum length is 100 characters. As the API does not return the value of password, this field is write-only, and the value stored in the state will be what is provided in the configuration. The field is required on create and will be empty on import.
- phones
List<User
Phone> - A list of the user's phone numbers. The maximum allowed data size is 1Kb.
- posix
Accounts List<UserPosix Account> - A list of POSIX account information for the user.
- primary
Email String - The user's primary email address. The primaryEmail must be unique and cannot be an alias of another user.
- recovery
Email String - Recovery email of the user.
- recovery
Phone String - Recovery phone of the user. The phone number must be in the E.164 format, starting with the plus sign (+). Example: +16506661212.
- relations
List<User
Relation> - A list of the user's relationships to other users. The maximum allowed data size for this field is 2Kb.
- ssh
Public List<UserKeys Ssh Public Key> - A list of SSH public keys. The maximum allowed data size is 10Kb.
- suspended Boolean
- Indicates if user is suspended.
- suspension
Reason String - Has the reason a user account is suspended either by the administrator or by Google at the time of suspension. The property is returned only if the suspended property is true.
- thumbnail
Photo StringEtag - ETag of the user's photo
- thumbnail
Photo StringUrl - Photo Url of the user.
- timeouts
User
Timeouts - websites
List<User
Website> - A list of the user's websites. The maximum allowed data size is 2Kb.
- addresses
User
Address[] - A list of the user's addresses. The maximum allowed data size is 10Kb.
- agreed
To booleanTerms - This property is true if the user has completed an initial login and accepted the Terms of Service agreement.
- aliases string[]
- asps.list of the user's alias email addresses.
- archived boolean
- Indicates if user is archived.
- change
Password booleanAt Next Login - Indicates if the user is forced to change their password at next login. This setting doesn't apply when the user signs in via a third-party identity provider.
- creation
Time string - The time the user's account was created. The value is in ISO 8601 date and time format. The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example, 2010-04-05T17:30:04+01:00.
- custom
Schemas UserCustom Schema[] - Custom fields of the user.
- customer
Id string - The customer ID to retrieve all account users. You can use the alias my_customer to represent your account's customerId. As a reseller administrator, you can use the resold customer account's customerId. To get a customerId, use the account's primary domain in the domain parameter of a users.list request.
- deletion
Time string - The time the user's account was deleted. The value is in ISO 8601 date and time format The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example 2010-04-05T17:30:04+01:00.
- emails
User
Email[] - A list of the user's email addresses. The maximum allowed data size is 10Kb.
- etag string
- ETag of the resource.
- external
Ids UserExternal Id[] - A list of external IDs for the user, such as an employee or network ID. The maximum allowed data size is 2Kb.
- hash
Function string - Stores the hash format of the password property. We recommend sending the password property value as a base 16 bit hexadecimal-encoded hash value. Set the hashFunction values as either the SHA-1, MD5, or crypt hash format.
- ims
User
Im[] - The user's Instant Messenger (IM) accounts. A user account can have multiple ims properties. But, only one of these ims properties can be the primary IM contact. The maximum allowed data size is 2Kb.
- include
In booleanGlobal Address List - Defaults to
true
. Indicates if the user's profile is visible in the Google Workspace global address list when the contact sharing feature is enabled for the domain. - ip
Allowlist boolean - If true, the user's IP address is added to the allow list.
- is
Admin boolean - Indicates a user with super admininistrator privileges.
- is
Delegated booleanAdmin - Indicates if the user is a delegated administrator.
- is
Enforced booleanIn2Step Verification - Is 2-step verification enforced.
- is
Enrolled booleanIn2Step Verification - Is enrolled in 2-step verification.
- is
Mailbox booleanSetup - Indicates if the user's Google mailbox is created. This property is only applicable if the user has been assigned a Gmail license.
- keywords
User
Keyword[] - A list of the user's keywords. The maximum allowed data size is 1Kb.
- languages
User
Language[] - A list of the user's languages. The maximum allowed data size is 1Kb.
- last
Login stringTime - The last time the user logged into the user's account. The value is in ISO 8601 date and time format. The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example, 2010-04-05T17:30:04+01:00.
- locations
User
Location[] - A list of the user's locations. The maximum allowed data size is 10Kb.
- name
User
Name - Holds the given and family names of the user, and the read-only fullName value. The maximum number of characters in the givenName and in the familyName values is 60. In addition, name values support unicode/UTF-8 characters, and can contain spaces, letters (a-z), numbers (0-9), dashes (-), forward slashes (/), and periods (.). Maximum allowed data size for this field is 1Kb.
- non
Editable string[]Aliases - asps.list of the user's non-editable alias email addresses. These are typically outside the account's primary domain or sub-domain.
- org
Unit stringPath - The full path of the parent organization associated with the user. If the parent organization is the top-level, it is represented as a forward slash (/).
- organizations
User
Organization[] - A list of organizations the user belongs to. The maximum allowed data size is 10Kb.
- password string
- Stores the password for the user account. A password can contain any combination of ASCII characters. A minimum of 8 characters is required. The maximum length is 100 characters. As the API does not return the value of password, this field is write-only, and the value stored in the state will be what is provided in the configuration. The field is required on create and will be empty on import.
- phones
User
Phone[] - A list of the user's phone numbers. The maximum allowed data size is 1Kb.
- posix
Accounts UserPosix Account[] - A list of POSIX account information for the user.
- primary
Email string - The user's primary email address. The primaryEmail must be unique and cannot be an alias of another user.
- recovery
Email string - Recovery email of the user.
- recovery
Phone string - Recovery phone of the user. The phone number must be in the E.164 format, starting with the plus sign (+). Example: +16506661212.
- relations
User
Relation[] - A list of the user's relationships to other users. The maximum allowed data size for this field is 2Kb.
- ssh
Public UserKeys Ssh Public Key[] - A list of SSH public keys. The maximum allowed data size is 10Kb.
- suspended boolean
- Indicates if user is suspended.
- suspension
Reason string - Has the reason a user account is suspended either by the administrator or by Google at the time of suspension. The property is returned only if the suspended property is true.
- thumbnail
Photo stringEtag - ETag of the user's photo
- thumbnail
Photo stringUrl - Photo Url of the user.
- timeouts
User
Timeouts - websites
User
Website[] - A list of the user's websites. The maximum allowed data size is 2Kb.
- addresses
Sequence[User
Address Args] - A list of the user's addresses. The maximum allowed data size is 10Kb.
- agreed_
to_ boolterms - This property is true if the user has completed an initial login and accepted the Terms of Service agreement.
- aliases Sequence[str]
- asps.list of the user's alias email addresses.
- archived bool
- Indicates if user is archived.
- change_
password_ boolat_ next_ login - Indicates if the user is forced to change their password at next login. This setting doesn't apply when the user signs in via a third-party identity provider.
- creation_
time str - The time the user's account was created. The value is in ISO 8601 date and time format. The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example, 2010-04-05T17:30:04+01:00.
- custom_
schemas Sequence[UserCustom Schema Args] - Custom fields of the user.
- customer_
id str - The customer ID to retrieve all account users. You can use the alias my_customer to represent your account's customerId. As a reseller administrator, you can use the resold customer account's customerId. To get a customerId, use the account's primary domain in the domain parameter of a users.list request.
- deletion_
time str - The time the user's account was deleted. The value is in ISO 8601 date and time format The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example 2010-04-05T17:30:04+01:00.
- emails
Sequence[User
Email Args] - A list of the user's email addresses. The maximum allowed data size is 10Kb.
- etag str
- ETag of the resource.
- external_
ids Sequence[UserExternal Id Args] - A list of external IDs for the user, such as an employee or network ID. The maximum allowed data size is 2Kb.
- hash_
function str - Stores the hash format of the password property. We recommend sending the password property value as a base 16 bit hexadecimal-encoded hash value. Set the hashFunction values as either the SHA-1, MD5, or crypt hash format.
- ims
Sequence[User
Im Args] - The user's Instant Messenger (IM) accounts. A user account can have multiple ims properties. But, only one of these ims properties can be the primary IM contact. The maximum allowed data size is 2Kb.
- include_
in_ boolglobal_ address_ list - Defaults to
true
. Indicates if the user's profile is visible in the Google Workspace global address list when the contact sharing feature is enabled for the domain. - ip_
allowlist bool - If true, the user's IP address is added to the allow list.
- is_
admin bool - Indicates a user with super admininistrator privileges.
- is_
delegated_ booladmin - Indicates if the user is a delegated administrator.
- is_
enforced_ boolin2_ step_ verification - Is 2-step verification enforced.
- is_
enrolled_ boolin2_ step_ verification - Is enrolled in 2-step verification.
- is_
mailbox_ boolsetup - Indicates if the user's Google mailbox is created. This property is only applicable if the user has been assigned a Gmail license.
- keywords
Sequence[User
Keyword Args] - A list of the user's keywords. The maximum allowed data size is 1Kb.
- languages
Sequence[User
Language Args] - A list of the user's languages. The maximum allowed data size is 1Kb.
- last_
login_ strtime - The last time the user logged into the user's account. The value is in ISO 8601 date and time format. The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example, 2010-04-05T17:30:04+01:00.
- locations
Sequence[User
Location Args] - A list of the user's locations. The maximum allowed data size is 10Kb.
- name
User
Name Args - Holds the given and family names of the user, and the read-only fullName value. The maximum number of characters in the givenName and in the familyName values is 60. In addition, name values support unicode/UTF-8 characters, and can contain spaces, letters (a-z), numbers (0-9), dashes (-), forward slashes (/), and periods (.). Maximum allowed data size for this field is 1Kb.
- non_
editable_ Sequence[str]aliases - asps.list of the user's non-editable alias email addresses. These are typically outside the account's primary domain or sub-domain.
- org_
unit_ strpath - The full path of the parent organization associated with the user. If the parent organization is the top-level, it is represented as a forward slash (/).
- organizations
Sequence[User
Organization Args] - A list of organizations the user belongs to. The maximum allowed data size is 10Kb.
- password str
- Stores the password for the user account. A password can contain any combination of ASCII characters. A minimum of 8 characters is required. The maximum length is 100 characters. As the API does not return the value of password, this field is write-only, and the value stored in the state will be what is provided in the configuration. The field is required on create and will be empty on import.
- phones
Sequence[User
Phone Args] - A list of the user's phone numbers. The maximum allowed data size is 1Kb.
- posix_
accounts Sequence[UserPosix Account Args] - A list of POSIX account information for the user.
- primary_
email str - The user's primary email address. The primaryEmail must be unique and cannot be an alias of another user.
- recovery_
email str - Recovery email of the user.
- recovery_
phone str - Recovery phone of the user. The phone number must be in the E.164 format, starting with the plus sign (+). Example: +16506661212.
- relations
Sequence[User
Relation Args] - A list of the user's relationships to other users. The maximum allowed data size for this field is 2Kb.
- ssh_
public_ Sequence[Userkeys Ssh Public Key Args] - A list of SSH public keys. The maximum allowed data size is 10Kb.
- suspended bool
- Indicates if user is suspended.
- suspension_
reason str - Has the reason a user account is suspended either by the administrator or by Google at the time of suspension. The property is returned only if the suspended property is true.
- thumbnail_
photo_ stretag - ETag of the user's photo
- thumbnail_
photo_ strurl - Photo Url of the user.
- timeouts
User
Timeouts Args - websites
Sequence[User
Website Args] - A list of the user's websites. The maximum allowed data size is 2Kb.
- addresses List<Property Map>
- A list of the user's addresses. The maximum allowed data size is 10Kb.
- agreed
To BooleanTerms - This property is true if the user has completed an initial login and accepted the Terms of Service agreement.
- aliases List<String>
- asps.list of the user's alias email addresses.
- archived Boolean
- Indicates if user is archived.
- change
Password BooleanAt Next Login - Indicates if the user is forced to change their password at next login. This setting doesn't apply when the user signs in via a third-party identity provider.
- creation
Time String - The time the user's account was created. The value is in ISO 8601 date and time format. The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example, 2010-04-05T17:30:04+01:00.
- custom
Schemas List<Property Map> - Custom fields of the user.
- customer
Id String - The customer ID to retrieve all account users. You can use the alias my_customer to represent your account's customerId. As a reseller administrator, you can use the resold customer account's customerId. To get a customerId, use the account's primary domain in the domain parameter of a users.list request.
- deletion
Time String - The time the user's account was deleted. The value is in ISO 8601 date and time format The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example 2010-04-05T17:30:04+01:00.
- emails List<Property Map>
- A list of the user's email addresses. The maximum allowed data size is 10Kb.
- etag String
- ETag of the resource.
- external
Ids List<Property Map> - A list of external IDs for the user, such as an employee or network ID. The maximum allowed data size is 2Kb.
- hash
Function String - Stores the hash format of the password property. We recommend sending the password property value as a base 16 bit hexadecimal-encoded hash value. Set the hashFunction values as either the SHA-1, MD5, or crypt hash format.
- ims List<Property Map>
- The user's Instant Messenger (IM) accounts. A user account can have multiple ims properties. But, only one of these ims properties can be the primary IM contact. The maximum allowed data size is 2Kb.
- include
In BooleanGlobal Address List - Defaults to
true
. Indicates if the user's profile is visible in the Google Workspace global address list when the contact sharing feature is enabled for the domain. - ip
Allowlist Boolean - If true, the user's IP address is added to the allow list.
- is
Admin Boolean - Indicates a user with super admininistrator privileges.
- is
Delegated BooleanAdmin - Indicates if the user is a delegated administrator.
- is
Enforced BooleanIn2Step Verification - Is 2-step verification enforced.
- is
Enrolled BooleanIn2Step Verification - Is enrolled in 2-step verification.
- is
Mailbox BooleanSetup - Indicates if the user's Google mailbox is created. This property is only applicable if the user has been assigned a Gmail license.
- keywords List<Property Map>
- A list of the user's keywords. The maximum allowed data size is 1Kb.
- languages List<Property Map>
- A list of the user's languages. The maximum allowed data size is 1Kb.
- last
Login StringTime - The last time the user logged into the user's account. The value is in ISO 8601 date and time format. The time is the complete date plus hours, minutes, and seconds in the form YYYY-MM-DDThh:mm:ssTZD. For example, 2010-04-05T17:30:04+01:00.
- locations List<Property Map>
- A list of the user's locations. The maximum allowed data size is 10Kb.
- name Property Map
- Holds the given and family names of the user, and the read-only fullName value. The maximum number of characters in the givenName and in the familyName values is 60. In addition, name values support unicode/UTF-8 characters, and can contain spaces, letters (a-z), numbers (0-9), dashes (-), forward slashes (/), and periods (.). Maximum allowed data size for this field is 1Kb.
- non
Editable List<String>Aliases - asps.list of the user's non-editable alias email addresses. These are typically outside the account's primary domain or sub-domain.
- org
Unit StringPath - The full path of the parent organization associated with the user. If the parent organization is the top-level, it is represented as a forward slash (/).
- organizations List<Property Map>
- A list of organizations the user belongs to. The maximum allowed data size is 10Kb.
- password String
- Stores the password for the user account. A password can contain any combination of ASCII characters. A minimum of 8 characters is required. The maximum length is 100 characters. As the API does not return the value of password, this field is write-only, and the value stored in the state will be what is provided in the configuration. The field is required on create and will be empty on import.
- phones List<Property Map>
- A list of the user's phone numbers. The maximum allowed data size is 1Kb.
- posix
Accounts List<Property Map> - A list of POSIX account information for the user.
- primary
Email String - The user's primary email address. The primaryEmail must be unique and cannot be an alias of another user.
- recovery
Email String - Recovery email of the user.
- recovery
Phone String - Recovery phone of the user. The phone number must be in the E.164 format, starting with the plus sign (+). Example: +16506661212.
- relations List<Property Map>
- A list of the user's relationships to other users. The maximum allowed data size for this field is 2Kb.
- ssh
Public List<Property Map>Keys - A list of SSH public keys. The maximum allowed data size is 10Kb.
- suspended Boolean
- Indicates if user is suspended.
- suspension
Reason String - Has the reason a user account is suspended either by the administrator or by Google at the time of suspension. The property is returned only if the suspended property is true.
- thumbnail
Photo StringEtag - ETag of the user's photo
- thumbnail
Photo StringUrl - Photo Url of the user.
- timeouts Property Map
- websites List<Property Map>
- A list of the user's websites. The maximum allowed data size is 2Kb.
Supporting Types
UserAddress, UserAddressArgs
- Type string
- The address type. Acceptable values:
custom
,home
,other
,work
. - Country string
- Country
- Country
Code string - The country code. Uses the ISO 3166-1 standard.
- Custom
Type string - If the address type is custom, this property contains the custom value.
- Extended
Address string - For extended addresses, such as an address that includes a sub-region.
- Formatted string
- A full and unstructured postal address. This is not synced with the structured address fields.
- Locality string
- The town or city of the address.
- Po
Box string - The post office box, if present.
- Postal
Code string - The ZIP or postal code, if applicable.
- Primary bool
- If this is the user's primary address. The addresses list may contain only one primary address.
- Region string
- The abbreviated province or state.
- Source
Is boolStructured - Indicates if the user-supplied address was formatted. Formatted addresses are not currently supported.
- Street
Address string - The street address, such as 1600 Amphitheatre Parkway. Whitespace within the string is ignored; however, newlines are significant.
- Type string
- The address type. Acceptable values:
custom
,home
,other
,work
. - Country string
- Country
- Country
Code string - The country code. Uses the ISO 3166-1 standard.
- Custom
Type string - If the address type is custom, this property contains the custom value.
- Extended
Address string - For extended addresses, such as an address that includes a sub-region.
- Formatted string
- A full and unstructured postal address. This is not synced with the structured address fields.
- Locality string
- The town or city of the address.
- Po
Box string - The post office box, if present.
- Postal
Code string - The ZIP or postal code, if applicable.
- Primary bool
- If this is the user's primary address. The addresses list may contain only one primary address.
- Region string
- The abbreviated province or state.
- Source
Is boolStructured - Indicates if the user-supplied address was formatted. Formatted addresses are not currently supported.
- Street
Address string - The street address, such as 1600 Amphitheatre Parkway. Whitespace within the string is ignored; however, newlines are significant.
- type String
- The address type. Acceptable values:
custom
,home
,other
,work
. - country String
- Country
- country
Code String - The country code. Uses the ISO 3166-1 standard.
- custom
Type String - If the address type is custom, this property contains the custom value.
- extended
Address String - For extended addresses, such as an address that includes a sub-region.
- formatted String
- A full and unstructured postal address. This is not synced with the structured address fields.
- locality String
- The town or city of the address.
- po
Box String - The post office box, if present.
- postal
Code String - The ZIP or postal code, if applicable.
- primary Boolean
- If this is the user's primary address. The addresses list may contain only one primary address.
- region String
- The abbreviated province or state.
- source
Is BooleanStructured - Indicates if the user-supplied address was formatted. Formatted addresses are not currently supported.
- street
Address String - The street address, such as 1600 Amphitheatre Parkway. Whitespace within the string is ignored; however, newlines are significant.
- type string
- The address type. Acceptable values:
custom
,home
,other
,work
. - country string
- Country
- country
Code string - The country code. Uses the ISO 3166-1 standard.
- custom
Type string - If the address type is custom, this property contains the custom value.
- extended
Address string - For extended addresses, such as an address that includes a sub-region.
- formatted string
- A full and unstructured postal address. This is not synced with the structured address fields.
- locality string
- The town or city of the address.
- po
Box string - The post office box, if present.
- postal
Code string - The ZIP or postal code, if applicable.
- primary boolean
- If this is the user's primary address. The addresses list may contain only one primary address.
- region string
- The abbreviated province or state.
- source
Is booleanStructured - Indicates if the user-supplied address was formatted. Formatted addresses are not currently supported.
- street
Address string - The street address, such as 1600 Amphitheatre Parkway. Whitespace within the string is ignored; however, newlines are significant.
- type str
- The address type. Acceptable values:
custom
,home
,other
,work
. - country str
- Country
- country_
code str - The country code. Uses the ISO 3166-1 standard.
- custom_
type str - If the address type is custom, this property contains the custom value.
- extended_
address str - For extended addresses, such as an address that includes a sub-region.
- formatted str
- A full and unstructured postal address. This is not synced with the structured address fields.
- locality str
- The town or city of the address.
- po_
box str - The post office box, if present.
- postal_
code str - The ZIP or postal code, if applicable.
- primary bool
- If this is the user's primary address. The addresses list may contain only one primary address.
- region str
- The abbreviated province or state.
- source_
is_ boolstructured - Indicates if the user-supplied address was formatted. Formatted addresses are not currently supported.
- street_
address str - The street address, such as 1600 Amphitheatre Parkway. Whitespace within the string is ignored; however, newlines are significant.
- type String
- The address type. Acceptable values:
custom
,home
,other
,work
. - country String
- Country
- country
Code String - The country code. Uses the ISO 3166-1 standard.
- custom
Type String - If the address type is custom, this property contains the custom value.
- extended
Address String - For extended addresses, such as an address that includes a sub-region.
- formatted String
- A full and unstructured postal address. This is not synced with the structured address fields.
- locality String
- The town or city of the address.
- po
Box String - The post office box, if present.
- postal
Code String - The ZIP or postal code, if applicable.
- primary Boolean
- If this is the user's primary address. The addresses list may contain only one primary address.
- region String
- The abbreviated province or state.
- source
Is BooleanStructured - Indicates if the user-supplied address was formatted. Formatted addresses are not currently supported.
- street
Address String - The street address, such as 1600 Amphitheatre Parkway. Whitespace within the string is ignored; however, newlines are significant.
UserCustomSchema, UserCustomSchemaArgs
- Schema
Name string - The name of the schema.
- Schema
Values Dictionary<string, string> - JSON encoded map that represents key/value pairs that correspond to the given schema.
- Schema
Name string - The name of the schema.
- Schema
Values map[string]string - JSON encoded map that represents key/value pairs that correspond to the given schema.
- schema
Name String - The name of the schema.
- schema
Values Map<String,String> - JSON encoded map that represents key/value pairs that correspond to the given schema.
- schema
Name string - The name of the schema.
- schema
Values {[key: string]: string} - JSON encoded map that represents key/value pairs that correspond to the given schema.
- schema_
name str - The name of the schema.
- schema_
values Mapping[str, str] - JSON encoded map that represents key/value pairs that correspond to the given schema.
- schema
Name String - The name of the schema.
- schema
Values Map<String> - JSON encoded map that represents key/value pairs that correspond to the given schema.
UserEmail, UserEmailArgs
- Type string
- The type of the email account. Acceptable values:
custom
,home
,other
,work
. - Address string
- The user's email address. Also serves as the email ID. This value can be the user's primary email address or an alias.
- Custom
Type string - If the value of type is custom, this property contains the custom type string.
- Primary bool
- Defaults to
false
. Indicates if this is the user's primary email. Only one entry can be marked as primary.
- Type string
- The type of the email account. Acceptable values:
custom
,home
,other
,work
. - Address string
- The user's email address. Also serves as the email ID. This value can be the user's primary email address or an alias.
- Custom
Type string - If the value of type is custom, this property contains the custom type string.
- Primary bool
- Defaults to
false
. Indicates if this is the user's primary email. Only one entry can be marked as primary.
- type String
- The type of the email account. Acceptable values:
custom
,home
,other
,work
. - address String
- The user's email address. Also serves as the email ID. This value can be the user's primary email address or an alias.
- custom
Type String - If the value of type is custom, this property contains the custom type string.
- primary Boolean
- Defaults to
false
. Indicates if this is the user's primary email. Only one entry can be marked as primary.
- type string
- The type of the email account. Acceptable values:
custom
,home
,other
,work
. - address string
- The user's email address. Also serves as the email ID. This value can be the user's primary email address or an alias.
- custom
Type string - If the value of type is custom, this property contains the custom type string.
- primary boolean
- Defaults to
false
. Indicates if this is the user's primary email. Only one entry can be marked as primary.
- type str
- The type of the email account. Acceptable values:
custom
,home
,other
,work
. - address str
- The user's email address. Also serves as the email ID. This value can be the user's primary email address or an alias.
- custom_
type str - If the value of type is custom, this property contains the custom type string.
- primary bool
- Defaults to
false
. Indicates if this is the user's primary email. Only one entry can be marked as primary.
- type String
- The type of the email account. Acceptable values:
custom
,home
,other
,work
. - address String
- The user's email address. Also serves as the email ID. This value can be the user's primary email address or an alias.
- custom
Type String - If the value of type is custom, this property contains the custom type string.
- primary Boolean
- Defaults to
false
. Indicates if this is the user's primary email. Only one entry can be marked as primary.
UserExternalId, UserExternalIdArgs
- Type string
- The type of external ID. If set to custom, customType must also be set. Acceptable values:
account
,custom
,customer
,login_id
,network
,organization
. - Value string
- The value of the ID.
- Custom
Type string - If the external ID type is custom, this property contains the custom value and must be set.
- Type string
- The type of external ID. If set to custom, customType must also be set. Acceptable values:
account
,custom
,customer
,login_id
,network
,organization
. - Value string
- The value of the ID.
- Custom
Type string - If the external ID type is custom, this property contains the custom value and must be set.
- type String
- The type of external ID. If set to custom, customType must also be set. Acceptable values:
account
,custom
,customer
,login_id
,network
,organization
. - value String
- The value of the ID.
- custom
Type String - If the external ID type is custom, this property contains the custom value and must be set.
- type string
- The type of external ID. If set to custom, customType must also be set. Acceptable values:
account
,custom
,customer
,login_id
,network
,organization
. - value string
- The value of the ID.
- custom
Type string - If the external ID type is custom, this property contains the custom value and must be set.
- type str
- The type of external ID. If set to custom, customType must also be set. Acceptable values:
account
,custom
,customer
,login_id
,network
,organization
. - value str
- The value of the ID.
- custom_
type str - If the external ID type is custom, this property contains the custom value and must be set.
- type String
- The type of external ID. If set to custom, customType must also be set. Acceptable values:
account
,custom
,customer
,login_id
,network
,organization
. - value String
- The value of the ID.
- custom
Type String - If the external ID type is custom, this property contains the custom value and must be set.
UserIm, UserImArgs
- Protocol string
- An IM protocol identifies the IM network. The value can be a custom network or the standard network. Acceptable values:
aim
,custom_protocol
,gtalk
,icq
,jabber
,msn
,net_meeting
,qq
,skype
,yahoo
. - Type string
- Acceptable values:
custom
,home
,other
,work
. - Custom
Protocol string - If the protocol value is custom_protocol, this property holds the custom protocol's string.
- Custom
Type string - If the IM type is custom, this property holds the custom type string.
- Im string
- The user's IM network ID.
- Primary bool
- If this is the user's primary IM. Only one entry in the IM list can have a value of true.
- Protocol string
- An IM protocol identifies the IM network. The value can be a custom network or the standard network. Acceptable values:
aim
,custom_protocol
,gtalk
,icq
,jabber
,msn
,net_meeting
,qq
,skype
,yahoo
. - Type string
- Acceptable values:
custom
,home
,other
,work
. - Custom
Protocol string - If the protocol value is custom_protocol, this property holds the custom protocol's string.
- Custom
Type string - If the IM type is custom, this property holds the custom type string.
- Im string
- The user's IM network ID.
- Primary bool
- If this is the user's primary IM. Only one entry in the IM list can have a value of true.
- protocol String
- An IM protocol identifies the IM network. The value can be a custom network or the standard network. Acceptable values:
aim
,custom_protocol
,gtalk
,icq
,jabber
,msn
,net_meeting
,qq
,skype
,yahoo
. - type String
- Acceptable values:
custom
,home
,other
,work
. - custom
Protocol String - If the protocol value is custom_protocol, this property holds the custom protocol's string.
- custom
Type String - If the IM type is custom, this property holds the custom type string.
- im String
- The user's IM network ID.
- primary Boolean
- If this is the user's primary IM. Only one entry in the IM list can have a value of true.
- protocol string
- An IM protocol identifies the IM network. The value can be a custom network or the standard network. Acceptable values:
aim
,custom_protocol
,gtalk
,icq
,jabber
,msn
,net_meeting
,qq
,skype
,yahoo
. - type string
- Acceptable values:
custom
,home
,other
,work
. - custom
Protocol string - If the protocol value is custom_protocol, this property holds the custom protocol's string.
- custom
Type string - If the IM type is custom, this property holds the custom type string.
- im string
- The user's IM network ID.
- primary boolean
- If this is the user's primary IM. Only one entry in the IM list can have a value of true.
- protocol str
- An IM protocol identifies the IM network. The value can be a custom network or the standard network. Acceptable values:
aim
,custom_protocol
,gtalk
,icq
,jabber
,msn
,net_meeting
,qq
,skype
,yahoo
. - type str
- Acceptable values:
custom
,home
,other
,work
. - custom_
protocol str - If the protocol value is custom_protocol, this property holds the custom protocol's string.
- custom_
type str - If the IM type is custom, this property holds the custom type string.
- im str
- The user's IM network ID.
- primary bool
- If this is the user's primary IM. Only one entry in the IM list can have a value of true.
- protocol String
- An IM protocol identifies the IM network. The value can be a custom network or the standard network. Acceptable values:
aim
,custom_protocol
,gtalk
,icq
,jabber
,msn
,net_meeting
,qq
,skype
,yahoo
. - type String
- Acceptable values:
custom
,home
,other
,work
. - custom
Protocol String - If the protocol value is custom_protocol, this property holds the custom protocol's string.
- custom
Type String - If the IM type is custom, this property holds the custom type string.
- im String
- The user's IM network ID.
- primary Boolean
- If this is the user's primary IM. Only one entry in the IM list can have a value of true.
UserKeyword, UserKeywordArgs
- Type string
- Each entry can have a type which indicates standard type of that entry. For example, keyword could be of type occupation or outlook. In addition to the standard type, an entry can have a custom type and can give it any name. Such types should have the CUSTOM value as type and also have a customType value. Acceptable values:
custom
,mission
,occupation
,outlook
- Value string
- Keyword.
- Custom
Type string - Custom Type.
- Type string
- Each entry can have a type which indicates standard type of that entry. For example, keyword could be of type occupation or outlook. In addition to the standard type, an entry can have a custom type and can give it any name. Such types should have the CUSTOM value as type and also have a customType value. Acceptable values:
custom
,mission
,occupation
,outlook
- Value string
- Keyword.
- Custom
Type string - Custom Type.
- type String
- Each entry can have a type which indicates standard type of that entry. For example, keyword could be of type occupation or outlook. In addition to the standard type, an entry can have a custom type and can give it any name. Such types should have the CUSTOM value as type and also have a customType value. Acceptable values:
custom
,mission
,occupation
,outlook
- value String
- Keyword.
- custom
Type String - Custom Type.
- type string
- Each entry can have a type which indicates standard type of that entry. For example, keyword could be of type occupation or outlook. In addition to the standard type, an entry can have a custom type and can give it any name. Such types should have the CUSTOM value as type and also have a customType value. Acceptable values:
custom
,mission
,occupation
,outlook
- value string
- Keyword.
- custom
Type string - Custom Type.
- type str
- Each entry can have a type which indicates standard type of that entry. For example, keyword could be of type occupation or outlook. In addition to the standard type, an entry can have a custom type and can give it any name. Such types should have the CUSTOM value as type and also have a customType value. Acceptable values:
custom
,mission
,occupation
,outlook
- value str
- Keyword.
- custom_
type str - Custom Type.
- type String
- Each entry can have a type which indicates standard type of that entry. For example, keyword could be of type occupation or outlook. In addition to the standard type, an entry can have a custom type and can give it any name. Such types should have the CUSTOM value as type and also have a customType value. Acceptable values:
custom
,mission
,occupation
,outlook
- value String
- Keyword.
- custom
Type String - Custom Type.
UserLanguage, UserLanguageArgs
- Custom
Language string - Other language. A user can provide their own language name if there is no corresponding Google III language code. If this is set, LanguageCode can't be set.
- Language
Code string - Defaults to
en
. Language Code. Should be used for storing Google III LanguageCode string representation for language. Illegal values cause SchemaException. - Preference string
- Defaults to
preferred
. If present, controls whether the specified languageCode is the user's preferred language. Allowed values arepreferred
andnot_preferred
.
- Custom
Language string - Other language. A user can provide their own language name if there is no corresponding Google III language code. If this is set, LanguageCode can't be set.
- Language
Code string - Defaults to
en
. Language Code. Should be used for storing Google III LanguageCode string representation for language. Illegal values cause SchemaException. - Preference string
- Defaults to
preferred
. If present, controls whether the specified languageCode is the user's preferred language. Allowed values arepreferred
andnot_preferred
.
- custom
Language String - Other language. A user can provide their own language name if there is no corresponding Google III language code. If this is set, LanguageCode can't be set.
- language
Code String - Defaults to
en
. Language Code. Should be used for storing Google III LanguageCode string representation for language. Illegal values cause SchemaException. - preference String
- Defaults to
preferred
. If present, controls whether the specified languageCode is the user's preferred language. Allowed values arepreferred
andnot_preferred
.
- custom
Language string - Other language. A user can provide their own language name if there is no corresponding Google III language code. If this is set, LanguageCode can't be set.
- language
Code string - Defaults to
en
. Language Code. Should be used for storing Google III LanguageCode string representation for language. Illegal values cause SchemaException. - preference string
- Defaults to
preferred
. If present, controls whether the specified languageCode is the user's preferred language. Allowed values arepreferred
andnot_preferred
.
- custom_
language str - Other language. A user can provide their own language name if there is no corresponding Google III language code. If this is set, LanguageCode can't be set.
- language_
code str - Defaults to
en
. Language Code. Should be used for storing Google III LanguageCode string representation for language. Illegal values cause SchemaException. - preference str
- Defaults to
preferred
. If present, controls whether the specified languageCode is the user's preferred language. Allowed values arepreferred
andnot_preferred
.
- custom
Language String - Other language. A user can provide their own language name if there is no corresponding Google III language code. If this is set, LanguageCode can't be set.
- language
Code String - Defaults to
en
. Language Code. Should be used for storing Google III LanguageCode string representation for language. Illegal values cause SchemaException. - preference String
- Defaults to
preferred
. If present, controls whether the specified languageCode is the user's preferred language. Allowed values arepreferred
andnot_preferred
.
UserLocation, UserLocationArgs
- Type string
- The location type. Acceptable values:
custom
,default
,desk
- Area string
- Textual location. This is most useful for display purposes to concisely describe the location. For example, Mountain View, CA or Near Seattle.
- Building
Id string - Building identifier.
- Custom
Type string - If the location type is custom, this property contains the custom value.
- Desk
Code string - Most specific textual code of individual desk location.
- Floor
Name string - Floor name/number.
- Floor
Section string - Floor section. More specific location within the floor. For example, if a floor is divided into sections A, B, and C, this field would identify one of those values.
- Type string
- The location type. Acceptable values:
custom
,default
,desk
- Area string
- Textual location. This is most useful for display purposes to concisely describe the location. For example, Mountain View, CA or Near Seattle.
- Building
Id string - Building identifier.
- Custom
Type string - If the location type is custom, this property contains the custom value.
- Desk
Code string - Most specific textual code of individual desk location.
- Floor
Name string - Floor name/number.
- Floor
Section string - Floor section. More specific location within the floor. For example, if a floor is divided into sections A, B, and C, this field would identify one of those values.
- type String
- The location type. Acceptable values:
custom
,default
,desk
- area String
- Textual location. This is most useful for display purposes to concisely describe the location. For example, Mountain View, CA or Near Seattle.
- building
Id String - Building identifier.
- custom
Type String - If the location type is custom, this property contains the custom value.
- desk
Code String - Most specific textual code of individual desk location.
- floor
Name String - Floor name/number.
- floor
Section String - Floor section. More specific location within the floor. For example, if a floor is divided into sections A, B, and C, this field would identify one of those values.
- type string
- The location type. Acceptable values:
custom
,default
,desk
- area string
- Textual location. This is most useful for display purposes to concisely describe the location. For example, Mountain View, CA or Near Seattle.
- building
Id string - Building identifier.
- custom
Type string - If the location type is custom, this property contains the custom value.
- desk
Code string - Most specific textual code of individual desk location.
- floor
Name string - Floor name/number.
- floor
Section string - Floor section. More specific location within the floor. For example, if a floor is divided into sections A, B, and C, this field would identify one of those values.
- type str
- The location type. Acceptable values:
custom
,default
,desk
- area str
- Textual location. This is most useful for display purposes to concisely describe the location. For example, Mountain View, CA or Near Seattle.
- building_
id str - Building identifier.
- custom_
type str - If the location type is custom, this property contains the custom value.
- desk_
code str - Most specific textual code of individual desk location.
- floor_
name str - Floor name/number.
- floor_
section str - Floor section. More specific location within the floor. For example, if a floor is divided into sections A, B, and C, this field would identify one of those values.
- type String
- The location type. Acceptable values:
custom
,default
,desk
- area String
- Textual location. This is most useful for display purposes to concisely describe the location. For example, Mountain View, CA or Near Seattle.
- building
Id String - Building identifier.
- custom
Type String - If the location type is custom, this property contains the custom value.
- desk
Code String - Most specific textual code of individual desk location.
- floor
Name String - Floor name/number.
- floor
Section String - Floor section. More specific location within the floor. For example, if a floor is divided into sections A, B, and C, this field would identify one of those values.
UserName, UserNameArgs
- Family
Name string - The user's last name.
- Full
Name string - The user's full name formed by concatenating the first and last name values.
- Given
Name string - The user's first name.
- Family
Name string - The user's last name.
- Full
Name string - The user's full name formed by concatenating the first and last name values.
- Given
Name string - The user's first name.
- family
Name String - The user's last name.
- full
Name String - The user's full name formed by concatenating the first and last name values.
- given
Name String - The user's first name.
- family
Name string - The user's last name.
- full
Name string - The user's full name formed by concatenating the first and last name values.
- given
Name string - The user's first name.
- family_
name str - The user's last name.
- full_
name str - The user's full name formed by concatenating the first and last name values.
- given_
name str - The user's first name.
- family
Name String - The user's last name.
- full
Name String - The user's full name formed by concatenating the first and last name values.
- given
Name String - The user's first name.
UserOrganization, UserOrganizationArgs
- Type string
- The type of organization. Acceptable values:
domain_only
,school
,unknown
,work
. - Cost
Center string - The cost center of the user's organization.
- Custom
Type string - If the value of type is custom, this property contains the custom value.
- Department string
- Specifies the department within the organization, such as sales or engineering.
- Description string
- The description of the organization.
- Domain string
- The domain the organization belongs to.
- Full
Time doubleEquivalent - The full-time equivalent millipercent within the organization (100000 = 100%)
- Location string
- The physical location of the organization. This does not need to be a fully qualified address.
- Name string
- The name of the organization.
- Primary bool
- Indicates if this is the user's primary organization. A user may only have one primary organization.
- Symbol string
- Text string symbol of the organization. For example, the text symbol for Google is GOOG.
- Title string
- The user's title within the organization. For example, member or engineer.
- Type string
- The type of organization. Acceptable values:
domain_only
,school
,unknown
,work
. - Cost
Center string - The cost center of the user's organization.
- Custom
Type string - If the value of type is custom, this property contains the custom value.
- Department string
- Specifies the department within the organization, such as sales or engineering.
- Description string
- The description of the organization.
- Domain string
- The domain the organization belongs to.
- Full
Time float64Equivalent - The full-time equivalent millipercent within the organization (100000 = 100%)
- Location string
- The physical location of the organization. This does not need to be a fully qualified address.
- Name string
- The name of the organization.
- Primary bool
- Indicates if this is the user's primary organization. A user may only have one primary organization.
- Symbol string
- Text string symbol of the organization. For example, the text symbol for Google is GOOG.
- Title string
- The user's title within the organization. For example, member or engineer.
- type String
- The type of organization. Acceptable values:
domain_only
,school
,unknown
,work
. - cost
Center String - The cost center of the user's organization.
- custom
Type String - If the value of type is custom, this property contains the custom value.
- department String
- Specifies the department within the organization, such as sales or engineering.
- description String
- The description of the organization.
- domain String
- The domain the organization belongs to.
- full
Time DoubleEquivalent - The full-time equivalent millipercent within the organization (100000 = 100%)
- location String
- The physical location of the organization. This does not need to be a fully qualified address.
- name String
- The name of the organization.
- primary Boolean
- Indicates if this is the user's primary organization. A user may only have one primary organization.
- symbol String
- Text string symbol of the organization. For example, the text symbol for Google is GOOG.
- title String
- The user's title within the organization. For example, member or engineer.
- type string
- The type of organization. Acceptable values:
domain_only
,school
,unknown
,work
. - cost
Center string - The cost center of the user's organization.
- custom
Type string - If the value of type is custom, this property contains the custom value.
- department string
- Specifies the department within the organization, such as sales or engineering.
- description string
- The description of the organization.
- domain string
- The domain the organization belongs to.
- full
Time numberEquivalent - The full-time equivalent millipercent within the organization (100000 = 100%)
- location string
- The physical location of the organization. This does not need to be a fully qualified address.
- name string
- The name of the organization.
- primary boolean
- Indicates if this is the user's primary organization. A user may only have one primary organization.
- symbol string
- Text string symbol of the organization. For example, the text symbol for Google is GOOG.
- title string
- The user's title within the organization. For example, member or engineer.
- type str
- The type of organization. Acceptable values:
domain_only
,school
,unknown
,work
. - cost_
center str - The cost center of the user's organization.
- custom_
type str - If the value of type is custom, this property contains the custom value.
- department str
- Specifies the department within the organization, such as sales or engineering.
- description str
- The description of the organization.
- domain str
- The domain the organization belongs to.
- full_
time_ floatequivalent - The full-time equivalent millipercent within the organization (100000 = 100%)
- location str
- The physical location of the organization. This does not need to be a fully qualified address.
- name str
- The name of the organization.
- primary bool
- Indicates if this is the user's primary organization. A user may only have one primary organization.
- symbol str
- Text string symbol of the organization. For example, the text symbol for Google is GOOG.
- title str
- The user's title within the organization. For example, member or engineer.
- type String
- The type of organization. Acceptable values:
domain_only
,school
,unknown
,work
. - cost
Center String - The cost center of the user's organization.
- custom
Type String - If the value of type is custom, this property contains the custom value.
- department String
- Specifies the department within the organization, such as sales or engineering.
- description String
- The description of the organization.
- domain String
- The domain the organization belongs to.
- full
Time NumberEquivalent - The full-time equivalent millipercent within the organization (100000 = 100%)
- location String
- The physical location of the organization. This does not need to be a fully qualified address.
- name String
- The name of the organization.
- primary Boolean
- Indicates if this is the user's primary organization. A user may only have one primary organization.
- symbol String
- Text string symbol of the organization. For example, the text symbol for Google is GOOG.
- title String
- The user's title within the organization. For example, member or engineer.
UserPhone, UserPhoneArgs
- Type string
- The type of phone number. Acceptable values:
assistant
,callback
,car
,company_main
,custom
,grand_central
,home
,home_fax
,isdn
,main
,mobile
,other
,other_fax
,pager
,radio
,telex
,tty_tdd
,work
,work_fax
,work_mobile
,work_pager
. - Value string
- A human-readable phone number. It may be in any telephone number format.
- Custom
Type string - If the phone number type is custom, this property contains the custom value and must be set.
- Primary bool
- Indicates if this is the user's primary phone number. A user may only have one primary phone number.
- Type string
- The type of phone number. Acceptable values:
assistant
,callback
,car
,company_main
,custom
,grand_central
,home
,home_fax
,isdn
,main
,mobile
,other
,other_fax
,pager
,radio
,telex
,tty_tdd
,work
,work_fax
,work_mobile
,work_pager
. - Value string
- A human-readable phone number. It may be in any telephone number format.
- Custom
Type string - If the phone number type is custom, this property contains the custom value and must be set.
- Primary bool
- Indicates if this is the user's primary phone number. A user may only have one primary phone number.
- type String
- The type of phone number. Acceptable values:
assistant
,callback
,car
,company_main
,custom
,grand_central
,home
,home_fax
,isdn
,main
,mobile
,other
,other_fax
,pager
,radio
,telex
,tty_tdd
,work
,work_fax
,work_mobile
,work_pager
. - value String
- A human-readable phone number. It may be in any telephone number format.
- custom
Type String - If the phone number type is custom, this property contains the custom value and must be set.
- primary Boolean
- Indicates if this is the user's primary phone number. A user may only have one primary phone number.
- type string
- The type of phone number. Acceptable values:
assistant
,callback
,car
,company_main
,custom
,grand_central
,home
,home_fax
,isdn
,main
,mobile
,other
,other_fax
,pager
,radio
,telex
,tty_tdd
,work
,work_fax
,work_mobile
,work_pager
. - value string
- A human-readable phone number. It may be in any telephone number format.
- custom
Type string - If the phone number type is custom, this property contains the custom value and must be set.
- primary boolean
- Indicates if this is the user's primary phone number. A user may only have one primary phone number.
- type str
- The type of phone number. Acceptable values:
assistant
,callback
,car
,company_main
,custom
,grand_central
,home
,home_fax
,isdn
,main
,mobile
,other
,other_fax
,pager
,radio
,telex
,tty_tdd
,work
,work_fax
,work_mobile
,work_pager
. - value str
- A human-readable phone number. It may be in any telephone number format.
- custom_
type str - If the phone number type is custom, this property contains the custom value and must be set.
- primary bool
- Indicates if this is the user's primary phone number. A user may only have one primary phone number.
- type String
- The type of phone number. Acceptable values:
assistant
,callback
,car
,company_main
,custom
,grand_central
,home
,home_fax
,isdn
,main
,mobile
,other
,other_fax
,pager
,radio
,telex
,tty_tdd
,work
,work_fax
,work_mobile
,work_pager
. - value String
- A human-readable phone number. It may be in any telephone number format.
- custom
Type String - If the phone number type is custom, this property contains the custom value and must be set.
- primary Boolean
- Indicates if this is the user's primary phone number. A user may only have one primary phone number.
UserPosixAccount, UserPosixAccountArgs
- Account
Id string - A POSIX account field identifier.
- Gecos string
- The GECOS (user information) for this account.
- Gid string
- The default group ID.
- Home
Directory string - The path to the home directory for this account.
- Operating
System stringType - The operating system type for this account. Acceptable values:
linux
,unspecified
,windows
. - Primary bool
- If this is user's primary account within the SystemId.
- Shell string
- The path to the login shell for this account.
- System
Id string - System identifier for which account Username or Uid apply to.
- Uid string
- The POSIX compliant user ID.
- Username string
- The username of the account.
- Account
Id string - A POSIX account field identifier.
- Gecos string
- The GECOS (user information) for this account.
- Gid string
- The default group ID.
- Home
Directory string - The path to the home directory for this account.
- Operating
System stringType - The operating system type for this account. Acceptable values:
linux
,unspecified
,windows
. - Primary bool
- If this is user's primary account within the SystemId.
- Shell string
- The path to the login shell for this account.
- System
Id string - System identifier for which account Username or Uid apply to.
- Uid string
- The POSIX compliant user ID.
- Username string
- The username of the account.
- account
Id String - A POSIX account field identifier.
- gecos String
- The GECOS (user information) for this account.
- gid String
- The default group ID.
- home
Directory String - The path to the home directory for this account.
- operating
System StringType - The operating system type for this account. Acceptable values:
linux
,unspecified
,windows
. - primary Boolean
- If this is user's primary account within the SystemId.
- shell String
- The path to the login shell for this account.
- system
Id String - System identifier for which account Username or Uid apply to.
- uid String
- The POSIX compliant user ID.
- username String
- The username of the account.
- account
Id string - A POSIX account field identifier.
- gecos string
- The GECOS (user information) for this account.
- gid string
- The default group ID.
- home
Directory string - The path to the home directory for this account.
- operating
System stringType - The operating system type for this account. Acceptable values:
linux
,unspecified
,windows
. - primary boolean
- If this is user's primary account within the SystemId.
- shell string
- The path to the login shell for this account.
- system
Id string - System identifier for which account Username or Uid apply to.
- uid string
- The POSIX compliant user ID.
- username string
- The username of the account.
- account_
id str - A POSIX account field identifier.
- gecos str
- The GECOS (user information) for this account.
- gid str
- The default group ID.
- home_
directory str - The path to the home directory for this account.
- operating_
system_ strtype - The operating system type for this account. Acceptable values:
linux
,unspecified
,windows
. - primary bool
- If this is user's primary account within the SystemId.
- shell str
- The path to the login shell for this account.
- system_
id str - System identifier for which account Username or Uid apply to.
- uid str
- The POSIX compliant user ID.
- username str
- The username of the account.
- account
Id String - A POSIX account field identifier.
- gecos String
- The GECOS (user information) for this account.
- gid String
- The default group ID.
- home
Directory String - The path to the home directory for this account.
- operating
System StringType - The operating system type for this account. Acceptable values:
linux
,unspecified
,windows
. - primary Boolean
- If this is user's primary account within the SystemId.
- shell String
- The path to the login shell for this account.
- system
Id String - System identifier for which account Username or Uid apply to.
- uid String
- The POSIX compliant user ID.
- username String
- The username of the account.
UserRelation, UserRelationArgs
- Type string
- The type of relation. Acceptable values:
admin_assistant
,assistant
,brother
,child
,custom
,domestic_partner
,dotted_line_manager
,exec_assistant
,father
,friend
,manager
,mother
,parent
,partner
,referred_by
,relative
,sister
,spouse
. - Value string
- The name of the person the user is related to.
- Custom
Type string - If the value of type is custom, this property contains the custom type string.
- Type string
- The type of relation. Acceptable values:
admin_assistant
,assistant
,brother
,child
,custom
,domestic_partner
,dotted_line_manager
,exec_assistant
,father
,friend
,manager
,mother
,parent
,partner
,referred_by
,relative
,sister
,spouse
. - Value string
- The name of the person the user is related to.
- Custom
Type string - If the value of type is custom, this property contains the custom type string.
- type String
- The type of relation. Acceptable values:
admin_assistant
,assistant
,brother
,child
,custom
,domestic_partner
,dotted_line_manager
,exec_assistant
,father
,friend
,manager
,mother
,parent
,partner
,referred_by
,relative
,sister
,spouse
. - value String
- The name of the person the user is related to.
- custom
Type String - If the value of type is custom, this property contains the custom type string.
- type string
- The type of relation. Acceptable values:
admin_assistant
,assistant
,brother
,child
,custom
,domestic_partner
,dotted_line_manager
,exec_assistant
,father
,friend
,manager
,mother
,parent
,partner
,referred_by
,relative
,sister
,spouse
. - value string
- The name of the person the user is related to.
- custom
Type string - If the value of type is custom, this property contains the custom type string.
- type str
- The type of relation. Acceptable values:
admin_assistant
,assistant
,brother
,child
,custom
,domestic_partner
,dotted_line_manager
,exec_assistant
,father
,friend
,manager
,mother
,parent
,partner
,referred_by
,relative
,sister
,spouse
. - value str
- The name of the person the user is related to.
- custom_
type str - If the value of type is custom, this property contains the custom type string.
- type String
- The type of relation. Acceptable values:
admin_assistant
,assistant
,brother
,child
,custom
,domestic_partner
,dotted_line_manager
,exec_assistant
,father
,friend
,manager
,mother
,parent
,partner
,referred_by
,relative
,sister
,spouse
. - value String
- The name of the person the user is related to.
- custom
Type String - If the value of type is custom, this property contains the custom type string.
UserSshPublicKey, UserSshPublicKeyArgs
- Key string
- An SSH public key.
- Expiration
Time stringUsec - An expiration time in microseconds since epoch.
- Fingerprint string
- A SHA-256 fingerprint of the SSH public key.
- Key string
- An SSH public key.
- Expiration
Time stringUsec - An expiration time in microseconds since epoch.
- Fingerprint string
- A SHA-256 fingerprint of the SSH public key.
- key String
- An SSH public key.
- expiration
Time StringUsec - An expiration time in microseconds since epoch.
- fingerprint String
- A SHA-256 fingerprint of the SSH public key.
- key string
- An SSH public key.
- expiration
Time stringUsec - An expiration time in microseconds since epoch.
- fingerprint string
- A SHA-256 fingerprint of the SSH public key.
- key str
- An SSH public key.
- expiration_
time_ strusec - An expiration time in microseconds since epoch.
- fingerprint str
- A SHA-256 fingerprint of the SSH public key.
- key String
- An SSH public key.
- expiration
Time StringUsec - An expiration time in microseconds since epoch.
- fingerprint String
- A SHA-256 fingerprint of the SSH public key.
UserTimeouts, UserTimeoutsArgs
UserWebsite, UserWebsiteArgs
- Type string
- The type or purpose of the website. For example, a website could be labeled as home or blog. Alternatively, an entry can have a custom type Custom types must have a customType value. Acceptable values:
app_install_page
,blog
,custom
,ftp
,home
,home_page
,other
,profile
,reservations
,resume
,work
. - Value string
- The URL of the website.
- Custom
Type string - The custom type. Only used if the type is custom.
- Primary bool
- If this is user's primary website or not.
- Type string
- The type or purpose of the website. For example, a website could be labeled as home or blog. Alternatively, an entry can have a custom type Custom types must have a customType value. Acceptable values:
app_install_page
,blog
,custom
,ftp
,home
,home_page
,other
,profile
,reservations
,resume
,work
. - Value string
- The URL of the website.
- Custom
Type string - The custom type. Only used if the type is custom.
- Primary bool
- If this is user's primary website or not.
- type String
- The type or purpose of the website. For example, a website could be labeled as home or blog. Alternatively, an entry can have a custom type Custom types must have a customType value. Acceptable values:
app_install_page
,blog
,custom
,ftp
,home
,home_page
,other
,profile
,reservations
,resume
,work
. - value String
- The URL of the website.
- custom
Type String - The custom type. Only used if the type is custom.
- primary Boolean
- If this is user's primary website or not.
- type string
- The type or purpose of the website. For example, a website could be labeled as home or blog. Alternatively, an entry can have a custom type Custom types must have a customType value. Acceptable values:
app_install_page
,blog
,custom
,ftp
,home
,home_page
,other
,profile
,reservations
,resume
,work
. - value string
- The URL of the website.
- custom
Type string - The custom type. Only used if the type is custom.
- primary boolean
- If this is user's primary website or not.
- type str
- The type or purpose of the website. For example, a website could be labeled as home or blog. Alternatively, an entry can have a custom type Custom types must have a customType value. Acceptable values:
app_install_page
,blog
,custom
,ftp
,home
,home_page
,other
,profile
,reservations
,resume
,work
. - value str
- The URL of the website.
- custom_
type str - The custom type. Only used if the type is custom.
- primary bool
- If this is user's primary website or not.
- type String
- The type or purpose of the website. For example, a website could be labeled as home or blog. Alternatively, an entry can have a custom type Custom types must have a customType value. Acceptable values:
app_install_page
,blog
,custom
,ftp
,home
,home_page
,other
,profile
,reservations
,resume
,work
. - value String
- The URL of the website.
- custom
Type String - The custom type. Only used if the type is custom.
- primary Boolean
- If this is user's primary website or not.
Import
$ pulumi import googleworkspace:index/user:User dwight 123456789012345678901
or with email as id
$ pulumi import googleworkspace:index/user:User dwight dwight.schrute@example.com
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.