import * as pulumi from "@pulumi/pulumi";
import * as types from "./types";
/**
 * SSL certificate for an app.
 *
 * Uses Azure REST API version 2024-11-01.
 *
 * Other available API versions: 2025-03-01, 2025-05-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native web [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
 */
export declare function getSiteCertificate(args: GetSiteCertificateArgs, opts?: pulumi.InvokeOptions): Promise<GetSiteCertificateResult>;
export interface GetSiteCertificateArgs {
    /**
     * Name of the certificate.
     */
    certificateName: string;
    /**
     * Name of the site.
     */
    name: string;
    /**
     * The name of the resource group. The name is case insensitive.
     */
    resourceGroupName: string;
}
/**
 * SSL certificate for an app.
 */
export interface GetSiteCertificateResult {
    /**
     * The Azure API version of the resource.
     */
    readonly azureApiVersion: string;
    /**
     * CNAME of the certificate to be issued via free certificate
     */
    readonly canonicalName?: string;
    /**
     * Raw bytes of .cer file
     */
    readonly cerBlob: string;
    /**
     * Method of domain validation for free cert
     */
    readonly domainValidationMethod?: string;
    /**
     * Certificate expiration date.
     */
    readonly expirationDate: string;
    /**
     * Friendly name of the certificate.
     */
    readonly friendlyName: string;
    /**
     * Host names the certificate applies to.
     */
    readonly hostNames?: string[];
    /**
     * Specification for the App Service Environment to use for the certificate.
     */
    readonly hostingEnvironmentProfile: types.outputs.HostingEnvironmentProfileResponse;
    /**
     * Resource Id.
     */
    readonly id: string;
    /**
     * Certificate issue Date.
     */
    readonly issueDate: string;
    /**
     * Certificate issuer.
     */
    readonly issuer: string;
    /**
     * Azure Key Vault Csm resource Id.
     */
    readonly keyVaultId?: string;
    /**
     * Azure Key Vault secret name.
     */
    readonly keyVaultSecretName?: string;
    /**
     * Status of the Key Vault secret.
     */
    readonly keyVaultSecretStatus: string;
    /**
     * Kind of resource. If the resource is an app, you can refer to https://github.com/Azure/app-service-linux-docs/blob/master/Things_You_Should_Know/kind_property.md#app-service-resource-kind-reference for details supported values for kind.
     */
    readonly kind?: string;
    /**
     * Resource Location.
     */
    readonly location: string;
    /**
     * Resource Name.
     */
    readonly name: string;
    /**
     * Certificate password.
     */
    readonly password?: string;
    /**
     * Pfx blob.
     */
    readonly pfxBlob?: string;
    /**
     * Public key hash.
     */
    readonly publicKeyHash: string;
    /**
     * Self link.
     */
    readonly selfLink: string;
    /**
     * Resource ID of the associated App Service plan.
     */
    readonly serverFarmId?: string;
    /**
     * App name.
     */
    readonly siteName: string;
    /**
     * Subject name of the certificate.
     */
    readonly subjectName: string;
    /**
     * Resource tags.
     */
    readonly tags?: {
        [key: string]: string;
    };
    /**
     * Certificate thumbprint.
     */
    readonly thumbprint: string;
    /**
     * Resource type.
     */
    readonly type: string;
    /**
     * Is the certificate valid?.
     */
    readonly valid: boolean;
}
/**
 * SSL certificate for an app.
 *
 * Uses Azure REST API version 2024-11-01.
 *
 * Other available API versions: 2025-03-01, 2025-05-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native web [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
 */
export declare function getSiteCertificateOutput(args: GetSiteCertificateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSiteCertificateResult>;
export interface GetSiteCertificateOutputArgs {
    /**
     * Name of the certificate.
     */
    certificateName: pulumi.Input<string>;
    /**
     * Name of the site.
     */
    name: pulumi.Input<string>;
    /**
     * The name of the resource group. The name is case insensitive.
     */
    resourceGroupName: pulumi.Input<string>;
}
