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.2] - 2024-05-29 #30

Merged
merged 1 commit into from
May 29, 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
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
Loading