Show / Hide Table of Contents

Class ProjectVariableState

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

Constructors

View Source

ProjectVariableState()

Declaration
public ProjectVariableState()

Properties

View Source

EnvironmentScope

The environment_scope of the variable

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

Key

The name of the variable.

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

Masked

If set to true, the variable will be masked if it would have been written to the logs. Defaults to false.

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

Project

The name or id of the project to add the hook to.

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

Protected

If set to true, the variable will be passed only to pipelines running on protected branches and tags. Defaults to false.

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

Value

The value of the variable.

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

VariableType

The type of a variable. Available types are: env_var (default) and file.

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