Skip to content

Commit

Permalink
Auto generated from specifications change.
Browse files Browse the repository at this point in the history
  • Loading branch information
nuagebot committed Nov 4, 2020
1 parent cc600af commit a008f03
Show file tree
Hide file tree
Showing 325 changed files with 18,180 additions and 628 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.nuagenetworks</groupId>
<artifactId>vspk</artifactId>
<version>20.5.3</version>
<version>20.10.1</version>
<packaging>jar</packaging>

<name>${project.groupId}:${project.artifactId}</name>
Expand Down Expand Up @@ -51,7 +51,7 @@
<dependency>
<groupId>net.nuagenetworks</groupId>
<artifactId>bambou</artifactId>
<version>2.0.26</version>
<version>2.0.28</version>
</dependency>
</dependencies>
</project>
48 changes: 46 additions & 2 deletions src/main/java/net/nuagenetworks/vspk/v6/AddressMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ public enum EType { MANY_TO_ONE_PAT, ONE_TO_ONE_NAT };

protected String associatedPATNATPoolID;

@JsonProperty(value = "creationDate")

protected String creationDate;

@JsonProperty(value = "embeddedMetadata")

protected java.util.List<Metadata> embeddedMetadata;
Expand All @@ -72,6 +76,14 @@ public enum EType { MANY_TO_ONE_PAT, ONE_TO_ONE_NAT };

protected String lastUpdatedBy;

@JsonProperty(value = "lastUpdatedDate")

protected String lastUpdatedDate;

@JsonProperty(value = "owner")

protected String owner;

@JsonProperty(value = "privateIP")

protected String privateIP;
Expand Down Expand Up @@ -137,6 +149,17 @@ public void setAssociatedPATNATPoolID(String value) {
}


@JsonIgnore
public String getCreationDate() {
return creationDate;
}

@JsonIgnore
public void setCreationDate(String value) {
this.creationDate = value;
}


