com.pulumi.azurenative.iotoperationsmq.outputs.BrokerAuthenticatorMethodSatResponse 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.iotoperationsmq.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
@CustomType
public final class BrokerAuthenticatorMethodSatResponse {
/**
* @return List of allowed audience.
*
*/
private List audiences;
private BrokerAuthenticatorMethodSatResponse() {}
/**
* @return List of allowed audience.
*
*/
public List audiences() {
return this.audiences;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(BrokerAuthenticatorMethodSatResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private List audiences;
public Builder() {}
public Builder(BrokerAuthenticatorMethodSatResponse defaults) {
Objects.requireNonNull(defaults);
this.audiences = defaults.audiences;
}
@CustomType.Setter
public Builder audiences(List audiences) {
if (audiences == null) {
throw new MissingRequiredPropertyException("BrokerAuthenticatorMethodSatResponse", "audiences");
}
this.audiences = audiences;
return this;
}
public Builder audiences(String... audiences) {
return audiences(List.of(audiences));
}
public BrokerAuthenticatorMethodSatResponse build() {
final var _resultValue = new BrokerAuthenticatorMethodSatResponse();
_resultValue.audiences = audiences;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy