import * as pulumi from "@pulumi/pulumi"; /** * Retrieves specified tenant. */ export declare function getTenant(args: GetTenantArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetTenantArgs { project?: string; tenantId: string; } export interface GetTenantResult { /** * Client side tenant identifier, used to uniquely identify the tenant. The maximum number of allowed characters is 255. */ readonly externalId: string; /** * Required during tenant update. The resource name for a tenant. This is generated by the service when a tenant is created. The format is "projects/{project_id}/tenants/{tenant_id}", for example, "projects/foo/tenants/bar". */ readonly name: string; } /** * Retrieves specified tenant. */ export declare function getTenantOutput(args: GetTenantOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetTenantOutputArgs { project?: pulumi.Input; tenantId: pulumi.Input; }