
com.pulumi.azurenative.datamigration.outputs.ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskOutputResponse Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.datamigration.outputs;
import com.pulumi.azurenative.datamigration.outputs.ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskOutputResponseDatabaseSchemaMap;
import com.pulumi.azurenative.datamigration.outputs.ReportableExceptionResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;
@CustomType
public final class ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskOutputResponse {
/**
* @return Mapping of schemas per database
*
*/
private @Nullable List databaseSchemaMap;
/**
* @return List of databases on target server
*
*/
private List databases;
/**
* @return Target server brand version
*
*/
private String targetServerBrandVersion;
/**
* @return Version of the target server
*
*/
private String targetServerVersion;
/**
* @return Validation errors associated with the task
*
*/
private List validationErrors;
private ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskOutputResponse() {}
/**
* @return Mapping of schemas per database
*
*/
public List databaseSchemaMap() {
return this.databaseSchemaMap == null ? List.of() : this.databaseSchemaMap;
}
/**
* @return List of databases on target server
*
*/
public List databases() {
return this.databases;
}
/**
* @return Target server brand version
*
*/
public String targetServerBrandVersion() {
return this.targetServerBrandVersion;
}
/**
* @return Version of the target server
*
*/
public String targetServerVersion() {
return this.targetServerVersion;
}
/**
* @return Validation errors associated with the task
*
*/
public List validationErrors() {
return this.validationErrors;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskOutputResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List databaseSchemaMap;
private List databases;
private String targetServerBrandVersion;
private String targetServerVersion;
private List validationErrors;
public Builder() {}
public Builder(ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskOutputResponse defaults) {
Objects.requireNonNull(defaults);
this.databaseSchemaMap = defaults.databaseSchemaMap;
this.databases = defaults.databases;
this.targetServerBrandVersion = defaults.targetServerBrandVersion;
this.targetServerVersion = defaults.targetServerVersion;
this.validationErrors = defaults.validationErrors;
}
@CustomType.Setter
public Builder databaseSchemaMap(@Nullable List databaseSchemaMap) {
this.databaseSchemaMap = databaseSchemaMap;
return this;
}
public Builder databaseSchemaMap(ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskOutputResponseDatabaseSchemaMap... databaseSchemaMap) {
return databaseSchemaMap(List.of(databaseSchemaMap));
}
@CustomType.Setter
public Builder databases(List databases) {
if (databases == null) {
throw new MissingRequiredPropertyException("ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskOutputResponse", "databases");
}
this.databases = databases;
return this;
}
public Builder databases(String... databases) {
return databases(List.of(databases));
}
@CustomType.Setter
public Builder targetServerBrandVersion(String targetServerBrandVersion) {
if (targetServerBrandVersion == null) {
throw new MissingRequiredPropertyException("ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskOutputResponse", "targetServerBrandVersion");
}
this.targetServerBrandVersion = targetServerBrandVersion;
return this;
}
@CustomType.Setter
public Builder targetServerVersion(String targetServerVersion) {
if (targetServerVersion == null) {
throw new MissingRequiredPropertyException("ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskOutputResponse", "targetServerVersion");
}
this.targetServerVersion = targetServerVersion;
return this;
}
@CustomType.Setter
public Builder validationErrors(List validationErrors) {
if (validationErrors == null) {
throw new MissingRequiredPropertyException("ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskOutputResponse", "validationErrors");
}
this.validationErrors = validationErrors;
return this;
}
public Builder validationErrors(ReportableExceptionResponse... validationErrors) {
return validationErrors(List.of(validationErrors));
}
public ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskOutputResponse build() {
final var _resultValue = new ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskOutputResponse();
_resultValue.databaseSchemaMap = databaseSchemaMap;
_resultValue.databases = databases;
_resultValue.targetServerBrandVersion = targetServerBrandVersion;
_resultValue.targetServerVersion = targetServerVersion;
_resultValue.validationErrors = validationErrors;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy