informatica.infacore.dataframe.dataobject.DataObject.get_advanced_config

DataObject.get_advanced_config(mode: str = 'BASIC') dict

Returns the advanced attributes for the DataObject.

Parameters:

mode (str, optional) –

The value to assign to retrieve the corresponding advanced attribute details.

You can specify the following values:
  • SIMPLIFIED: Gets only the mandatory fields, with default values wherever applicable.

  • BASIC: Gets all the advanced attribute keys as dict.

  • RAW: Gets the details of the advanced attributes such as the data type, default value, isMandatory, and other details.

Returns:

Dictionary that contains advanced attributes for both read and write operations.

Return type:

dict

Example

>>> import informatica.infacore as ic
>>> orcl_do = ic.get_datasource("Oracle").get_connection("Oracle Prod").get_data_object("Customers")
>>> orcl_do.get_advanced_config()