Show / Hide Table of Contents

Class DataAssetExportScope

Scope of asset export, which consists of a container object (bucket, folder, schema, etc) within the asset, and types of child objects contained by that object to be included. objectKey - Key of the container object to be exported. For example, key of schema_1. exportTypeIds - Type key(s) of objects within the container object to be exported. For example, type key of table or view.

Inheritance
object
DataAssetExportScope
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatacatalogService.Models
Assembly: OCI.DotNetSDK.Datacatalog.dll
Syntax
public class DataAssetExportScope

Properties

ExportTypeIds

Declaration
[JsonProperty(PropertyName = "exportTypeIds")]
public List<string> ExportTypeIds { get; set; }
Property Value
Type Description
List<string>

Array of type keys selected for export.

ObjectKey

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

Unique key of the object selected for export.

In this article
Back to top