Show / Hide Table of Contents

Class MySqlFleetByCategory

The number of MySQL Databases in the fleet, grouped by database type and sub type.

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

Properties

DatabaseType

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

The type of the MySQL Database. Indicates whether the database is on premises or Oracle Cloud. Allowed values are: MDS and ONPREMISE

Remarks

Required

InventoryCount

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

The number of MySQL Databases.

Remarks

Required

MdsDeploymentType

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

The type of MySQL Database installation. Allowed values are: STANDALONE, HEATWAVE and HA

Remarks

Required

In this article
Back to top