Skip to content

Commit

Permalink
## [2.0.1] - 2024-02-26
Browse files Browse the repository at this point in the history
### Changed
`ResponseApplianceUpdateNetworkApplianceVLAN` changes ID from `string` to `int`.
  • Loading branch information
fmunozmiranda committed Feb 28, 2024
1 parent 01d0410 commit 2c2e577
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions 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]

## [2.0.1] - 2024-02-26
### Changed
`ResponseApplianceUpdateNetworkApplianceVLAN` changes ID from `string` to `int`.

## [2.0.0] - 2024-02-26
### Added
- administered service.
Expand Down Expand Up @@ -1285,4 +1289,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- model_wipe_network_sm_devices_request service

[2.0.0]: https://github.com/meraki/dashboard-api-go/commits/v2.0.0
[2.0.1]: https://github.com/meraki/dashboard-api-go/compare/v2.0.0...2.0.1
[Unreleased]: https://github.com/meraki/dashboard-api-go/compare/v2.0.0...main
2 changes: 1 addition & 1 deletion sdk/appliance.go
Original file line number Diff line number Diff line change
Expand Up @@ -1129,7 +1129,7 @@ type ResponseApplianceUpdateNetworkApplianceVLAN struct {
DNSNameservers string `json:"dnsNameservers,omitempty"` // The DNS nameservers used for DHCP responses, either "upstream_dns", "google_dns", "opendns", or a newline seperated string of IP addresses or domain names
FixedIPAssignments *ResponseApplianceUpdateNetworkApplianceVLANFixedIPAssignments `json:"fixedIpAssignments,omitempty"` // The DHCP fixed IP assignments on the VLAN. This should be an object that contains mappings from MAC addresses to objects that themselves each contain "ip" and "name" string fields. See the sample request/response for more details.
GroupPolicyID string `json:"groupPolicyId,omitempty"` // The id of the desired group policy to apply to the VLAN
ID string `json:"id,omitempty"` // The VLAN ID of the VLAN
ID *int `json:"id,omitempty"` // The VLAN ID of the VLAN
InterfaceID string `json:"interfaceId,omitempty"` // The interface ID of the VLAN
IPv6 *ResponseApplianceUpdateNetworkApplianceVLANIPv6 `json:"ipv6,omitempty"` // IPv6 configuration on the VLAN
MandatoryDhcp *ResponseApplianceUpdateNetworkApplianceVLANMandatoryDhcp `json:"mandatoryDhcp,omitempty"` // Mandatory DHCP will enforce that clients connecting to this VLAN must use the IP address assigned by the DHCP server. Clients who use a static IP address won't be able to associate. Only available on firmware versions 17.0 and above
Expand Down

0 comments on commit 2c2e577

Please sign in to comment.