PushDownOperation¶
-
class
oci.data_integration.models.
PushDownOperation
(**kwargs)¶ Bases:
object
The information about a push down operation.
Attributes
MODEL_TYPE_FILTER
A constant which can be used with the model_type property of a PushDownOperation. MODEL_TYPE_JOIN
A constant which can be used with the model_type property of a PushDownOperation. MODEL_TYPE_QUERY
A constant which can be used with the model_type property of a PushDownOperation. MODEL_TYPE_SELECT
A constant which can be used with the model_type property of a PushDownOperation. MODEL_TYPE_SORT
A constant which can be used with the model_type property of a PushDownOperation. model_type
[Required] Gets the model_type of this PushDownOperation. Methods
__init__
(**kwargs)Initializes a new PushDownOperation object with values from keyword arguments. get_subtype
(object_dictionary)Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. -
MODEL_TYPE_FILTER
= 'FILTER'¶ A constant which can be used with the model_type property of a PushDownOperation. This constant has a value of “FILTER”
-
MODEL_TYPE_JOIN
= 'JOIN'¶ A constant which can be used with the model_type property of a PushDownOperation. This constant has a value of “JOIN”
-
MODEL_TYPE_QUERY
= 'QUERY'¶ A constant which can be used with the model_type property of a PushDownOperation. This constant has a value of “QUERY”
-
MODEL_TYPE_SELECT
= 'SELECT'¶ A constant which can be used with the model_type property of a PushDownOperation. This constant has a value of “SELECT”
-
MODEL_TYPE_SORT
= 'SORT'¶ A constant which can be used with the model_type property of a PushDownOperation. This constant has a value of “SORT”
-
__init__
(**kwargs)¶ Initializes a new PushDownOperation object with values from keyword arguments. This class has the following subclasses and if you are using this class as input to a service operations then you should favor using a subclass over the base class:
The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: model_type (str) – The value to assign to the model_type property of this PushDownOperation. Allowed values for this property are: “FILTER”, “JOIN”, “SELECT”, “SORT”, “QUERY”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
-
static
get_subtype
(object_dictionary)¶ Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
-
model_type
¶ [Required] Gets the model_type of this PushDownOperation. The type of operation.
Allowed values for this property are: “FILTER”, “JOIN”, “SELECT”, “SORT”, “QUERY”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The model_type of this PushDownOperation. Return type: str
-