
com.pulumi.azurenative.mobilenetwork.outputs.AmbrResponse 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.mobilenetwork.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class AmbrResponse {
/**
* @return Downlink bit rate.
*
*/
private String downlink;
/**
* @return Uplink bit rate.
*
*/
private String uplink;
private AmbrResponse() {}
/**
* @return Downlink bit rate.
*
*/
public String downlink() {
return this.downlink;
}
/**
* @return Uplink bit rate.
*
*/
public String uplink() {
return this.uplink;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AmbrResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String downlink;
private String uplink;
public Builder() {}
public Builder(AmbrResponse defaults) {
Objects.requireNonNull(defaults);
this.downlink = defaults.downlink;
this.uplink = defaults.uplink;
}
@CustomType.Setter
public Builder downlink(String downlink) {
if (downlink == null) {
throw new MissingRequiredPropertyException("AmbrResponse", "downlink");
}
this.downlink = downlink;
return this;
}
@CustomType.Setter
public Builder uplink(String uplink) {
if (uplink == null) {
throw new MissingRequiredPropertyException("AmbrResponse", "uplink");
}
this.uplink = uplink;
return this;
}
public AmbrResponse build() {
final var _resultValue = new AmbrResponse();
_resultValue.downlink = downlink;
_resultValue.uplink = uplink;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy