
com.pulumi.azurenative.eventgrid.outputs.ClientAuthenticationSettingsResponse Maven / Gradle / Ivy
// *** 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.eventgrid.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;
@CustomType
public final class ClientAuthenticationSettingsResponse {
/**
* @return Alternative authentication name sources related to client authentication settings for namespace resource.
*
*/
private @Nullable List alternativeAuthenticationNameSources;
private ClientAuthenticationSettingsResponse() {}
/**
* @return Alternative authentication name sources related to client authentication settings for namespace resource.
*
*/
public List alternativeAuthenticationNameSources() {
return this.alternativeAuthenticationNameSources == null ? List.of() : this.alternativeAuthenticationNameSources;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ClientAuthenticationSettingsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List alternativeAuthenticationNameSources;
public Builder() {}
public Builder(ClientAuthenticationSettingsResponse defaults) {
Objects.requireNonNull(defaults);
this.alternativeAuthenticationNameSources = defaults.alternativeAuthenticationNameSources;
}
@CustomType.Setter
public Builder alternativeAuthenticationNameSources(@Nullable List alternativeAuthenticationNameSources) {
this.alternativeAuthenticationNameSources = alternativeAuthenticationNameSources;
return this;
}
public Builder alternativeAuthenticationNameSources(String... alternativeAuthenticationNameSources) {
return alternativeAuthenticationNameSources(List.of(alternativeAuthenticationNameSources));
}
public ClientAuthenticationSettingsResponse build() {
final var _resultValue = new ClientAuthenticationSettingsResponse();
_resultValue.alternativeAuthenticationNameSources = alternativeAuthenticationNameSources;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy