import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class Deploy extends pulumi.CustomResource { /** * Get an existing Deploy 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?: DeployState, opts?: pulumi.CustomResourceOptions): Deploy; /** * Returns true if the given object is an instance of Deploy. 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 Deploy; readonly deployId: pulumi.Output; /** * Identifier of the Portainer endpoint hosting the stack to deploy/update. */ readonly endpointId: pulumi.Output; /** * If true, call Portainer forceupdateservice endpoint for each updated service (after optional wait). */ readonly forceUpdate: pulumi.Output; /** * Human-readable summary of the deployment actions performed by the provider. */ readonly output: pulumi.Output; /** * Target image tag/revision to set on services and optionally on stack ENV in stack_env_var. */ readonly revision: pulumi.Output; /** * Comma-separated list of service names (without stack prefix). */ readonly servicesList: pulumi.Output; /** * Name of stack environment variable to update. */ readonly stackEnvVar: pulumi.Output; /** * Name of the Portainer stack whose services are being deployed. */ readonly stackName: pulumi.Output; readonly timeouts: pulumi.Output; /** * If true, also update stack ENV variable in stackEnvVar to the provided revision. */ readonly updateRevision: pulumi.Output; /** * Seconds to wait before force-updating a service (only when forceUpdate = true). */ readonly wait: pulumi.Output; /** * Create a Deploy 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: DeployArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Deploy resources. */ export interface DeployState { deployId?: pulumi.Input; /** * Identifier of the Portainer endpoint hosting the stack to deploy/update. */ endpointId?: pulumi.Input; /** * If true, call Portainer forceupdateservice endpoint for each updated service (after optional wait). */ forceUpdate?: pulumi.Input; /** * Human-readable summary of the deployment actions performed by the provider. */ output?: pulumi.Input; /** * Target image tag/revision to set on services and optionally on stack ENV in stack_env_var. */ revision?: pulumi.Input; /** * Comma-separated list of service names (without stack prefix). */ servicesList?: pulumi.Input; /** * Name of stack environment variable to update. */ stackEnvVar?: pulumi.Input; /** * Name of the Portainer stack whose services are being deployed. */ stackName?: pulumi.Input; timeouts?: pulumi.Input; /** * If true, also update stack ENV variable in stackEnvVar to the provided revision. */ updateRevision?: pulumi.Input; /** * Seconds to wait before force-updating a service (only when forceUpdate = true). */ wait?: pulumi.Input; } /** * The set of arguments for constructing a Deploy resource. */ export interface DeployArgs { deployId?: pulumi.Input; /** * Identifier of the Portainer endpoint hosting the stack to deploy/update. */ endpointId: pulumi.Input; /** * If true, call Portainer forceupdateservice endpoint for each updated service (after optional wait). */ forceUpdate?: pulumi.Input; /** * Target image tag/revision to set on services and optionally on stack ENV in stack_env_var. */ revision: pulumi.Input; /** * Comma-separated list of service names (without stack prefix). */ servicesList: pulumi.Input; /** * Name of stack environment variable to update. */ stackEnvVar: pulumi.Input; /** * Name of the Portainer stack whose services are being deployed. */ stackName: pulumi.Input; timeouts?: pulumi.Input; /** * If true, also update stack ENV variable in stackEnvVar to the provided revision. */ updateRevision?: pulumi.Input; /** * Seconds to wait before force-updating a service (only when forceUpdate = true). */ wait?: pulumi.Input; } //# sourceMappingURL=deploy.d.ts.map