Show / Hide Table of Contents

Class OutputGroup

Output group.

Inheritance
object
OutputGroup
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 OutputGroup

Properties

Outputs

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

Array of output strings included in group.

Remarks

Required

Title

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

Display name for group of outputs.

Remarks

Required

In this article
Back to top