Skip to content

Commit

Permalink
Merge pull request #7 from meraki/develop
Browse files Browse the repository at this point in the history
Develop v2.16.4
  • Loading branch information
fmunozmiranda authored Sep 28, 2023
2 parents 7bb3bf1 + 42314bb commit 564967a
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 3 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@ Cisco.Meraki Release Notes

.. contents:: Topics

v2.16.4
=======

Bugfixes
-------------

- cisco.meraki.networks_devices_claim - got an unexpected keyword argument 'network_id', bug with parameter naming.

v2.16.3
=======

Bugfixes
-------------

- Removing ignores.

v2.16.2
=======

Expand Down
7 changes: 6 additions & 1 deletion changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -881,4 +881,9 @@ releases:
changes:
bugfixes:
- Removing ignores.
release_date: '2023-09-26'
release_date: '2023-09-26'
2.16.4:
changes:
bugfixes:
- cisco.meraki.networks_devices_claim - got an unexpected keyword argument 'network_id', bug with parameter naming.
release_date: '2023-09-28'
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
namespace: cisco
name: meraki
version: 2.16.3
version: 2.16.4
readme: README.md
authors:
- Francisco Muñoz <[email protected]>
Expand Down
11 changes: 11 additions & 0 deletions playbooks/network_devices_claim.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
- hosts: localhost
vars:
network_id: "L_828099381482771185" # Branch-1234
gather_facts: false
tasks:
- name: Create
cisco.meraki.networks_devices_claim:
meraki_output_log: true
networkId: "{{network_id}}"
serials:
- QBSD-WABS-BH7V
2 changes: 1 addition & 1 deletion plugins/action/networks_devices_claim.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def _check_argspec(self):
def get_object(self, params):
new_object = dict(
serials=params.get("serials"),
network_id=params.get("networkId"),
networkId=params.get("networkId"),
)
return new_object

Expand Down

0 comments on commit 564967a

Please sign in to comment.