import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Creates a new CertificateMap in a given project and location. */ export declare class CertificateMap extends pulumi.CustomResource { /** * Get an existing CertificateMap resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): CertificateMap; /** * Returns true if the given object is an instance of CertificateMap. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is CertificateMap; /** * Required. A user-provided name of the certificate map. */ readonly certificateMapId: pulumi.Output; /** * The creation timestamp of a Certificate Map. */ readonly createTime: pulumi.Output; /** * One or more paragraphs of text description of a certificate map. */ readonly description: pulumi.Output; /** * A list of GCLB targets that use this Certificate Map. A Target Proxy is only present on this list if it's attached to a Forwarding Rule. */ readonly gclbTargets: pulumi.Output; /** * Set of labels associated with a Certificate Map. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; readonly location: pulumi.Output; /** * A user-defined name of the Certificate Map. Certificate Map names must be unique globally and match pattern `projects/*/locations/*/certificateMaps/*`. */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * The update timestamp of a Certificate Map. */ readonly updateTime: pulumi.Output; /** * Create a CertificateMap resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: CertificateMapArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a CertificateMap resource. */ export interface CertificateMapArgs { /** * Required. A user-provided name of the certificate map. */ certificateMapId: pulumi.Input; /** * One or more paragraphs of text description of a certificate map. */ description?: pulumi.Input; /** * Set of labels associated with a Certificate Map. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; location?: pulumi.Input; /** * A user-defined name of the Certificate Map. Certificate Map names must be unique globally and match pattern `projects/*/locations/*/certificateMaps/*`. */ name?: pulumi.Input; project?: pulumi.Input; }