Skip to content
This repository was archived by the owner on Aug 26, 2025. It is now read-only.
Closed
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 @@ -40,12 +40,6 @@ public class ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskOutput {
@JsonProperty(value = "validationErrors", access = JsonProperty.Access.WRITE_ONLY)
private List<ReportableException> validationErrors;

/**
* Mapping of schemas per database.
*/
@JsonProperty(value = "databaseSchemaMap")
private List<ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskOutputDatabaseSchemaMapItem> databaseSchemaMap;

/**
* Get version of the target server.
*
Expand Down Expand Up @@ -82,24 +76,4 @@ public List<ReportableException> validationErrors() {
return this.validationErrors;
}

/**
* Get mapping of schemas per database.
*
* @return the databaseSchemaMap value
*/
public List<ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskOutputDatabaseSchemaMapItem> databaseSchemaMap() {
return this.databaseSchemaMap;
}

/**
* Set mapping of schemas per database.
*
* @param databaseSchemaMap the databaseSchemaMap value to set
* @return the ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskOutput object itself.
*/
public ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskOutput withDatabaseSchemaMap(List<ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskOutputDatabaseSchemaMapItem> databaseSchemaMap) {
this.databaseSchemaMap = databaseSchemaMap;
return this;
}

}