Skip to content

Commit

Permalink
Merge pull request #29 from meraki/develop
Browse files Browse the repository at this point in the history
## [3.0.1] - 2024-05-22
  • Loading branch information
fmunozmiranda authored May 22, 2024
2 parents 4235dfb + 1bb11cf commit ddae8dc
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.0.1] - 2024-05-22
### Changed
- `ResponseItemNetworksGetNetworkGroupPolicies` add new attribute `Name`.
- `ResponseNetworksGetNetworkSyslogServersServers` change `Port` to string.
- `ResponseNetworksUpdateNetworkSyslogServersServers` change `Port` to string.

## [3.0.0] - 2024-04-16
- dashboard-api-go supports now v1.44.1 of Meraki Dashboard API.
- User-agent is now required. Format of string "ApplicationName VendorName".
Expand Down Expand Up @@ -1343,4 +1349,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[2.0.8]: https://github.com/meraki/dashboard-api-go/compare/v2.0.7...2.0.8
[2.0.9]: https://github.com/meraki/dashboard-api-go/compare/v2.0.8...2.0.9
[3.0.0]: https://github.com/meraki/dashboard-api-go/compare/v2.0.9...3.0.0
[Unreleased]: https://github.com/meraki/dashboard-api-go/compare/v3.0.0...main
[3.0.1]: https://github.com/meraki/dashboard-api-go/compare/v3.0.0...3.0.1
[Unreleased]: https://github.com/meraki/dashboard-api-go/compare/v3.0.1...main
5 changes: 3 additions & 2 deletions sdk/networks.go
Original file line number Diff line number Diff line change
Expand Up @@ -1768,6 +1768,7 @@ type ResponseItemNetworksGetNetworkGroupPolicies struct {
Scheduling *ResponseItemNetworksGetNetworkGroupPoliciesScheduling `json:"scheduling,omitempty"` // The schedule for the group policy. Schedules are applied to days of the week.
SplashAuthSettings string `json:"splashAuthSettings,omitempty"` // Whether clients bound to your policy will bypass splash authorization or behave according to the network's rules. Can be one of 'network default' or 'bypass'. Only available if your network has a wireless configuration.
VLANTagging *ResponseItemNetworksGetNetworkGroupPoliciesVLANTagging `json:"vlanTagging,omitempty"` // The VLAN tagging settings for your group policy. Only available if your network has a wireless configuration.
Name string `json:"name,omitempty"` // The VLAN tagging settings for your group policy. Only available if your network has a wireless configuration.
}
type ResponseItemNetworksGetNetworkGroupPoliciesBandwidth struct {
BandwidthLimits *ResponseItemNetworksGetNetworkGroupPoliciesBandwidthBandwidthLimits `json:"bandwidthLimits,omitempty"` // The bandwidth limits object, specifying upload and download speed for clients bound to the group policy. These are only enforced if 'settings' is set to 'custom'.
Expand Down Expand Up @@ -2661,15 +2662,15 @@ type ResponseNetworksGetNetworkSyslogServers struct {
}
type ResponseNetworksGetNetworkSyslogServersServers 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 ResponseNetworksUpdateNetworkSyslogServers struct {
Servers *[]ResponseNetworksUpdateNetworkSyslogServersServers `json:"servers,omitempty"` // List of the syslog servers for this network
}
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 ddae8dc

Please sign in to comment.