IncrementalDataEntityClause¶
-
class
oci.data_integration.models.
IncrementalDataEntityClause
(**kwargs)¶ Bases:
object
Data Entity clause for Incremental Read operation.
Attributes
INCREMENTAL_COMPARATOR_CONTAINS
A constant which can be used with the incremental_comparator property of a IncrementalDataEntityClause. INCREMENTAL_COMPARATOR_EQUALS
A constant which can be used with the incremental_comparator property of a IncrementalDataEntityClause. INCREMENTAL_COMPARATOR_GREATERTHAN
A constant which can be used with the incremental_comparator property of a IncrementalDataEntityClause. INCREMENTAL_COMPARATOR_GREATERTHANEQUALS
A constant which can be used with the incremental_comparator property of a IncrementalDataEntityClause. INCREMENTAL_COMPARATOR_LESSTHAN
A constant which can be used with the incremental_comparator property of a IncrementalDataEntityClause. INCREMENTAL_COMPARATOR_LESSTHANEQUALS
A constant which can be used with the incremental_comparator property of a IncrementalDataEntityClause. INCREMENTAL_COMPARATOR_STARTSWITH
A constant which can be used with the incremental_comparator property of a IncrementalDataEntityClause. incremental_comparator
[Required] Gets the incremental_comparator of this IncrementalDataEntityClause. incremental_data_entity_name
[Required] Gets the incremental_data_entity_name of this IncrementalDataEntityClause. incremental_data_entity_value
[Required] Gets the incremental_data_entity_value of this IncrementalDataEntityClause. Methods
__init__
(**kwargs)Initializes a new IncrementalDataEntityClause object with values from keyword arguments. -
INCREMENTAL_COMPARATOR_CONTAINS
= 'CONTAINS'¶ A constant which can be used with the incremental_comparator property of a IncrementalDataEntityClause. This constant has a value of “CONTAINS”
-
INCREMENTAL_COMPARATOR_EQUALS
= 'EQUALS'¶ A constant which can be used with the incremental_comparator property of a IncrementalDataEntityClause. This constant has a value of “EQUALS”
-
INCREMENTAL_COMPARATOR_GREATERTHAN
= 'GREATERTHAN'¶ A constant which can be used with the incremental_comparator property of a IncrementalDataEntityClause. This constant has a value of “GREATERTHAN”
-
INCREMENTAL_COMPARATOR_GREATERTHANEQUALS
= 'GREATERTHANEQUALS'¶ A constant which can be used with the incremental_comparator property of a IncrementalDataEntityClause. This constant has a value of “GREATERTHANEQUALS”
-
INCREMENTAL_COMPARATOR_LESSTHAN
= 'LESSTHAN'¶ A constant which can be used with the incremental_comparator property of a IncrementalDataEntityClause. This constant has a value of “LESSTHAN”
-
INCREMENTAL_COMPARATOR_LESSTHANEQUALS
= 'LESSTHANEQUALS'¶ A constant which can be used with the incremental_comparator property of a IncrementalDataEntityClause. This constant has a value of “LESSTHANEQUALS”
-
INCREMENTAL_COMPARATOR_STARTSWITH
= 'STARTSWITH'¶ A constant which can be used with the incremental_comparator property of a IncrementalDataEntityClause. This constant has a value of “STARTSWITH”
-
__init__
(**kwargs)¶ Initializes a new IncrementalDataEntityClause object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - incremental_data_entity_name (str) – The value to assign to the incremental_data_entity_name property of this IncrementalDataEntityClause.
- incremental_data_entity_value (dict(str, str)) – The value to assign to the incremental_data_entity_value property of this IncrementalDataEntityClause.
- incremental_comparator (str) – The value to assign to the incremental_comparator property of this IncrementalDataEntityClause. Allowed values for this property are: “LESSTHAN”, “GREATERTHAN”, “EQUALS”, “LESSTHANEQUALS”, “GREATERTHANEQUALS”, “STARTSWITH”, “CONTAINS”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
-
incremental_comparator
¶ [Required] Gets the incremental_comparator of this IncrementalDataEntityClause. Incremental comparator symbol.
Allowed values for this property are: “LESSTHAN”, “GREATERTHAN”, “EQUALS”, “LESSTHANEQUALS”, “GREATERTHANEQUALS”, “STARTSWITH”, “CONTAINS”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The incremental_comparator of this IncrementalDataEntityClause. Return type: str
-
incremental_data_entity_name
¶ [Required] Gets the incremental_data_entity_name of this IncrementalDataEntityClause. Name of incremental data entity filter.
Returns: The incremental_data_entity_name of this IncrementalDataEntityClause. Return type: str
-
incremental_data_entity_value
¶ [Required] Gets the incremental_data_entity_value of this IncrementalDataEntityClause. Value of incremental data entity filter.
Returns: The incremental_data_entity_value of this IncrementalDataEntityClause. Return type: dict(str, str)
-