Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4618,6 +4618,9 @@ class MigrateOracleAzureDbPostgreSqlSyncDatabaseInput(Model):
"""Database specific information for Oracle to Azure Database for PostgreSQL
migration task inputs.

:param case_manipulation: How to handle object name casing: either
Preserve or ToLower
:type case_manipulation: str
:param name: Name of the migration pipeline
:type name: str
:param schema_name: Name of the source schema
Expand All @@ -4639,6 +4642,7 @@ class MigrateOracleAzureDbPostgreSqlSyncDatabaseInput(Model):
"""

_attribute_map = {
'case_manipulation': {'key': 'caseManipulation', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'schema_name': {'key': 'schemaName', 'type': 'str'},
'table_map': {'key': 'tableMap', 'type': '{str}'},
Expand All @@ -4650,6 +4654,7 @@ class MigrateOracleAzureDbPostgreSqlSyncDatabaseInput(Model):

def __init__(self, **kwargs):
super(MigrateOracleAzureDbPostgreSqlSyncDatabaseInput, self).__init__(**kwargs)
self.case_manipulation = kwargs.get('case_manipulation', None)
self.name = kwargs.get('name', None)
self.schema_name = kwargs.get('schema_name', None)
self.table_map = kwargs.get('table_map', None)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4618,6 +4618,9 @@ class MigrateOracleAzureDbPostgreSqlSyncDatabaseInput(Model):
"""Database specific information for Oracle to Azure Database for PostgreSQL
migration task inputs.

:param case_manipulation: How to handle object name casing: either
Preserve or ToLower
:type case_manipulation: str
:param name: Name of the migration pipeline
:type name: str
:param schema_name: Name of the source schema
Expand All @@ -4639,6 +4642,7 @@ class MigrateOracleAzureDbPostgreSqlSyncDatabaseInput(Model):
"""

_attribute_map = {
'case_manipulation': {'key': 'caseManipulation', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'schema_name': {'key': 'schemaName', 'type': 'str'},
'table_map': {'key': 'tableMap', 'type': '{str}'},
Expand All @@ -4648,8 +4652,9 @@ class MigrateOracleAzureDbPostgreSqlSyncDatabaseInput(Model):
'target_setting': {'key': 'targetSetting', 'type': '{str}'},
}

def __init__(self, *, name: str=None, schema_name: str=None, table_map=None, target_database_name: str=None, migration_setting=None, source_setting=None, target_setting=None, **kwargs) -> None:
def __init__(self, *, case_manipulation: str=None, name: str=None, schema_name: str=None, table_map=None, target_database_name: str=None, migration_setting=None, source_setting=None, target_setting=None, **kwargs) -> None:
super(MigrateOracleAzureDbPostgreSqlSyncDatabaseInput, self).__init__(**kwargs)
self.case_manipulation = case_manipulation
self.name = name
self.schema_name = schema_name
self.table_map = table_map
Expand Down