All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.datamigration.outputs.DatabaseInfoResponse Maven / Gradle / Ivy

There is a newer version: 2.82.0
Show newest version
// *** 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