DeploymentGroup enum

Used to identify which API deployment cluster is currently responding. blue and green are used by Production. grapeand cherry are used during Development. Blue Green Deployment by Martin Fowler

Inheritance

Constructors

DeploymentGroup(String value)
const

Values

blue → const DeploymentGroup

Used to identify which API deployment cluster is currently responding. blue and green are used by Production. grapeand cherry are used during Development. Blue Green Deployment by Martin Fowler

const DeploymentGroup(r'blue')
green → const DeploymentGroup

Used to identify which API deployment cluster is currently responding. blue and green are used by Production. grapeand cherry are used during Development. Blue Green Deployment by Martin Fowler

const DeploymentGroup(r'green')
grape → const DeploymentGroup

Used to identify which API deployment cluster is currently responding. blue and green are used by Production. grapeand cherry are used during Development. Blue Green Deployment by Martin Fowler

const DeploymentGroup(r'grape')
cherry → const DeploymentGroup

Used to identify which API deployment cluster is currently responding. blue and green are used by Production. grapeand cherry are used during Development. Blue Green Deployment by Martin Fowler

const DeploymentGroup(r'cherry')

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value String
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<DeploymentGroup>
A constant List of the values in this enum, in order of their declaration.