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 Jun 26, 2017
1 parent 99b3afa commit b662a30
Show file tree
Hide file tree
Showing 18 changed files with 398 additions and 17 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>4.0.9</version>
<version>4.0.10</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.3</version>
<version>2.0.4</version>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ public class Applicationperformancemanagement extends RestObject {



@JsonProperty(value = "appGroupUniqueId")
protected String appGroupUniqueId;

@JsonProperty(value = "associatedPerformanceMonitorID")
protected String associatedPerformanceMonitorID;

Expand All @@ -70,6 +73,15 @@ public Applicationperformancemanagement() {

}

@JsonIgnore
public String getAppGroupUniqueId() {
return appGroupUniqueId;
}

@JsonIgnore
public void setAppGroupUniqueId(String value) {
this.appGroupUniqueId = value;
}
@JsonIgnore
public String getAssociatedPerformanceMonitorID() {
return associatedPerformanceMonitorID;
Expand Down Expand Up @@ -116,7 +128,7 @@ public ApplicationBindingsFetcher getApplicationBindings() {


public String toString() {
return "Applicationperformancemanagement [" + "associatedPerformanceMonitorID=" + associatedPerformanceMonitorID + ", description=" + description + ", name=" + name + ", readOnly=" + readOnly + ", id=" + id + ", parentId=" + parentId + ", parentType=" + parentType + ", creationDate=" + creationDate + ", lastUpdatedDate="
return "Applicationperformancemanagement [" + "appGroupUniqueId=" + appGroupUniqueId + ", associatedPerformanceMonitorID=" + associatedPerformanceMonitorID + ", description=" + description + ", name=" + name + ", readOnly=" + readOnly + ", id=" + id + ", parentId=" + parentId + ", parentType=" + parentType + ", creationDate=" + creationDate + ", lastUpdatedDate="
+ lastUpdatedDate + ", owner=" + owner + "]";
}

Expand Down
172 changes: 172 additions & 0 deletions src/main/java/net/nuagenetworks/vspk/v4_0/BFDSession.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,172 @@
/*
Copyright (c) 2015, Alcatel-Lucent Inc
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the copyright holder nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

package net.nuagenetworks.vspk.v4_0;

import net.nuagenetworks.bambou.RestObject;
import net.nuagenetworks.bambou.annotation.RestEntity;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonIgnore;


import net.nuagenetworks.vspk.v4_0.fetchers.GlobalMetadatasFetcher;
import net.nuagenetworks.vspk.v4_0.fetchers.MetadatasFetcher;

@JsonIgnoreProperties(ignoreUnknown = true)
@RestEntity(restName = "bfdsession", resourceName = "bfdsessions")
public class BFDSession extends RestObject {

private static final long serialVersionUID = 1L;


public enum EntityScope { ENTERPRISE, GLOBAL };


@JsonProperty(value = "BFDDestinationIP")
protected String BFDDestinationIP;

@JsonProperty(value = "BFDMultiplier")
protected Long BFDMultiplier;

@JsonProperty(value = "BFDTimer")
protected Long BFDTimer;

@JsonProperty(value = "entityScope")
protected EntityScope entityScope;

@JsonProperty(value = "externalID")
protected String externalID;

@JsonProperty(value = "lastUpdatedBy")
protected String lastUpdatedBy;

@JsonProperty(value = "multiHopEnabled")
protected Boolean multiHopEnabled;



@JsonIgnore
private GlobalMetadatasFetcher globalMetadatas;

@JsonIgnore
private MetadatasFetcher metadatas;


public BFDSession() {

globalMetadatas = new GlobalMetadatasFetcher(this);

metadatas = new MetadatasFetcher(this);

}

@JsonIgnore
public String getBFDDestinationIP() {
return BFDDestinationIP;
}

@JsonIgnore
public void setBFDDestinationIP(String value) {
this.BFDDestinationIP = value;
}
@JsonIgnore
public Long getBFDMultiplier() {
return BFDMultiplier;
}

@JsonIgnore
public void setBFDMultiplier(Long value) {
this.BFDMultiplier = value;
}
@JsonIgnore
public Long getBFDTimer() {
return BFDTimer;
}

@JsonIgnore
public void setBFDTimer(Long value) {
this.BFDTimer = value;
}
@JsonIgnore
public EntityScope getEntityScope() {
return entityScope;
}

@JsonIgnore
public void setEntityScope(EntityScope value) {
this.entityScope = value;
}
@JsonIgnore
public String getExternalID() {
return externalID;
}

@JsonIgnore
public void setExternalID(String value) {
this.externalID = value;
}
@JsonIgnore
public String getLastUpdatedBy() {
return lastUpdatedBy;
}

@JsonIgnore
public void setLastUpdatedBy(String value) {
this.lastUpdatedBy = value;
}
@JsonIgnore
public Boolean getMultiHopEnabled() {
return multiHopEnabled;
}

@JsonIgnore
public void setMultiHopEnabled(Boolean value) {
this.multiHopEnabled = value;
}



@JsonIgnore
public GlobalMetadatasFetcher getGlobalMetadatas() {
return globalMetadatas;
}

@JsonIgnore
public MetadatasFetcher getMetadatas() {
return metadatas;
}


public String toString() {
return "BFDSession [" + "BFDDestinationIP=" + BFDDestinationIP + ", BFDMultiplier=" + BFDMultiplier + ", BFDTimer=" + BFDTimer + ", entityScope=" + entityScope + ", externalID=" + externalID + ", lastUpdatedBy=" + lastUpdatedBy + ", multiHopEnabled=" + multiHopEnabled + ", id=" + id + ", parentId=" + parentId + ", parentType=" + parentType + ", creationDate=" + creationDate + ", lastUpdatedDate="
+ lastUpdatedDate + ", owner=" + owner + "]";
}


}
13 changes: 12 additions & 1 deletion src/main/java/net/nuagenetworks/vspk/v4_0/BRConnection.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
import com.fasterxml.jackson.annotation.JsonIgnore;


import net.nuagenetworks.vspk.v4_0.fetchers.BFDSessionsFetcher;

@JsonIgnoreProperties(ignoreUnknown = true)
@RestEntity(restName = "brconnections", resourceName = "brconnections")
Expand All @@ -43,7 +44,7 @@ public class BRConnection extends RestObject {
private static final long serialVersionUID = 1L;


public enum AdvertisementCriteria { FATE_SHARING, GATEWAY_PING, LINK_BASED, OPENFLOW };
public enum AdvertisementCriteria { BFD, LINK_BASED, OPENFLOW };
public enum Mode { Static };


Expand All @@ -70,9 +71,14 @@ public enum Mode { Static };



@JsonIgnore
private BFDSessionsFetcher bFDSessions;


public BRConnection() {

bFDSessions = new BFDSessionsFetcher(this);

}

@JsonIgnore
Expand Down Expand Up @@ -141,6 +147,11 @@ public void setUplinkID(Long value) {



@JsonIgnore
public BFDSessionsFetcher getBFDSessions() {
return bFDSessions;
}


public String toString() {
return "BRConnection [" + "DNSAddress=" + DNSAddress + ", address=" + address + ", advertisementCriteria=" + advertisementCriteria + ", gateway=" + gateway + ", mode=" + mode + ", netmask=" + netmask + ", uplinkID=" + uplinkID + ", id=" + id + ", parentId=" + parentId + ", parentType=" + parentType + ", creationDate=" + creationDate + ", lastUpdatedDate="
Expand Down
14 changes: 13 additions & 1 deletion src/main/java/net/nuagenetworks/vspk/v4_0/Group.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ public enum ManagementMode { CMS, DEFAULT };
public enum Role { CMS, CSPOPERATOR, CSPROOT, JMS, ORGADMIN, ORGAPPDESIGNER, ORGNETWORKDESIGNER, ORGUSER, SYSTEM, UNKNOWN, USER };


@JsonProperty(value = "LDAPGroupDN")
protected String LDAPGroupDN;

@JsonProperty(value = "accountRestrictions")
protected Boolean accountRestrictions;

Expand Down Expand Up @@ -109,6 +112,15 @@ public Group() {

}

@JsonIgnore
public String getLDAPGroupDN() {
return LDAPGroupDN;
}

@JsonIgnore
public void setLDAPGroupDN(String value) {
this.LDAPGroupDN = value;
}
@JsonIgnore
public Boolean getAccountRestrictions() {
return accountRestrictions;
Expand Down Expand Up @@ -224,7 +236,7 @@ public UsersFetcher getUsers() {


public String toString() {
return "Group [" + "accountRestrictions=" + accountRestrictions + ", description=" + description + ", entityScope=" + entityScope + ", externalID=" + externalID + ", lastUpdatedBy=" + lastUpdatedBy + ", managementMode=" + managementMode + ", name=" + name + ", private_=" + private_ + ", restrictionDate=" + restrictionDate + ", role=" + role + ", id=" + id + ", parentId=" + parentId + ", parentType=" + parentType + ", creationDate=" + creationDate + ", lastUpdatedDate="
return "Group [" + "LDAPGroupDN=" + LDAPGroupDN + ", accountRestrictions=" + accountRestrictions + ", description=" + description + ", entityScope=" + entityScope + ", externalID=" + externalID + ", lastUpdatedBy=" + lastUpdatedBy + ", managementMode=" + managementMode + ", name=" + name + ", private_=" + private_ + ", restrictionDate=" + restrictionDate + ", role=" + role + ", id=" + id + ", parentId=" + parentId + ", parentType=" + parentType + ", creationDate=" + creationDate + ", lastUpdatedDate="
+ lastUpdatedDate + ", owner=" + owner + "]";
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/nuagenetworks/vspk/v4_0/L2Domain.java
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public class L2Domain extends RestObject {


public enum DPI { DISABLED, ENABLED };
public enum IPType { IPV4, IPV6 };
public enum IPType { IPV4, DUALSTACK };
public enum Encryption { DISABLED, ENABLED };
public enum EntityScope { ENTERPRISE, GLOBAL };
public enum MaintenanceMode { DISABLED, ENABLED, ENABLED_INHERITED };
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public class L2DomainTemplate extends RestObject {


public enum DPI { DISABLED, ENABLED, INHERITED };
public enum IPType { IPV4, IPV6 };
public enum IPType { IPV4, DUALSTACK };
public enum Encryption { DISABLED, ENABLED };
public enum EntityScope { ENTERPRISE, GLOBAL };
public enum Multicast { DISABLED, ENABLED, INHERITED };
Expand Down
26 changes: 25 additions & 1 deletion src/main/java/net/nuagenetworks/vspk/v4_0/LDAPConfiguration.java
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,12 @@ public enum EntityScope { ENTERPRISE, GLOBAL };
@JsonProperty(value = "groupDN")
protected String groupDN;

@JsonProperty(value = "groupNamePrefix")
protected String groupNamePrefix;

@JsonProperty(value = "groupNameSuffix")
protected String groupNameSuffix;

@JsonProperty(value = "lastUpdatedBy")
protected String lastUpdatedBy;

Expand Down Expand Up @@ -189,6 +195,24 @@ public void setGroupDN(String value) {
this.groupDN = value;
}
@JsonIgnore
public String getGroupNamePrefix() {
return groupNamePrefix;
}

@JsonIgnore
public void setGroupNamePrefix(String value) {
this.groupNamePrefix = value;
}
@JsonIgnore
public String getGroupNameSuffix() {
return groupNameSuffix;
}

@JsonIgnore
public void setGroupNameSuffix(String value) {
this.groupNameSuffix = value;
}
@JsonIgnore
public String getLastUpdatedBy() {
return lastUpdatedBy;
}
Expand Down Expand Up @@ -248,7 +272,7 @@ public MetadatasFetcher getMetadatas() {


public String toString() {
return "LDAPConfiguration [" + "SSLEnabled=" + SSLEnabled + ", acceptAllCertificates=" + acceptAllCertificates + ", authorizationEnabled=" + authorizationEnabled + ", authorizingUserDN=" + authorizingUserDN + ", certificate=" + certificate + ", enabled=" + enabled + ", entityScope=" + entityScope + ", externalID=" + externalID + ", groupDN=" + groupDN + ", lastUpdatedBy=" + lastUpdatedBy + ", password=" + password + ", port=" + port + ", server=" + server + ", userDNTemplate=" + userDNTemplate + ", id=" + id + ", parentId=" + parentId + ", parentType=" + parentType + ", creationDate=" + creationDate + ", lastUpdatedDate="
return "LDAPConfiguration [" + "SSLEnabled=" + SSLEnabled + ", acceptAllCertificates=" + acceptAllCertificates + ", authorizationEnabled=" + authorizationEnabled + ", authorizingUserDN=" + authorizingUserDN + ", certificate=" + certificate + ", enabled=" + enabled + ", entityScope=" + entityScope + ", externalID=" + externalID + ", groupDN=" + groupDN + ", groupNamePrefix=" + groupNamePrefix + ", groupNameSuffix=" + groupNameSuffix + ", lastUpdatedBy=" + lastUpdatedBy + ", password=" + password + ", port=" + port + ", server=" + server + ", userDNTemplate=" + userDNTemplate + ", id=" + id + ", parentId=" + parentId + ", parentType=" + parentType + ", creationDate=" + creationDate + ", lastUpdatedDate="
+ lastUpdatedDate + ", owner=" + owner + "]";
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/nuagenetworks/vspk/v4_0/Subnet.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public class Subnet extends RestObject {

public enum DHCPRelayStatus { DISABLED, ENABLED };
public enum DPI { DISABLED, ENABLED, INHERITED };
public enum IPType { DUALSTACK, IPV4, IPV6 };
public enum IPType { DUALSTACK, IPV4 };
public enum PATEnabled { DISABLED, ENABLED, INHERITED };
public enum AssociatedApplicationObjectType { ACLENTRY_LOCATION, ADDRESS_RANGE, ADDRESS_RANGE_STATE, ALARM, APPD_APPLICATION, APPD_EXTERNAL_APP_SERVICE, APPD_FLOW, APPD_FLOW_FORWARDING_POLICY, APPD_FLOW_SECURITY_POLICY, APPD_SERVICE, APPD_TIER, APPLICATION, AUTO_DISC_GATEWAY, BACK_HAUL_SERVICE_RESP, BGPPEER, BGP_DAMPENING_MED_RESPONSE, BGP_NEIGHBOR, BGP_NEIGHBOR_MED_RESPONSE, BGP_PROFILE, BGP_PROFILE_MED_RESPONSE, BOOTSTRAP, BOOTSTRAP_ACTIVATION, BRIDGEINTERFACE, CERTIFICATE, CHILD_ENTITY_POLICY_CHANGE, CLOUD_MGMT_SYSTEM, CONTAINER_RESYNC, CUSTOMER_VRF_SEQUENCENO, DC_CONFIG, DHCP_ALLOC_MESSAGE, DHCP_CONFIG_RESP, DHCP_OPTION, DISKSTATS, DOMAIN, DOMAIN_CONFIG, DOMAIN_CONFIG_RESP, DOMAIN_FLOATING_IP_ACL_TEMPLATE, DOMAIN_FLOATING_IP_ACL_TEMPLATE_ENTRY, DOMAIN_TEMPLATE, DSCP_FORWARDING_CLASS_MAPPING, DSCP_FORWARDING_CLASS_TABLE, EGRESS_ACL, EGRESS_ACL_ENTRY, EGRESS_ACL_TEMPLATE, EGRESS_ACL_TEMPLATE_ENTRY, EGRESS_QOS_MR, EGRESS_QOS_PRIMITIVE, EGRESS_QOS_QUEUE_MR, ENDPOINT, ENTERPRISE, ENTERPRISE_CONFIG, ENTERPRISE_CONFIG_RESP, ENTERPRISE_NETWORK, ENTERPRISE_PERMISSION, ENTERPRISE_PROFILE, ENTERPRISE_SECURED_DATA, ENTERPRISE_SECURITY, ENTITY_METADATA_BINDING, ESI_SEQUENCENO, EVENT_LOG, EVPN_BGP_COMMUNITY_TAG_ENTRY, EVPN_BGP_COMMUNITY_TAG_SEQ_NO, EXPORTIMPORT, EXTERNAL_SERVICE, FLOATINGIP, FLOATINGIP_ACL, FLOATINGIP_ACL_ENTRY, FLOATING_IP_ACL_TEMPLATE, FLOATING_IP_ACL_TEMPLATE_ENTRY, GATEWAY, GATEWAY_CONFIG, GATEWAY_CONFIG_RESP, GATEWAY_SECURED_DATA, GATEWAY_SECURITY, GATEWAY_SECURITY_PROFILE_REQUEST, GATEWAY_SECURITY_PROFILE_RESPONSE, GATEWAY_SECURITY_REQUEST, GATEWAY_SECURITY_RESPONSE, GATEWAY_SERVICE_CONFIG, GATEWAY_SERVICE_CONFIG_RESP, GATEWAY_TEMPLATE, GATEWAY_VPORT_CONFIG, GATEWAY_VPORT_CONFIG_RESP, GEO_VM_EVENT, GEO_VM_REQ, GEO_VM_RES, GROUP, GROUPKEY_ENCRYPTION_PROFILE, HEALTH_REQ, HOSTINTERFACE, HSC, IKE_CERTIFICATE, IKE_ENCRYPTION_PROFILE, IKE_GATEWAY, IKE_GATEWAY_CONFIG, IKE_GATEWAY_CONNECTION, IKE_GATEWAY_PROFILE, IKE_PSK, IKE_SUBNET, INFRASTRUCTURE_CONFIG, INFRASTRUCTURE_GATEWAY_PROFILE, INFRASTRUCTURE_PORT_PROFILE, INFRASTRUCTURE_VSC_PROFILE, INGRESS_ACL, INGRESS_ACL_ENTRY, INGRESS_ACL_TEMPLATE, INGRESS_ACL_TEMPLATE_ENTRY, INGRESS_ADV_FWD, INGRESS_ADV_FWD_ENTRY, INGRESS_ADV_FWD_TEMPLATE, INGRESS_ADV_FWD_TEMPLATE_ENTRY, INGRESS_EXT_SERVICE, INGRESS_EXT_SERVICE_ENTRY, INGRESS_EXT_SERVICE_TEMPLATE, INGRESS_EXT_SERVICE_TEMPLATE_ENTRY, IP_BINDING, JOB, KEYSERVER_MEMBER, KEYSERVER_MONITOR, KEYSERVER_MONITOR_ENCRYPTED_SEED, KEYSERVER_MONITOR_SEED, KEYSERVER_MONITOR_SEK, KEYSERVER_NOTIFICATION, L2DOMAIN, L2DOMAIN_SHARED, L2DOMAIN_TEMPLATE, LDAP_CONFIG, LIBVIRT_INTERFACE, LICENSE, LOCATION, MC_CHANNEL_MAP, MC_LIST, MC_RANGE, METADATA, METADATA_TAG, MIRROR_DESTINATION, MONITORING_PORT, MULTI_NIC_VPORT, NATMAPENTRY, NETWORK_ELEMENT, NETWORK_LAYOUT, NETWORK_MACRO_GROUP, NETWORK_POLICY_GROUP, NEXT_HOP_RESP, NODE_EXECUTION_ERROR, NSGATEWAY, NSGATEWAY_CONFIG, NSGATEWAY_TEMPLATE, NSG_NOTIFICATION, NSPORT, NSPORT_STATIC_CONFIG, NSPORT_TEMPLATE, NSPORT_VLAN_CONFIG, NSREDUNDANT_GW_GRP, NS_REDUNDANT_PORT, PATCONFIG_CONFIG_RESP, PATNATPOOL, PERMISSION, PERMITTED_ACTION, POLICING_POLICY, POLICY_DECISION, POLICY_GROUP, POLICY_GROUP_TEMPLATE, PORT, PORT_MR, PORT_PUSH, PORT_TEMPLATE, PORT_VLAN_CONFIG, PORT_VLAN_CONFIG_RESPONSE, PUBLIC_NETWORK, QOS_PRIMITIVE, RATE_LIMITER, RD_SEQUENCENO, REDUNDANT_GW_GRP, ROUTING_POLICY, ROUTING_POL_MED_RESPONSE, RTRD_ENTITY, RTRD_SEQUENCENO, SERVICES_GATEWAY_RESPONSE, SERVICE_GATEWAY_RESPONSE, SERVICE_VRF_SEQUENCENO, SHAPING_POLICY, SHARED_RESOURCE, SITE, SITE_REQ, SITE_RES, STATIC_ROUTE, STATIC_ROUTE_RESP, STATISTICS, STATSSERVER, STATS_COLLECTOR, STATS_POLICY, STATS_TCA, SUBNET, SUBNET_ENTRY, SUBNET_MAC_ENTRY, SUBNET_POOL_ENTRY, SUBNET_TEMPLATE, SYSTEM_CONFIG, SYSTEM_CONFIG_REQ, SYSTEM_CONFIG_RESP, SYSTEM_MONITORING, UNSUPPORTED, UPLINK_RD, USER, VIRTUAL_IP, VIRTUAL_MACHINE, VIRTUAL_MACHINE_REPORT, VLAN, VLAN_CONFIG_RESPONSE, VLAN_TEMPLATE, VMWARE_RELOAD_CONFIG, VMWARE_VCENTER, VMWARE_VCENTER_CLUSTER, VMWARE_VCENTER_DATACENTER, VMWARE_VCENTER_EAM_CONFIG, VMWARE_VCENTER_HYPERVISOR, VMWARE_VCENTER_VRS_BASE_CONFIG, VMWARE_VCENTER_VRS_CONFIG, VMWARE_VRS_ADDRESS_RANGE, VM_DESCRIPTION, VM_INTERFACE, VM_RESYNC, VNID_SEQUENCENO, VPN_CONNECT, VPORT, VPORTTAG, VPORTTAGTEMPLATE, VPORT_GATEWAY_RESPONSE, VPORT_MEDIATION_REQUEST, VPORT_MIRROR, VPORT_TAG_BASE, VPRN_LABEL_SEQUENCENO, VRS, VSC, VSD, VSD_COMPONENT, VSG_REDUNDANT_PORT, VSP, WAN_SERVICE, ZONE, ZONE_TEMPLATE };
public enum DefaultAction { DROP_TRAFFIC, USE_UNDERLAY };
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class SubnetTemplate extends RestObject {


public enum DPI { DISABLED, ENABLED, INHERITED };
public enum IPType { DUALSTACK, IPV4, IPV6 };
public enum IPType { DUALSTACK, IPV4 };
public enum Encryption { DISABLED, ENABLED, INHERITED };
public enum EntityScope { ENTERPRISE, GLOBAL };
public enum Multicast { DISABLED, ENABLED, INHERITED };
Expand Down
Loading

0 comments on commit b662a30

Please sign in to comment.