com.pulumi.meraki.devices.outputs.GetCellularGatewayLanItemReservedIpRange 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.devices.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetCellularGatewayLanItemReservedIpRange {
/**
* @return Comment explaining the reserved IP range
*
*/
private String comment;
/**
* @return Ending IP included in the reserved range of IPs
*
*/
private String end;
/**
* @return Starting IP included in the reserved range of IPs
*
*/
private String start;
private GetCellularGatewayLanItemReservedIpRange() {}
/**
* @return Comment explaining the reserved IP range
*
*/
public String comment() {
return this.comment;
}
/**
* @return Ending IP included in the reserved range of IPs
*
*/
public String end() {
return this.end;
}
/**
* @return Starting IP included in the reserved range of IPs
*
*/
public String start() {
return this.start;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetCellularGatewayLanItemReservedIpRange defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String comment;
private String end;
private String start;
public Builder() {}
public Builder(GetCellularGatewayLanItemReservedIpRange defaults) {
Objects.requireNonNull(defaults);
this.comment = defaults.comment;
this.end = defaults.end;
this.start = defaults.start;
}
@CustomType.Setter
public Builder comment(String comment) {
if (comment == null) {
throw new MissingRequiredPropertyException("GetCellularGatewayLanItemReservedIpRange", "comment");
}
this.comment = comment;
return this;
}
@CustomType.Setter
public Builder end(String end) {
if (end == null) {
throw new MissingRequiredPropertyException("GetCellularGatewayLanItemReservedIpRange", "end");
}
this.end = end;
return this;
}
@CustomType.Setter
public Builder start(String start) {
if (start == null) {
throw new MissingRequiredPropertyException("GetCellularGatewayLanItemReservedIpRange", "start");
}
this.start = start;
return this;
}
public GetCellularGatewayLanItemReservedIpRange build() {
final var _resultValue = new GetCellularGatewayLanItemReservedIpRange();
_resultValue.comment = comment;
_resultValue.end = end;
_resultValue.start = start;
return _resultValue;
}
}
}