Table of Contents

Class AzureVariableOptions

Namespace
DotNetDo
Assembly
DotNetDo.Core.dll

Controls how an Azure Pipelines task variable is stored and exposed.

public sealed record AzureVariableOptions : IEquatable<AzureVariableOptions>

Properties

IsOutput

Whether later jobs and stages may consume the variable as a task output.

public bool? IsOutput { get; init; }

Property Value

bool?

IsReadOnly

Whether later logging commands are prevented from changing the variable.

public bool? IsReadOnly { get; init; }

Property Value

bool?

IsSecret

Whether Azure Pipelines masks the value and withholds it from automatic environment mapping.

public bool? IsSecret { get; init; }

Property Value

bool?