import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * A Fly.io SSL/TLS certificate for an app's domain. */ export declare class Certificate extends pulumi.CustomResource { /** * Get an existing Certificate 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): Certificate; /** * Returns true if the given object is an instance of Certificate. 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 Certificate; /** * Whether ACME ALPN verification is configured. */ readonly acmeAlpnConfigured: pulumi.Output; /** * Whether ACME DNS verification is configured. */ readonly acmeDnsConfigured: pulumi.Output; /** * The name of the Fly app. */ readonly app: pulumi.Output; /** * The certificate authority used. */ readonly certificateAuthority: pulumi.Output; /** * The status of the certificate. */ readonly clientStatus: pulumi.Output; /** * Whether the certificate is fully configured. */ readonly configured: pulumi.Output; /** * When the certificate was created. */ readonly createdAt: pulumi.Output; /** * The DNS provider for the hostname. */ readonly dnsProvider: pulumi.Output; /** * Hostname for DNS validation. */ readonly dnsValidationHostname: pulumi.Output; /** * Instructions for DNS validation. */ readonly dnsValidationInstructions: pulumi.Output; /** * Target for DNS validation. */ readonly dnsValidationTarget: pulumi.Output; /** * The Fly.io certificate ID. */ readonly flyId: pulumi.Output; /** * The hostname for the certificate. */ readonly hostname: pulumi.Output; /** * The input arguments used to create the certificate. */ readonly input: pulumi.Output; /** * Whether the hostname is an apex domain. */ readonly isApex: pulumi.Output; /** * Whether the certificate is a wildcard certificate. */ readonly isWildcard: pulumi.Output; /** * The source of the certificate. */ readonly source: pulumi.Output; /** * Create a Certificate 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: CertificateArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Certificate resource. */ export interface CertificateArgs { /** * The name of the Fly app to add the certificate to. */ app: pulumi.Input; /** * The hostname for the certificate (e.g., example.com). */ hostname: pulumi.Input; }