import * as pulumi from "@pulumi/pulumi"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleOrganizationProfile = new cloudflare.OrganizationProfile("example_organization_profile", { * organizationId: "a7b9c3d2e8f4g1h5i6j0k9l2m3n7o4p8", * businessAddress: "business_address", * businessEmail: "business_email", * businessName: "business_name", * businessPhone: "business_phone", * externalMetadata: "external_metadata", * }); * ``` * * ## Import * * ~> This resource does not currently support `pulumi import`. */ export declare class OrganizationProfile extends pulumi.CustomResource { /** * Get an existing OrganizationProfile 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?: OrganizationProfileState, opts?: pulumi.CustomResourceOptions): OrganizationProfile; /** * Returns true if the given object is an instance of OrganizationProfile. 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 OrganizationProfile; readonly businessAddress: pulumi.Output; readonly businessEmail: pulumi.Output; readonly businessName: pulumi.Output; readonly businessPhone: pulumi.Output; readonly externalMetadata: pulumi.Output; readonly organizationId: pulumi.Output; /** * Create a OrganizationProfile 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: OrganizationProfileArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering OrganizationProfile resources. */ export interface OrganizationProfileState { businessAddress?: pulumi.Input; businessEmail?: pulumi.Input; businessName?: pulumi.Input; businessPhone?: pulumi.Input; externalMetadata?: pulumi.Input; organizationId?: pulumi.Input; } /** * The set of arguments for constructing a OrganizationProfile resource. */ export interface OrganizationProfileArgs { businessAddress: pulumi.Input; businessEmail: pulumi.Input; businessName: pulumi.Input; businessPhone: pulumi.Input; externalMetadata: pulumi.Input; organizationId: pulumi.Input; }