
com.pulumi.azurenative.datamigration.outputs.DatabaseInfoResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class DatabaseInfoResponse {
/**
* @return Name of the database
*
*/
private String sourceDatabaseName;
private DatabaseInfoResponse() {}
/**
* @return Name of the database
*
*/
public String sourceDatabaseName() {
return this.sourceDatabaseName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DatabaseInfoResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String sourceDatabaseName;
public Builder() {}
public Builder(DatabaseInfoResponse defaults) {
Objects.requireNonNull(defaults);
this.sourceDatabaseName = defaults.sourceDatabaseName;
}
@CustomType.Setter
public Builder sourceDatabaseName(String sourceDatabaseName) {
if (sourceDatabaseName == null) {
throw new MissingRequiredPropertyException("DatabaseInfoResponse", "sourceDatabaseName");
}
this.sourceDatabaseName = sourceDatabaseName;
return this;
}
public DatabaseInfoResponse build() {
final var _resultValue = new DatabaseInfoResponse();
_resultValue.sourceDatabaseName = sourceDatabaseName;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy