Show / Hide Table of Contents

Class OrchestrationVariable

The model of a variable for an orchestration resource.

Inheritance
object
OrchestrationVariable
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MarketplaceService.Models
Assembly: OCI.DotNetSDK.Marketplace.dll
Syntax
public class OrchestrationVariable

Properties

DataType

Declaration
[JsonProperty(PropertyName = "dataType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public OrchestrationVariableTypeEnum? DataType { get; set; }
Property Value
Type Description
OrchestrationVariableTypeEnum?

The data type of the variable.

DefaultValue

Declaration
[JsonProperty(PropertyName = "defaultValue")]
public string DefaultValue { get; set; }
Property Value
Type Description
string

The variable's default value.

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

A description of the variable.

HintMessage

Declaration
[JsonProperty(PropertyName = "hintMessage")]
public string HintMessage { get; set; }
Property Value
Type Description
string

A brief textual description that helps to explain the variable.

IsMandatory

Declaration
[JsonProperty(PropertyName = "isMandatory")]
public bool? IsMandatory { get; set; }
Property Value
Type Description
bool?

Whether the variable is mandatory.

Name

Declaration
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

The name of the variable.

In this article
Back to top