@lbrlabs/pulumi-cockroach
Version:
A Pulumi package to create and managed cockroach db resources in Pulumi programs.
31 lines (30 loc) • 860 B
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Information about the organization associated with the user's API key.
*/
export declare function getOrganization(opts?: pulumi.InvokeOptions): Promise<GetOrganizationResult>;
/**
* A collection of values returned by getOrganization.
*/
export interface GetOrganizationResult {
/**
* Indicates when the organization was created.
*/
readonly createdAt: string;
/**
* Organization ID.
*/
readonly id: string;
/**
* A short ID used by CockroachDB Support.
*/
readonly label: string;
/**
* Name of the organization.
*/
readonly name: string;
}
/**
* Information about the organization associated with the user's API key.
*/
export declare function getOrganizationOutput(opts?: pulumi.InvokeOptions): pulumi.Output<GetOrganizationResult>;