import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Automation Object Variable. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * import * as std from "@pulumi/std"; * * const example = azure.automation.getVariableObject({ * name: "tfex-example-var", * resourceGroupName: "tfex-example-rg", * automationAccountName: "tfex-example-account", * }); * export const variable = example.then(example => std.jsondecode({ * input: example.value, * })).then(invoke => invoke.result); * ``` */ export declare function getVariableObject(args: GetVariableObjectArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVariableObject. */ export interface GetVariableObjectArgs { /** * The name of the automation account in which the Automation Variable exists. */ automationAccountName: string; /** * The name of the Automation Variable. */ name: string; /** * The Name of the Resource Group where the automation account exists. */ resourceGroupName: string; } /** * A collection of values returned by getVariableObject. */ export interface GetVariableObjectResult { readonly automationAccountName: string; /** * The description of the Automation Variable. */ readonly description: string; /** * Specifies if the Automation Variable is encrypted. Defaults to `false`. */ readonly encrypted: boolean; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly resourceGroupName: string; /** * The value of the Automation Variable as a json encoded `string`. */ readonly value: string; } /** * Use this data source to access information about an existing Automation Object Variable. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * import * as std from "@pulumi/std"; * * const example = azure.automation.getVariableObject({ * name: "tfex-example-var", * resourceGroupName: "tfex-example-rg", * automationAccountName: "tfex-example-account", * }); * export const variable = example.then(example => std.jsondecode({ * input: example.value, * })).then(invoke => invoke.result); * ``` */ export declare function getVariableObjectOutput(args: GetVariableObjectOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVariableObject. */ export interface GetVariableObjectOutputArgs { /** * The name of the automation account in which the Automation Variable exists. */ automationAccountName: pulumi.Input; /** * The name of the Automation Variable. */ name: pulumi.Input; /** * The Name of the Resource Group where the automation account exists. */ resourceGroupName: pulumi.Input; }