Show / Hide Table of Contents

Class CreatePeComanagedDatabaseInsightDetails

The information about database to be analyzed. Either an opsiPrivateEndpointId or dbmPrivateEndpointId must be specified. If the dbmPrivateEndpointId is specified, a new Operations Insights private endpoint will be created.

Inheritance
object
CreateDatabaseInsightDetails
CreatePeComanagedDatabaseInsightDetails
Inherited Members
CreateDatabaseInsightDetails.CompartmentId
CreateDatabaseInsightDetails.FreeformTags
CreateDatabaseInsightDetails.DefinedTags
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 CreatePeComanagedDatabaseInsightDetails : CreateDatabaseInsightDetails

Properties

ConnectionDetails

Declaration
[JsonProperty(PropertyName = "connectionDetails")]
public PeComanagedDatabaseConnectionDetails ConnectionDetails { get; set; }
Property Value
Type Description
PeComanagedDatabaseConnectionDetails

CredentialDetails

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

Required

DatabaseId

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

The OCID of the database.

Remarks

Required

DatabaseResourceType

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

OCI database resource type

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

DeploymentType

Declaration
[Required(ErrorMessage = "DeploymentType is required.")]
[JsonProperty(PropertyName = "deploymentType")]
[JsonConverter(typeof(StringEnumConverter))]
public CreatePeComanagedDatabaseInsightDetails.DeploymentTypeEnum? DeploymentType { get; set; }
Property Value
Type Description
CreatePeComanagedDatabaseInsightDetails.DeploymentTypeEnum?

Database Deployment Type

Remarks

Required

OpsiPrivateEndpointId

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

The OCID of the OPSI private endpoint

ServiceName

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

Database service name used for connection requests.

Remarks

Required

SystemTags

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

System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud": {"free-tier-retained": "true"}}

In this article
Back to top