com.nutanix.dp1.vmm.common.v1.config.IPv4Address Maven / Gradle / Ivy
/*
* Generated file ..
*
* Product version: 4.0.3-alpha-1
*
* Part of the Nutanix Vmm Versioned APIs
*
* (c) 2023 Nutanix Inc. All rights reserved
*
*/
package com.nutanix.dp1.vmm.common.v1.config;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.AccessLevel;
import com.nutanix.devplatform.models.PrettyModeViews.*;
import com.fasterxml.jackson.annotation.JsonView;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.nutanix.dp1.vmm.deserializers.VmmObjectTypeTypedObject;
import javax.validation.constraints.*;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import static com.nutanix.dp1.vmm.deserializers.VmmDeserializerUtils.*;
@Data
@lombok.extern.slf4j.Slf4j
public class IPv4Address implements java.io.Serializable, VmmObjectTypeTypedObject {
public IPv4Address() {
this.$objectType = this.initialize$objectType();
this.$reserved = new java.util.LinkedHashMap<>();
this.$reserved.put("$fqObjectType", this.initialize$fqObjectType());
this.$unknownFields = new java.util.LinkedHashMap<>();
}
@lombok.Builder(builderMethodName = "IPv4AddressBuilder")
public IPv4Address(String value, Integer prefixLength) {
this.$objectType = this.initialize$objectType();
this.$reserved = new java.util.LinkedHashMap<>();
this.$reserved.put("$fqObjectType", this.initialize$fqObjectType());
this.$unknownFields = new java.util.LinkedHashMap<>();
this.setValue(value);
this.setPrefixLength(prefixLength);
}
protected String initialize$objectType() {
return "common.v1.config.IPv4Address";
}
protected String initialize$fqObjectType() {
return "common.v1.r0.a3.config.IPv4Address";
}
@JsonAnySetter
private void setUndeserializedFields(String name, String value) {
$unknownFields.put(name, value);
}
/**
*
*/
@javax.validation.constraints.Pattern(regexp="^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$")
@JsonProperty("value")
public String value = null;
/**
* The prefix length of the network to which this host IPv4 address belongs.
*/
@javax.validation.constraints.Max(value = 32)
@javax.validation.constraints.Min(value = 0)
@JsonProperty("prefixLength")
public Integer prefixLength = 32;
@Getter
@JsonView({StandardView.class})
protected final Map $reserved;
@Getter
@JsonView({StandardView.class})
protected final String $objectType;
@Getter
@JsonView({StandardView.class})
protected final Map $unknownFields;
}