MySqlAssessmentObjectCollection¶
-
class
oci.database_migration.models.MySqlAssessmentObjectCollection(**kwargs)¶ Bases:
oci.database_migration.models.assessment_object_collection.AssessmentObjectCollectionList of affected database objects.
Attributes
DATABASE_COMBINATION_MYSQLstr(object=’’) -> str DATABASE_COMBINATION_ORACLEstr(object=’’) -> str database_combination[Required] Gets the database_combination of this AssessmentObjectCollection. items[Required] Gets the items of this MySqlAssessmentObjectCollection. Methods
__init__(**kwargs)Initializes a new MySqlAssessmentObjectCollection 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. -
DATABASE_COMBINATION_MYSQL= 'MYSQL'¶
-
DATABASE_COMBINATION_ORACLE= 'ORACLE'¶
-
__init__(**kwargs)¶ Initializes a new MySqlAssessmentObjectCollection object with values from keyword arguments. The default value of the
database_combinationattribute of this class isMYSQLand it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: - database_combination (str) – The value to assign to the database_combination property of this MySqlAssessmentObjectCollection. Allowed values for this property are: “MYSQL”, “ORACLE”
- items (list[oci.database_migration.models.MySqlDatabaseObjectSummary]) – The value to assign to the items property of this MySqlAssessmentObjectCollection.
-
database_combination¶ [Required] Gets the database_combination of this AssessmentObjectCollection. The combination of source and target databases participating in a migration. Example: ORACLE means the migration is meant for migrating Oracle source and target databases.
Allowed values for this property are: “MYSQL”, “ORACLE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The database_combination of this AssessmentObjectCollection. Return type: str
-
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.
-
items¶ [Required] Gets the items of this MySqlAssessmentObjectCollection. An array of affected database objects.
Returns: The items of this MySqlAssessmentObjectCollection. Return type: list[oci.database_migration.models.MySqlDatabaseObjectSummary]
-