Show / Hide Table of Contents

Class AddmDbSchemaObjectSummary

Details for a given object id

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

Properties

Id

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

The OCID of the Database insight.

Remarks

Required

ObjectIdentifier

Declaration
[Required(ErrorMessage = "ObjectIdentifier is required.")]
[JsonProperty(PropertyName = "objectIdentifier")]
public int? ObjectIdentifier { get; set; }
Property Value
Type Description
int?

Object id (from RDBMS)

Remarks

Required

ObjectName

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

Name of object

Remarks

Required

ObjectType

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

Type of the object (such as TABLE, INDEX)

Remarks

Required

Owner

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

Owner of object

Remarks

Required

SubObjectName

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

Subobject name; for example, partition name

In this article
Back to top