DataAssetExportScope¶
-
class
oci.data_catalog.models.
DataAssetExportScope
(**kwargs)¶ Bases:
object
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.
Methods
__init__
(**kwargs)Initializes a new DataAssetExportScope object with values from keyword arguments. Attributes
export_type_ids
Gets the export_type_ids of this DataAssetExportScope. object_key
Gets the object_key of this DataAssetExportScope. -
__init__
(**kwargs)¶ Initializes a new DataAssetExportScope object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - object_key (str) – The value to assign to the object_key property of this DataAssetExportScope.
- export_type_ids (list[str]) – The value to assign to the export_type_ids property of this DataAssetExportScope.
-
export_type_ids
¶ Gets the export_type_ids of this DataAssetExportScope. Array of type keys selected for export.
Returns: The export_type_ids of this DataAssetExportScope. Return type: list[str]
-
object_key
¶ Gets the object_key of this DataAssetExportScope. Unique key of the object selected for export.
Returns: The object_key of this DataAssetExportScope. Return type: str
-