Skip to content

Commit

Permalink
Auto generated from API Specifications for 20.10.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins authored and Jenkins committed May 12, 2023
1 parent 8289eea commit c829ff1
Show file tree
Hide file tree
Showing 12 changed files with 216 additions and 14 deletions.
2 changes: 1 addition & 1 deletion vspk/package.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>net.nuagenetworks.vspk.dll</id>
<version>20.10.12</version>
<version>20.10.13</version>
<authors>nuagenetworks</authors>
<owners>nuagenetworks</owners>
<projectUrl>https://github.com/nuagenetworks/vspk-csharp</projectUrl>
Expand Down
16 changes: 15 additions & 1 deletion vspk/vspk/DHCPv6Option.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ public enum EEntityScope {ENTERPRISE,GLOBAL };
[JsonProperty("owner")]
protected String _owner;

[JsonProperty("subOptionType")]
protected String _subOptionType;

[JsonProperty("type")]
protected String _type;

Expand Down Expand Up @@ -218,6 +221,17 @@ public String NUOwner {
}


[JsonIgnore]
public String NUSubOptionType {
get {
return _subOptionType;
}
set {
this._subOptionType = value;
}
}


[JsonIgnore]
public String NUType {
get {
Expand Down Expand Up @@ -260,7 +274,7 @@ public PermissionsFetcher getPermissions() {


public String toString() {
return "DHCPv6Option [" + "actualType=" + _actualType + ", actualValues=" + _actualValues + ", creationDate=" + _creationDate + ", embeddedMetadata=" + _embeddedMetadata + ", entityScope=" + _entityScope + ", externalID=" + _externalID + ", lastUpdatedBy=" + _lastUpdatedBy + ", lastUpdatedDate=" + _lastUpdatedDate + ", length=" + _length + ", owner=" + _owner + ", type=" + _type + ", value=" + _value + ", id=" + NUId + ", parentId=" + NUParentId + ", parentType=" + NUParentType + "]";
return "DHCPv6Option [" + "actualType=" + _actualType + ", actualValues=" + _actualValues + ", creationDate=" + _creationDate + ", embeddedMetadata=" + _embeddedMetadata + ", entityScope=" + _entityScope + ", externalID=" + _externalID + ", lastUpdatedBy=" + _lastUpdatedBy + ", lastUpdatedDate=" + _lastUpdatedDate + ", length=" + _length + ", owner=" + _owner + ", subOptionType=" + _subOptionType + ", type=" + _type + ", value=" + _value + ", id=" + NUId + ", parentId=" + NUParentId + ", parentType=" + NUParentType + "]";
}


Expand Down
17 changes: 16 additions & 1 deletion vspk/vspk/Domain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ public enum EMaintenanceMode {DISABLED,ENABLED };
public enum EMulticast {DISABLED,ENABLED,INHERITED };
public enum EPermittedAction {ALL,DEPLOY,EXTEND,INSTANTIATE,READ,USE };
public enum EPolicyChangeStatus {APPLIED,DISCARDED,STARTED };
public enum EStatefulMode {REFLEXIVE,STATEFUL };
public enum EThreatIntelligenceEnabled {DISABLED,ENABLED,INHERITED };
public enum ETunnelType {DC_DEFAULT,GRE,MPLSoUDP,VLAN,VXLAN };
public enum EUnderlayEnabled {DISABLED,ENABLED };
Expand Down Expand Up @@ -282,6 +283,9 @@ public enum EUplinkPreference {PRIMARY,PRIMARY_SECONDARY,SECONDARY,SECONDARY_PRI

[JsonProperty("serviceID")]
protected long? _serviceID;
[JsonConverter(typeof(StringEnumConverter))]
[JsonProperty("statefulMode")]
protected EStatefulMode? _statefulMode;

[JsonProperty("stretched")]
protected bool _stretched;
Expand Down Expand Up @@ -1434,6 +1438,17 @@ public long? NUServiceID {
}


[JsonIgnore]
public EStatefulMode? NUStatefulMode {
get {
return _statefulMode;
}
set {
this._statefulMode = value;
}
}


[JsonIgnore]
public bool NUStretched {
get {
Expand Down Expand Up @@ -1760,7 +1775,7 @@ public ZonesFetcher getZones() {


public String toString() {
return "Domain [" + "BGPEnabled=" + _BGPEnabled + ", DHCPBehavior=" + _DHCPBehavior + ", DHCPServerAddress=" + _DHCPServerAddress + ", DPI=" + _DPI + ", ECMPCount=" + _ECMPCount + ", EVPNRT5Type=" + _EVPNRT5Type + ", FIPIgnoreDefaultRoute=" + _FIPIgnoreDefaultRoute + ", FIPUnderlay=" + _FIPUnderlay + ", GRTEnabled=" + _GRTEnabled + ", IPv4IBGPMaxPaths=" + _IPv4IBGPMaxPaths + ", IPv6IBGPMaxPaths=" + _IPv6IBGPMaxPaths + ", PATEnabled=" + _PATEnabled + ", VXLANECMPEnabled=" + _VXLANECMPEnabled + ", advertiseCriteria=" + _advertiseCriteria + ", aggregateFlowsEnabled=" + _aggregateFlowsEnabled + ", aggregationFlowType=" + _aggregationFlowType + ", associatedBGPProfileID=" + _associatedBGPProfileID + ", associatedIDPProfileID=" + _associatedIDPProfileID + ", associatedMulticastChannelMapID=" + _associatedMulticastChannelMapID + ", associatedPATMapperID=" + _associatedPATMapperID + ", associatedSharedPATMapperID=" + _associatedSharedPATMapperID + ", associatedUnderlayID=" + _associatedUnderlayID + ", backHaulRouteDistinguisher=" + _backHaulRouteDistinguisher + ", backHaulRouteTarget=" + _backHaulRouteTarget + ", backHaulServiceID=" + _backHaulServiceID + ", backHaulVNID=" + _backHaulVNID + ", color=" + _color + ", 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 + ", fecEnabled=" + _fecEnabled + ", flowCollectionEnabled=" + _flowCollectionEnabled + ", flowCount=" + _flowCount + ", flowLimitEnabled=" + _flowLimitEnabled + ", flowSetupRate=" + _flowSetupRate + ", flowSetupRateLimitEnabled=" + _flowSetupRateLimitEnabled + ", globalRoutingEnabled=" + _globalRoutingEnabled + ", importRouteTarget=" + _importRouteTarget + ", isSecondaryFIPDomain=" + _isSecondaryFIPDomain + ", l2DomainAggregationEnabled=" + _l2DomainAggregationEnabled + ", labelID=" + _labelID + ", lastUpdatedBy=" + _lastUpdatedBy + ", lastUpdatedDate=" + _lastUpdatedDate + ", leakingEnabled=" + _leakingEnabled + ", localAS=" + _localAS + ", loopbackIntfDescription=" + _loopbackIntfDescription + ", loopbackIntfEnabled=" + _loopbackIntfEnabled + ", loopbackIntfIPv4Address=" + _loopbackIntfIPv4Address + ", loopbackIntfIPv6Address=" + _loopbackIntfIPv6Address + ", loopbackIntfId=" + _loopbackIntfId + ", maintenanceMode=" + _maintenanceMode + ", multicast=" + _multicast + ", name=" + _name + ", owner=" + _owner + ", permittedAction=" + _permittedAction + ", policyChangeStatus=" + _policyChangeStatus + ", routeDistinguisher=" + _routeDistinguisher + ", routeTarget=" + _routeTarget + ", secondaryDHCPServerAddress=" + _secondaryDHCPServerAddress + ", secondaryRouteTarget=" + _secondaryRouteTarget + ", serviceID=" + _serviceID + ", stretched=" + _stretched + ", templateID=" + _templateID + ", threatIntelligenceEnabled=" + _threatIntelligenceEnabled + ", tunnelType=" + _tunnelType + ", underlayEnabled=" + _underlayEnabled + ", uplinkPreference=" + _uplinkPreference + ", id=" + NUId + ", parentId=" + NUParentId + ", parentType=" + NUParentType + "]";
return "Domain [" + "BGPEnabled=" + _BGPEnabled + ", DHCPBehavior=" + _DHCPBehavior + ", DHCPServerAddress=" + _DHCPServerAddress + ", DPI=" + _DPI + ", ECMPCount=" + _ECMPCount + ", EVPNRT5Type=" + _EVPNRT5Type + ", FIPIgnoreDefaultRoute=" + _FIPIgnoreDefaultRoute + ", FIPUnderlay=" + _FIPUnderlay + ", GRTEnabled=" + _GRTEnabled + ", IPv4IBGPMaxPaths=" + _IPv4IBGPMaxPaths + ", IPv6IBGPMaxPaths=" + _IPv6IBGPMaxPaths + ", PATEnabled=" + _PATEnabled + ", VXLANECMPEnabled=" + _VXLANECMPEnabled + ", advertiseCriteria=" + _advertiseCriteria + ", aggregateFlowsEnabled=" + _aggregateFlowsEnabled + ", aggregationFlowType=" + _aggregationFlowType + ", associatedBGPProfileID=" + _associatedBGPProfileID + ", associatedIDPProfileID=" + _associatedIDPProfileID + ", associatedMulticastChannelMapID=" + _associatedMulticastChannelMapID + ", associatedPATMapperID=" + _associatedPATMapperID + ", associatedSharedPATMapperID=" + _associatedSharedPATMapperID + ", associatedUnderlayID=" + _associatedUnderlayID + ", backHaulRouteDistinguisher=" + _backHaulRouteDistinguisher + ", backHaulRouteTarget=" + _backHaulRouteTarget + ", backHaulServiceID=" + _backHaulServiceID + ", backHaulVNID=" + _backHaulVNID + ", color=" + _color + ", 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 + ", fecEnabled=" + _fecEnabled + ", flowCollectionEnabled=" + _flowCollectionEnabled + ", flowCount=" + _flowCount + ", flowLimitEnabled=" + _flowLimitEnabled + ", flowSetupRate=" + _flowSetupRate + ", flowSetupRateLimitEnabled=" + _flowSetupRateLimitEnabled + ", globalRoutingEnabled=" + _globalRoutingEnabled + ", importRouteTarget=" + _importRouteTarget + ", isSecondaryFIPDomain=" + _isSecondaryFIPDomain + ", l2DomainAggregationEnabled=" + _l2DomainAggregationEnabled + ", labelID=" + _labelID + ", lastUpdatedBy=" + _lastUpdatedBy + ", lastUpdatedDate=" + _lastUpdatedDate + ", leakingEnabled=" + _leakingEnabled + ", localAS=" + _localAS + ", loopbackIntfDescription=" + _loopbackIntfDescription + ", loopbackIntfEnabled=" + _loopbackIntfEnabled + ", loopbackIntfIPv4Address=" + _loopbackIntfIPv4Address + ", loopbackIntfIPv6Address=" + _loopbackIntfIPv6Address + ", loopbackIntfId=" + _loopbackIntfId + ", maintenanceMode=" + _maintenanceMode + ", multicast=" + _multicast + ", name=" + _name + ", owner=" + _owner + ", permittedAction=" + _permittedAction + ", policyChangeStatus=" + _policyChangeStatus + ", routeDistinguisher=" + _routeDistinguisher + ", routeTarget=" + _routeTarget + ", secondaryDHCPServerAddress=" + _secondaryDHCPServerAddress + ", secondaryRouteTarget=" + _secondaryRouteTarget + ", serviceID=" + _serviceID + ", statefulMode=" + _statefulMode + ", stretched=" + _stretched + ", templateID=" + _templateID + ", threatIntelligenceEnabled=" + _threatIntelligenceEnabled + ", tunnelType=" + _tunnelType + ", underlayEnabled=" + _underlayEnabled + ", uplinkPreference=" + _uplinkPreference + ", id=" + NUId + ", parentId=" + NUParentId + ", parentType=" + NUParentType + "]";
}


Expand Down
8 changes: 4 additions & 4 deletions vspk/vspk/IKEEncryptionprofile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ public class IKEEncryptionprofile: RestObject {


public enum EDPDMode {ON_DEMAND,REPLY_ONLY };
public enum EIPsecAuthenticationAlgorithm {HMAC_SHA1,HMAC_SHA256,HMAC_SHA512,HMAC_MD5 };
public enum EIPsecEncryptionAlgorithm {AES128,AES192,AES256,TRIPLE_DES,NULL };
public enum EIPsecSAReplayWindowSize {WINDOW_SIZE_32,WINDOW_SIZE_64,WINDOW_SIZE_128,WINDOW_SIZE_256,WINDOW_SIZE_512,WINDOW_SIZE_1024 };
public enum EIPsecAuthenticationAlgorithm {HMAC_MD5,HMAC_SHA1,HMAC_SHA256,HMAC_SHA512 };
public enum EIPsecEncryptionAlgorithm {AES128,AES192,AES256,NULL,TRIPLE_DES };
public enum EIPsecSAReplayWindowSize {WINDOW_SIZE_1024,WINDOW_SIZE_128,WINDOW_SIZE_256,WINDOW_SIZE_32,WINDOW_SIZE_512,WINDOW_SIZE_64 };
public enum EISAKMPAuthenticationMode {PRE_SHARED_KEY };
public enum EISAKMPDiffieHelmanGroupIdentifier {GROUP_1_768_BIT_DH,GROUP_2_1024_BIT_DH,GROUP_5_1536_BIT_DH,GROUP_14_2048_BIT_DH,GROUP_15_3072_BIT_DH };
public enum EISAKMPDiffieHelmanGroupIdentifier {GROUP_14_2048_BIT_DH,GROUP_15_3072_BIT_DH,GROUP_18_8192_BIT_DH,GROUP_19_256_BIT_DH,GROUP_1_768_BIT_DH,GROUP_20_384_BIT_DH,GROUP_21_521_BIT_DH,GROUP_2_1024_BIT_DH,GROUP_5_1536_BIT_DH };
public enum EISAKMPEncryptionAlgorithm {AES128,AES192,AES256,TRIPLE_DES };
public enum EISAKMPHashAlgorithm {SHA1,SHA256 };
public enum EEntityScope {ENTERPRISE,GLOBAL };
Expand Down
30 changes: 29 additions & 1 deletion vspk/vspk/InfrastructureGatewayProfile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,12 @@ public enum EUpgradeAction {DOWNLOAD_AND_UPGRADE_AT_WINDOW,DOWNLOAD_AND_UPGRADE_
[JsonProperty("runUnderlayMTUDiscoveryTest")]
protected bool _runUnderlayMTUDiscoveryTest;

[JsonProperty("secondaryRemoteLogServerAddress")]
protected String _secondaryRemoteLogServerAddress;

[JsonProperty("secondaryRemoteLogServerPort")]
protected long? _secondaryRemoteLogServerPort;

[JsonProperty("statsCollectorPort")]
protected long? _statsCollectorPort;

Expand Down Expand Up @@ -535,6 +541,28 @@ public bool NURunUnderlayMTUDiscoveryTest {
}


[JsonIgnore]
public String NUSecondaryRemoteLogServerAddress {
get {
return _secondaryRemoteLogServerAddress;
}
set {
this._secondaryRemoteLogServerAddress = value;
}
}


[JsonIgnore]
public long? NUSecondaryRemoteLogServerPort {
get {
return _secondaryRemoteLogServerPort;
}
set {
this._secondaryRemoteLogServerPort = value;
}
}


[JsonIgnore]
public long? NUStatsCollectorPort {
get {
Expand Down Expand Up @@ -639,7 +667,7 @@ public PermissionsFetcher getPermissions() {


public String toString() {
return "InfrastructureGatewayProfile [" + "NTPServerKey=" + _NTPServerKey + ", NTPServerKeyID=" + _NTPServerKeyID + ", controllerLessDuration=" + _controllerLessDuration + ", controllerLessEnabled=" + _controllerLessEnabled + ", controllerLessForwardingMode=" + _controllerLessForwardingMode + ", controllerLessRemoteDuration=" + _controllerLessRemoteDuration + ", creationDate=" + _creationDate + ", datapathSyncTimeout=" + _datapathSyncTimeout + ", deadTimer=" + _deadTimer + ", deadTimerEnabled=" + _deadTimerEnabled + ", description=" + _description + ", embeddedMetadata=" + _embeddedMetadata + ", enableUnderlayTestsDuringActivation=" + _enableUnderlayTestsDuringActivation + ", enterpriseID=" + _enterpriseID + ", entityScope=" + _entityScope + ", externalID=" + _externalID + ", flowEvictionThreshold=" + _flowEvictionThreshold + ", forceImmediateSystemSync=" + _forceImmediateSystemSync + ", lastUpdatedBy=" + _lastUpdatedBy + ", lastUpdatedDate=" + _lastUpdatedDate + ", metadataUpgradePath=" + _metadataUpgradePath + ", name=" + _name + ", openFlowAuditTimer=" + _openFlowAuditTimer + ", owner=" + _owner + ", proxyDNSName=" + _proxyDNSName + ", remoteLogMode=" + _remoteLogMode + ", remoteLogServerAddress=" + _remoteLogServerAddress + ", remoteLogServerPort=" + _remoteLogServerPort + ", runUnderlayBandwidthTest=" + _runUnderlayBandwidthTest + ", runUnderlayConnectivityTest=" + _runUnderlayConnectivityTest + ", runUnderlayMTUDiscoveryTest=" + _runUnderlayMTUDiscoveryTest + ", statsCollectorPort=" + _statsCollectorPort + ", systemSyncScheduler=" + _systemSyncScheduler + ", underlayTestServer=" + _underlayTestServer + ", underlayTestUplinkMode=" + _underlayTestUplinkMode + ", upgradeAction=" + _upgradeAction + ", useTwoFactor=" + _useTwoFactor + ", webFilterDownloadPort=" + _webFilterDownloadPort + ", webFilterQueryPort=" + _webFilterQueryPort + ", id=" + NUId + ", parentId=" + NUParentId + ", parentType=" + NUParentType + "]";
return "InfrastructureGatewayProfile [" + "NTPServerKey=" + _NTPServerKey + ", NTPServerKeyID=" + _NTPServerKeyID + ", controllerLessDuration=" + _controllerLessDuration + ", controllerLessEnabled=" + _controllerLessEnabled + ", controllerLessForwardingMode=" + _controllerLessForwardingMode + ", controllerLessRemoteDuration=" + _controllerLessRemoteDuration + ", creationDate=" + _creationDate + ", datapathSyncTimeout=" + _datapathSyncTimeout + ", deadTimer=" + _deadTimer + ", deadTimerEnabled=" + _deadTimerEnabled + ", description=" + _description + ", embeddedMetadata=" + _embeddedMetadata + ", enableUnderlayTestsDuringActivation=" + _enableUnderlayTestsDuringActivation + ", enterpriseID=" + _enterpriseID + ", entityScope=" + _entityScope + ", externalID=" + _externalID + ", flowEvictionThreshold=" + _flowEvictionThreshold + ", forceImmediateSystemSync=" + _forceImmediateSystemSync + ", lastUpdatedBy=" + _lastUpdatedBy + ", lastUpdatedDate=" + _lastUpdatedDate + ", metadataUpgradePath=" + _metadataUpgradePath + ", name=" + _name + ", openFlowAuditTimer=" + _openFlowAuditTimer + ", owner=" + _owner + ", proxyDNSName=" + _proxyDNSName + ", remoteLogMode=" + _remoteLogMode + ", remoteLogServerAddress=" + _remoteLogServerAddress + ", remoteLogServerPort=" + _remoteLogServerPort + ", runUnderlayBandwidthTest=" + _runUnderlayBandwidthTest + ", runUnderlayConnectivityTest=" + _runUnderlayConnectivityTest + ", runUnderlayMTUDiscoveryTest=" + _runUnderlayMTUDiscoveryTest + ", secondaryRemoteLogServerAddress=" + _secondaryRemoteLogServerAddress + ", secondaryRemoteLogServerPort=" + _secondaryRemoteLogServerPort + ", statsCollectorPort=" + _statsCollectorPort + ", systemSyncScheduler=" + _systemSyncScheduler + ", underlayTestServer=" + _underlayTestServer + ", underlayTestUplinkMode=" + _underlayTestUplinkMode + ", upgradeAction=" + _upgradeAction + ", useTwoFactor=" + _useTwoFactor + ", webFilterDownloadPort=" + _webFilterDownloadPort + ", webFilterQueryPort=" + _webFilterQueryPort + ", id=" + NUId + ", parentId=" + NUParentId + ", parentType=" + NUParentType + "]";
}


Expand Down
Loading

0 comments on commit c829ff1

Please sign in to comment.