import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * A Fly.io machine represents a VM instance that runs your application. */ export declare class Machine extends pulumi.CustomResource { /** * Get an existing Machine 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): Machine; /** * Returns true if the given object is an instance of Machine. 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 Machine; /** * The Fly.io application the machine belongs to. */ readonly app: pulumi.Output; readonly checks: pulumi.Output; readonly config: pulumi.Output; readonly createdAt: pulumi.Output; /** * The deployment strategy used for the machine. */ readonly deploymentStrategy: pulumi.Output; readonly events: pulumi.Output; readonly flyId: pulumi.Output; readonly hostStatus: pulumi.Output; readonly imageRef: pulumi.Output; readonly incompleteConfig: pulumi.Output; /** * The input arguments used to create the machine. */ readonly input: pulumi.Output; readonly instanceId: pulumi.Output; readonly name: pulumi.Output; readonly nonce: pulumi.Output; readonly privateIp: pulumi.Output; readonly region: pulumi.Output; readonly state: pulumi.Output; readonly updatedAt: pulumi.Output; /** * Create a Machine 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: MachineArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Machine resource. */ export interface MachineArgs { /** * The Fly.io application to deploy the machine to. */ app: pulumi.Input; config: pulumi.Input; /** * The deployment strategy for the machine. */ deploymentStrategy?: pulumi.Input; leaseTtl?: pulumi.Input; lsvd?: pulumi.Input; name?: pulumi.Input; region?: pulumi.Input; skipLaunch?: pulumi.Input; skipServiceRegistration?: pulumi.Input; }