import * as pulumi from "@pulumi/pulumi"; export declare class ComputeScript extends pulumi.CustomResource { /** * Get an existing ComputeScript 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?: ComputeScriptState, opts?: pulumi.CustomResourceOptions): ComputeScript; /** * Returns true if the given object is an instance of ComputeScript. 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 ComputeScript; /** * The ID of the script. */ readonly computeScriptId: pulumi.Output; /** * The code of the script. */ readonly content: pulumi.Output; /** * The deployment key for the script. */ readonly deploymentKey: pulumi.Output; /** * The name of the script. */ readonly name: pulumi.Output; /** * The current release identifier for the script. */ readonly release: pulumi.Output; /** * Options: `middleware`, `standalone` */ readonly type: pulumi.Output; /** * Create a ComputeScript 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: ComputeScriptArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ComputeScript resources. */ export interface ComputeScriptState { /** * The ID of the script. */ computeScriptId?: pulumi.Input; /** * The code of the script. */ content?: pulumi.Input; /** * The deployment key for the script. */ deploymentKey?: pulumi.Input; /** * The name of the script. */ name?: pulumi.Input; /** * The current release identifier for the script. */ release?: pulumi.Input; /** * Options: `middleware`, `standalone` */ type?: pulumi.Input; } /** * The set of arguments for constructing a ComputeScript resource. */ export interface ComputeScriptArgs { /** * The code of the script. */ content: pulumi.Input; /** * The name of the script. */ name?: pulumi.Input; /** * Options: `middleware`, `standalone` */ type: pulumi.Input; }