UpdateDataAssetDetails

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

Bases: object

Properties used in data asset update operations.

Methods

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

Attributes

custom_property_members Gets the custom_property_members of this UpdateDataAssetDetails.
description Gets the description of this UpdateDataAssetDetails.
display_name Gets the display_name of this UpdateDataAssetDetails.
properties Gets the properties of this UpdateDataAssetDetails.
__init__(**kwargs)

Initializes a new UpdateDataAssetDetails 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 UpdateDataAssetDetails.
  • description (str) – The value to assign to the description property of this UpdateDataAssetDetails.
  • custom_property_members (list[oci.data_catalog.models.CustomPropertySetUsage]) – The value to assign to the custom_property_members property of this UpdateDataAssetDetails.
  • properties (dict(str, dict(str, str))) – The value to assign to the properties property of this UpdateDataAssetDetails.
custom_property_members

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

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

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

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

Gets the display_name of this UpdateDataAssetDetails. 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 UpdateDataAssetDetails.
Return type:str
properties

Gets the properties of this UpdateDataAssetDetails. A map of maps that contains the properties which are specific to the 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. Example: {“properties”: { “default”: { “host”: “host1”, “port”: “1521”, “database”: “orcl”}}}

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