Skip to content

Commit fbc2503

Browse files
authored
Merge from mainline (#152)
2 parents ef218a3 + 84efe92 commit fbc2503

File tree

207 files changed

+2170
-709
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

207 files changed

+2170
-709
lines changed

changelogs/changelog.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1741,3 +1741,16 @@ releases:
17411741
- Removed attribute 'slot' in assurance_icap_settings_workflow_manager module
17421742
- Added attribute 'transit_site_hierarchy' in sda_fabric_transits_workflow_manager module
17431743
- Added attributes 'wireless_flooding_enable', 'resource_guard_enable', 'flooding_address_assignment', 'flooding_address' in sda_fabric_transits_workflow_manager module
1744+
1745+
6.41.0:
1746+
release_date: "2025-10-26"
1747+
changes:
1748+
release_summary: Enhancements in workflow manager modules
1749+
minor_changes:
1750+
- Changes limit and offset from float to int in all info modules
1751+
- Changes in network_settings_workflow_manager module
1752+
- Changes in path_trace_workflow_manager module
1753+
- Changes in sda_fabric_virtual_networks_workflow_manager module
1754+
- Changes in sda_host_port_onboarding_workflow_manager module
1755+
- Changes in template_workflow_manager module
1756+
- Added attribute native_vlan_id and allowed_vlan_ranges in sda_host_port_onboarding_workflow_manager module

plugins/action/aaa_services_info.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
dict(
3232
startTime=dict(type="float"),
3333
endTime=dict(type="float"),
34-
limit=dict(type="float"),
35-
offset=dict(type="float"),
34+
limit=dict(type="int"),
35+
offset=dict(type="int"),
3636
sortBy=dict(type="str"),
3737
order=dict(type="str"),
3838
serverIp=dict(type="str"),

plugins/action/activities_activity_id_triggered_jobs_info.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
argument_spec.update(
3131
dict(
3232
activityId=dict(type="str"),
33-
offset=dict(type="float"),
34-
limit=dict(type="float"),
33+
offset=dict(type="int"),
34+
limit=dict(type="int"),
3535
sortBy=dict(type="str"),
3636
order=dict(type="str"),
3737
headers=dict(type="dict"),

plugins/action/activities_info.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
recurring=dict(type="bool"),
3636
startTime=dict(type="str"),
3737
endTime=dict(type="str"),
38-
offset=dict(type="float"),
39-
limit=dict(type="float"),
38+
offset=dict(type="int"),
39+
limit=dict(type="int"),
4040
sortBy=dict(type="str"),
4141
order=dict(type="str"),
4242
headers=dict(type="dict"),

plugins/action/application_policy_application_set_info.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
dict(
3232
attributes=dict(type="str"),
3333
name=dict(type="str"),
34-
offset=dict(type="float"),
35-
limit=dict(type="float"),
34+
offset=dict(type="int"),
35+
limit=dict(type="int"),
3636
headers=dict(type="dict"),
3737
)
3838
)

plugins/action/application_sets_info.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
# Add arguments specific for this module
3030
argument_spec.update(
3131
dict(
32-
offset=dict(type="float"),
33-
limit=dict(type="float"),
32+
offset=dict(type="int"),
33+
limit=dict(type="int"),
3434
name=dict(type="str"),
3535
headers=dict(type="dict"),
3636
)

plugins/action/applications_health_info.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
startTime=dict(type="float"),
3636
endTime=dict(type="float"),
3737
applicationHealth=dict(type="str"),
38-
offset=dict(type="float"),
39-
limit=dict(type="float"),
38+
offset=dict(type="int"),
39+
limit=dict(type="int"),
4040
applicationName=dict(type="str"),
4141
headers=dict(type="dict"),
4242
)

plugins/action/applications_info.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
# Add arguments specific for this module
3030
argument_spec.update(
3131
dict(
32-
offset=dict(type="float"),
33-
limit=dict(type="float"),
32+
offset=dict(type="int"),
33+
limit=dict(type="int"),
3434
name=dict(type="str"),
3535
headers=dict(type="dict"),
3636
)

plugins/action/applications_v2_info.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
dict(
3232
attributes=dict(type="str"),
3333
name=dict(type="str"),
34-
offset=dict(type="float"),
35-
limit=dict(type="float"),
34+
offset=dict(type="int"),
35+
limit=dict(type="int"),
3636
headers=dict(type="dict"),
3737
)
3838
)

plugins/action/assurance_events_info.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
clientMac=dict(type="str"),
4343
attribute=dict(type="str"),
4444
view=dict(type="str"),
45-
offset=dict(type="float"),
46-
limit=dict(type="float"),
45+
offset=dict(type="int"),
46+
limit=dict(type="int"),
4747
sortBy=dict(type="str"),
4848
order=dict(type="str"),
4949
id=dict(type="str"),

0 commit comments

Comments
 (0)