Show / Hide Table of Contents

Class VariableGroup

An organizational grouping of related variables within the schema.

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

Properties

Title

Declaration
[Required(ErrorMessage = "Title is required.")]
[JsonProperty(PropertyName = "title")]
public string Title { get; set; }
Property Value
Type Description
string

Display title for the group of variables.

Remarks

Required

Variables

Declaration
[Required(ErrorMessage = "Variables is required.")]
[JsonProperty(PropertyName = "variables")]
public List<string> Variables { get; set; }
Property Value
Type Description
List<string>

Array of variable references assigned to this group.

Remarks

Required

Visible

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

Hint controlling the group's visibility.

In this article
Back to top