com.pulumi.meraki.networks.outputs.GetSwitchDhcpV4ServersSeenItemLastPacketDestinationIpv4 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.networks.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetSwitchDhcpV4ServersSeenItemLastPacketDestinationIpv4 {
/**
* @return Destination ipv4 address of the packet.
*
*/
private String address;
private GetSwitchDhcpV4ServersSeenItemLastPacketDestinationIpv4() {}
/**
* @return Destination ipv4 address of the packet.
*
*/
public String address() {
return this.address;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetSwitchDhcpV4ServersSeenItemLastPacketDestinationIpv4 defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String address;
public Builder() {}
public Builder(GetSwitchDhcpV4ServersSeenItemLastPacketDestinationIpv4 defaults) {
Objects.requireNonNull(defaults);
this.address = defaults.address;
}
@CustomType.Setter
public Builder address(String address) {
if (address == null) {
throw new MissingRequiredPropertyException("GetSwitchDhcpV4ServersSeenItemLastPacketDestinationIpv4", "address");
}
this.address = address;
return this;
}
public GetSwitchDhcpV4ServersSeenItemLastPacketDestinationIpv4 build() {
final var _resultValue = new GetSwitchDhcpV4ServersSeenItemLastPacketDestinationIpv4();
_resultValue.address = address;
return _resultValue;
}
}
}