import * as pulumi from "@pulumi/pulumi"; export declare class Check extends pulumi.CustomResource { /** * Get an existing Check 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?: CheckState, opts?: pulumi.CustomResourceOptions): Check; /** * Returns true if the given object is an instance of Check. 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 Check; readonly checkId: pulumi.Output; /** * Desired container state (e.g. running). */ readonly desiredState: pulumi.Output; /** * Identifier of the Portainer endpoint hosting the stack to check. */ readonly endpointId: pulumi.Output; /** * Maximum retries for each service check. */ readonly maxRetries: pulumi.Output; /** * Human-readable summary of the check results returned by the provider. */ readonly output: pulumi.Output; /** * Expected revision (image tag) of running containers/services. */ readonly revision: pulumi.Output; /** * Comma-separated list of service names (without stack prefix). */ readonly servicesList: pulumi.Output; /** * Name of the Portainer stack whose service status is being validated. */ readonly stackName: pulumi.Output; /** * Initial wait before the first check (seconds). */ readonly wait: pulumi.Output; /** * Wait time between retry checks (seconds). */ readonly waitBetweenChecks: pulumi.Output; /** * Create a Check 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: CheckArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Check resources. */ export interface CheckState { checkId?: pulumi.Input; /** * Desired container state (e.g. running). */ desiredState?: pulumi.Input; /** * Identifier of the Portainer endpoint hosting the stack to check. */ endpointId?: pulumi.Input; /** * Maximum retries for each service check. */ maxRetries?: pulumi.Input; /** * Human-readable summary of the check results returned by the provider. */ output?: pulumi.Input; /** * Expected revision (image tag) of running containers/services. */ revision?: pulumi.Input; /** * Comma-separated list of service names (without stack prefix). */ servicesList?: pulumi.Input; /** * Name of the Portainer stack whose service status is being validated. */ stackName?: pulumi.Input; /** * Initial wait before the first check (seconds). */ wait?: pulumi.Input; /** * Wait time between retry checks (seconds). */ waitBetweenChecks?: pulumi.Input; } /** * The set of arguments for constructing a Check resource. */ export interface CheckArgs { checkId?: pulumi.Input; /** * Desired container state (e.g. running). */ desiredState?: pulumi.Input; /** * Identifier of the Portainer endpoint hosting the stack to check. */ endpointId: pulumi.Input; /** * Maximum retries for each service check. */ maxRetries?: pulumi.Input; /** * Expected revision (image tag) of running containers/services. */ revision: pulumi.Input; /** * Comma-separated list of service names (without stack prefix). */ servicesList: pulumi.Input; /** * Name of the Portainer stack whose service status is being validated. */ stackName: pulumi.Input; /** * Initial wait before the first check (seconds). */ wait?: pulumi.Input; /** * Wait time between retry checks (seconds). */ waitBetweenChecks?: pulumi.Input; } //# sourceMappingURL=check.d.ts.map