import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get info about a Google Certificate Manager Certificate Map resource. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const _default = gcp.certificatemanager.getCertificateMap({ * name: "cert-map", * }); * ``` */ export declare function getCertificateMap(args: GetCertificateMapArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCertificateMap. */ export interface GetCertificateMapArgs { /** * The name of the certificate map. * * - - - */ name: string; /** * The ID of the project in which the resource belongs. If it * is not provided, the provider project is used. */ project?: string; } /** * A collection of values returned by getCertificateMap. */ export interface GetCertificateMapResult { readonly createTime: string; readonly description: string; readonly effectiveLabels: { [key: string]: string; }; readonly gclbTargets: outputs.certificatemanager.GetCertificateMapGclbTarget[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly labels: { [key: string]: string; }; readonly name: string; readonly project?: string; readonly pulumiLabels: { [key: string]: string; }; readonly updateTime: string; } /** * Get info about a Google Certificate Manager Certificate Map resource. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const _default = gcp.certificatemanager.getCertificateMap({ * name: "cert-map", * }); * ``` */ export declare function getCertificateMapOutput(args: GetCertificateMapOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCertificateMap. */ export interface GetCertificateMapOutputArgs { /** * The name of the certificate map. * * - - - */ name: pulumi.Input; /** * The ID of the project in which the resource belongs. If it * is not provided, the provider project is used. */ project?: pulumi.Input; }