import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class Org extends pulumi.CustomResource { /** * Get an existing Org 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?: OrgState, opts?: pulumi.CustomResourceOptions): Org; /** * Returns true if the given object is an instance of Org. 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 Org; /** * The associated account ID that will be used when creating the org. Only used on org creation. The account ID can be obtained from the `Org Management & Billing` page. */ readonly accountId: pulumi.Output; /** * The configuration settings and parameters related to authentication within the org. */ readonly authConfig: pulumi.Output; /** * The ID, in GUID format, of the Organization. */ readonly cplnId: pulumi.Output; /** * Description of the Organization. */ readonly description: pulumi.Output; /** * When an org is created, the list of email addresses which will receive an invitation to join the org and be assigned to the `superusers` group. The user account used when creating the org will be included in this list. */ readonly invitees: pulumi.Output; /** * Name of the Organization. */ readonly name: pulumi.Output; /** * The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default. */ readonly observability: pulumi.Output; readonly security: pulumi.Output; /** * Full link to this resource. Can be referenced by other resources. */ readonly selfLink: pulumi.Output; /** * The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes) */ readonly sessionTimeoutSeconds: pulumi.Output; /** * Status of the org. */ readonly statuses: pulumi.Output; /** * Key-value map of resource tags. */ readonly tags: pulumi.Output<{ [key: string]: string; }>; /** * Create a Org 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?: OrgArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Org resources. */ export interface OrgState { /** * The associated account ID that will be used when creating the org. Only used on org creation. The account ID can be obtained from the `Org Management & Billing` page. */ accountId?: pulumi.Input; /** * The configuration settings and parameters related to authentication within the org. */ authConfig?: pulumi.Input; /** * The ID, in GUID format, of the Organization. */ cplnId?: pulumi.Input; /** * Description of the Organization. */ description?: pulumi.Input; /** * When an org is created, the list of email addresses which will receive an invitation to join the org and be assigned to the `superusers` group. The user account used when creating the org will be included in this list. */ invitees?: pulumi.Input[]>; /** * Name of the Organization. */ name?: pulumi.Input; /** * The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default. */ observability?: pulumi.Input; security?: pulumi.Input; /** * Full link to this resource. Can be referenced by other resources. */ selfLink?: pulumi.Input; /** * The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes) */ sessionTimeoutSeconds?: pulumi.Input; /** * Status of the org. */ statuses?: pulumi.Input[]>; /** * Key-value map of resource tags. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; } /** * The set of arguments for constructing a Org resource. */ export interface OrgArgs { /** * The associated account ID that will be used when creating the org. Only used on org creation. The account ID can be obtained from the `Org Management & Billing` page. */ accountId?: pulumi.Input; /** * The configuration settings and parameters related to authentication within the org. */ authConfig?: pulumi.Input; /** * Description of the Organization. */ description?: pulumi.Input; /** * When an org is created, the list of email addresses which will receive an invitation to join the org and be assigned to the `superusers` group. The user account used when creating the org will be included in this list. */ invitees?: pulumi.Input[]>; /** * The retention period (in days) for logs, metrics, and traces. Charges apply for storage beyond the 30 day default. */ observability?: pulumi.Input; security?: pulumi.Input; /** * The idle time (in seconds) in which the console UI will automatically sign-out the user. Default: 900 (15 minutes) */ sessionTimeoutSeconds?: pulumi.Input; /** * Key-value map of resource tags. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }