Show / Hide Table of Contents

Class CreatePeComanagedExadataVmclusterDetails

The information of the VM Cluster which contains databases. Either an opsiPrivateEndpointId or dbmPrivateEndpointId must be specified. If the dbmPrivateEndpointId is specified, a new Operations Insights private endpoint will be created.

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

Properties

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

DbmPrivateEndpointId

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

The OCID of the Database Management private endpoint

MemberDatabaseDetails

Declaration
[JsonProperty(PropertyName = "memberDatabaseDetails")]
public List<CreatePeComanagedDatabaseInsightDetails> MemberDatabaseDetails { get; set; }
Property Value
Type Description
List<CreatePeComanagedDatabaseInsightDetails>

The databases that belong to the VM Cluster

OpsiPrivateEndpointId

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

The OCID of the OPSI private endpoint

VmclusterId

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

The OCID of the VM Cluster.

Remarks

Required

In this article
Back to top