UNPKG

@komminarlabs/cratedb

Version:

A Pulumi package for creating and managing CrateDB resources.

54 lines (53 loc) 1.25 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * To retrieve a project. */ export declare function getProject(args: GetProjectArgs, opts?: pulumi.InvokeOptions): Promise<GetProjectResult>; /** * A collection of arguments for invoking getProject. */ export interface GetProjectArgs { /** * The id of the project. */ id: string; } /** * A collection of values returned by getProject. */ export interface GetProjectResult { /** * The DublinCore of the project. */ readonly dc: outputs.GetProjectDc; /** * The id of the project. */ readonly id: string; /** * The name of the project. */ readonly name: string; /** * The organization id of the project. */ readonly organizationId: string; /** * The region of the project. */ readonly region: string; } /** * To retrieve a project. */ export declare function getProjectOutput(args: GetProjectOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProjectResult>; /** * A collection of arguments for invoking getProject. */ export interface GetProjectOutputArgs { /** * The id of the project. */ id: pulumi.Input<string>; }