Show / Hide Table of Contents

Class CreateBlueGreenDeploymentTargetDbSystemDetails

Target DB System overrides for a blue/green deployment.

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

Properties

ConfigurationId

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

The OCID of the configuration to apply to the target DB System. If omitted, the target DB System inherits the source DB System configuration.

DataStorageSizeInGBs

Declaration
[JsonProperty(PropertyName = "dataStorageSizeInGBs")]
public int? DataStorageSizeInGBs { get; set; }
Property Value
Type Description
int?

Initial data storage size in GiBs for the target DB System. If omitted, the target DB System uses the source DB System storage size.

MysqlVersion

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

Target MySQL engine version.

Remarks

Required

ShapeName

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

The shape of the target DB System. The shape determines resources allocated to the DB System - CPU cores and memory for VM shapes; CPU cores, memory and storage for non-VM (or bare metal) shapes. To get a list of shapes, use the {@link #listShapes(ListShapesRequest) listShapes} operation.

In this article
Back to top