StackSource

class oci.fleet_apps_management.models.StackSource(**kwargs)

Bases: object

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

Attributes

TYPE_MARKETPLACE A constant which can be used with the type property of a StackSource.
TYPE_QUICKSTART A constant which can be used with the type property of a StackSource.
TYPE_WEB A constant which can be used with the type property of a StackSource.
reference Gets the reference of this StackSource.
type Gets the type of this StackSource.

Methods

__init__(**kwargs) Initializes a new StackSource object with values from keyword arguments.
TYPE_MARKETPLACE = 'MARKETPLACE'

A constant which can be used with the type property of a StackSource. This constant has a value of “MARKETPLACE”

TYPE_QUICKSTART = 'QUICKSTART'

A constant which can be used with the type property of a StackSource. This constant has a value of “QUICKSTART”

TYPE_WEB = 'WEB'

A constant which can be used with the type property of a StackSource. This constant has a value of “WEB”

__init__(**kwargs)

Initializes a new StackSource object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • type (str) – The value to assign to the type property of this StackSource. Allowed values for this property are: “MARKETPLACE”, “QUICKSTART”, “WEB”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
  • reference (str) – The value to assign to the reference property of this StackSource.
reference

Gets the reference of this StackSource. Reference string providing a pointer or identifier for the source.

Returns:The reference of this StackSource.
Return type:str
type

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

Allowed values for this property are: “MARKETPLACE”, “QUICKSTART”, “WEB”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.

Returns:The type of this StackSource.
Return type:str