import * as pulumi from "@pulumi/pulumi"; export declare function getLoggingGroup(args?: GetLoggingGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * 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; /** * A collection of arguments for invoking getLoggingGroup. */ export interface GetLoggingGroupOutputArgs { folderId?: pulumi.Input; groupId?: pulumi.Input; name?: pulumi.Input; }