Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

## [3.0.1] - 2024-05-22 #29

Merged
merged 1 commit into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading