@pulumi/yandex
Version:
A Pulumi package for creating and managing yandex cloud resources.
41 lines (40 loc) • 1.26 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
export declare function getApiGateway(args?: GetApiGatewayArgs, opts?: pulumi.InvokeOptions): Promise<GetApiGatewayResult>;
/**
* A collection of arguments for invoking getApiGateway.
*/
export interface GetApiGatewayArgs {
apiGatewayId?: string;
folderId?: string;
name?: string;
}
/**
* A collection of values returned by getApiGateway.
*/
export interface GetApiGatewayResult {
readonly apiGatewayId?: string;
readonly createdAt: string;
readonly description: string;
readonly domain: string;
readonly folderId?: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly labels: {
[key: string]: string;
};
readonly logGroupId: string;
readonly name?: string;
readonly status: string;
readonly userDomains: string[];
}
export declare function getApiGatewayOutput(args?: GetApiGatewayOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetApiGatewayResult>;
/**
* A collection of arguments for invoking getApiGateway.
*/
export interface GetApiGatewayOutputArgs {
apiGatewayId?: pulumi.Input<string>;
folderId?: pulumi.Input<string>;
name?: pulumi.Input<string>;
}