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