@JsonIgnore
public java.util.List<Metadata> getEmbeddedMetadata() {
return embeddedMetadata;
Expand Down Expand Up @@ -181,6 +204,28 @@ public void setLastUpdatedBy(String value) {
}


@JsonIgnore
public String getLastUpdatedDate() {
return lastUpdatedDate;
}

@JsonIgnore
public void setLastUpdatedDate(String value) {
this.lastUpdatedDate = value;
}


@JsonIgnore
public String getOwner() {
return owner;
}

@JsonIgnore
public void setOwner(String value) {
this.owner = value;
}


@JsonIgnore
public String getPrivateIP() {
return privateIP;
Expand Down Expand Up @@ -264,8 +309,7 @@ public StatisticsPoliciesFetcher getStatisticsPolicies() {


public String toString() {
return "AddressMap [" + "associatedPATNATPoolID=" + associatedPATNATPoolID + ", embeddedMetadata=" + embeddedMetadata + ", entityScope=" + entityScope + ", externalID=" + externalID + ", lastUpdatedBy=" + lastUpdatedBy + ", privateIP=" + privateIP + ", privatePort=" + privatePort + ", publicIP=" + publicIP + ", publicPort=" + publicPort + ", type=" + type + ", id=" + id + ", parentId=" + parentId + ", parentType=" + parentType + ", creationDate=" + creationDate + ", lastUpdatedDate="
+ lastUpdatedDate + ", owner=" + owner + "]";
return "AddressMap [" + "associatedPATNATPoolID=" + associatedPATNATPoolID + ", creationDate=" + creationDate + ", embeddedMetadata=" + embeddedMetadata + ", entityScope=" + entityScope + ", externalID=" + externalID + ", lastUpdatedBy=" + lastUpdatedBy + ", lastUpdatedDate=" + lastUpdatedDate + ", owner=" + owner + ", privateIP=" + privateIP + ", privatePort=" + privatePort + ", publicIP=" + publicIP + ", publicPort=" + publicPort + ", type=" + type + ", id=" + id + ", parentId=" + parentId + ", parentType=" + parentType + "]";
}


Expand Down
48 changes: 46 additions & 2 deletions src/main/java/net/nuagenetworks/vspk/v6/AddressRange.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ public enum EEntityScope { ENTERPRISE, GLOBAL };

protected EIPType IPType;

@JsonProperty(value = "creationDate")

protected String creationDate;

@JsonProperty(value = "embeddedMetadata")

protected java.util.List<Metadata> embeddedMetadata;
Expand All @@ -76,6 +80,10 @@ public enum EEntityScope { ENTERPRISE, GLOBAL };

protected String lastUpdatedBy;

@JsonProperty(value = "lastUpdatedDate")

protected String lastUpdatedDate;

@JsonProperty(value = "maxAddress")

protected String maxAddress;
Expand All @@ -84,6 +92,10 @@ public enum EEntityScope { ENTERPRISE, GLOBAL };

protected String minAddress;

@JsonProperty(value = "owner")

protected String owner;



@JsonIgnore
Expand Down Expand Up @@ -136,6 +148,17 @@ public void setIPType(EIPType value) {
}


@JsonIgnore
public String getCreationDate() {
return creationDate;
}

@JsonIgnore
public void setCreationDate(String value) {
this.creationDate = value;
}


@JsonIgnore
public java.util.List<Metadata> getEmbeddedMetadata() {
return embeddedMetadata;
Expand Down Expand Up @@ -180,6 +203,17 @@ public void setLastUpdatedBy(String value) {
}


@JsonIgnore
public String getLastUpdatedDate() {
return lastUpdatedDate;
}

@JsonIgnore
public void setLastUpdatedDate(String value) {
this.lastUpdatedDate = value;
}


@JsonIgnore
public String getMaxAddress() {
return maxAddress;
Expand All @@ -201,6 +235,17 @@ public void setMinAddress(String value) {
this.minAddress = value;
}


@JsonIgnore
public String getOwner() {
return owner;
}

@JsonIgnore
public void setOwner(String value) {
this.owner = value;
}



@JsonIgnore
Expand All @@ -225,8 +270,7 @@ public PermissionsFetcher getPermissions() {


public String toString() {
return "AddressRange [" + "DHCPPoolType=" + DHCPPoolType + ", IPType=" + IPType + ", embeddedMetadata=" + embeddedMetadata + ", entityScope=" + entityScope + ", externalID=" + externalID + ", lastUpdatedBy=" + lastUpdatedBy + ", maxAddress=" + maxAddress + ", minAddress=" + minAddress + ", id=" + id + ", parentId=" + parentId + ", parentType=" + parentType + ", creationDate=" + creationDate + ", lastUpdatedDate="
+ lastUpdatedDate + ", owner=" + owner + "]";
return "AddressRange [" + "DHCPPoolType=" + DHCPPoolType + ", IPType=" + IPType + ", creationDate=" + creationDate + ", embeddedMetadata=" + embeddedMetadata + ", entityScope=" + entityScope + ", externalID=" + externalID + ", lastUpdatedBy=" + lastUpdatedBy + ", lastUpdatedDate=" + lastUpdatedDate + ", maxAddress=" + maxAddress + ", minAddress=" + minAddress + ", owner=" + owner + ", id=" + id + ", parentId=" + parentId + ", parentType=" + parentType + "]";
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,7 @@ public void setNetworkNotificationDisabled(Boolean value) {


public String toString() {
return "AggregateMetadata [" + "assocEntityType=" + assocEntityType + ", blob=" + blob + ", description=" + description + ", entityScope=" + entityScope + ", externalID=" + externalID + ", globalMetadata=" + globalMetadata + ", metadataTagIDs=" + metadataTagIDs + ", name=" + name + ", networkNotificationDisabled=" + networkNotificationDisabled + ", id=" + id + ", parentId=" + parentId + ", parentType=" + parentType + ", creationDate=" + creationDate + ", lastUpdatedDate="
+ lastUpdatedDate + ", owner=" + owner + "]";
return "AggregateMetadata [" + "assocEntityType=" + assocEntityType + ", blob=" + blob + ", description=" + description + ", entityScope=" + entityScope + ", externalID=" + externalID + ", globalMetadata=" + globalMetadata + ", metadataTagIDs=" + metadataTagIDs + ", name=" + name + ", networkNotificationDisabled=" + networkNotificationDisabled + ", id=" + id + ", parentId=" + parentId + ", parentType=" + parentType + "]";
}


Expand Down
48 changes: 46 additions & 2 deletions src/main/java/net/nuagenetworks/vspk/v6/AggregatedDomain.java
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,10 @@ public enum EUplinkPreference { PRIMARY, PRIMARY_SECONDARY, SECONDARY, SECONDARY

protected Boolean createBackHaulSubnet;

@JsonProperty(value = "creationDate")

protected String creationDate;

@JsonProperty(value = "customerID")

protected Long customerID;
Expand Down Expand Up @@ -282,6 +286,10 @@ public enum EUplinkPreference { PRIMARY, PRIMARY_SECONDARY, SECONDARY, SECONDARY

protected String lastUpdatedBy;

@JsonProperty(value = "lastUpdatedDate")

protected String lastUpdatedDate;

@JsonProperty(value = "leakingEnabled")

protected Boolean leakingEnabled;
Expand All @@ -302,6 +310,10 @@ public enum EUplinkPreference { PRIMARY, PRIMARY_SECONDARY, SECONDARY, SECONDARY

protected String name;

@JsonProperty(value = "owner")

protected String owner;

@JsonProperty(value = "permittedAction")

protected EPermittedAction permittedAction;
Expand Down Expand Up @@ -878,6 +890,17 @@ public void setCreateBackHaulSubnet(Boolean value) {
}


@JsonIgnore
public String getCreationDate() {
return creationDate;
}

@JsonIgnore
public void setCreationDate(String value) {
this.creationDate = value;
}


@JsonIgnore
public Long getCustomerID() {
return customerID;
Expand Down Expand Up @@ -1087,6 +1110,17 @@ public void setLastUpdatedBy(String value) {
}


@JsonIgnore
public String getLastUpdatedDate() {
return lastUpdatedDate;
}

@JsonIgnore
public void setLastUpdatedDate(String value) {
this.lastUpdatedDate = value;
}


@JsonIgnore
public Boolean getLeakingEnabled() {
return leakingEnabled;
Expand Down Expand Up @@ -1142,6 +1176,17 @@ public void setName(String value) {
}


@JsonIgnore
public String getOwner() {
return owner;
}

@JsonIgnore
public void setOwner(String value) {
this.owner = value;
}


@JsonIgnore
public EPermittedAction getPermittedAction() {
return permittedAction;
Expand Down Expand Up @@ -1536,8 +1581,7 @@ public ZonesFetcher getZones() {


public String toString() {
return "AggregatedDomain [" + "BGPEnabled=" + BGPEnabled + ", DHCPBehavior=" + DHCPBehavior + ", DHCPServerAddress=" + DHCPServerAddress + ", DPI=" + DPI + ", ECMPCount=" + ECMPCount + ", EVPNRT5Enabled=" + EVPNRT5Enabled + ", FIPIgnoreDefaultRoute=" + FIPIgnoreDefaultRoute + ", FIPUnderlay=" + FIPUnderlay + ", GRTEnabled=" + GRTEnabled + ", PATEnabled=" + PATEnabled + ", VXLANECMPEnabled=" + VXLANECMPEnabled + ", advertiseCriteria=" + advertiseCriteria + ", aggregateFlowsEnabled=" + aggregateFlowsEnabled + ", associatedBGPProfileID=" + associatedBGPProfileID + ", associatedMulticastChannelMapID=" + associatedMulticastChannelMapID + ", associatedPATMapperID=" + associatedPATMapperID + ", associatedSharedPATMapperID=" + associatedSharedPATMapperID + ", associatedUnderlayID=" + associatedUnderlayID + ", backHaulRouteDistinguisher=" + backHaulRouteDistinguisher + ", backHaulRouteTarget=" + backHaulRouteTarget + ", backHaulServiceID=" + backHaulServiceID + ", backHaulVNID=" + backHaulVNID + ", createBackHaulSubnet=" + createBackHaulSubnet + ", customerID=" + customerID + ", description=" + description + ", dhcpServerAddresses=" + dhcpServerAddresses + ", domainAggregationEnabled=" + domainAggregationEnabled + ", domainID=" + domainID + ", domainVLANID=" + domainVLANID + ", embeddedMetadata=" + embeddedMetadata + ", encryption=" + encryption + ", enterpriseID=" + enterpriseID + ", entityScope=" + entityScope + ", exportRouteTarget=" + exportRouteTarget + ", externalID=" + externalID + ", externalLabel=" + externalLabel + ", flowCollectionEnabled=" + flowCollectionEnabled + ", globalRoutingEnabled=" + globalRoutingEnabled + ", importRouteTarget=" + importRouteTarget + ", ipv6AggregationEnabled=" + ipv6AggregationEnabled + ", labelID=" + labelID + ", lastUpdatedBy=" + lastUpdatedBy + ", leakingEnabled=" + leakingEnabled + ", localAS=" + localAS + ", maintenanceMode=" + maintenanceMode + ", multicast=" + multicast + ", name=" + name + ", permittedAction=" + permittedAction + ", policyChangeStatus=" + policyChangeStatus + ", routeDistinguisher=" + routeDistinguisher + ", routeTarget=" + routeTarget + ", secondaryDHCPServerAddress=" + secondaryDHCPServerAddress + ", serviceID=" + serviceID + ", stretched=" + stretched + ", templateID=" + templateID + ", tunnelType=" + tunnelType + ", underlayEnabled=" + underlayEnabled + ", uplinkPreference=" + uplinkPreference + ", id=" + id + ", parentId=" + parentId + ", parentType=" + parentType + ", creationDate=" + creationDate + ", lastUpdatedDate="
+ lastUpdatedDate + ", owner=" + owner + "]";
return "AggregatedDomain [" + "BGPEnabled=" + BGPEnabled + ", DHCPBehavior=" + DHCPBehavior + ", DHCPServerAddress=" + DHCPServerAddress + ", DPI=" + DPI + ", ECMPCount=" + ECMPCount + ", EVPNRT5Enabled=" + EVPNRT5Enabled + ", FIPIgnoreDefaultRoute=" + FIPIgnoreDefaultRoute + ", FIPUnderlay=" + FIPUnderlay + ", GRTEnabled=" + GRTEnabled + ", PATEnabled=" + PATEnabled + ", VXLANECMPEnabled=" + VXLANECMPEnabled + ", advertiseCriteria=" + advertiseCriteria + ", aggregateFlowsEnabled=" + aggregateFlowsEnabled + ", associatedBGPProfileID=" + associatedBGPProfileID + ", associatedMulticastChannelMapID=" + associatedMulticastChannelMapID + ", associatedPATMapperID=" + associatedPATMapperID + ", associatedSharedPATMapperID=" + associatedSharedPATMapperID + ", associatedUnderlayID=" + associatedUnderlayID + ", backHaulRouteDistinguisher=" + backHaulRouteDistinguisher + ", backHaulRouteTarget=" + backHaulRouteTarget + ", backHaulServiceID=" + backHaulServiceID + ", backHaulVNID=" + backHaulVNID + ", createBackHaulSubnet=" + createBackHaulSubnet + ", creationDate=" + creationDate + ", customerID=" + customerID + ", description=" + description + ", dhcpServerAddresses=" + dhcpServerAddresses + ", domainAggregationEnabled=" + domainAggregationEnabled + ", domainID=" + domainID + ", domainVLANID=" + domainVLANID + ", embeddedMetadata=" + embeddedMetadata + ", encryption=" + encryption + ", enterpriseID=" + enterpriseID + ", entityScope=" + entityScope + ", exportRouteTarget=" + exportRouteTarget + ", externalID=" + externalID + ", externalLabel=" + externalLabel + ", flowCollectionEnabled=" + flowCollectionEnabled + ", globalRoutingEnabled=" + globalRoutingEnabled + ", importRouteTarget=" + importRouteTarget + ", ipv6AggregationEnabled=" + ipv6AggregationEnabled + ", labelID=" + labelID + ", lastUpdatedBy=" + lastUpdatedBy + ", lastUpdatedDate=" + lastUpdatedDate + ", leakingEnabled=" + leakingEnabled + ", localAS=" + localAS + ", maintenanceMode=" + maintenanceMode + ", multicast=" + multicast + ", name=" + name + ", owner=" + owner + ", permittedAction=" + permittedAction + ", policyChangeStatus=" + policyChangeStatus + ", routeDistinguisher=" + routeDistinguisher + ", routeTarget=" + routeTarget + ", secondaryDHCPServerAddress=" + secondaryDHCPServerAddress + ", serviceID=" + serviceID + ", stretched=" + stretched + ", templateID=" + templateID + ", tunnelType=" + tunnelType + ", underlayEnabled=" + underlayEnabled + ", uplinkPreference=" + uplinkPreference + ", id=" + id + ", parentId=" + parentId + ", parentType=" + parentType + "]";
}


Expand Down
48 changes: 46 additions & 2 deletions src/main/java/net/nuagenetworks/vspk/v6/Alarm.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ public enum ESeverity { CRITICAL, INFO, MAJOR, MINOR, WARNING };

protected String alarmedObjectID;

@JsonProperty(value = "creationDate")

protected String creationDate;

@JsonProperty(value = "description")

protected String description;
Expand Down Expand Up @@ -86,10 +90,18 @@ public enum ESeverity { CRITICAL, INFO, MAJOR, MINOR, WARNING };

protected String lastUpdatedBy;

@JsonProperty(value = "lastUpdatedDate")

protected String lastUpdatedDate;

@JsonProperty(value = "numberOfOccurances")

protected Long numberOfOccurances;

@JsonProperty(value = "owner")

protected String owner;

@JsonProperty(value = "remedy")

protected String remedy;
Expand Down Expand Up @@ -160,6 +172,17 @@ public void setAlarmedObjectID(String value) {
}


@JsonIgnore
public String getCreationDate() {
return creationDate;
}

@JsonIgnore
public void setCreationDate(String value) {
this.creationDate = value;
}


@JsonIgnore
public String getDescription() {
return description;
Expand Down Expand Up @@ -237,6 +260,17 @@ public void setLastUpdatedBy(String value) {
}


@JsonIgnore
public String getLastUpdatedDate() {
return lastUpdatedDate;
}

@JsonIgnore
public void setLastUpdatedDate(String value) {
this.lastUpdatedDate = value;
}


@JsonIgnore
public Long getNumberOfOccurances() {
return numberOfOccurances;
Expand All @@ -248,6 +282,17 @@ public void setNumberOfOccurances(Long value) {
}


@JsonIgnore
public String getOwner() {
return owner;
}

@JsonIgnore
public void setOwner(String value) {
this.owner = value;
}


@JsonIgnore
public String getRemedy() {
return remedy;
Expand Down Expand Up @@ -332,8 +377,7 @@ public PermissionsFetcher getPermissions() {


public String toString() {
return "Alarm [" + "acknowledged=" + acknowledged + ", alarmedObjectID=" + alarmedObjectID + ", description=" + description + ", embeddedMetadata=" + embeddedMetadata + ", enterpriseID=" + enterpriseID + ", entityScope=" + entityScope + ", errorCondition=" + errorCondition + ", externalID=" + externalID + ", lastUpdatedBy=" + lastUpdatedBy + ", numberOfOccurances=" + numberOfOccurances + ", remedy=" + remedy + ", severity=" + severity + ", systemID=" + systemID + ", targetObject=" + targetObject + ", timestamp=" + timestamp + ", title=" + title + ", id=" + id + ", parentId=" + parentId + ", parentType=" + parentType + ", creationDate=" + creationDate + ", lastUpdatedDate="
+ lastUpdatedDate + ", owner=" + owner + "]";
return "Alarm [" + "acknowledged=" + acknowledged + ", alarmedObjectID=" + alarmedObjectID + ", creationDate=" + creationDate + ", description=" + description + ", embeddedMetadata=" + embeddedMetadata + ", enterpriseID=" + enterpriseID + ", entityScope=" + entityScope + ", errorCondition=" + errorCondition + ", externalID=" + externalID + ", lastUpdatedBy=" + lastUpdatedBy + ", lastUpdatedDate=" + lastUpdatedDate + ", numberOfOccurances=" + numberOfOccurances + ", owner=" + owner + ", remedy=" + remedy + ", severity=" + severity + ", systemID=" + systemID + ", targetObject=" + targetObject + ", timestamp=" + timestamp + ", title=" + title + ", id=" + id + ", parentId=" + parentId + ", parentType=" + parentType + "]";
}


Expand Down
Loading

0 comments on commit a008f03

Please sign in to comment.