com.pulumi.meraki.organizations.outputs.GetWirelessDevicesChannelUtilizationByNetworkItemNetwork 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.String;
import java.util.Objects;
@CustomType
public final class GetWirelessDevicesChannelUtilizationByNetworkItemNetwork {
/**
* @return Network ID of the given utilization metrics.
*
*/
private String id;
private GetWirelessDevicesChannelUtilizationByNetworkItemNetwork() {}
/**
* @return Network ID of the given utilization metrics.
*
*/
public String id() {
return this.id;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetWirelessDevicesChannelUtilizationByNetworkItemNetwork defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String id;
public Builder() {}
public Builder(GetWirelessDevicesChannelUtilizationByNetworkItemNetwork defaults) {
Objects.requireNonNull(defaults);
this.id = defaults.id;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetWirelessDevicesChannelUtilizationByNetworkItemNetwork", "id");
}
this.id = id;
return this;
}
public GetWirelessDevicesChannelUtilizationByNetworkItemNetwork build() {
final var _resultValue = new GetWirelessDevicesChannelUtilizationByNetworkItemNetwork();
_resultValue.id = id;
return _resultValue;
}
}
}