ParameterValue¶
- 
class oci.data_integration.models.ParameterValue(**kwargs)¶
- Bases: - object- User defined value for a parameter. - Methods - __init__(**kwargs)- Initializes a new ParameterValue object with values from keyword arguments. - Attributes - root_object_value- Gets the root_object_value of this ParameterValue. - simple_value- Gets the simple_value of this ParameterValue. - 
__init__(**kwargs)¶
- Initializes a new ParameterValue object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - simple_value (object) – The value to assign to the simple_value property of this ParameterValue.
- root_object_value (object) – The value to assign to the root_object_value property of this ParameterValue.
 
 - 
root_object_value¶
- Gets the root_object_value of this ParameterValue. This can be any object such as a file entity, a schema, or a table. - Returns: - The root_object_value of this ParameterValue. - Return type: - object 
 - 
simple_value¶
- Gets the simple_value of this ParameterValue. A simple value for the parameter. - Returns: - The simple_value of this ParameterValue. - Return type: - object 
 
-