Query

class oci.data_integration.models.Query(**kwargs)

Bases: oci.data_integration.models.push_down_operation.PushDownOperation

A query object.

Attributes

MODEL_TYPE_FILTER str(object=’’) -> str
MODEL_TYPE_JOIN str(object=’’) -> str
MODEL_TYPE_QUERY str(object=’’) -> str
MODEL_TYPE_SELECT str(object=’’) -> str
MODEL_TYPE_SORT str(object=’’) -> str
model_type [Required] Gets the model_type of this PushDownOperation.
query Gets the query of this Query.

Methods

__init__(**kwargs) Initializes a new Query 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'
MODEL_TYPE_JOIN = 'JOIN'
MODEL_TYPE_QUERY = 'QUERY'
MODEL_TYPE_SELECT = 'SELECT'
MODEL_TYPE_SORT = 'SORT'
__init__(**kwargs)

Initializes a new Query object with values from keyword arguments. The default value of the model_type attribute of this class is QUERY and it should not be changed. 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 Query. Allowed values for this property are: “FILTER”, “JOIN”, “SELECT”, “SORT”, “QUERY”
  • query (str) – The value to assign to the query property of this Query.
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
query

Gets the query of this Query. A query string.

Returns:The query of this Query.
Return type:str