Show / Hide Table of Contents

Class UpdateAutonomousVmClusterDetails

Details for updating the Autonomous VM cluster.

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

Properties

AutonomousDataStorageSizeInTBs

Declaration
[JsonProperty(PropertyName = "autonomousDataStorageSizeInTBs")]
public double AutonomousDataStorageSizeInTBs { get; set; }
Property Value
Type Description
double

The new value of autonomous data storage (in TBs) for the Autonomous VM cluster.

CpuCoreCountPerNode

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

The new value of cpus per Autonomous VM cluster per node for the Autonomous VM cluster.

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. For more information, see Resource Tags.

FreeformTags

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

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example: {"Department": "Finance"}

LicenseModel

Declaration
[JsonProperty(PropertyName = "licenseModel")]
[JsonConverter(typeof(StringEnumConverter))]
public UpdateAutonomousVmClusterDetails.LicenseModelEnum? LicenseModel { get; set; }
Property Value
Type Description
UpdateAutonomousVmClusterDetails.LicenseModelEnum?

The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.

MaintenanceWindowDetails

Declaration
[JsonProperty(PropertyName = "maintenanceWindowDetails")]
public MaintenanceWindow MaintenanceWindowDetails { get; set; }
Property Value
Type Description
MaintenanceWindow

TotalContainerDatabases

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

The new value of maximum number of ACDs for the Autonomous VM cluster.

In this article
Back to top