Show / Hide Table of Contents

Class BlueGreenDeploymentSummary

List-safe summary of a blue/green deployment.

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

Properties

ActiveDbSystemId

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

The DB system OCID that currently owns the client-facing VIP and serves traffic.

CompartmentId

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

The OCID of the compartment.

Remarks

Required

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace": {"bar-key": "value"}}

DisplayName

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

The display name of the blue/green deployment.

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

Id

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

The OCID of the blue/green deployment.

Remarks

Required

LifecycleDetails

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

Additional lifecycle details.

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public BlueGreenDeploymentSummary.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
BlueGreenDeploymentSummary.LifecycleStateEnum?

The current lifecycle state.

Remarks

Required

SourceDbSystemId

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

Blue/original source DB system OCID for the deployment pair.

SwitchoverStatus

Declaration
[JsonProperty(PropertyName = "switchoverStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public BlueGreenDeploymentSwitchoverStatus? SwitchoverStatus { get; set; }
Property Value
Type Description
BlueGreenDeploymentSwitchoverStatus?

Stage of the most recent switchover workflow. SWITCHOVER_FAILED indicates terminal switchover failure.

SystemTags

Declaration
[JsonProperty(PropertyName = "systemTags")]
public Dictionary<string, Dictionary<string, object>> SystemTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud": {"free-tier-retained": "true"}}

TargetDbSystemId

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

Green/target DB system OCID for the deployment pair.

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The time the deployment was created.

Remarks

Required

TimeUpdated

Declaration
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

The time the deployment was last updated.

In this article
Back to top