com.pulumi.meraki.organizations.outputs.GetWirelessDevicesChannelUtilizationByNetworkItemByBandTotal Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of meraki Show documentation
Show all versions of meraki Show documentation
A Pulumi package for creating and managing Cisco Meraki 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.meraki.organizations.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Double;
import java.util.Objects;
@CustomType
public final class GetWirelessDevicesChannelUtilizationByNetworkItemByBandTotal {
/**
* @return Percentage of total channel utiliation for the given band.
*
*/
private Double percentage;
private GetWirelessDevicesChannelUtilizationByNetworkItemByBandTotal() {}
/**
* @return Percentage of total channel utiliation for the given band.
*
*/
public Double percentage() {
return this.percentage;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetWirelessDevicesChannelUtilizationByNetworkItemByBandTotal defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private Double percentage;
public Builder() {}
public Builder(GetWirelessDevicesChannelUtilizationByNetworkItemByBandTotal defaults) {
Objects.requireNonNull(defaults);
this.percentage = defaults.percentage;
}
@CustomType.Setter
public Builder percentage(Double percentage) {
if (percentage == null) {
throw new MissingRequiredPropertyException("GetWirelessDevicesChannelUtilizationByNetworkItemByBandTotal", "percentage");
}
this.percentage = percentage;
return this;
}
public GetWirelessDevicesChannelUtilizationByNetworkItemByBandTotal build() {
final var _resultValue = new GetWirelessDevicesChannelUtilizationByNetworkItemByBandTotal();
_resultValue.percentage = percentage;
return _resultValue;
}
}
}