Show / Hide Table of Contents

Class AutonomousVirtualMachineSummary

Details of the Autonomous Virtual Machine.

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

Properties

AutonomousVmClusterId

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

The OCID of the Autonomous VM Cluster associated with the Autonomous Virtual Machine.

ClientIpAddress

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

Client IP Address.

CloudAutonomousVmClusterId

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

The OCID of the Cloud Autonomous VM Cluster associated with the Autonomous Virtual Machine.

CompartmentId

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

The OCID of the compartment.

CpuCoreCount

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

The number of CPU cores enabled on the Autonomous Virtual Machine.

DbNodeStorageSizeInGBs

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

The allocated local node storage in GBs on the Autonomous Virtual Machine.

DbServerDisplayName

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

The display name of the dbServer associated with the Autonomous Virtual Machine.

DbServerId

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

The OCID of the Db server associated with the Autonomous Virtual Machine.

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"}

Id

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

The OCID of the Autonomous Virtual Machine.

Remarks

Required

LifecycleState

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

The current state of the Autonomous Virtual Machine.

Remarks

Required

MemorySizeInGBs

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

The allocated memory in GBs on the Autonomous Virtual Machine.

VmName

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

The name of the Autonomous Virtual Machine.

In this article
Back to top