Skip to content

Commit

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

## [Unreleased]

## [3.0.2] - 2024-05-29
### Changed
- `ResponseItemSwitchGetNetworkSwitchAccessPolicies` add new attribute `AccessPolicyNumber`.
- `ResponseSwitchGetNetworkSwitchAccessPolicy` add new attribute `AccessPolicyNumber`.

## [3.0.1] - 2024-05-22
### Changed
- `ResponseItemNetworksGetNetworkGroupPolicies` add new attribute `Name`.
Expand Down Expand Up @@ -1350,4 +1355,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[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
[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
[3.0.2]: https://github.com/meraki/dashboard-api-go/compare/v3.0.1...3.0.2
[Unreleased]: https://github.com/meraki/dashboard-api-go/compare/v3.0.2...main
2 changes: 2 additions & 0 deletions sdk/switch.go
Original file line number Diff line number Diff line change
Expand Up @@ -536,6 +536,7 @@ type ResponseSwitchUpdateNetworkSwitchAccessControlListsRules struct {
}
type ResponseSwitchGetNetworkSwitchAccessPolicies []ResponseItemSwitchGetNetworkSwitchAccessPolicies // Array of ResponseSwitchGetNetworkSwitchAccessPolicies
type ResponseItemSwitchGetNetworkSwitchAccessPolicies struct {
AccessPolicyNumber string `json:"accessPolicyNumber,omitempty"` // Access Type of the policy. Automatically 'Hybrid authentication' when hostMode is 'Multi-Domain'.
AccessPolicyType string `json:"accessPolicyType,omitempty"` // Access Type of the policy. Automatically 'Hybrid authentication' when hostMode is 'Multi-Domain'.
Counts *ResponseItemSwitchGetNetworkSwitchAccessPoliciesCounts `json:"counts,omitempty"` // Counts associated with the access policy
Dot1X *ResponseItemSwitchGetNetworkSwitchAccessPoliciesDot1X `json:"dot1x,omitempty"` // 802.1x Settings
Expand Down Expand Up @@ -630,6 +631,7 @@ type ResponseSwitchCreateNetworkSwitchAccessPolicyRadiusServers struct {
Port *int `json:"port,omitempty"` // UDP port that the RADIUS server listens on for access requests
}
type ResponseSwitchGetNetworkSwitchAccessPolicy struct {
AccessPolicyNumber string `json:"accessPolicyNumber,omitempty"` // Access Type of the policy. Automatically 'Hybrid authentication' when hostMode is 'Multi-Domain'.
AccessPolicyType string `json:"accessPolicyType,omitempty"` // Access Type of the policy. Automatically 'Hybrid authentication' when hostMode is 'Multi-Domain'.
Counts *ResponseSwitchGetNetworkSwitchAccessPolicyCounts `json:"counts,omitempty"` // Counts associated with the access policy
Dot1X *ResponseSwitchGetNetworkSwitchAccessPolicyDot1X `json:"dot1x,omitempty"` // 802.1x Settings
Expand Down

0 comments on commit b110fec

Please sign in to comment.