
com.pulumi.azurenative.web.outputs.HttpSettingsRoutesResponse 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.web.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 HttpSettingsRoutesResponse {
/**
* @return The prefix that should precede all the authentication/authorization paths.
*
*/
private @Nullable String apiPrefix;
private HttpSettingsRoutesResponse() {}
/**
* @return The prefix that should precede all the authentication/authorization paths.
*
*/
public Optional apiPrefix() {
return Optional.ofNullable(this.apiPrefix);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(HttpSettingsRoutesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String apiPrefix;
public Builder() {}
public Builder(HttpSettingsRoutesResponse defaults) {
Objects.requireNonNull(defaults);
this.apiPrefix = defaults.apiPrefix;
}
@CustomType.Setter
public Builder apiPrefix(@Nullable String apiPrefix) {
this.apiPrefix = apiPrefix;
return this;
}
public HttpSettingsRoutesResponse build() {
final var _resultValue = new HttpSettingsRoutesResponse();
_resultValue.apiPrefix = apiPrefix;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy