
com.pulumi.azurenative.datamigration.outputs.OrphanedUserInfoResponse 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 java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class OrphanedUserInfoResponse {
/**
* @return Parent database of the user
*
*/
private @Nullable String databaseName;
/**
* @return Name of the orphaned user
*
*/
private @Nullable String name;
private OrphanedUserInfoResponse() {}
/**
* @return Parent database of the user
*
*/
public Optional databaseName() {
return Optional.ofNullable(this.databaseName);
}
/**
* @return Name of the orphaned user
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(OrphanedUserInfoResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String databaseName;
private @Nullable String name;
public Builder() {}
public Builder(OrphanedUserInfoResponse defaults) {
Objects.requireNonNull(defaults);
this.databaseName = defaults.databaseName;
this.name = defaults.name;
}
@CustomType.Setter
public Builder databaseName(@Nullable String databaseName) {
this.databaseName = databaseName;
return this;
}
@CustomType.Setter
public Builder name(@Nullable String name) {
this.name = name;
return this;
}
public OrphanedUserInfoResponse build() {
final var _resultValue = new OrphanedUserInfoResponse();
_resultValue.databaseName = databaseName;
_resultValue.name = name;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy