JobInBind

class oci.database_management.models.JobInBind(**kwargs)

Bases: object

The details of the job in-bind variable.

Attributes

DATA_TYPE_CLOB A constant which can be used with the data_type property of a JobInBind.
DATA_TYPE_NUMBER A constant which can be used with the data_type property of a JobInBind.
DATA_TYPE_STRING A constant which can be used with the data_type property of a JobInBind.
array_type_name Gets the array_type_name of this JobInBind.
data_type [Required] Gets the data_type of this JobInBind.
position [Required] Gets the position of this JobInBind.
values [Required] Gets the values of this JobInBind.

Methods

__init__(**kwargs) Initializes a new JobInBind object with values from keyword arguments.
DATA_TYPE_CLOB = 'CLOB'

A constant which can be used with the data_type property of a JobInBind. This constant has a value of “CLOB”

DATA_TYPE_NUMBER = 'NUMBER'

A constant which can be used with the data_type property of a JobInBind. This constant has a value of “NUMBER”

DATA_TYPE_STRING = 'STRING'

A constant which can be used with the data_type property of a JobInBind. This constant has a value of “STRING”

__init__(**kwargs)

Initializes a new JobInBind 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 JobInBind.
  • data_type (str) – The value to assign to the data_type property of this JobInBind. 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’.
  • values (list[str]) – The value to assign to the values property of this JobInBind.
  • array_type_name (str) – The value to assign to the array_type_name property of this JobInBind.
array_type_name

Gets the array_type_name of this JobInBind. The Oracle schema object name for the predefined type of array.

Returns:The array_type_name of this JobInBind.
Return type:str
data_type

[Required] Gets the data_type of this JobInBind. The datatype of the in-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 JobInBind.
Return type:str
position

[Required] Gets the position of this JobInBind. The position of the in-bind variable.

Returns:The position of this JobInBind.
Return type:int
values

[Required] Gets the values of this JobInBind. The values for the in-bind variable.

Returns:The values of this JobInBind.
Return type:list[str]