googleworkspace.OrgUnit
Explore with Pulumi AI
OrgUnit resource manages Google Workspace OrgUnits. Org Unit resides under the https://www.googleapis.com/auth/admin.directory.orgunit
client scope.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as googleworkspace from "@pulumi/googleworkspace";
const org = new googleworkspace.OrgUnit("org", {
description: "paper company",
parentOrgUnitPath: "/",
});
import pulumi
import pulumi_googleworkspace as googleworkspace
org = googleworkspace.OrgUnit("org",
description="paper company",
parent_org_unit_path="/")
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.NewOrgUnit(ctx, "org", &googleworkspace.OrgUnitArgs{
Description: pulumi.String("paper company"),
ParentOrgUnitPath: pulumi.String("/"),
})
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 org = new Googleworkspace.OrgUnit("org", new()
{
Description = "paper company",
ParentOrgUnitPath = "/",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.googleworkspace.OrgUnit;
import com.pulumi.googleworkspace.OrgUnitArgs;
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 org = new OrgUnit("org", OrgUnitArgs.builder()
.description("paper company")
.parentOrgUnitPath("/")
.build());
}
}
resources:
org:
type: googleworkspace:OrgUnit
properties:
description: paper company
parentOrgUnitPath: /
Create OrgUnit Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OrgUnit(name: string, args?: OrgUnitArgs, opts?: CustomResourceOptions);
@overload
def OrgUnit(resource_name: str,
args: Optional[OrgUnitArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def OrgUnit(resource_name: str,
opts: Optional[ResourceOptions] = None,
block_inheritance: Optional[bool] = None,
description: Optional[str] = None,
name: Optional[str] = None,
parent_org_unit_id: Optional[str] = None,
parent_org_unit_path: Optional[str] = None)
func NewOrgUnit(ctx *Context, name string, args *OrgUnitArgs, opts ...ResourceOption) (*OrgUnit, error)
public OrgUnit(string name, OrgUnitArgs? args = null, CustomResourceOptions? opts = null)
public OrgUnit(String name, OrgUnitArgs args)
public OrgUnit(String name, OrgUnitArgs args, CustomResourceOptions options)
type: googleworkspace:OrgUnit
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 OrgUnitArgs
- 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 OrgUnitArgs
- 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 OrgUnitArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OrgUnitArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OrgUnitArgs
- 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 orgUnitResource = new Googleworkspace.OrgUnit("orgUnitResource", new()
{
BlockInheritance = false,
Description = "string",
Name = "string",
ParentOrgUnitId = "string",
ParentOrgUnitPath = "string",
});
example, err := googleworkspace.NewOrgUnit(ctx, "orgUnitResource", &googleworkspace.OrgUnitArgs{
BlockInheritance: pulumi.Bool(false),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
ParentOrgUnitId: pulumi.String("string"),
ParentOrgUnitPath: pulumi.String("string"),
})
var orgUnitResource = new OrgUnit("orgUnitResource", OrgUnitArgs.builder()
.blockInheritance(false)
.description("string")
.name("string")
.parentOrgUnitId("string")
.parentOrgUnitPath("string")
.build());
org_unit_resource = googleworkspace.OrgUnit("orgUnitResource",
block_inheritance=False,
description="string",
name="string",
parent_org_unit_id="string",
parent_org_unit_path="string")
const orgUnitResource = new googleworkspace.OrgUnit("orgUnitResource", {
blockInheritance: false,
description: "string",
name: "string",
parentOrgUnitId: "string",
parentOrgUnitPath: "string",
});
type: googleworkspace:OrgUnit
properties:
blockInheritance: false
description: string
name: string
parentOrgUnitId: string
parentOrgUnitPath: string
OrgUnit 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 OrgUnit resource accepts the following input properties:
- Block
Inheritance bool - Defaults to
false
. Determines if a sub-organizational unit can inherit the settings of the parent organization. False means a sub-organizational unit inherits the settings of the nearest parent organizational unit. For more information on inheritance and users in an organization structure, see the administration help center. - Description string
- Description of the organizational unit.
- Name string
- The organizational unit's path name. For example, an organizational unit's name within the /corp/support/salessupport parent path is salessupport.
- Parent
Org stringUnit Id - The unique ID of the parent organizational unit.
- Parent
Org stringUnit Path - The organizational unit's parent path. For example, /corp/sales is the parent path for /corp/sales/sales_support organizational unit.
- Block
Inheritance bool - Defaults to
false
. Determines if a sub-organizational unit can inherit the settings of the parent organization. False means a sub-organizational unit inherits the settings of the nearest parent organizational unit. For more information on inheritance and users in an organization structure, see the administration help center. - Description string
- Description of the organizational unit.
- Name string
- The organizational unit's path name. For example, an organizational unit's name within the /corp/support/salessupport parent path is salessupport.
- Parent
Org stringUnit Id - The unique ID of the parent organizational unit.
- Parent
Org stringUnit Path - The organizational unit's parent path. For example, /corp/sales is the parent path for /corp/sales/sales_support organizational unit.
- block
Inheritance Boolean - Defaults to
false
. Determines if a sub-organizational unit can inherit the settings of the parent organization. False means a sub-organizational unit inherits the settings of the nearest parent organizational unit. For more information on inheritance and users in an organization structure, see the administration help center. - description String
- Description of the organizational unit.
- name String
- The organizational unit's path name. For example, an organizational unit's name within the /corp/support/salessupport parent path is salessupport.
- parent
Org StringUnit Id - The unique ID of the parent organizational unit.
- parent
Org StringUnit Path - The organizational unit's parent path. For example, /corp/sales is the parent path for /corp/sales/sales_support organizational unit.
- block
Inheritance boolean - Defaults to
false
. Determines if a sub-organizational unit can inherit the settings of the parent organization. False means a sub-organizational unit inherits the settings of the nearest parent organizational unit. For more information on inheritance and users in an organization structure, see the administration help center. - description string
- Description of the organizational unit.
- name string
- The organizational unit's path name. For example, an organizational unit's name within the /corp/support/salessupport parent path is salessupport.
- parent
Org stringUnit Id - The unique ID of the parent organizational unit.
- parent
Org stringUnit Path - The organizational unit's parent path. For example, /corp/sales is the parent path for /corp/sales/sales_support organizational unit.
- block_
inheritance bool - Defaults to
false
. Determines if a sub-organizational unit can inherit the settings of the parent organization. False means a sub-organizational unit inherits the settings of the nearest parent organizational unit. For more information on inheritance and users in an organization structure, see the administration help center. - description str
- Description of the organizational unit.
- name str
- The organizational unit's path name. For example, an organizational unit's name within the /corp/support/salessupport parent path is salessupport.
- parent_
org_ strunit_ id - The unique ID of the parent organizational unit.
- parent_
org_ strunit_ path - The organizational unit's parent path. For example, /corp/sales is the parent path for /corp/sales/sales_support organizational unit.
- block
Inheritance Boolean - Defaults to
false
. Determines if a sub-organizational unit can inherit the settings of the parent organization. False means a sub-organizational unit inherits the settings of the nearest parent organizational unit. For more information on inheritance and users in an organization structure, see the administration help center. - description String
- Description of the organizational unit.
- name String
- The organizational unit's path name. For example, an organizational unit's name within the /corp/support/salessupport parent path is salessupport.
- parent
Org StringUnit Id - The unique ID of the parent organizational unit.
- parent
Org StringUnit Path - The organizational unit's parent path. For example, /corp/sales is the parent path for /corp/sales/sales_support organizational unit.
Outputs
All input properties are implicitly available as output properties. Additionally, the OrgUnit resource produces the following output properties:
- Etag string
- ETag of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Org
Unit stringId - The unique ID of the organizational unit.
- Org
Unit stringPath - The full path to the organizational unit. The orgUnitPath is a derived property. When listed, it is derived from parentOrgunitPath and organizational unit's name. For example, for an organizational unit named 'apps' under parent organization '/engineering', the orgUnitPath is '/engineering/apps'. In order to edit an orgUnitPath, either update the name of the organization or the parentOrgunitPath. A user's organizational unit determines which Google Workspace services the user has access to. If the user is moved to a new organization, the user's access changes. For more information about organization structures, see the administration help center. For more information about moving a user to a different organization, see chromeosdevices.update a user.
- Etag string
- ETag of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Org
Unit stringId - The unique ID of the organizational unit.
- Org
Unit stringPath - The full path to the organizational unit. The orgUnitPath is a derived property. When listed, it is derived from parentOrgunitPath and organizational unit's name. For example, for an organizational unit named 'apps' under parent organization '/engineering', the orgUnitPath is '/engineering/apps'. In order to edit an orgUnitPath, either update the name of the organization or the parentOrgunitPath. A user's organizational unit determines which Google Workspace services the user has access to. If the user is moved to a new organization, the user's access changes. For more information about organization structures, see the administration help center. For more information about moving a user to a different organization, see chromeosdevices.update a user.
- etag String
- ETag of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- org
Unit StringId - The unique ID of the organizational unit.
- org
Unit StringPath - The full path to the organizational unit. The orgUnitPath is a derived property. When listed, it is derived from parentOrgunitPath and organizational unit's name. For example, for an organizational unit named 'apps' under parent organization '/engineering', the orgUnitPath is '/engineering/apps'. In order to edit an orgUnitPath, either update the name of the organization or the parentOrgunitPath. A user's organizational unit determines which Google Workspace services the user has access to. If the user is moved to a new organization, the user's access changes. For more information about organization structures, see the administration help center. For more information about moving a user to a different organization, see chromeosdevices.update a user.
- etag string
- ETag of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- org
Unit stringId - The unique ID of the organizational unit.
- org
Unit stringPath - The full path to the organizational unit. The orgUnitPath is a derived property. When listed, it is derived from parentOrgunitPath and organizational unit's name. For example, for an organizational unit named 'apps' under parent organization '/engineering', the orgUnitPath is '/engineering/apps'. In order to edit an orgUnitPath, either update the name of the organization or the parentOrgunitPath. A user's organizational unit determines which Google Workspace services the user has access to. If the user is moved to a new organization, the user's access changes. For more information about organization structures, see the administration help center. For more information about moving a user to a different organization, see chromeosdevices.update a user.
- etag str
- ETag of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- org_
unit_ strid - The unique ID of the organizational unit.
- org_
unit_ strpath - The full path to the organizational unit. The orgUnitPath is a derived property. When listed, it is derived from parentOrgunitPath and organizational unit's name. For example, for an organizational unit named 'apps' under parent organization '/engineering', the orgUnitPath is '/engineering/apps'. In order to edit an orgUnitPath, either update the name of the organization or the parentOrgunitPath. A user's organizational unit determines which Google Workspace services the user has access to. If the user is moved to a new organization, the user's access changes. For more information about organization structures, see the administration help center. For more information about moving a user to a different organization, see chromeosdevices.update a user.
- etag String
- ETag of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- org
Unit StringId - The unique ID of the organizational unit.
- org
Unit StringPath - The full path to the organizational unit. The orgUnitPath is a derived property. When listed, it is derived from parentOrgunitPath and organizational unit's name. For example, for an organizational unit named 'apps' under parent organization '/engineering', the orgUnitPath is '/engineering/apps'. In order to edit an orgUnitPath, either update the name of the organization or the parentOrgunitPath. A user's organizational unit determines which Google Workspace services the user has access to. If the user is moved to a new organization, the user's access changes. For more information about organization structures, see the administration help center. For more information about moving a user to a different organization, see chromeosdevices.update a user.
Look up Existing OrgUnit Resource
Get an existing OrgUnit 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?: OrgUnitState, opts?: CustomResourceOptions): OrgUnit
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
block_inheritance: Optional[bool] = None,
description: Optional[str] = None,
etag: Optional[str] = None,
name: Optional[str] = None,
org_unit_id: Optional[str] = None,
org_unit_path: Optional[str] = None,
parent_org_unit_id: Optional[str] = None,
parent_org_unit_path: Optional[str] = None) -> OrgUnit
func GetOrgUnit(ctx *Context, name string, id IDInput, state *OrgUnitState, opts ...ResourceOption) (*OrgUnit, error)
public static OrgUnit Get(string name, Input<string> id, OrgUnitState? state, CustomResourceOptions? opts = null)
public static OrgUnit get(String name, Output<String> id, OrgUnitState state, CustomResourceOptions options)
resources: _: type: googleworkspace:OrgUnit 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.
- Block
Inheritance bool - Defaults to
false
. Determines if a sub-organizational unit can inherit the settings of the parent organization. False means a sub-organizational unit inherits the settings of the nearest parent organizational unit. For more information on inheritance and users in an organization structure, see the administration help center. - Description string
- Description of the organizational unit.
- Etag string
- ETag of the resource.
- Name string
- The organizational unit's path name. For example, an organizational unit's name within the /corp/support/salessupport parent path is salessupport.
- Org
Unit stringId - The unique ID of the organizational unit.
- Org
Unit stringPath - The full path to the organizational unit. The orgUnitPath is a derived property. When listed, it is derived from parentOrgunitPath and organizational unit's name. For example, for an organizational unit named 'apps' under parent organization '/engineering', the orgUnitPath is '/engineering/apps'. In order to edit an orgUnitPath, either update the name of the organization or the parentOrgunitPath. A user's organizational unit determines which Google Workspace services the user has access to. If the user is moved to a new organization, the user's access changes. For more information about organization structures, see the administration help center. For more information about moving a user to a different organization, see chromeosdevices.update a user.
- Parent
Org stringUnit Id - The unique ID of the parent organizational unit.
- Parent
Org stringUnit Path - The organizational unit's parent path. For example, /corp/sales is the parent path for /corp/sales/sales_support organizational unit.
- Block
Inheritance bool - Defaults to
false
. Determines if a sub-organizational unit can inherit the settings of the parent organization. False means a sub-organizational unit inherits the settings of the nearest parent organizational unit. For more information on inheritance and users in an organization structure, see the administration help center. - Description string
- Description of the organizational unit.
- Etag string
- ETag of the resource.
- Name string
- The organizational unit's path name. For example, an organizational unit's name within the /corp/support/salessupport parent path is salessupport.
- Org
Unit stringId - The unique ID of the organizational unit.
- Org
Unit stringPath - The full path to the organizational unit. The orgUnitPath is a derived property. When listed, it is derived from parentOrgunitPath and organizational unit's name. For example, for an organizational unit named 'apps' under parent organization '/engineering', the orgUnitPath is '/engineering/apps'. In order to edit an orgUnitPath, either update the name of the organization or the parentOrgunitPath. A user's organizational unit determines which Google Workspace services the user has access to. If the user is moved to a new organization, the user's access changes. For more information about organization structures, see the administration help center. For more information about moving a user to a different organization, see chromeosdevices.update a user.
- Parent
Org stringUnit Id - The unique ID of the parent organizational unit.
- Parent
Org stringUnit Path - The organizational unit's parent path. For example, /corp/sales is the parent path for /corp/sales/sales_support organizational unit.
- block
Inheritance Boolean - Defaults to
false
. Determines if a sub-organizational unit can inherit the settings of the parent organization. False means a sub-organizational unit inherits the settings of the nearest parent organizational unit. For more information on inheritance and users in an organization structure, see the administration help center. - description String
- Description of the organizational unit.
- etag String
- ETag of the resource.
- name String
- The organizational unit's path name. For example, an organizational unit's name within the /corp/support/salessupport parent path is salessupport.
- org
Unit StringId - The unique ID of the organizational unit.
- org
Unit StringPath - The full path to the organizational unit. The orgUnitPath is a derived property. When listed, it is derived from parentOrgunitPath and organizational unit's name. For example, for an organizational unit named 'apps' under parent organization '/engineering', the orgUnitPath is '/engineering/apps'. In order to edit an orgUnitPath, either update the name of the organization or the parentOrgunitPath. A user's organizational unit determines which Google Workspace services the user has access to. If the user is moved to a new organization, the user's access changes. For more information about organization structures, see the administration help center. For more information about moving a user to a different organization, see chromeosdevices.update a user.
- parent
Org StringUnit Id - The unique ID of the parent organizational unit.
- parent
Org StringUnit Path - The organizational unit's parent path. For example, /corp/sales is the parent path for /corp/sales/sales_support organizational unit.
- block
Inheritance boolean - Defaults to
false
. Determines if a sub-organizational unit can inherit the settings of the parent organization. False means a sub-organizational unit inherits the settings of the nearest parent organizational unit. For more information on inheritance and users in an organization structure, see the administration help center. - description string
- Description of the organizational unit.
- etag string
- ETag of the resource.
- name string
- The organizational unit's path name. For example, an organizational unit's name within the /corp/support/salessupport parent path is salessupport.
- org
Unit stringId - The unique ID of the organizational unit.
- org
Unit stringPath - The full path to the organizational unit. The orgUnitPath is a derived property. When listed, it is derived from parentOrgunitPath and organizational unit's name. For example, for an organizational unit named 'apps' under parent organization '/engineering', the orgUnitPath is '/engineering/apps'. In order to edit an orgUnitPath, either update the name of the organization or the parentOrgunitPath. A user's organizational unit determines which Google Workspace services the user has access to. If the user is moved to a new organization, the user's access changes. For more information about organization structures, see the administration help center. For more information about moving a user to a different organization, see chromeosdevices.update a user.
- parent
Org stringUnit Id - The unique ID of the parent organizational unit.
- parent
Org stringUnit Path - The organizational unit's parent path. For example, /corp/sales is the parent path for /corp/sales/sales_support organizational unit.
- block_
inheritance bool - Defaults to
false
. Determines if a sub-organizational unit can inherit the settings of the parent organization. False means a sub-organizational unit inherits the settings of the nearest parent organizational unit. For more information on inheritance and users in an organization structure, see the administration help center. - description str
- Description of the organizational unit.
- etag str
- ETag of the resource.
- name str
- The organizational unit's path name. For example, an organizational unit's name within the /corp/support/salessupport parent path is salessupport.
- org_
unit_ strid - The unique ID of the organizational unit.
- org_
unit_ strpath - The full path to the organizational unit. The orgUnitPath is a derived property. When listed, it is derived from parentOrgunitPath and organizational unit's name. For example, for an organizational unit named 'apps' under parent organization '/engineering', the orgUnitPath is '/engineering/apps'. In order to edit an orgUnitPath, either update the name of the organization or the parentOrgunitPath. A user's organizational unit determines which Google Workspace services the user has access to. If the user is moved to a new organization, the user's access changes. For more information about organization structures, see the administration help center. For more information about moving a user to a different organization, see chromeosdevices.update a user.
- parent_
org_ strunit_ id - The unique ID of the parent organizational unit.
- parent_
org_ strunit_ path - The organizational unit's parent path. For example, /corp/sales is the parent path for /corp/sales/sales_support organizational unit.
- block
Inheritance Boolean - Defaults to
false
. Determines if a sub-organizational unit can inherit the settings of the parent organization. False means a sub-organizational unit inherits the settings of the nearest parent organizational unit. For more information on inheritance and users in an organization structure, see the administration help center. - description String
- Description of the organizational unit.
- etag String
- ETag of the resource.
- name String
- The organizational unit's path name. For example, an organizational unit's name within the /corp/support/salessupport parent path is salessupport.
- org
Unit StringId - The unique ID of the organizational unit.
- org
Unit StringPath - The full path to the organizational unit. The orgUnitPath is a derived property. When listed, it is derived from parentOrgunitPath and organizational unit's name. For example, for an organizational unit named 'apps' under parent organization '/engineering', the orgUnitPath is '/engineering/apps'. In order to edit an orgUnitPath, either update the name of the organization or the parentOrgunitPath. A user's organizational unit determines which Google Workspace services the user has access to. If the user is moved to a new organization, the user's access changes. For more information about organization structures, see the administration help center. For more information about moving a user to a different organization, see chromeosdevices.update a user.
- parent
Org StringUnit Id - The unique ID of the parent organizational unit.
- parent
Org StringUnit Path - The organizational unit's parent path. For example, /corp/sales is the parent path for /corp/sales/sales_support organizational unit.
Import
$ pulumi import googleworkspace:index/orgUnit:OrgUnit org "id:01ab2c3d4efg56h"
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.