UNPKG

@komminarlabs/cratedb

Version:

A Pulumi package for creating and managing CrateDB resources.

66 lines (65 loc) 1.67 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * To retrieve an organization. */ export declare function getOrganization(args: GetOrganizationArgs, opts?: pulumi.InvokeOptions): Promise<GetOrganizationResult>; /** * A collection of arguments for invoking getOrganization. */ export interface GetOrganizationArgs { /** * The id of the organization. */ id: string; } /** * A collection of values returned by getOrganization. */ export interface GetOrganizationResult { /** * The DublinCore of the organization. */ readonly dc: outputs.GetOrganizationDc; /** * The notification email used in the organization. */ readonly email: string; /** * The id of the organization. */ readonly id: string; /** * The name of the organization. */ readonly name: string; /** * Whether notifications enabled for the organization. */ readonly notificationsEnabled: boolean; /** * The support plan type used in the organization. */ readonly planType: number; /** * The project count in the organization. */ readonly projectCount: number; /** * The role FQN. */ readonly roleFqn: string; } /** * To retrieve an organization. */ export declare function getOrganizationOutput(args: GetOrganizationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetOrganizationResult>; /** * A collection of arguments for invoking getOrganization. */ export interface GetOrganizationOutputArgs { /** * The id of the organization. */ id: pulumi.Input<string>; }