import * as pulumi from "@pulumi/pulumi"; /** * Gets information about a RuntimeConfig resource. */ export declare function getConfig(args: GetConfigArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetConfigArgs { configId: string; project?: string; } export interface GetConfigResult { /** * An optional description of the RuntimeConfig object. */ readonly description: string; /** * The resource name of a runtime config. The name must have the format: projects/[PROJECT_ID]/configs/[CONFIG_NAME] The `[PROJECT_ID]` must be a valid project ID, and `[CONFIG_NAME]` is an arbitrary name that matches the `[0-9A-Za-z](?:[_.A-Za-z0-9-]{0,62}[_.A-Za-z0-9])?` regular expression. The length of `[CONFIG_NAME]` must be less than 64 characters. You pick the RuntimeConfig resource name, but the server will validate that the name adheres to this format. After you create the resource, you cannot change the resource's name. */ readonly name: string; } /** * Gets information about a RuntimeConfig resource. */ export declare function getConfigOutput(args: GetConfigOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetConfigOutputArgs { configId: pulumi.Input; project?: pulumi.Input; }