Show / Hide Table of Contents

Class SchemaObjectTypeDetails

Schema object details

Inheritance
object
RelatedObjectTypeDetails
SchemaObjectTypeDetails
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 SchemaObjectTypeDetails : RelatedObjectTypeDetails

Properties

ObjectId

Declaration
[Required(ErrorMessage = "ObjectId is required.")]
[JsonProperty(PropertyName = "objectId")]
public int? ObjectId { 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