CreateDataAssetDetails

class oci.data_catalog.models.CreateDataAssetDetails(**kwargs)

Bases: object

Properties used in data asset create operations.

Methods

__init__(**kwargs) Initializes a new CreateDataAssetDetails object with values from keyword arguments.

Attributes

custom_property_members Gets the custom_property_members of this CreateDataAssetDetails.
description Gets the description of this CreateDataAssetDetails.
display_name [Required] Gets the display_name of this CreateDataAssetDetails.
properties Gets the properties of this CreateDataAssetDetails.
type_key [Required] Gets the type_key of this CreateDataAssetDetails.
__init__(**kwargs)

Initializes a new CreateDataAssetDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • display_name (str) – The value to assign to the display_name property of this CreateDataAssetDetails.
  • description (str) – The value to assign to the description property of this CreateDataAssetDetails.
  • type_key (str) – The value to assign to the type_key property of this CreateDataAssetDetails.
  • custom_property_members (list[oci.data_catalog.models.CustomPropertySetUsage]) – The value to assign to the custom_property_members property of this CreateDataAssetDetails.
  • properties (dict(str, dict(str, str))) – The value to assign to the properties property of this CreateDataAssetDetails.
custom_property_members

Gets the custom_property_members of this CreateDataAssetDetails. The list of customized properties along with the values for this object

Returns:The custom_property_members of this CreateDataAssetDetails.
Return type:list[oci.data_catalog.models.CustomPropertySetUsage]
description

Gets the description of this CreateDataAssetDetails. Detailed description of the data asset.

Returns:The description of this CreateDataAssetDetails.
Return type:str
display_name

[Required] Gets the display_name of this CreateDataAssetDetails. A user-friendly display name. Does not have to be unique, and it’s changeable. Avoid entering confidential information.

Returns:The display_name of this CreateDataAssetDetails.
Return type:str
properties

Gets the properties of this CreateDataAssetDetails. A map of maps that contains the properties which are specific to the data asset type. Each data asset type definition defines it’s set of required and optional properties. The map keys are category names and the values are maps of property name to property value. Every property is contained inside of a category. Most data assets have required properties within the “default” category. To determine the set of optional and required properties for a data asset type, a query can be done on ‘/types?type=dataAsset’ that returns a collection of all data asset types. The appropriate data asset type, which includes definitions of all of it’s properties, can be identified from this collection. Example: {“properties”: { “default”: { “host”: “host1”, “port”: “1521”, “database”: “orcl”}}}

Returns:The properties of this CreateDataAssetDetails.
Return type:dict(str, dict(str, str))
type_key

[Required] Gets the type_key of this CreateDataAssetDetails. The key of the data asset type. This can be obtained via the ‘/types’ endpoint.

Returns:The type_key of this CreateDataAssetDetails.
Return type:str