
com.vmware.avi.sdk.model.VipPlacementNetwork Maven / Gradle / Ivy
/*
* Copyright 2021 VMware, Inc.
* SPDX-License-Identifier: Apache License 2.0
*/
package com.vmware.avi.sdk.model;
import java.util.*;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
/**
* The VipPlacementNetwork is a POJO class extends AviRestResource that used for creating
* VipPlacementNetwork.
*
* @version 1.0
* @since
*
*/
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class VipPlacementNetwork {
@JsonProperty("network_ref")
private String networkRef;
@JsonProperty("subnet")
private IpAddrPrefix subnet;
@JsonProperty("subnet6")
private IpAddrPrefix subnet6;
/**
* This is the getter method this will return the attribute value.
* Network to use for vip placement.
* It is a reference to an object of type network.
* Field introduced in 18.2.5.
* Allowed in enterprise edition with any value, essentials, basic, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @return networkRef
*/
public String getNetworkRef() {
return networkRef;
}
/**
* This is the setter method to the attribute.
* Network to use for vip placement.
* It is a reference to an object of type network.
* Field introduced in 18.2.5.
* Allowed in enterprise edition with any value, essentials, basic, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @param networkRef set the networkRef.
*/
public void setNetworkRef(String networkRef) {
this.networkRef = networkRef;
}
/**
* This is the getter method this will return the attribute value.
* Ipv4 subnet to use for vip placement.
* Field introduced in 18.2.5.
* Allowed in enterprise edition with any value, essentials, basic, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @return subnet
*/
public IpAddrPrefix getSubnet() {
return subnet;
}
/**
* This is the setter method to the attribute.
* Ipv4 subnet to use for vip placement.
* Field introduced in 18.2.5.
* Allowed in enterprise edition with any value, essentials, basic, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @param subnet set the subnet.
*/
public void setSubnet(IpAddrPrefix subnet) {
this.subnet = subnet;
}
/**
* This is the getter method this will return the attribute value.
* Ipv6 subnet to use for vip placement.
* Field introduced in 18.2.5.
* Allowed in enterprise edition with any value, essentials, basic, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @return subnet6
*/
public IpAddrPrefix getSubnet6() {
return subnet6;
}
/**
* This is the setter method to the attribute.
* Ipv6 subnet to use for vip placement.
* Field introduced in 18.2.5.
* Allowed in enterprise edition with any value, essentials, basic, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @param subnet6 set the subnet6.
*/
public void setSubnet6(IpAddrPrefix subnet6) {
this.subnet6 = subnet6;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
VipPlacementNetwork objVipPlacementNetwork = (VipPlacementNetwork) o;
return Objects.equals(this.networkRef, objVipPlacementNetwork.networkRef)&&
Objects.equals(this.subnet, objVipPlacementNetwork.subnet)&&
Objects.equals(this.subnet6, objVipPlacementNetwork.subnet6);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class VipPlacementNetwork {\n");
sb.append(" networkRef: ").append(toIndentedString(networkRef)).append("\n");
sb.append(" subnet: ").append(toIndentedString(subnet)).append("\n");
sb.append(" subnet6: ").append(toIndentedString(subnet6)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy