All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.avi.sdk.model.RouteInfo Maven / Gradle / Ivy

Go to download

Avi SDK is a java API which creates a session with controller and perform CRUD operations.

The newest version!
/*
 * 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 RouteInfo is a POJO class extends AviRestResource that used for creating
 * RouteInfo.
 *
 * @version 1.0
 * @since 
 *
 */
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class RouteInfo  {
    @JsonProperty("if_name")
    private String ifName;

    @JsonProperty("network_namespace")
    private String networkNamespace = "HOST_NAMESPACE";

    @JsonProperty("nexthop")
    private IpAddr nexthop;

    @JsonProperty("subnet")
    private IpAddrPrefix subnet;



    /**
     * This is the getter method this will return the attribute value.
     * Host interface name.
     * Field introduced in 18.2.6.
     * 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 ifName
     */
    public String getIfName() {
        return ifName;
    }

    /**
     * This is the setter method to the attribute.
     * Host interface name.
     * Field introduced in 18.2.6.
     * 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 ifName set the ifName.
     */
    public void setIfName(String  ifName) {
        this.ifName = ifName;
    }

    /**
     * This is the getter method this will return the attribute value.
     * Network namespace type used to add an route entry in a specific namespace.
     * Enum options - LOCAL_NAMESPACE, HOST_NAMESPACE, OTHER_NAMESPACE.
     * Field introduced in 18.2.6.
     * 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 "HOST_NAMESPACE".
     * @return networkNamespace
     */
    public String getNetworkNamespace() {
        return networkNamespace;
    }

    /**
     * This is the setter method to the attribute.
     * Network namespace type used to add an route entry in a specific namespace.
     * Enum options - LOCAL_NAMESPACE, HOST_NAMESPACE, OTHER_NAMESPACE.
     * Field introduced in 18.2.6.
     * 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 "HOST_NAMESPACE".
     * @param networkNamespace set the networkNamespace.
     */
    public void setNetworkNamespace(String  networkNamespace) {
        this.networkNamespace = networkNamespace;
    }

    /**
     * This is the getter method this will return the attribute value.
     * Host nexthop ip address.
     * Field introduced in 18.2.6.
     * 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 nexthop
     */
    public IpAddr getNexthop() {
        return nexthop;
    }

    /**
     * This is the setter method to the attribute.
     * Host nexthop ip address.
     * Field introduced in 18.2.6.
     * 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 nexthop set the nexthop.
     */
    public void setNexthop(IpAddr nexthop) {
        this.nexthop = nexthop;
    }

    /**
     * This is the getter method this will return the attribute value.
     * Host subnet address.
     * Field introduced in 18.2.6.
     * 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.
     * Host subnet address.
     * Field introduced in 18.2.6.
     * 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;
    }


    @Override
    public boolean equals(java.lang.Object o) {
      if (this == o) {
          return true;
      }
      if (o == null || getClass() != o.getClass()) {
          return false;
      }
      RouteInfo objRouteInfo = (RouteInfo) o;
      return   Objects.equals(this.subnet, objRouteInfo.subnet)&&
  Objects.equals(this.nexthop, objRouteInfo.nexthop)&&
  Objects.equals(this.ifName, objRouteInfo.ifName)&&
  Objects.equals(this.networkNamespace, objRouteInfo.networkNamespace);
    }

    @Override
    public String toString() {
      StringBuilder sb = new StringBuilder();
      sb.append("class RouteInfo {\n");
                  sb.append("    ifName: ").append(toIndentedString(ifName)).append("\n");
                        sb.append("    networkNamespace: ").append(toIndentedString(networkNamespace)).append("\n");
                        sb.append("    nexthop: ").append(toIndentedString(nexthop)).append("\n");
                        sb.append("    subnet: ").append(toIndentedString(subnet)).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