import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Creates and manages an [organization](https://aiven.io/docs/platform/concepts/orgs-units-projects). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const example = new aiven.Organization("example", {name: "Aiven Ltd"}); * ``` * * ## Import * * ```sh * $ pulumi import aiven:index/organization:Organization example ORGANIZATION_ID * ``` */ 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; /** * Timestamp in ISO 8601 format, always in UTC. */ readonly createTime: pulumi.Output; /** * Name of the organization. Maximum length: `83`. */ readonly name: pulumi.Output; /** * Tenant identifier. **Deprecated**: This field is deprecated and will be removed in the next major release. * * @deprecated This field is deprecated and will be removed in the next major release. */ readonly tenantId: pulumi.Output; readonly timeouts: pulumi.Output; /** * Timestamp in ISO 8601 format, always in UTC. */ readonly updateTime: 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 { /** * Timestamp in ISO 8601 format, always in UTC. */ createTime?: pulumi.Input; /** * Name of the organization. Maximum length: `83`. */ name?: pulumi.Input; /** * Tenant identifier. **Deprecated**: This field is deprecated and will be removed in the next major release. * * @deprecated This field is deprecated and will be removed in the next major release. */ tenantId?: pulumi.Input; timeouts?: pulumi.Input; /** * Timestamp in ISO 8601 format, always in UTC. */ updateTime?: pulumi.Input; } /** * The set of arguments for constructing a Organization resource. */ export interface OrganizationArgs { /** * Name of the organization. Maximum length: `83`. */ name?: pulumi.Input; timeouts?: pulumi.Input; } //# sourceMappingURL=organization.d.ts.map