Show / Hide Table of Contents

Class StackSource

Object representing the source information for the stack, indicating origin type and a reference string.

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

Properties

Reference

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

Reference string providing a pointer or identifier for the source.

Type

Declaration
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public StackSource.TypeEnum? Type { get; set; }
Property Value
Type Description
StackSource.TypeEnum?

The source type of the stack (e.g. MARKETPLACE, QUICKSTART, or WEB).

In this article
Back to top