Show / Hide Table of Contents

Class VariableArgs

Inheritance
System.Object
InputArgs
ResourceArgs
VariableArgs
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.Gcp.RuntimeConfig
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class VariableArgs : ResourceArgs

Constructors

View Source

VariableArgs()

Declaration
public VariableArgs()

Properties

View Source

Name

The name of the variable to manage. Note that variable names can be hierarchical using slashes (e.g. "prod-variables/hostname").

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

Parent

The name of the RuntimeConfig resource containing this variable.

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

Project

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

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

Text

or value - (Required) The content to associate with the variable. Exactly one of text or variable must be specified. If text is specified, it must be a valid UTF-8 string and less than 4096 bytes in length. If value is specified, it must be base64 encoded and less than 4096 bytes in length.

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

Value

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