MigrationParameterDetails

class oci.database_migration.models.MigrationParameterDetails(**kwargs)

Bases: object

Migration parameter details object.

Attributes

DATA_TYPE_BOOLEAN A constant which can be used with the data_type property of a MigrationParameterDetails.
DATA_TYPE_FLOAT A constant which can be used with the data_type property of a MigrationParameterDetails.
DATA_TYPE_INTEGER A constant which can be used with the data_type property of a MigrationParameterDetails.
DATA_TYPE_STRING A constant which can be used with the data_type property of a MigrationParameterDetails.
data_type [Required] Gets the data_type of this MigrationParameterDetails.
name [Required] Gets the name of this MigrationParameterDetails.
value [Required] Gets the value of this MigrationParameterDetails.

Methods

__init__(**kwargs) Initializes a new MigrationParameterDetails object with values from keyword arguments.
DATA_TYPE_BOOLEAN = 'BOOLEAN'

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

DATA_TYPE_FLOAT = 'FLOAT'

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

DATA_TYPE_INTEGER = 'INTEGER'

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

DATA_TYPE_STRING = 'STRING'

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

__init__(**kwargs)

Initializes a new MigrationParameterDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • value (str) – The value to assign to the value property of this MigrationParameterDetails.
  • name (str) – The value to assign to the name property of this MigrationParameterDetails.
  • data_type (str) – The value to assign to the data_type property of this MigrationParameterDetails. Allowed values for this property are: “STRING”, “INTEGER”, “FLOAT”, “BOOLEAN”, ‘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 MigrationParameterDetails. Parameter data type.

Allowed values for this property are: “STRING”, “INTEGER”, “FLOAT”, “BOOLEAN”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.

Returns:The data_type of this MigrationParameterDetails.
Return type:str
name

[Required] Gets the name of this MigrationParameterDetails. Parameter name.

Returns:The name of this MigrationParameterDetails.
Return type:str
value

[Required] Gets the value of this MigrationParameterDetails. If a STRING data type then the value should be an array of characters, if a INTEGER data type then the value should be an integer value, if a FLOAT data type then the value should be an float value, if a BOOLEAN data type then the value should be TRUE or FALSE.

Returns:The value of this MigrationParameterDetails.
Return type:str