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