import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleOrganization = new cloudflare.Organization("example_organization", { * name: "name", * parent: { * id: "a7b9c3d2e8f4g1h5i6j0k9l2m3n7o4p8", * }, * profile: { * businessAddress: "business_address", * businessEmail: "business_email", * businessName: "business_name", * businessPhone: "business_phone", * externalMetadata: "external_metadata", * }, * }); * ``` * * ## Import * * ```sh * $ pulumi import cloudflare:index/organization:Organization example '' * ``` */ export declare class Organization extends pulumi.CustomResource { /** * Get an existing Organization 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?: OrganizationState, opts?: pulumi.CustomResourceOptions): Organization; /** * Returns true if the given object is an instance of Organization. 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 Organization; readonly createTime: pulumi.Output; readonly meta: pulumi.Output; readonly name: pulumi.Output; readonly parent: pulumi.Output; readonly profile: pulumi.Output; /** * Create a Organization 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: OrganizationArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Organization resources. */ export interface OrganizationState { createTime?: pulumi.Input; meta?: pulumi.Input; name?: pulumi.Input; parent?: pulumi.Input; profile?: pulumi.Input; } /** * The set of arguments for constructing a Organization resource. */ export interface OrganizationArgs { name: pulumi.Input; parent?: pulumi.Input; profile?: pulumi.Input; }