SortKeyRule¶
- 
class oci.data_integration.models.SortKeyRule(**kwargs)¶
- Bases: - object- A rule to define the set of fields to sort by, and whether to sort by ascending or descending values. - Methods - __init__(**kwargs)- Initializes a new SortKeyRule object with values from keyword arguments. - Attributes - is_ascending- Gets the is_ascending of this SortKeyRule. - wrapped_rule- Gets the wrapped_rule of this SortKeyRule. - 
__init__(**kwargs)¶
- Initializes a new SortKeyRule object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - wrapped_rule (oci.data_integration.models.ProjectionRule) – The value to assign to the wrapped_rule property of this SortKeyRule.
- is_ascending (bool) – The value to assign to the is_ascending property of this SortKeyRule.
 
 - 
is_ascending¶
- Gets the is_ascending of this SortKeyRule. Specifies if the sort key has ascending order. - Returns: - The is_ascending of this SortKeyRule. - Return type: - bool 
 - 
wrapped_rule¶
- Gets the wrapped_rule of this SortKeyRule. - Returns: - The wrapped_rule of this SortKeyRule. - Return type: - oci.data_integration.models.ProjectionRule 
 
-