1. Packages
  2. Dome9 Provider
  3. API Docs
  4. OrganizationalUnit
dome9 1.40.3 published on Monday, Apr 14, 2025 by dome9

dome9.OrganizationalUnit

Explore with Pulumi AI

This resource is used to create and manage Organizational Unit in Dome9. An Organizational Unit is a group of cloud accounts representing, for example, a business unit or geographical region.

Example Usage

Basic usage:

import * as pulumi from "@pulumi/pulumi";
import * as dome9 from "@pulumi/dome9";

const testOu = new dome9.OrganizationalUnit("testOu", {parentId: "00000000-0000-0000-0000-000000000000"});
Copy
import pulumi
import pulumi_dome9 as dome9

test_ou = dome9.OrganizationalUnit("testOu", parent_id="00000000-0000-0000-0000-000000000000")
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/dome9/dome9"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := dome9.NewOrganizationalUnit(ctx, "testOu", &dome9.OrganizationalUnitArgs{
			ParentId: pulumi.String("00000000-0000-0000-0000-000000000000"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Dome9 = Pulumi.Dome9;

return await Deployment.RunAsync(() => 
{
    var testOu = new Dome9.OrganizationalUnit("testOu", new()
    {
        ParentId = "00000000-0000-0000-0000-000000000000",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.dome9.OrganizationalUnit;
import com.pulumi.dome9.OrganizationalUnitArgs;
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 testOu = new OrganizationalUnit("testOu", OrganizationalUnitArgs.builder()
            .parentId("00000000-0000-0000-0000-000000000000")
            .build());

    }
}
Copy
resources:
  testOu:
    type: dome9:OrganizationalUnit
    properties:
      parentId: 00000000-0000-0000-0000-000000000000
Copy

Create OrganizationalUnit Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new OrganizationalUnit(name: string, args?: OrganizationalUnitArgs, opts?: CustomResourceOptions);
@overload
def OrganizationalUnit(resource_name: str,
                       args: Optional[OrganizationalUnitArgs] = None,
                       opts: Optional[ResourceOptions] = None)

@overload
def OrganizationalUnit(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       name: Optional[str] = None,
                       organizational_unit_id: Optional[str] = None,
                       parent_id: Optional[str] = None)
func NewOrganizationalUnit(ctx *Context, name string, args *OrganizationalUnitArgs, opts ...ResourceOption) (*OrganizationalUnit, error)
public OrganizationalUnit(string name, OrganizationalUnitArgs? args = null, CustomResourceOptions? opts = null)
public OrganizationalUnit(String name, OrganizationalUnitArgs args)
public OrganizationalUnit(String name, OrganizationalUnitArgs args, CustomResourceOptions options)
type: dome9:OrganizationalUnit
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args OrganizationalUnitArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args OrganizationalUnitArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args OrganizationalUnitArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args OrganizationalUnitArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. OrganizationalUnitArgs
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 organizationalUnitResource = new Dome9.OrganizationalUnit("organizationalUnitResource", new()
{
    Name = "string",
    OrganizationalUnitId = "string",
    ParentId = "string",
});
Copy
example, err := dome9.NewOrganizationalUnit(ctx, "organizationalUnitResource", &dome9.OrganizationalUnitArgs{
	Name:                 pulumi.String("string"),
	OrganizationalUnitId: pulumi.String("string"),
	ParentId:             pulumi.String("string"),
})
Copy
var organizationalUnitResource = new OrganizationalUnit("organizationalUnitResource", OrganizationalUnitArgs.builder()
    .name("string")
    .organizationalUnitId("string")
    .parentId("string")
    .build());
Copy
organizational_unit_resource = dome9.OrganizationalUnit("organizationalUnitResource",
    name="string",
    organizational_unit_id="string",
    parent_id="string")
Copy
const organizationalUnitResource = new dome9.OrganizationalUnit("organizationalUnitResource", {
    name: "string",
    organizationalUnitId: "string",
    parentId: "string",
});
Copy
type: dome9:OrganizationalUnit
properties:
    name: string
    organizationalUnitId: string
    parentId: string
Copy

OrganizationalUnit 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 OrganizationalUnit resource accepts the following input properties:

Name string
The name of the organizational unit in Dome9.
OrganizationalUnitId string
Organizational unit Id
ParentId string
The organizational unit parent ID.
Name string
The name of the organizational unit in Dome9.
OrganizationalUnitId string
Organizational unit Id
ParentId string
The organizational unit parent ID.
name String
The name of the organizational unit in Dome9.
organizationalUnitId String
Organizational unit Id
parentId String
The organizational unit parent ID.
name string
The name of the organizational unit in Dome9.
organizationalUnitId string
Organizational unit Id
parentId string
The organizational unit parent ID.
name str
The name of the organizational unit in Dome9.
organizational_unit_id str
Organizational unit Id
parent_id str
The organizational unit parent ID.
name String
The name of the organizational unit in Dome9.
organizationalUnitId String
Organizational unit Id
parentId String
The organizational unit parent ID.

Outputs

All input properties are implicitly available as output properties. Additionally, the OrganizationalUnit resource produces the following output properties:

AccountId string
Dome9 internal account ID.
AlibabaAggregateCloudAccountsCount double
Number of Alibaba cloud accounts in the Organizational Unit and its children.
AlibabaCloudAccountsCount double
Number of Alibaba cloud accounts in the Organizational Unit.
AwsAggregateCloudAccountsCount double
AwsCloudAccountsCount double
Number of AWS cloud accounts in the Organizational Unit.
AzureAggregateCloudAccountsCount double
Number of Azure cloud accounts in the Organizational Unit and its children.
AzureCloudAccountsCount double
Number of Azure cloud accounts in the Organizational Unit.
ContainerRegistryAggregateCloudAccountsCount double
Number of Container Registry cloud accounts in the Organizational Unit and its children.
ContainerRegistryCloudAccountsCount double
Number of Container Registry cloud accounts in the Organizational Unit.
Created string
Organizational Unit creation time.
GoogleAggregateCloudAccountsCount double
Number of GCP cloud accounts in the Organizational Unit and its children.
GoogleCloudAccountsCount double
Number of GCP cloud accounts in the Organizational Unit.
Id string
The provider-assigned unique ID for this managed resource.
IsParentRoot bool
Is the parent of Organizational Unit root.
IsRoot bool
Is Organizational Unit root.
K8sAggregateCloudAccountsCount double
Number of K8S cloud accounts in the Organizational Unit and its children.
K8sCloudAccountsCount double
Number of K8S cloud accounts in the Organizational Unit.
OciAggregateCloudAccountsCount double
Number of OCI cloud accounts in the Organizational Unit and its children.
OciCloudAccountsCount double
Number of OCI cloud accounts in the Organizational Unit.
Path string
Organizational Unit full path (IDs).
PathStr string
Organizational Unit full path (names).
ShiftLeftAggregateCloudAccountsCount double
Number of Shift Left cloud accounts in the Organizational Unit and its children.
ShiftLeftCloudAccountsCount double
Number of Shift Left cloud accounts in the Organizational Unit.
SubOrganizationalUnitsCount double
Number of sub Organizational Units.
Updated string
Organizational Unit update time.
AccountId string
Dome9 internal account ID.
AlibabaAggregateCloudAccountsCount float64
Number of Alibaba cloud accounts in the Organizational Unit and its children.
AlibabaCloudAccountsCount float64
Number of Alibaba cloud accounts in the Organizational Unit.
AwsAggregateCloudAccountsCount float64
AwsCloudAccountsCount float64
Number of AWS cloud accounts in the Organizational Unit.
AzureAggregateCloudAccountsCount float64
Number of Azure cloud accounts in the Organizational Unit and its children.
AzureCloudAccountsCount float64
Number of Azure cloud accounts in the Organizational Unit.
ContainerRegistryAggregateCloudAccountsCount float64
Number of Container Registry cloud accounts in the Organizational Unit and its children.
ContainerRegistryCloudAccountsCount float64
Number of Container Registry cloud accounts in the Organizational Unit.
Created string
Organizational Unit creation time.
GoogleAggregateCloudAccountsCount float64
Number of GCP cloud accounts in the Organizational Unit and its children.
GoogleCloudAccountsCount float64
Number of GCP cloud accounts in the Organizational Unit.
Id string
The provider-assigned unique ID for this managed resource.
IsParentRoot bool
Is the parent of Organizational Unit root.
IsRoot bool
Is Organizational Unit root.
K8sAggregateCloudAccountsCount float64
Number of K8S cloud accounts in the Organizational Unit and its children.
K8sCloudAccountsCount float64
Number of K8S cloud accounts in the Organizational Unit.
OciAggregateCloudAccountsCount float64
Number of OCI cloud accounts in the Organizational Unit and its children.
OciCloudAccountsCount float64
Number of OCI cloud accounts in the Organizational Unit.
Path string
Organizational Unit full path (IDs).
PathStr string
Organizational Unit full path (names).
ShiftLeftAggregateCloudAccountsCount float64
Number of Shift Left cloud accounts in the Organizational Unit and its children.
ShiftLeftCloudAccountsCount float64
Number of Shift Left cloud accounts in the Organizational Unit.
SubOrganizationalUnitsCount float64
Number of sub Organizational Units.
Updated string
Organizational Unit update time.
accountId String
Dome9 internal account ID.
alibabaAggregateCloudAccountsCount Double
Number of Alibaba cloud accounts in the Organizational Unit and its children.
alibabaCloudAccountsCount Double
Number of Alibaba cloud accounts in the Organizational Unit.
awsAggregateCloudAccountsCount Double
awsCloudAccountsCount Double
Number of AWS cloud accounts in the Organizational Unit.
azureAggregateCloudAccountsCount Double
Number of Azure cloud accounts in the Organizational Unit and its children.
azureCloudAccountsCount Double
Number of Azure cloud accounts in the Organizational Unit.
containerRegistryAggregateCloudAccountsCount Double
Number of Container Registry cloud accounts in the Organizational Unit and its children.
containerRegistryCloudAccountsCount Double
Number of Container Registry cloud accounts in the Organizational Unit.
created String
Organizational Unit creation time.
googleAggregateCloudAccountsCount Double
Number of GCP cloud accounts in the Organizational Unit and its children.
googleCloudAccountsCount Double
Number of GCP cloud accounts in the Organizational Unit.
id String
The provider-assigned unique ID for this managed resource.
isParentRoot Boolean
Is the parent of Organizational Unit root.
isRoot Boolean
Is Organizational Unit root.
k8sAggregateCloudAccountsCount Double
Number of K8S cloud accounts in the Organizational Unit and its children.
k8sCloudAccountsCount Double
Number of K8S cloud accounts in the Organizational Unit.
ociAggregateCloudAccountsCount Double
Number of OCI cloud accounts in the Organizational Unit and its children.
ociCloudAccountsCount Double
Number of OCI cloud accounts in the Organizational Unit.
path String
Organizational Unit full path (IDs).
pathStr String
Organizational Unit full path (names).
shiftLeftAggregateCloudAccountsCount Double
Number of Shift Left cloud accounts in the Organizational Unit and its children.
shiftLeftCloudAccountsCount Double
Number of Shift Left cloud accounts in the Organizational Unit.
subOrganizationalUnitsCount Double
Number of sub Organizational Units.
updated String
Organizational Unit update time.
accountId string
Dome9 internal account ID.
alibabaAggregateCloudAccountsCount number
Number of Alibaba cloud accounts in the Organizational Unit and its children.
alibabaCloudAccountsCount number
Number of Alibaba cloud accounts in the Organizational Unit.
awsAggregateCloudAccountsCount number
awsCloudAccountsCount number
Number of AWS cloud accounts in the Organizational Unit.
azureAggregateCloudAccountsCount number
Number of Azure cloud accounts in the Organizational Unit and its children.
azureCloudAccountsCount number
Number of Azure cloud accounts in the Organizational Unit.
containerRegistryAggregateCloudAccountsCount number
Number of Container Registry cloud accounts in the Organizational Unit and its children.
containerRegistryCloudAccountsCount number
Number of Container Registry cloud accounts in the Organizational Unit.
created string
Organizational Unit creation time.
googleAggregateCloudAccountsCount number
Number of GCP cloud accounts in the Organizational Unit and its children.
googleCloudAccountsCount number
Number of GCP cloud accounts in the Organizational Unit.
id string
The provider-assigned unique ID for this managed resource.
isParentRoot boolean
Is the parent of Organizational Unit root.
isRoot boolean
Is Organizational Unit root.
k8sAggregateCloudAccountsCount number
Number of K8S cloud accounts in the Organizational Unit and its children.
k8sCloudAccountsCount number
Number of K8S cloud accounts in the Organizational Unit.
ociAggregateCloudAccountsCount number
Number of OCI cloud accounts in the Organizational Unit and its children.
ociCloudAccountsCount number
Number of OCI cloud accounts in the Organizational Unit.
path string
Organizational Unit full path (IDs).
pathStr string
Organizational Unit full path (names).
shiftLeftAggregateCloudAccountsCount number
Number of Shift Left cloud accounts in the Organizational Unit and its children.
shiftLeftCloudAccountsCount number
Number of Shift Left cloud accounts in the Organizational Unit.
subOrganizationalUnitsCount number
Number of sub Organizational Units.
updated string
Organizational Unit update time.
account_id str
Dome9 internal account ID.
alibaba_aggregate_cloud_accounts_count float
Number of Alibaba cloud accounts in the Organizational Unit and its children.
alibaba_cloud_accounts_count float
Number of Alibaba cloud accounts in the Organizational Unit.
aws_aggregate_cloud_accounts_count float
aws_cloud_accounts_count float
Number of AWS cloud accounts in the Organizational Unit.
azure_aggregate_cloud_accounts_count float
Number of Azure cloud accounts in the Organizational Unit and its children.
azure_cloud_accounts_count float
Number of Azure cloud accounts in the Organizational Unit.
container_registry_aggregate_cloud_accounts_count float
Number of Container Registry cloud accounts in the Organizational Unit and its children.
container_registry_cloud_accounts_count float
Number of Container Registry cloud accounts in the Organizational Unit.
created str
Organizational Unit creation time.
google_aggregate_cloud_accounts_count float
Number of GCP cloud accounts in the Organizational Unit and its children.
google_cloud_accounts_count float
Number of GCP cloud accounts in the Organizational Unit.
id str
The provider-assigned unique ID for this managed resource.
is_parent_root bool
Is the parent of Organizational Unit root.
is_root bool
Is Organizational Unit root.
k8s_aggregate_cloud_accounts_count float
Number of K8S cloud accounts in the Organizational Unit and its children.
k8s_cloud_accounts_count float
Number of K8S cloud accounts in the Organizational Unit.
oci_aggregate_cloud_accounts_count float
Number of OCI cloud accounts in the Organizational Unit and its children.
oci_cloud_accounts_count float
Number of OCI cloud accounts in the Organizational Unit.
path str
Organizational Unit full path (IDs).
path_str str
Organizational Unit full path (names).
shift_left_aggregate_cloud_accounts_count float
Number of Shift Left cloud accounts in the Organizational Unit and its children.
shift_left_cloud_accounts_count float
Number of Shift Left cloud accounts in the Organizational Unit.
sub_organizational_units_count float
Number of sub Organizational Units.
updated str
Organizational Unit update time.
accountId String
Dome9 internal account ID.
alibabaAggregateCloudAccountsCount Number
Number of Alibaba cloud accounts in the Organizational Unit and its children.
alibabaCloudAccountsCount Number
Number of Alibaba cloud accounts in the Organizational Unit.
awsAggregateCloudAccountsCount Number
awsCloudAccountsCount Number
Number of AWS cloud accounts in the Organizational Unit.
azureAggregateCloudAccountsCount Number
Number of Azure cloud accounts in the Organizational Unit and its children.
azureCloudAccountsCount Number
Number of Azure cloud accounts in the Organizational Unit.
containerRegistryAggregateCloudAccountsCount Number
Number of Container Registry cloud accounts in the Organizational Unit and its children.
containerRegistryCloudAccountsCount Number
Number of Container Registry cloud accounts in the Organizational Unit.
created String
Organizational Unit creation time.
googleAggregateCloudAccountsCount Number
Number of GCP cloud accounts in the Organizational Unit and its children.
googleCloudAccountsCount Number
Number of GCP cloud accounts in the Organizational Unit.
id String
The provider-assigned unique ID for this managed resource.
isParentRoot Boolean
Is the parent of Organizational Unit root.
isRoot Boolean
Is Organizational Unit root.
k8sAggregateCloudAccountsCount Number
Number of K8S cloud accounts in the Organizational Unit and its children.
k8sCloudAccountsCount Number
Number of K8S cloud accounts in the Organizational Unit.
ociAggregateCloudAccountsCount Number
Number of OCI cloud accounts in the Organizational Unit and its children.
ociCloudAccountsCount Number
Number of OCI cloud accounts in the Organizational Unit.
path String
Organizational Unit full path (IDs).
pathStr String
Organizational Unit full path (names).
shiftLeftAggregateCloudAccountsCount Number
Number of Shift Left cloud accounts in the Organizational Unit and its children.
shiftLeftCloudAccountsCount Number
Number of Shift Left cloud accounts in the Organizational Unit.
subOrganizationalUnitsCount Number
Number of sub Organizational Units.
updated String
Organizational Unit update time.

Look up Existing OrganizationalUnit Resource

Get an existing OrganizationalUnit 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?: OrganizationalUnitState, opts?: CustomResourceOptions): OrganizationalUnit
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        account_id: Optional[str] = None,
        alibaba_aggregate_cloud_accounts_count: Optional[float] = None,
        alibaba_cloud_accounts_count: Optional[float] = None,
        aws_aggregate_cloud_accounts_count: Optional[float] = None,
        aws_cloud_accounts_count: Optional[float] = None,
        azure_aggregate_cloud_accounts_count: Optional[float] = None,
        azure_cloud_accounts_count: Optional[float] = None,
        container_registry_aggregate_cloud_accounts_count: Optional[float] = None,
        container_registry_cloud_accounts_count: Optional[float] = None,
        created: Optional[str] = None,
        google_aggregate_cloud_accounts_count: Optional[float] = None,
        google_cloud_accounts_count: Optional[float] = None,
        is_parent_root: Optional[bool] = None,
        is_root: Optional[bool] = None,
        k8s_aggregate_cloud_accounts_count: Optional[float] = None,
        k8s_cloud_accounts_count: Optional[float] = None,
        name: Optional[str] = None,
        oci_aggregate_cloud_accounts_count: Optional[float] = None,
        oci_cloud_accounts_count: Optional[float] = None,
        organizational_unit_id: Optional[str] = None,
        parent_id: Optional[str] = None,
        path: Optional[str] = None,
        path_str: Optional[str] = None,
        shift_left_aggregate_cloud_accounts_count: Optional[float] = None,
        shift_left_cloud_accounts_count: Optional[float] = None,
        sub_organizational_units_count: Optional[float] = None,
        updated: Optional[str] = None) -> OrganizationalUnit
func GetOrganizationalUnit(ctx *Context, name string, id IDInput, state *OrganizationalUnitState, opts ...ResourceOption) (*OrganizationalUnit, error)
public static OrganizationalUnit Get(string name, Input<string> id, OrganizationalUnitState? state, CustomResourceOptions? opts = null)
public static OrganizationalUnit get(String name, Output<String> id, OrganizationalUnitState state, CustomResourceOptions options)
resources:  _:    type: dome9:OrganizationalUnit    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
AccountId string
Dome9 internal account ID.
AlibabaAggregateCloudAccountsCount double
Number of Alibaba cloud accounts in the Organizational Unit and its children.
AlibabaCloudAccountsCount double
Number of Alibaba cloud accounts in the Organizational Unit.
AwsAggregateCloudAccountsCount double
AwsCloudAccountsCount double
Number of AWS cloud accounts in the Organizational Unit.
AzureAggregateCloudAccountsCount double
Number of Azure cloud accounts in the Organizational Unit and its children.
AzureCloudAccountsCount double
Number of Azure cloud accounts in the Organizational Unit.
ContainerRegistryAggregateCloudAccountsCount double
Number of Container Registry cloud accounts in the Organizational Unit and its children.
ContainerRegistryCloudAccountsCount double
Number of Container Registry cloud accounts in the Organizational Unit.
Created string
Organizational Unit creation time.
GoogleAggregateCloudAccountsCount double
Number of GCP cloud accounts in the Organizational Unit and its children.
GoogleCloudAccountsCount double
Number of GCP cloud accounts in the Organizational Unit.
IsParentRoot bool
Is the parent of Organizational Unit root.
IsRoot bool
Is Organizational Unit root.
K8sAggregateCloudAccountsCount double
Number of K8S cloud accounts in the Organizational Unit and its children.
K8sCloudAccountsCount double
Number of K8S cloud accounts in the Organizational Unit.
Name string
The name of the organizational unit in Dome9.
OciAggregateCloudAccountsCount double
Number of OCI cloud accounts in the Organizational Unit and its children.
OciCloudAccountsCount double
Number of OCI cloud accounts in the Organizational Unit.
OrganizationalUnitId string
Organizational unit Id
ParentId string
The organizational unit parent ID.
Path string
Organizational Unit full path (IDs).
PathStr string
Organizational Unit full path (names).
ShiftLeftAggregateCloudAccountsCount double
Number of Shift Left cloud accounts in the Organizational Unit and its children.
ShiftLeftCloudAccountsCount double
Number of Shift Left cloud accounts in the Organizational Unit.
SubOrganizationalUnitsCount double
Number of sub Organizational Units.
Updated string
Organizational Unit update time.
AccountId string
Dome9 internal account ID.
AlibabaAggregateCloudAccountsCount float64
Number of Alibaba cloud accounts in the Organizational Unit and its children.
AlibabaCloudAccountsCount float64
Number of Alibaba cloud accounts in the Organizational Unit.
AwsAggregateCloudAccountsCount float64
AwsCloudAccountsCount float64
Number of AWS cloud accounts in the Organizational Unit.
AzureAggregateCloudAccountsCount float64
Number of Azure cloud accounts in the Organizational Unit and its children.
AzureCloudAccountsCount float64
Number of Azure cloud accounts in the Organizational Unit.
ContainerRegistryAggregateCloudAccountsCount float64
Number of Container Registry cloud accounts in the Organizational Unit and its children.
ContainerRegistryCloudAccountsCount float64
Number of Container Registry cloud accounts in the Organizational Unit.
Created string
Organizational Unit creation time.
GoogleAggregateCloudAccountsCount float64
Number of GCP cloud accounts in the Organizational Unit and its children.
GoogleCloudAccountsCount float64
Number of GCP cloud accounts in the Organizational Unit.
IsParentRoot bool
Is the parent of Organizational Unit root.
IsRoot bool
Is Organizational Unit root.
K8sAggregateCloudAccountsCount float64
Number of K8S cloud accounts in the Organizational Unit and its children.
K8sCloudAccountsCount float64
Number of K8S cloud accounts in the Organizational Unit.
Name string
The name of the organizational unit in Dome9.
OciAggregateCloudAccountsCount float64
Number of OCI cloud accounts in the Organizational Unit and its children.
OciCloudAccountsCount float64
Number of OCI cloud accounts in the Organizational Unit.
OrganizationalUnitId string
Organizational unit Id
ParentId string
The organizational unit parent ID.
Path string
Organizational Unit full path (IDs).
PathStr string
Organizational Unit full path (names).
ShiftLeftAggregateCloudAccountsCount float64
Number of Shift Left cloud accounts in the Organizational Unit and its children.
ShiftLeftCloudAccountsCount float64
Number of Shift Left cloud accounts in the Organizational Unit.
SubOrganizationalUnitsCount float64
Number of sub Organizational Units.
Updated string
Organizational Unit update time.
accountId String
Dome9 internal account ID.
alibabaAggregateCloudAccountsCount Double
Number of Alibaba cloud accounts in the Organizational Unit and its children.
alibabaCloudAccountsCount Double
Number of Alibaba cloud accounts in the Organizational Unit.
awsAggregateCloudAccountsCount Double
awsCloudAccountsCount Double
Number of AWS cloud accounts in the Organizational Unit.
azureAggregateCloudAccountsCount Double
Number of Azure cloud accounts in the Organizational Unit and its children.
azureCloudAccountsCount Double
Number of Azure cloud accounts in the Organizational Unit.
containerRegistryAggregateCloudAccountsCount Double
Number of Container Registry cloud accounts in the Organizational Unit and its children.
containerRegistryCloudAccountsCount Double
Number of Container Registry cloud accounts in the Organizational Unit.
created String
Organizational Unit creation time.
googleAggregateCloudAccountsCount Double
Number of GCP cloud accounts in the Organizational Unit and its children.
googleCloudAccountsCount Double
Number of GCP cloud accounts in the Organizational Unit.
isParentRoot Boolean
Is the parent of Organizational Unit root.
isRoot Boolean
Is Organizational Unit root.
k8sAggregateCloudAccountsCount Double
Number of K8S cloud accounts in the Organizational Unit and its children.
k8sCloudAccountsCount Double
Number of K8S cloud accounts in the Organizational Unit.
name String
The name of the organizational unit in Dome9.
ociAggregateCloudAccountsCount Double
Number of OCI cloud accounts in the Organizational Unit and its children.
ociCloudAccountsCount Double
Number of OCI cloud accounts in the Organizational Unit.
organizationalUnitId String
Organizational unit Id
parentId String
The organizational unit parent ID.
path String
Organizational Unit full path (IDs).
pathStr String
Organizational Unit full path (names).
shiftLeftAggregateCloudAccountsCount Double
Number of Shift Left cloud accounts in the Organizational Unit and its children.
shiftLeftCloudAccountsCount Double
Number of Shift Left cloud accounts in the Organizational Unit.
subOrganizationalUnitsCount Double
Number of sub Organizational Units.
updated String
Organizational Unit update time.
accountId string
Dome9 internal account ID.
alibabaAggregateCloudAccountsCount number
Number of Alibaba cloud accounts in the Organizational Unit and its children.
alibabaCloudAccountsCount number
Number of Alibaba cloud accounts in the Organizational Unit.
awsAggregateCloudAccountsCount number
awsCloudAccountsCount number
Number of AWS cloud accounts in the Organizational Unit.
azureAggregateCloudAccountsCount number
Number of Azure cloud accounts in the Organizational Unit and its children.
azureCloudAccountsCount number
Number of Azure cloud accounts in the Organizational Unit.
containerRegistryAggregateCloudAccountsCount number
Number of Container Registry cloud accounts in the Organizational Unit and its children.
containerRegistryCloudAccountsCount number
Number of Container Registry cloud accounts in the Organizational Unit.
created string
Organizational Unit creation time.
googleAggregateCloudAccountsCount number
Number of GCP cloud accounts in the Organizational Unit and its children.
googleCloudAccountsCount number
Number of GCP cloud accounts in the Organizational Unit.
isParentRoot boolean
Is the parent of Organizational Unit root.
isRoot boolean
Is Organizational Unit root.
k8sAggregateCloudAccountsCount number
Number of K8S cloud accounts in the Organizational Unit and its children.
k8sCloudAccountsCount number
Number of K8S cloud accounts in the Organizational Unit.
name string
The name of the organizational unit in Dome9.
ociAggregateCloudAccountsCount number
Number of OCI cloud accounts in the Organizational Unit and its children.
ociCloudAccountsCount number
Number of OCI cloud accounts in the Organizational Unit.
organizationalUnitId string
Organizational unit Id
parentId string
The organizational unit parent ID.
path string
Organizational Unit full path (IDs).
pathStr string
Organizational Unit full path (names).
shiftLeftAggregateCloudAccountsCount number
Number of Shift Left cloud accounts in the Organizational Unit and its children.
shiftLeftCloudAccountsCount number
Number of Shift Left cloud accounts in the Organizational Unit.
subOrganizationalUnitsCount number
Number of sub Organizational Units.
updated string
Organizational Unit update time.
account_id str
Dome9 internal account ID.
alibaba_aggregate_cloud_accounts_count float
Number of Alibaba cloud accounts in the Organizational Unit and its children.
alibaba_cloud_accounts_count float
Number of Alibaba cloud accounts in the Organizational Unit.
aws_aggregate_cloud_accounts_count float
aws_cloud_accounts_count float
Number of AWS cloud accounts in the Organizational Unit.
azure_aggregate_cloud_accounts_count float
Number of Azure cloud accounts in the Organizational Unit and its children.
azure_cloud_accounts_count float
Number of Azure cloud accounts in the Organizational Unit.
container_registry_aggregate_cloud_accounts_count float
Number of Container Registry cloud accounts in the Organizational Unit and its children.
container_registry_cloud_accounts_count float
Number of Container Registry cloud accounts in the Organizational Unit.
created str
Organizational Unit creation time.
google_aggregate_cloud_accounts_count float
Number of GCP cloud accounts in the Organizational Unit and its children.
google_cloud_accounts_count float
Number of GCP cloud accounts in the Organizational Unit.
is_parent_root bool
Is the parent of Organizational Unit root.
is_root bool
Is Organizational Unit root.
k8s_aggregate_cloud_accounts_count float
Number of K8S cloud accounts in the Organizational Unit and its children.
k8s_cloud_accounts_count float
Number of K8S cloud accounts in the Organizational Unit.
name str
The name of the organizational unit in Dome9.
oci_aggregate_cloud_accounts_count float
Number of OCI cloud accounts in the Organizational Unit and its children.
oci_cloud_accounts_count float
Number of OCI cloud accounts in the Organizational Unit.
organizational_unit_id str
Organizational unit Id
parent_id str
The organizational unit parent ID.
path str
Organizational Unit full path (IDs).
path_str str
Organizational Unit full path (names).
shift_left_aggregate_cloud_accounts_count float
Number of Shift Left cloud accounts in the Organizational Unit and its children.
shift_left_cloud_accounts_count float
Number of Shift Left cloud accounts in the Organizational Unit.
sub_organizational_units_count float
Number of sub Organizational Units.
updated str
Organizational Unit update time.
accountId String
Dome9 internal account ID.
alibabaAggregateCloudAccountsCount Number
Number of Alibaba cloud accounts in the Organizational Unit and its children.
alibabaCloudAccountsCount Number
Number of Alibaba cloud accounts in the Organizational Unit.
awsAggregateCloudAccountsCount Number
awsCloudAccountsCount Number
Number of AWS cloud accounts in the Organizational Unit.
azureAggregateCloudAccountsCount Number
Number of Azure cloud accounts in the Organizational Unit and its children.
azureCloudAccountsCount Number
Number of Azure cloud accounts in the Organizational Unit.
containerRegistryAggregateCloudAccountsCount Number
Number of Container Registry cloud accounts in the Organizational Unit and its children.
containerRegistryCloudAccountsCount Number
Number of Container Registry cloud accounts in the Organizational Unit.
created String
Organizational Unit creation time.
googleAggregateCloudAccountsCount Number
Number of GCP cloud accounts in the Organizational Unit and its children.
googleCloudAccountsCount Number
Number of GCP cloud accounts in the Organizational Unit.
isParentRoot Boolean
Is the parent of Organizational Unit root.
isRoot Boolean
Is Organizational Unit root.
k8sAggregateCloudAccountsCount Number
Number of K8S cloud accounts in the Organizational Unit and its children.
k8sCloudAccountsCount Number
Number of K8S cloud accounts in the Organizational Unit.
name String
The name of the organizational unit in Dome9.
ociAggregateCloudAccountsCount Number
Number of OCI cloud accounts in the Organizational Unit and its children.
ociCloudAccountsCount Number
Number of OCI cloud accounts in the Organizational Unit.
organizationalUnitId String
Organizational unit Id
parentId String
The organizational unit parent ID.
path String
Organizational Unit full path (IDs).
pathStr String
Organizational Unit full path (names).
shiftLeftAggregateCloudAccountsCount Number
Number of Shift Left cloud accounts in the Organizational Unit and its children.
shiftLeftCloudAccountsCount Number
Number of Shift Left cloud accounts in the Organizational Unit.
subOrganizationalUnitsCount Number
Number of sub Organizational Units.
updated String
Organizational Unit update time.

Import

Organizational unit can be imported; use <ORGANIZATIONAL UNIT ID> as the import ID.

For example:

$ pulumi import dome9:index/organizationalUnit:OrganizationalUnit test 00000
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
dome9 dome9/terraform-provider-dome9
License
Notes
This Pulumi package is based on the dome9 Terraform Provider.