import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * A component that waits for a Fly.io SSL/TLS certificate to be fully issued. */ export declare class CertificateIssuanceWaiter extends pulumi.CustomResource { /** * Get an existing CertificateIssuanceWaiter 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): CertificateIssuanceWaiter; /** * Returns true if the given object is an instance of CertificateIssuanceWaiter. 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 CertificateIssuanceWaiter; /** * The name of the Fly app. */ readonly app: pulumi.Output; /** * The certificate authority used. */ readonly certificateAuthority: pulumi.Output; /** * The Fly.io certificate ID. */ readonly certificateId: pulumi.Output; /** * The status of the certificate. */ readonly clientStatus: pulumi.Output; /** * Expiration time for the ECDSA certificate. */ readonly ecdsaExpiresAt: pulumi.Output; /** * The hostname for the certificate. */ readonly hostname: pulumi.Output; /** * The input arguments used for the certificate issuance waiter. */ readonly input: pulumi.Output; /** * Whether the certificate is fully issued (has both ECDSA and RSA certificates). */ readonly isFullyIssued: pulumi.Output; /** * When the certificate was fully issued. */ readonly issuedAt: pulumi.Output; /** * Expiration time for the RSA certificate. */ readonly rsaExpiresAt: pulumi.Output; /** * The timeout duration used for waiting. */ readonly timeout: pulumi.Output; /** * Create a CertificateIssuanceWaiter 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: CertificateIssuanceWaiterArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a CertificateIssuanceWaiter resource. */ export interface CertificateIssuanceWaiterArgs { /** * The name of the Fly app that the certificate is associated with. */ app: pulumi.Input; /** * The hostname for the certificate (e.g., example.com). */ hostname: pulumi.Input; /** * The maximum time to wait for the certificate to be fully issued. Formatted like 5s, 5m, etc. */ timeout: pulumi.Input; }