import * as pulumi from "@pulumi/pulumi"; /** * Gets details of a single CertificateMapEntry. */ export declare function getCertificateMapEntry(args: GetCertificateMapEntryArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetCertificateMapEntryArgs { certificateMapEntryId: string; certificateMapId: string; location: string; project?: string; } export interface GetCertificateMapEntryResult { /** * 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: string[]; /** * The creation timestamp of a Certificate Map Entry. */ readonly createTime: string; /** * One or more paragraphs of text description of a certificate map entry. */ readonly description: string; /** * 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: string; /** * Set of labels associated with a Certificate Map Entry. */ readonly labels: { [key: string]: string; }; /** * A predefined matcher for particular cases, other than SNI selection. */ readonly matcher: string; /** * 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: string; /** * A serving state of this Certificate Map Entry. */ readonly state: string; /** * The update timestamp of a Certificate Map Entry. */ readonly updateTime: string; } /** * Gets details of a single CertificateMapEntry. */ export declare function getCertificateMapEntryOutput(args: GetCertificateMapEntryOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetCertificateMapEntryOutputArgs { certificateMapEntryId: pulumi.Input; certificateMapId: pulumi.Input; location: pulumi.Input; project?: pulumi.Input; }