com.pulumi.azurenative.signalrservice.outputs.SignalRCorsSettingsResponse 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.signalrservice.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 SignalRCorsSettingsResponse {
/**
* @return Gets or sets the list of origins that should be allowed to make cross-origin calls (for example: http://example.com:12345). Use "*" to allow all. If omitted, allow all by default.
*
*/
private @Nullable List allowedOrigins;
private SignalRCorsSettingsResponse() {}
/**
* @return Gets or sets the list of origins that should be allowed to make cross-origin calls (for example: http://example.com:12345). Use "*" to allow all. If omitted, allow all by default.
*
*/
public List allowedOrigins() {
return this.allowedOrigins == null ? List.of() : this.allowedOrigins;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SignalRCorsSettingsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List allowedOrigins;
public Builder() {}
public Builder(SignalRCorsSettingsResponse defaults) {
Objects.requireNonNull(defaults);
this.allowedOrigins = defaults.allowedOrigins;
}
@CustomType.Setter
public Builder allowedOrigins(@Nullable List allowedOrigins) {
this.allowedOrigins = allowedOrigins;
return this;
}
public Builder allowedOrigins(String... allowedOrigins) {
return allowedOrigins(List.of(allowedOrigins));
}
public SignalRCorsSettingsResponse build() {
final var _resultValue = new SignalRCorsSettingsResponse();
_resultValue.allowedOrigins = allowedOrigins;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy