Skip to content

Commit

Permalink
Update Port type from int to string in ResponseNetworksUpdateNetworkS…
Browse files Browse the repository at this point in the history
…yslogServersServers
  • Loading branch information
bvargasre committed Mar 8, 2024
1 parent 66b5493 commit 3372e02
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.0.7] - 2024-03-08
- `ResponseNetworksUpdateNetworkSyslogServersServers` changes Port from `int` to `string`.

## [2.0.6] - 2024-03-08
### Changed
- `ResponseNetworksGetNetworkSyslogServersServers` changes Port from `int` to `string`.
Expand Down
2 changes: 1 addition & 1 deletion sdk/networks.go
Original file line number Diff line number Diff line change
Expand Up @@ -2092,7 +2092,7 @@ type ResponseNetworksUpdateNetworkSyslogServers struct {
}
type ResponseNetworksUpdateNetworkSyslogServersServers struct {
Host string `json:"host,omitempty"` // The IP address of the syslog server
Port *int `json:"port,omitempty"` // The port of the syslog server
Port string `json:"port,omitempty"` // The port of the syslog server
Roles []string `json:"roles,omitempty"` // A list of roles for the syslog server. Options (case-insensitive): 'Wireless event log', 'Appliance event log', 'Switch event log', 'Air Marshal events', 'Flows', 'URLs', 'IDS alerts', 'Security events'
}
type ResponseNetworksGetNetworkTopologyLinkLayer struct {
Expand Down

0 comments on commit 3372e02

Please sign in to comment.