import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Checkly status pages allow you to easily communicate the uptime and health of your applications and services to your customers. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as checkly from "@checkly/pulumi"; * * const api = new checkly.StatusPageService("api", {name: "API"}); * const database = new checkly.StatusPageService("database", {name: "Database"}); * const example = new checkly.StatusPage("example", { * name: "Example Application", * url: "my-example-status-page", * defaultTheme: "DARK", * cards: [{ * name: "Services", * serviceAttachments: [ * { * serviceId: api.id, * }, * { * serviceId: database.id, * }, * ], * }], * }); * ``` */ export declare class StatusPage extends pulumi.CustomResource { /** * Get an existing StatusPage 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: StatusPageState, opts?: pulumi.CustomResourceOptions): StatusPage; /** * Returns true if the given object is an instance of StatusPage. 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 StatusPage; /** * A list of cards to include on the status page. */ readonly cards: pulumi.Output; /** * A custom user domain, e.g. "status.example.com". See the docs on updating your DNS and SSL usage. */ readonly customDomain: pulumi.Output; /** * Possible values are `AUTO`, `DARK`, and `LIGHT`. (Default `AUTO`). */ readonly defaultTheme: pulumi.Output; /** * A URL to an image file to use as the favicon of the status page. */ readonly favicon: pulumi.Output; /** * A URL to an image file to use as the logo for the status page. */ readonly logo: pulumi.Output; /** * The name of the status page. */ readonly name: pulumi.Output; /** * The URL the user should be redirected to when clicking the logo. */ readonly redirectTo: pulumi.Output; /** * The URL of the status page. */ readonly url: pulumi.Output; /** * Create a StatusPage 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: StatusPageArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering StatusPage resources. */ export interface StatusPageState { /** * A list of cards to include on the status page. */ cards?: pulumi.Input[]>; /** * A custom user domain, e.g. "status.example.com". See the docs on updating your DNS and SSL usage. */ customDomain?: pulumi.Input; /** * Possible values are `AUTO`, `DARK`, and `LIGHT`. (Default `AUTO`). */ defaultTheme?: pulumi.Input; /** * A URL to an image file to use as the favicon of the status page. */ favicon?: pulumi.Input; /** * A URL to an image file to use as the logo for the status page. */ logo?: pulumi.Input; /** * The name of the status page. */ name?: pulumi.Input; /** * The URL the user should be redirected to when clicking the logo. */ redirectTo?: pulumi.Input; /** * The URL of the status page. */ url?: pulumi.Input; } /** * The set of arguments for constructing a StatusPage resource. */ export interface StatusPageArgs { /** * A list of cards to include on the status page. */ cards: pulumi.Input[]>; /** * A custom user domain, e.g. "status.example.com". See the docs on updating your DNS and SSL usage. */ customDomain?: pulumi.Input; /** * Possible values are `AUTO`, `DARK`, and `LIGHT`. (Default `AUTO`). */ defaultTheme?: pulumi.Input; /** * A URL to an image file to use as the favicon of the status page. */ favicon?: pulumi.Input; /** * A URL to an image file to use as the logo for the status page. */ logo?: pulumi.Input; /** * The name of the status page. */ name?: pulumi.Input; /** * The URL the user should be redirected to when clicking the logo. */ redirectTo?: pulumi.Input; /** * The URL of the status page. */ url: pulumi.Input; }