Skip to content

Commit

Permalink
Merge pull request #37 from meraki/develop
Browse files Browse the repository at this point in the history
## [3.0.5] - 2024-07-09
  • Loading branch information
fmunozmiranda authored Jul 10, 2024
2 parents fe0dd1c + 2b92488 commit a010c5e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.0.5] - 2024-07-09
### Changed
- `ResponseWirelessGetNetworkWirelessRfProfiles`is now an array.

## [3.0.4] - 2024-06-28
### Changed
- Adding request body for `UpdateOrganizationApplianceVpnThirdPartyVpnpeers` in `appliance` settings.
Expand Down Expand Up @@ -1367,4 +1371,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[3.0.2]: https://github.com/meraki/dashboard-api-go/compare/v3.0.1...3.0.2
[3.0.3]: https://github.com/meraki/dashboard-api-go/compare/v3.0.2...3.0.3
[3.0.4]: https://github.com/meraki/dashboard-api-go/compare/v3.0.3...3.0.4
[Unreleased]: https://github.com/meraki/dashboard-api-go/compare/v3.0.4...main
[3.0.5]: https://github.com/meraki/dashboard-api-go/compare/v3.0.4...3.0.5
[Unreleased]: https://github.com/meraki/dashboard-api-go/compare/v3.0.5...main
5 changes: 4 additions & 1 deletion sdk/wireless.go
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,10 @@ type ResponseItemWirelessGetNetworkWirelessMeshStatusesLatestMeshPerformance str
Metric *int `json:"metric,omitempty"` // Represents the quality of the entire route from the repeater access point to its gateway access point.
UsagePercentage string `json:"usagePercentage,omitempty"` // Mesh utilization as a percentage.
}
type ResponseWirelessGetNetworkWirelessRfProfiles struct {

type ResponseWirelessGetNetworkWirelessRfProfiles []ResponseItemWirelessGetNetworkWirelessRfProfiles

type ResponseItemWirelessGetNetworkWirelessRfProfiles struct {
ApBandSettings *ResponseWirelessGetNetworkWirelessRfProfilesApBandSettings `json:"apBandSettings,omitempty"` // Settings that will be enabled if selectionType is set to 'ap'.
BandSelectionType string `json:"bandSelectionType,omitempty"` // Band selection can be set to either 'ssid' or 'ap'. This param is required on creation.
ClientBalancingEnabled *bool `json:"clientBalancingEnabled,omitempty"` // Steers client to best available access point. Can be either true or false. Defaults to true.
Expand Down

0 comments on commit a010c5e

Please sign in to comment.