Skip to content

Commit 688af84

Browse files
Merge pull request #4 from cisco-en-programmability/develop
Update cisco Modules workflow_manager
2 parents bbbc6e0 + 18e1f09 commit 688af84

17 files changed

+3011
-1394
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ The following table shows the supported versions.
1515
| Cisco CATALYST Center version | Ansible "cisco.catalystcenter" version | Python "catalystcentersdk" version |
1616
|-------------------------------|----------------------------------------|------------------------------------|
1717
| 2.3.7.6 | 1.0.0 | 2.3.7.6.2 |
18-
| 2.3.7.7 | ^2.1.2 | ^2.3.7.9.4 |
19-
| 2.3.7.9 | ^2.1.2 | ^2.3.7.9.4 |
18+
| 2.3.7.7 | ^2.1.2 | ^2.3.7.9.4 |
19+
| 2.3.7.9 | ^2.1.3 | ^2.3.7.9.4 |
2020

2121
If your Ansible collection is older please consider updating it first.
2222

changelogs/changelog.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,14 @@ releases:
4242
release_summary: Update Readme
4343
minor_changes:
4444
- Update Readme
45+
46+
2.1.3:
47+
release_date: "2025-03-10"
48+
changes:
49+
release_summary: Update Modules
50+
minor_changes:
51+
- Update cisco Modules device_credential_workflow_manager, inventory_workflow_manager, ise_radius_integration_workflow_manager,
52+
network_settings_workflow_manager, pnp_workflow_manager, provision_workflow_manager, sda_fabric_devices_workflow_manager,
53+
sda_fabric_transit_workflow_manager, sda_fabric_virtual_networks_workflow_manager, sda_host_port_onboarding_workflow_manager,
54+
site_workflow_manager, swim_workflow_manager, template_workflow_manager, user_and_role_workflow_manager.
55+

galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
namespace: cisco
33
name: catalystcenter
4-
version: 2.1.2
4+
version: 2.1.3
55
readme: README.md
66
authors:
77
- Rafael Campos <[email protected]>

plugins/modules/device_credential_workflow_manager.py

Lines changed: 184 additions & 80 deletions
Large diffs are not rendered by default.

plugins/modules/inventory_workflow_manager.py

Lines changed: 302 additions & 111 deletions
Large diffs are not rendered by default.

plugins/modules/ise_radius_integration_workflow_manager.py

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -376,10 +376,10 @@
376376
sample: >
377377
{
378378
"response": {
379-
"taskId": "string",
380-
"url": "string"
379+
"taskId": "str",
380+
"url": "str"
381381
},
382-
"version": "string"
382+
"version": "str"
383383
}
384384
385385
# Case_2: Successful updation of Authentication and Policy Server.
@@ -390,10 +390,10 @@
390390
sample: >
391391
{
392392
"response": {
393-
"taskId": "string",
394-
"url": "string"
393+
"taskId": "str",
394+
"url": "str"
395395
},
396-
"version": "string"
396+
"version": "str"
397397
}
398398
399399
# Case_3: Successful creation/updation of network
@@ -404,10 +404,10 @@
404404
sample: >
405405
{
406406
"response": {
407-
"taskId": "string",
408-
"url": "string"
407+
"taskId": "str",
408+
"url": "str"
409409
},
410-
"version": "string"
410+
"version": "str"
411411
}
412412
"""
413413

@@ -459,39 +459,39 @@ def validate_input(self):
459459
"authentication_policy_server": {
460460
"type": "list",
461461
"elements": "dict",
462-
"server_type": {"type": 'string', "choices": ["AAA", "ISE"]},
463-
"server_ip_address": {"type": 'string'},
464-
"shared_secret": {"type": 'string'},
465-
"protocol": {"type": 'string', "choices": ["TACACS", "RADIUS", "RADIUS_TACACS"]},
466-
"encryption_scheme": {"type": 'string'},
467-
"message_authenticator_code_key": {"type": 'string'},
468-
"encryption_key": {"type": 'string'},
469-
"authentication_port": {"type": 'integer'},
470-
"accounting_port": {"type": 'integer'},
471-
"retries": {"type": 'integer'},
472-
"timeout": {"type": 'integer'},
473-
"role": {"type": 'string'},
462+
"server_type": {"type": 'str', "choices": ["AAA", "ISE"]},
463+
"server_ip_address": {"type": 'str'},
464+
"shared_secret": {"type": 'str'},
465+
"protocol": {"type": 'str', "choices": ["TACACS", "RADIUS", "RADIUS_TACACS"]},
466+
"encryption_scheme": {"type": 'str'},
467+
"message_authenticator_code_key": {"type": 'str'},
468+
"encryption_key": {"type": 'str'},
469+
"authentication_port": {"type": 'int'},
470+
"accounting_port": {"type": 'int'},
471+
"retries": {"type": 'int'},
472+
"timeout": {"type": 'int'},
473+
"role": {"type": 'str'},
474474
"pxgrid_enabled": {"type": 'bool'},
475475
"use_catalystcenter_cert_for_pxgrid": {"type": 'bool'},
476476
"cisco_ise_dtos": {
477477
"type": 'list',
478-
"user_name": {"type": 'string'},
479-
"password": {"type": 'string'},
480-
"fqdn": {"type": 'string'},
481-
"ip_address": {"type": 'string'},
482-
"description": {"type": 'string'},
483-
"ssh_key": {"type": 'string'},
478+
"user_name": {"type": 'str'},
479+
"password": {"type": 'str'},
480+
"fqdn": {"type": 'str'},
481+
"ip_address": {"type": 'str'},
482+
"description": {"type": 'str'},
483+
"ssh_key": {"type": 'str'},
484484
},
485485
"external_cisco_ise_ip_addr_dtos": {
486486
"type": 'list',
487487
"external_cisco_ise_ip_addresses": {
488488
"type": 'list',
489-
"external_ip_address": {"type": 'string'},
489+
"external_ip_address": {"type": 'str'},
490490
},
491-
"ise_type": {"type": 'string'},
491+
"ise_type": {"type": 'str'},
492492
},
493493
"trusted_server": {"type": 'bool'},
494-
"ise_integration_wait_time": {"type": 'integer'}
494+
"ise_integration_wait_time": {"type": 'int'}
495495
}
496496
}
497497

0 commit comments

Comments
 (0)