Show / Hide Table of Contents

Class DiscoveredCloudDbSystemComponent

The details of a cloud DB system component.

Inheritance
object
DiscoveredCloudDbSystemComponent
DiscoveredCloudAsm
DiscoveredCloudAsmInstance
DiscoveredCloudCluster
DiscoveredCloudClusterInstance
DiscoveredCloudDatabase
DiscoveredCloudDbHome
DiscoveredCloudDbInstance
DiscoveredCloudDbNode
DiscoveredCloudListener
DiscoveredCloudPluggableDatabase
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
[JsonConverter(typeof(DiscoveredCloudDbSystemComponentModelConverter))]
public class DiscoveredCloudDbSystemComponent

Properties

AssociatedComponents

Declaration
[JsonProperty(PropertyName = "associatedComponents")]
public List<AssociatedCloudComponent> AssociatedComponents { get; set; }
Property Value
Type Description
List<AssociatedCloudComponent>

The list of associated components.

ComponentId

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

The identifier of the discovered DB system component.

Remarks

Required

ComponentName

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

The name of the discovered DB system component.

Remarks

Required

DbaasId

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

The OCID of the existing Dbaas OCI resource matching the discovered DB system component.

DisplayName

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

The user-friendly name for the discovered DB system component. The name does not have to be unique.

Remarks

Required

IsSelectedForMonitoring

Declaration
[JsonProperty(PropertyName = "isSelectedForMonitoring")]
public bool? IsSelectedForMonitoring { get; set; }
Property Value
Type Description
bool?

Indicates whether the DB system component should be provisioned as an OCI resource or not.

ResourceId

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

The OCID of the existing OCI resource matching the discovered DB system component.

Status

Declaration
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DiscoveredCloudDbSystemComponent.StatusEnum? Status { get; set; }
Property Value
Type Description
DiscoveredCloudDbSystemComponent.StatusEnum?

The state of the discovered DB system component.

In this article
Back to top