
com.pulumi.azurenative.mobilenetwork.inputs.AmbrArgs 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.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
/**
* Aggregate maximum bit rate.
*
*/
public final class AmbrArgs extends com.pulumi.resources.ResourceArgs {
public static final AmbrArgs Empty = new AmbrArgs();
/**
* Downlink bit rate.
*
*/
@Import(name="downlink", required=true)
private Output downlink;
/**
* @return Downlink bit rate.
*
*/
public Output downlink() {
return this.downlink;
}
/**
* Uplink bit rate.
*
*/
@Import(name="uplink", required=true)
private Output uplink;
/**
* @return Uplink bit rate.
*
*/
public Output uplink() {
return this.uplink;
}
private AmbrArgs() {}
private AmbrArgs(AmbrArgs $) {
this.downlink = $.downlink;
this.uplink = $.uplink;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AmbrArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private AmbrArgs $;
public Builder() {
$ = new AmbrArgs();
}
public Builder(AmbrArgs defaults) {
$ = new AmbrArgs(Objects.requireNonNull(defaults));
}
/**
* @param downlink Downlink bit rate.
*
* @return builder
*
*/
public Builder downlink(Output downlink) {
$.downlink = downlink;
return this;
}
/**
* @param downlink Downlink bit rate.
*
* @return builder
*
*/
public Builder downlink(String downlink) {
return downlink(Output.of(downlink));
}
/**
* @param uplink Uplink bit rate.
*
* @return builder
*
*/
public Builder uplink(Output uplink) {
$.uplink = uplink;
return this;
}
/**
* @param uplink Uplink bit rate.
*
* @return builder
*
*/
public Builder uplink(String uplink) {
return uplink(Output.of(uplink));
}
public AmbrArgs build() {
if ($.downlink == null) {
throw new MissingRequiredPropertyException("AmbrArgs", "downlink");
}
if ($.uplink == null) {
throw new MissingRequiredPropertyException("AmbrArgs", "uplink");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy