Show / Hide Table of Contents

Class WarehouseDataObjectSummary

Summary of a Warehouse data object.

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

Properties

DataObjectType

Declaration
[Required(ErrorMessage = "DataObjectType is required.")]
[JsonProperty(PropertyName = "dataObjectType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DataObjectType? DataObjectType { get; set; }
Property Value
Type Description
DataObjectType?

Type of the data object.

Remarks

Required

Details

Declaration
[JsonProperty(PropertyName = "details")]
public WarehouseDataObjectDetails Details { get; set; }
Property Value
Type Description
WarehouseDataObjectDetails

Name

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

Name of the data object, which can be used in data object queries just like how view names are used in a query.

Owner

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

Owner of the data object, which can be used in data object queries in front of data object names just like SCHEMA.VIEW notation in queries.

In this article
Back to top