import * as pulumi from "@pulumi/pulumi"; /** * Returns metadata for a given KeyRing. */ export declare function getKeyRing(args: GetKeyRingArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetKeyRingArgs { keyRingId: string; location: string; project?: string; } export interface GetKeyRingResult { /** * The time at which this KeyRing was created. */ readonly createTime: string; /** * The resource name for the KeyRing in the format `projects/*/locations/*/keyRings/*`. */ readonly name: string; } /** * Returns metadata for a given KeyRing. */ export declare function getKeyRingOutput(args: GetKeyRingOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetKeyRingOutputArgs { keyRingId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; }