import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Provides a Datadog Child Organization resource. This can be used to create Datadog Child Organizations. To manage created organization use `datadog.OrganizationSettings`. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as datadog from "@pulumi/datadog"; * * // Create a new Datadog Child Organization * const organization = new datadog.ChildOrganization("organization", {name: "foo-organization"}); * ``` */ export declare class ChildOrganization extends pulumi.CustomResource { /** * Get an existing ChildOrganization resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ChildOrganizationState, opts?: pulumi.CustomResourceOptions): ChildOrganization; /** * Returns true if the given object is an instance of ChildOrganization. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ChildOrganization; /** * Datadog API key. */ readonly apiKeys: pulumi.Output; /** * An application key with its associated metadata. */ readonly applicationKeys: pulumi.Output; /** * Description of the organization. */ readonly description: pulumi.Output; /** * Name for Child Organization after creation. */ readonly name: pulumi.Output; /** * The `publicId` of the organization you are operating within. */ readonly publicId: pulumi.Output; /** * Organization settings */ readonly settings: pulumi.Output; /** * Information about a user */ readonly users: pulumi.Output; /** * Create a ChildOrganization resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ChildOrganizationArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ChildOrganization resources. */ export interface ChildOrganizationState { /** * Datadog API key. */ apiKeys?: pulumi.Input[]>; /** * An application key with its associated metadata. */ applicationKeys?: pulumi.Input[]>; /** * Description of the organization. */ description?: pulumi.Input; /** * Name for Child Organization after creation. */ name?: pulumi.Input; /** * The `publicId` of the organization you are operating within. */ publicId?: pulumi.Input; /** * Organization settings */ settings?: pulumi.Input[]>; /** * Information about a user */ users?: pulumi.Input[]>; } /** * The set of arguments for constructing a ChildOrganization resource. */ export interface ChildOrganizationArgs { /** * Name for Child Organization after creation. */ name: pulumi.Input; }