com.pulumi.azure.mobile.outputs.GetNetworkServicePccRuleQosPolicyGuaranteedBitRate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.mobile.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetNetworkServicePccRuleQosPolicyGuaranteedBitRate {
/**
* @return Downlink bit rate.
*
*/
private String downlink;
/**
* @return Uplink bit rate.
*
*/
private String uplink;
private GetNetworkServicePccRuleQosPolicyGuaranteedBitRate() {}
/**
* @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(GetNetworkServicePccRuleQosPolicyGuaranteedBitRate defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String downlink;
private String uplink;
public Builder() {}
public Builder(GetNetworkServicePccRuleQosPolicyGuaranteedBitRate 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("GetNetworkServicePccRuleQosPolicyGuaranteedBitRate", "downlink");
}
this.downlink = downlink;
return this;
}
@CustomType.Setter
public Builder uplink(String uplink) {
if (uplink == null) {
throw new MissingRequiredPropertyException("GetNetworkServicePccRuleQosPolicyGuaranteedBitRate", "uplink");
}
this.uplink = uplink;
return this;
}
public GetNetworkServicePccRuleQosPolicyGuaranteedBitRate build() {
final var _resultValue = new GetNetworkServicePccRuleQosPolicyGuaranteedBitRate();
_resultValue.downlink = downlink;
_resultValue.uplink = uplink;
return _resultValue;
}
}
}