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