JobOutBind¶
-
class
oci.database_management.models.
JobOutBind
(**kwargs)¶ Bases:
object
The details of the job out-bind variable.
Attributes
DATA_TYPE_CLOB
A constant which can be used with the data_type property of a JobOutBind. DATA_TYPE_NUMBER
A constant which can be used with the data_type property of a JobOutBind. DATA_TYPE_STRING
A constant which can be used with the data_type property of a JobOutBind. data_type
[Required] Gets the data_type of this JobOutBind. position
[Required] Gets the position of this JobOutBind. Methods
__init__
(**kwargs)Initializes a new JobOutBind object with values from keyword arguments. -
DATA_TYPE_CLOB
= 'CLOB'¶ A constant which can be used with the data_type property of a JobOutBind. This constant has a value of “CLOB”
-
DATA_TYPE_NUMBER
= 'NUMBER'¶ A constant which can be used with the data_type property of a JobOutBind. This constant has a value of “NUMBER”
-
DATA_TYPE_STRING
= 'STRING'¶ A constant which can be used with the data_type property of a JobOutBind. This constant has a value of “STRING”
-
__init__
(**kwargs)¶ Initializes a new JobOutBind object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - position (int) – The value to assign to the position property of this JobOutBind.
- data_type (str) – The value to assign to the data_type property of this JobOutBind. Allowed values for this property are: “NUMBER”, “STRING”, “CLOB”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
-
data_type
¶ [Required] Gets the data_type of this JobOutBind. The datatype of the out-bind variable.
Allowed values for this property are: “NUMBER”, “STRING”, “CLOB”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The data_type of this JobOutBind. Return type: str
-
position
¶ [Required] Gets the position of this JobOutBind. The position of the out-bind variable.
Returns: The position of this JobOutBind. Return type: int
-