googleworkspace.Schema
Explore with Pulumi AI
Schema resource manages Google Workspace Schemas. Schema resides under the https://www.googleapis.com/auth/admin.directory.userschema
client scope.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as googleworkspace from "@pulumi/googleworkspace";
const birthday = new googleworkspace.Schema("birthday", {
fields: [{
fieldName: "birthday",
fieldType: "DATE",
}],
schemaName: "birthday",
});
import pulumi
import pulumi_googleworkspace as googleworkspace
birthday = googleworkspace.Schema("birthday",
fields=[{
"field_name": "birthday",
"field_type": "DATE",
}],
schema_name="birthday")
package main
import (
"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 {
_, err := googleworkspace.NewSchema(ctx, "birthday", &googleworkspace.SchemaArgs{
Fields: googleworkspace.SchemaFieldArray{
&googleworkspace.SchemaFieldArgs{
FieldName: pulumi.String("birthday"),
FieldType: pulumi.String("DATE"),
},
},
SchemaName: pulumi.String("birthday"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Googleworkspace = Pulumi.Googleworkspace;
return await Deployment.RunAsync(() =>
{
var birthday = new Googleworkspace.Schema("birthday", new()
{
Fields = new[]
{
new Googleworkspace.Inputs.SchemaFieldArgs
{
FieldName = "birthday",
FieldType = "DATE",
},
},
SchemaName = "birthday",
});
});
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 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()
.fields(SchemaFieldArgs.builder()
.fieldName("birthday")
.fieldType("DATE")
.build())
.schemaName("birthday")
.build());
}
}
resources:
birthday:
type: googleworkspace:Schema
properties:
fields:
- fieldName: birthday
fieldType: DATE
schemaName: birthday
Create Schema Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Schema(name: string, args: SchemaArgs, opts?: CustomResourceOptions);
@overload
def Schema(resource_name: str,
args: SchemaArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Schema(resource_name: str,
opts: Optional[ResourceOptions] = None,
fields: Optional[Sequence[SchemaFieldArgs]] = None,
schema_name: Optional[str] = None,
display_name: Optional[str] = None,
timeouts: Optional[SchemaTimeoutsArgs] = None)
func NewSchema(ctx *Context, name string, args SchemaArgs, opts ...ResourceOption) (*Schema, error)
public Schema(string name, SchemaArgs args, CustomResourceOptions? opts = null)
public Schema(String name, SchemaArgs args)
public Schema(String name, SchemaArgs args, CustomResourceOptions options)
type: googleworkspace:Schema
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 SchemaArgs
- 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 SchemaArgs
- 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 SchemaArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SchemaArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SchemaArgs
- 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 schemaResource = new Googleworkspace.Schema("schemaResource", new()
{
Fields = new[]
{
new Googleworkspace.Inputs.SchemaFieldArgs
{
FieldName = "string",
FieldType = "string",
DisplayName = "string",
Etag = "string",
FieldId = "string",
Indexed = false,
MultiValued = false,
NumericIndexingSpec = new Googleworkspace.Inputs.SchemaFieldNumericIndexingSpecArgs
{
MaxValue = 0,
MinValue = 0,
},
ReadAccessType = "string",
},
},
SchemaName = "string",
DisplayName = "string",
Timeouts = new Googleworkspace.Inputs.SchemaTimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
});
example, err := googleworkspace.NewSchema(ctx, "schemaResource", &googleworkspace.SchemaArgs{
Fields: .SchemaFieldArray{
&.SchemaFieldArgs{
FieldName: pulumi.String("string"),
FieldType: pulumi.String("string"),
DisplayName: pulumi.String("string"),
Etag: pulumi.String("string"),
FieldId: pulumi.String("string"),
Indexed: pulumi.Bool(false),
MultiValued: pulumi.Bool(false),
NumericIndexingSpec: &.SchemaFieldNumericIndexingSpecArgs{
MaxValue: pulumi.Float64(0),
MinValue: pulumi.Float64(0),
},
ReadAccessType: pulumi.String("string"),
},
},
SchemaName: pulumi.String("string"),
DisplayName: pulumi.String("string"),
Timeouts: &.SchemaTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
var schemaResource = new Schema("schemaResource", SchemaArgs.builder()
.fields(SchemaFieldArgs.builder()
.fieldName("string")
.fieldType("string")
.displayName("string")
.etag("string")
.fieldId("string")
.indexed(false)
.multiValued(false)
.numericIndexingSpec(SchemaFieldNumericIndexingSpecArgs.builder()
.maxValue(0)
.minValue(0)
.build())
.readAccessType("string")
.build())
.schemaName("string")
.displayName("string")
.timeouts(SchemaTimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.build());
schema_resource = googleworkspace.Schema("schemaResource",
fields=[{
"field_name": "string",
"field_type": "string",
"display_name": "string",
"etag": "string",
"field_id": "string",
"indexed": False,
"multi_valued": False,
"numeric_indexing_spec": {
"max_value": 0,
"min_value": 0,
},
"read_access_type": "string",
}],
schema_name="string",
display_name="string",
timeouts={
"create": "string",
"delete": "string",
"update": "string",
})
const schemaResource = new googleworkspace.Schema("schemaResource", {
fields: [{
fieldName: "string",
fieldType: "string",
displayName: "string",
etag: "string",
fieldId: "string",
indexed: false,
multiValued: false,
numericIndexingSpec: {
maxValue: 0,
minValue: 0,
},
readAccessType: "string",
}],
schemaName: "string",
displayName: "string",
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
});
type: googleworkspace:Schema
properties:
displayName: string
fields:
- displayName: string
etag: string
fieldId: string
fieldName: string
fieldType: string
indexed: false
multiValued: false
numericIndexingSpec:
maxValue: 0
minValue: 0
readAccessType: string
schemaName: string
timeouts:
create: string
delete: string
update: string
Schema 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 Schema resource accepts the following input properties:
- Fields
List<Schema
Field> - A list of fields in the schema.
- Schema
Name string - The schema's name.
- Display
Name string - Display name for the schema.
- Timeouts
Schema
Timeouts
- Fields
[]Schema
Field Args - A list of fields in the schema.
- Schema
Name string - The schema's name.
- Display
Name string - Display name for the schema.
- Timeouts
Schema
Timeouts Args
- fields
List<Schema
Field> - A list of fields in the schema.
- schema
Name String - The schema's name.
- display
Name String - Display name for the schema.
- timeouts
Schema
Timeouts
- fields
Schema
Field[] - A list of fields in the schema.
- schema
Name string - The schema's name.
- display
Name string - Display name for the schema.
- timeouts
Schema
Timeouts
- fields
Sequence[Schema
Field Args] - A list of fields in the schema.
- schema_
name str - The schema's name.
- display_
name str - Display name for the schema.
- timeouts
Schema
Timeouts Args
- fields List<Property Map>
- A list of fields in the schema.
- schema
Name String - The schema's name.
- display
Name String - Display name for the schema.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the Schema resource produces the following output properties:
Look up Existing Schema Resource
Get an existing Schema 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?: SchemaState, opts?: CustomResourceOptions): Schema
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
etag: Optional[str] = None,
fields: Optional[Sequence[SchemaFieldArgs]] = None,
schema_id: Optional[str] = None,
schema_name: Optional[str] = None,
timeouts: Optional[SchemaTimeoutsArgs] = None) -> Schema
func GetSchema(ctx *Context, name string, id IDInput, state *SchemaState, opts ...ResourceOption) (*Schema, error)
public static Schema Get(string name, Input<string> id, SchemaState? state, CustomResourceOptions? opts = null)
public static Schema get(String name, Output<String> id, SchemaState state, CustomResourceOptions options)
resources: _: type: googleworkspace:Schema 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.
- Display
Name string - Display name for the schema.
- Etag string
- ETag of the resource.
- Fields
List<Schema
Field> - A list of fields in the schema.
- Schema
Id string - The unique identifier of the schema.
- Schema
Name string - The schema's name.
- Timeouts
Schema
Timeouts
- Display
Name string - Display name for the schema.
- Etag string
- ETag of the resource.
- Fields
[]Schema
Field Args - A list of fields in the schema.
- Schema
Id string - The unique identifier of the schema.
- Schema
Name string - The schema's name.
- Timeouts
Schema
Timeouts Args
- display
Name String - Display name for the schema.
- etag String
- ETag of the resource.
- fields
List<Schema
Field> - A list of fields in the schema.
- schema
Id String - The unique identifier of the schema.
- schema
Name String - The schema's name.
- timeouts
Schema
Timeouts
- display
Name string - Display name for the schema.
- etag string
- ETag of the resource.
- fields
Schema
Field[] - A list of fields in the schema.
- schema
Id string - The unique identifier of the schema.
- schema
Name string - The schema's name.
- timeouts
Schema
Timeouts
- display_
name str - Display name for the schema.
- etag str
- ETag of the resource.
- fields
Sequence[Schema
Field Args] - A list of fields in the schema.
- schema_
id str - The unique identifier of the schema.
- schema_
name str - The schema's name.
- timeouts
Schema
Timeouts Args
- display
Name String - Display name for the schema.
- etag String
- ETag of the resource.
- fields List<Property Map>
- A list of fields in the schema.
- schema
Id String - The unique identifier of the schema.
- schema
Name String - The schema's name.
- timeouts Property Map
Supporting Types
SchemaField, SchemaFieldArgs
- Field
Name string - The name of the field.
- Field
Type string - The type of the field. Acceptable values are:
-
BOOL
-DATE
-DOUBLE
-EMAIL
-INT64
-PHONE
-STRING
- Display
Name string - Display Name of the field.
- Etag string
- The ETag of the field.
- Field
Id string - The unique identifier of the field.
- Indexed bool
- Defaults to
true
. Boolean specifying whether the field is indexed or not. - Multi
Valued bool - Defaults to
false
. A boolean specifying whether this is a multi-valued field or not. - Numeric
Indexing SchemaSpec Field Numeric Indexing Spec - Indexing spec for a numeric field. By default, only exact match queries will be supported for numeric fields. Setting the numericIndexingSpec allows range queries to be supported.
- Read
Access stringType - Defaults to
ALL_DOMAIN_USERS
. Specifies who can view values of this field. See Retrieve users as a non-administrator for more information. Acceptable values are: -ADMINS_AND_SELF
-ALL_DOMAIN_USERS
Note: It may take up to 24 hours for changes to this field to be reflected.
- Field
Name string - The name of the field.
- Field
Type string - The type of the field. Acceptable values are:
-
BOOL
-DATE
-DOUBLE
-EMAIL
-INT64
-PHONE
-STRING
- Display
Name string - Display Name of the field.
- Etag string
- The ETag of the field.
- Field
Id string - The unique identifier of the field.
- Indexed bool
- Defaults to
true
. Boolean specifying whether the field is indexed or not. - Multi
Valued bool - Defaults to
false
. A boolean specifying whether this is a multi-valued field or not. - Numeric
Indexing SchemaSpec Field Numeric Indexing Spec - Indexing spec for a numeric field. By default, only exact match queries will be supported for numeric fields. Setting the numericIndexingSpec allows range queries to be supported.
- Read
Access stringType - Defaults to
ALL_DOMAIN_USERS
. Specifies who can view values of this field. See Retrieve users as a non-administrator for more information. Acceptable values are: -ADMINS_AND_SELF
-ALL_DOMAIN_USERS
Note: It may take up to 24 hours for changes to this field to be reflected.
- field
Name String - The name of the field.
- field
Type String - The type of the field. Acceptable values are:
-
BOOL
-DATE
-DOUBLE
-EMAIL
-INT64
-PHONE
-STRING
- display
Name String - Display Name of the field.
- etag String
- The ETag of the field.
- field
Id String - The unique identifier of the field.
- indexed Boolean
- Defaults to
true
. Boolean specifying whether the field is indexed or not. - multi
Valued Boolean - Defaults to
false
. A boolean specifying whether this is a multi-valued field or not. - numeric
Indexing SchemaSpec Field Numeric Indexing Spec - Indexing spec for a numeric field. By default, only exact match queries will be supported for numeric fields. Setting the numericIndexingSpec allows range queries to be supported.
- read
Access StringType - Defaults to
ALL_DOMAIN_USERS
. Specifies who can view values of this field. See Retrieve users as a non-administrator for more information. Acceptable values are: -ADMINS_AND_SELF
-ALL_DOMAIN_USERS
Note: It may take up to 24 hours for changes to this field to be reflected.
- field
Name string - The name of the field.
- field
Type string - The type of the field. Acceptable values are:
-
BOOL
-DATE
-DOUBLE
-EMAIL
-INT64
-PHONE
-STRING
- display
Name string - Display Name of the field.
- etag string
- The ETag of the field.
- field
Id string - The unique identifier of the field.
- indexed boolean
- Defaults to
true
. Boolean specifying whether the field is indexed or not. - multi
Valued boolean - Defaults to
false
. A boolean specifying whether this is a multi-valued field or not. - numeric
Indexing SchemaSpec Field Numeric Indexing Spec - Indexing spec for a numeric field. By default, only exact match queries will be supported for numeric fields. Setting the numericIndexingSpec allows range queries to be supported.
- read
Access stringType - Defaults to
ALL_DOMAIN_USERS
. Specifies who can view values of this field. See Retrieve users as a non-administrator for more information. Acceptable values are: -ADMINS_AND_SELF
-ALL_DOMAIN_USERS
Note: It may take up to 24 hours for changes to this field to be reflected.
- field_
name str - The name of the field.
- field_
type str - The type of the field. Acceptable values are:
-
BOOL
-DATE
-DOUBLE
-EMAIL
-INT64
-PHONE
-STRING
- display_
name str - Display Name of the field.
- etag str
- The ETag of the field.
- field_
id str - The unique identifier of the field.
- indexed bool
- Defaults to
true
. Boolean specifying whether the field is indexed or not. - multi_
valued bool - Defaults to
false
. A boolean specifying whether this is a multi-valued field or not. - numeric_
indexing_ Schemaspec Field Numeric Indexing Spec - Indexing spec for a numeric field. By default, only exact match queries will be supported for numeric fields. Setting the numericIndexingSpec allows range queries to be supported.
- read_
access_ strtype - Defaults to
ALL_DOMAIN_USERS
. Specifies who can view values of this field. See Retrieve users as a non-administrator for more information. Acceptable values are: -ADMINS_AND_SELF
-ALL_DOMAIN_USERS
Note: It may take up to 24 hours for changes to this field to be reflected.
- field
Name String - The name of the field.
- field
Type String - The type of the field. Acceptable values are:
-
BOOL
-DATE
-DOUBLE
-EMAIL
-INT64
-PHONE
-STRING
- display
Name String - Display Name of the field.
- etag String
- The ETag of the field.
- field
Id String - The unique identifier of the field.
- indexed Boolean
- Defaults to
true
. Boolean specifying whether the field is indexed or not. - multi
Valued Boolean - Defaults to
false
. A boolean specifying whether this is a multi-valued field or not. - numeric
Indexing Property MapSpec - Indexing spec for a numeric field. By default, only exact match queries will be supported for numeric fields. Setting the numericIndexingSpec allows range queries to be supported.
- read
Access StringType - Defaults to
ALL_DOMAIN_USERS
. Specifies who can view values of this field. See Retrieve users as a non-administrator for more information. Acceptable values are: -ADMINS_AND_SELF
-ALL_DOMAIN_USERS
Note: It may take up to 24 hours for changes to this field to be reflected.
SchemaFieldNumericIndexingSpec, SchemaFieldNumericIndexingSpecArgs
- Max
Value double - Maximum value of this field. This is meant to be indicative rather than enforced. Values outside this range will still be indexed, but search may not be as performant.
- Min
Value double - Minimum value of this field. This is meant to be indicative rather than enforced. Values outside this range will still be indexed, but search may not be as performant.
- Max
Value float64 - Maximum value of this field. This is meant to be indicative rather than enforced. Values outside this range will still be indexed, but search may not be as performant.
- Min
Value float64 - Minimum value of this field. This is meant to be indicative rather than enforced. Values outside this range will still be indexed, but search may not be as performant.
- max
Value Double - Maximum value of this field. This is meant to be indicative rather than enforced. Values outside this range will still be indexed, but search may not be as performant.
- min
Value Double - Minimum value of this field. This is meant to be indicative rather than enforced. Values outside this range will still be indexed, but search may not be as performant.
- max
Value number - Maximum value of this field. This is meant to be indicative rather than enforced. Values outside this range will still be indexed, but search may not be as performant.
- min
Value number - Minimum value of this field. This is meant to be indicative rather than enforced. Values outside this range will still be indexed, but search may not be as performant.
- max_
value float - Maximum value of this field. This is meant to be indicative rather than enforced. Values outside this range will still be indexed, but search may not be as performant.
- min_
value float - Minimum value of this field. This is meant to be indicative rather than enforced. Values outside this range will still be indexed, but search may not be as performant.
- max
Value Number - Maximum value of this field. This is meant to be indicative rather than enforced. Values outside this range will still be indexed, but search may not be as performant.
- min
Value Number - Minimum value of this field. This is meant to be indicative rather than enforced. Values outside this range will still be indexed, but search may not be as performant.
SchemaTimeouts, SchemaTimeoutsArgs
Import
$ pulumi import googleworkspace:index/schema:Schema birthday Ab0C_DEFGhIJKLmNopQ1Rs==
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.