@pulumi/yandex
Version:
A Pulumi package for creating and managing yandex cloud resources.
40 lines (39 loc) • 1.24 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
export declare function getLoggingGroup(args?: GetLoggingGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetLoggingGroupResult>;
/**
* A collection of arguments for invoking getLoggingGroup.
*/
export interface GetLoggingGroupArgs {
folderId?: string;
groupId?: string;
name?: string;
}
/**
* A collection of values returned by getLoggingGroup.
*/
export interface GetLoggingGroupResult {
readonly cloudId: string;
readonly createdAt: string;
readonly description: string;
readonly folderId: string;
readonly groupId: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly labels: {
[key: string]: string;
};
readonly name: string;
readonly retentionPeriod: string;
readonly status: string;
}
export declare function getLoggingGroupOutput(args?: GetLoggingGroupOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetLoggingGroupResult>;
/**
* A collection of arguments for invoking getLoggingGroup.
*/
export interface GetLoggingGroupOutputArgs {
folderId?: pulumi.Input<string>;
groupId?: pulumi.Input<string>;
name?: pulumi.Input<string>;
}