import * as pulumi from "@pulumi/pulumi"; import * as enums from "../../types/enums"; /** * Creates a new CertificateMapEntry in a given project and location. */ export declare class CertificateMapEntry extends pulumi.CustomResource { /** * Get an existing CertificateMapEntry 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): CertificateMapEntry; /** * Returns true if the given object is an instance of CertificateMapEntry. 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 CertificateMapEntry; /** * Required. A user-provided name of the certificate map entry. */ readonly certificateMapEntryId: pulumi.Output; readonly certificateMapId: pulumi.Output; /** * A set of Certificates defines for the given `hostname`. There can be defined up to four certificates in each Certificate Map Entry. Each certificate must match pattern `projects/*/locations/*/certificates/*`. */ readonly certificates: pulumi.Output; /** * The creation timestamp of a Certificate Map Entry. */ readonly createTime: pulumi.Output; /** * One or more paragraphs of text description of a certificate map entry. */ readonly description: pulumi.Output; /** * A Hostname (FQDN, e.g. `example.com`) or a wildcard hostname expression (`*.example.com`) for a set of hostnames with common suffix. Used as Server Name Indication (SNI) for selecting a proper certificate. */ readonly hostname: pulumi.Output; /** * Set of labels associated with a Certificate Map Entry. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; readonly location: pulumi.Output; /** * A predefined matcher for particular cases, other than SNI selection. */ readonly matcher: pulumi.Output; /** * A user-defined name of the Certificate Map Entry. Certificate Map Entry names must be unique globally and match pattern `projects/*/locations/*/certificateMaps/*/certificateMapEntries/*`. */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * A serving state of this Certificate Map Entry. */ readonly state: pulumi.Output; /** * The update timestamp of a Certificate Map Entry. */ readonly updateTime: pulumi.Output; /** * Create a CertificateMapEntry 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: CertificateMapEntryArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a CertificateMapEntry resource. */ export interface CertificateMapEntryArgs { /** * Required. A user-provided name of the certificate map entry. */ certificateMapEntryId: pulumi.Input; certificateMapId: pulumi.Input; /** * A set of Certificates defines for the given `hostname`. There can be defined up to four certificates in each Certificate Map Entry. Each certificate must match pattern `projects/*/locations/*/certificates/*`. */ certificates?: pulumi.Input[]>; /** * One or more paragraphs of text description of a certificate map entry. */ description?: pulumi.Input; /** * A Hostname (FQDN, e.g. `example.com`) or a wildcard hostname expression (`*.example.com`) for a set of hostnames with common suffix. Used as Server Name Indication (SNI) for selecting a proper certificate. */ hostname?: pulumi.Input; /** * Set of labels associated with a Certificate Map Entry. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; location?: pulumi.Input; /** * A predefined matcher for particular cases, other than SNI selection. */ matcher?: pulumi.Input; /** * A user-defined name of the Certificate Map Entry. Certificate Map Entry names must be unique globally and match pattern `projects/*/locations/*/certificateMaps/*/certificateMapEntries/*`. */ name?: pulumi.Input; project?: pulumi.Input; }