GetDateTimeVariable

Use this data source to access information about an existing Automation Datetime Variable.

Example Usage

using Pulumi;
using Azure = Pulumi.Azure;

class MyStack : Stack
{
    public MyStack()
    {
        var example = Output.Create(Azure.Automation.GetDateTimeVariable.InvokeAsync(new Azure.Automation.GetDateTimeVariableArgs
        {
            Name = "tfex-example-var",
            ResourceGroupName = "tfex-example-rg",
            AutomationAccountName = "tfex-example-account",
        }));
        this.VariableId = example.Apply(example => example.Id);
    }

    [Output("variableId")]
    public Output<string> VariableId { get; set; }
}
package main

import (
    "github.com/pulumi/pulumi-azure/sdk/v3/go/azure/automation"
    "github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)

func main() {
    pulumi.Run(func(ctx *pulumi.Context) error {
        example, err := automation.LookupDateTimeVariable(ctx, &automation.LookupDateTimeVariableArgs{
            Name:                  "tfex-example-var",
            ResourceGroupName:     "tfex-example-rg",
            AutomationAccountName: "tfex-example-account",
        }, nil)
        if err != nil {
            return err
        }
        ctx.Export("variableId", example.Id)
        return nil
    })
}
import pulumi
import pulumi_azure as azure

example = azure.automation.get_date_time_variable(name="tfex-example-var",
    resource_group_name="tfex-example-rg",
    automation_account_name="tfex-example-account")
pulumi.export("variableId", example.id)
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const example = azure.automation.getDateTimeVariable({
    name: "tfex-example-var",
    resourceGroupName: "tfex-example-rg",
    automationAccountName: "tfex-example-account",
});
export const variableId = example.then(example => example.id);

Using GetDateTimeVariable

function getDateTimeVariable(args: GetDateTimeVariableArgs, opts?: InvokeOptions): Promise<GetDateTimeVariableResult>
function  get_date_time_variable(automation_account_name=None, name=None, resource_group_name=None, opts=None)
func LookupDateTimeVariable(ctx *Context, args *LookupDateTimeVariableArgs, opts ...InvokeOption) (*LookupDateTimeVariableResult, error)

Note: This function is named LookupDateTimeVariable in the Go SDK.

public static class GetDateTimeVariable {
    public static Task<GetDateTimeVariableResult> InvokeAsync(GetDateTimeVariableArgs args, InvokeOptions? opts = null)
}

The following arguments are supported:

AutomationAccountName string

The name of the automation account in which the Automation Variable exists.

Name string

The name of the Automation Variable.

ResourceGroupName string

The Name of the Resource Group where the automation account exists.

AutomationAccountName string

The name of the automation account in which the Automation Variable exists.

Name string

The name of the Automation Variable.

ResourceGroupName string

The Name of the Resource Group where the automation account exists.

automationAccountName string

The name of the automation account in which the Automation Variable exists.

name string

The name of the Automation Variable.

resourceGroupName string

The Name of the Resource Group where the automation account exists.

automation_account_name str

The name of the automation account in which the Automation Variable exists.

name str

The name of the Automation Variable.

resource_group_name str

The Name of the Resource Group where the automation account exists.

GetDateTimeVariable Result

The following output properties are available:

AutomationAccountName string
Description string

The description of the Automation Variable.

Encrypted bool

Specifies if the Automation Variable is encrypted. Defaults to false.

Id string

The provider-assigned unique ID for this managed resource.

Name string
ResourceGroupName string
Value string

The value of the Automation Variable in the RFC3339 Section 5.6 Internet Date/Time Format.

AutomationAccountName string
Description string

The description of the Automation Variable.

Encrypted bool

Specifies if the Automation Variable is encrypted. Defaults to false.

Id string

The provider-assigned unique ID for this managed resource.

Name string
ResourceGroupName string
Value string

The value of the Automation Variable in the RFC3339 Section 5.6 Internet Date/Time Format.

automationAccountName string
description string

The description of the Automation Variable.

encrypted boolean

Specifies if the Automation Variable is encrypted. Defaults to false.

id string

The provider-assigned unique ID for this managed resource.

name string
resourceGroupName string
value string

The value of the Automation Variable in the RFC3339 Section 5.6 Internet Date/Time Format.

automation_account_name str
description str

The description of the Automation Variable.

encrypted bool

Specifies if the Automation Variable is encrypted. Defaults to false.

id str

The provider-assigned unique ID for this managed resource.

name str
resource_group_name str
value str

The value of the Automation Variable in the RFC3339 Section 5.6 Internet Date/Time Format.

Package Details

Repository
https://github.com/pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.