
com.pulumi.azurenative.aad.outputs.ContainerAccountResponse 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.aad.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 ContainerAccountResponse {
/**
* @return The account name
*
*/
private @Nullable String accountName;
/**
* @return The account password
*
*/
private @Nullable String password;
/**
* @return The account spn
*
*/
private @Nullable String spn;
private ContainerAccountResponse() {}
/**
* @return The account name
*
*/
public Optional accountName() {
return Optional.ofNullable(this.accountName);
}
/**
* @return The account password
*
*/
public Optional password() {
return Optional.ofNullable(this.password);
}
/**
* @return The account spn
*
*/
public Optional spn() {
return Optional.ofNullable(this.spn);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ContainerAccountResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String accountName;
private @Nullable String password;
private @Nullable String spn;
public Builder() {}
public Builder(ContainerAccountResponse defaults) {
Objects.requireNonNull(defaults);
this.accountName = defaults.accountName;
this.password = defaults.password;
this.spn = defaults.spn;
}
@CustomType.Setter
public Builder accountName(@Nullable String accountName) {
this.accountName = accountName;
return this;
}
@CustomType.Setter
public Builder password(@Nullable String password) {
this.password = password;
return this;
}
@CustomType.Setter
public Builder spn(@Nullable String spn) {
this.spn = spn;
return this;
}
public ContainerAccountResponse build() {
final var _resultValue = new ContainerAccountResponse();
_resultValue.accountName = accountName;
_resultValue.password = password;
_resultValue.spn = spn;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy