Show / Hide Table of Contents

Class IntVariableState

Inheritance
System.Object
InputArgs
ResourceArgs
IntVariableState
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.Automation
Assembly: Pulumi.Azure.dll
Syntax
public sealed class IntVariableState : ResourceArgs

Constructors

View Source

IntVariableState()

Declaration
public IntVariableState()

Properties

View Source

AutomationAccountName

The name of the automation account in which the Variable is created. Changing this forces a new resource to be created.

Declaration
public Input<string> AutomationAccountName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Description

The description of the Automation Variable.

Declaration
public Input<string> Description { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Encrypted

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

Declaration
public Input<bool> Encrypted { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Name

The name of the Automation Variable. Changing this forces a new resource to be created.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ResourceGroupName

The name of the resource group in which to create the Automation Variable. Changing this forces a new resource to be created.

Declaration
public Input<string> ResourceGroupName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Value

The value of the Automation Variable as a integer.

Declaration
public Input<int> Value { get; set; }
Property Value
Type Description
Input<System.Int32>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.