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

main.java.com.nutanix.dp1.net.networking.v4.config.OspfConfig Maven / Gradle / Ivy

Go to download

Manage networking configuration on Nutanix clusters, including AHV and advanced networking.

There is a newer version: 4.0.2-beta-1
Show newest version
/*
 * Generated file ..
 *
 * Product version: 4.0.1-beta-1
 *
 * Part of the Nutanix Networking Versioned APIs
 *
 * (c) 2023 Nutanix Inc.  All rights reserved
 *
 */

package com.nutanix.dp1.net.networking.v4.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.net.deserializers.NetObjectTypeTypedObject;

import javax.validation.constraints.*;

import java.util.HashMap;
import java.util.List;
import java.util.Map;

import static com.nutanix.dp1.net.deserializers.NetDeserializerUtils.*;


/**
 * OSPF configuration for route peering with internal routers.
 */



@Data
@lombok.extern.slf4j.Slf4j
public class OspfConfig implements java.io.Serializable, NetObjectTypeTypedObject {

  

  public OspfConfig() {

    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 = "OspfConfigBuilder")
  public OspfConfig(String areaId, com.nutanix.dp1.net.networking.v4.config.AuthenticationType authenticationType, String password) {
    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.setAreaId(areaId);

    this.setAuthenticationType(authenticationType);

    this.setPassword(password);
  }


  protected String initialize$objectType() {
    return "networking.v4.config.OspfConfig";
  }


  protected String initialize$fqObjectType() {
    return "networking.v4.r0.b1.config.OspfConfig";
  }

  @JsonAnySetter
  private void setUndeserializedFields(String name, String value) {
    $unknownFields.put(name, value);
  }


  
  

  
    /**
    * OSPF area id of this gateway.
    */
    @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("areaId")
    public String areaId = null;
  
  

  
    /**
    * 
    */
    
    @JsonProperty("authenticationType")
    public com.nutanix.dp1.net.networking.v4.config.AuthenticationType authenticationType = null;
  
  

  
    /**
    * Password for authentication.
    */
    
    @JsonProperty("password")
    public String password = null;
  
  

  
    
    
    @Getter
    @JsonView({StandardView.class})
    
    protected final Map $reserved;
  
  

  
    
    
    @Getter
    @JsonView({StandardView.class})
    
    protected final String $objectType;
  
  

  
    
    
    @Getter
    @JsonView({StandardView.class})
    
    protected final Map $unknownFields;
  
  

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy