import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class AlertingSettings extends pulumi.CustomResource { /** * Get an existing AlertingSettings 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?: AlertingSettingsState, opts?: pulumi.CustomResourceOptions): AlertingSettings; /** * Returns true if the given object is an instance of AlertingSettings. 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 AlertingSettings; readonly alertingSettingsId: pulumi.Output; /** * Timestamp when the settings were created. */ readonly createdAt: pulumi.Output; /** * User who created the settings. */ readonly createdBy: pulumi.Output; /** * Whether alerting is enabled. */ readonly enabled: pulumi.Output; /** * Whether this uses the internal AlertManager. */ readonly isInternal: pulumi.Output; /** * Name of the alerting settings entry. */ readonly name: pulumi.Output; /** * List of notification channels. */ readonly notificationChannels: pulumi.Output; /** * Portainer URL used by AlertManager for callbacks. */ readonly portainerUrl: pulumi.Output; /** * Connection status (disabled, connected, disconnected, error). */ readonly status: pulumi.Output; /** * Uptime of the AlertManager. */ readonly uptime: pulumi.Output; /** * URL of the external AlertManager instance. Leave empty for internal. */ readonly url: pulumi.Output; /** * Create a AlertingSettings 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: AlertingSettingsArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AlertingSettings resources. */ export interface AlertingSettingsState { alertingSettingsId?: pulumi.Input; /** * Timestamp when the settings were created. */ createdAt?: pulumi.Input; /** * User who created the settings. */ createdBy?: pulumi.Input; /** * Whether alerting is enabled. */ enabled?: pulumi.Input; /** * Whether this uses the internal AlertManager. */ isInternal?: pulumi.Input; /** * Name of the alerting settings entry. */ name?: pulumi.Input; /** * List of notification channels. */ notificationChannels?: pulumi.Input[] | undefined>; /** * Portainer URL used by AlertManager for callbacks. */ portainerUrl?: pulumi.Input; /** * Connection status (disabled, connected, disconnected, error). */ status?: pulumi.Input; /** * Uptime of the AlertManager. */ uptime?: pulumi.Input; /** * URL of the external AlertManager instance. Leave empty for internal. */ url?: pulumi.Input; } /** * The set of arguments for constructing a AlertingSettings resource. */ export interface AlertingSettingsArgs { alertingSettingsId?: pulumi.Input; /** * Whether alerting is enabled. */ enabled: pulumi.Input; /** * Name of the alerting settings entry. */ name?: pulumi.Input; /** * List of notification channels. */ notificationChannels?: pulumi.Input[] | undefined>; /** * Portainer URL used by AlertManager for callbacks. */ portainerUrl?: pulumi.Input; /** * URL of the external AlertManager instance. Leave empty for internal. */ url?: pulumi.Input; } //# sourceMappingURL=alertingSettings.d.ts.map