You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- total_pages (integer or string): use with perPage to get total results up to total_pages*perPage; -1 or "all" for all pages
2023
+
- direction (string): direction to paginate, either "next" (default) or "prev" page
2024
+
- serials (array): A list of Meraki Serials for which to retrieve migrations
2025
+
- networkIds (array): Filter device migrations by network IDs
2026
+
- target (string): Filter device migrations by target destination
2027
+
- perPage (integer): The number of entries per page returned. Acceptable range is 3 - 1000. Default is 100.
2028
+
- startingAfter (string): A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
2029
+
- endingBefore (string): A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
2030
+
"""
2031
+
2032
+
kwargs.update(locals())
2033
+
2034
+
if'target'inkwargs:
2035
+
options= ['wirelessController']
2036
+
assertkwargs['target'] inoptions, f'''"target" cannot be "{kwargs['target']}", & must be set to one of: {options}'''
- total_pages (integer or string): use with perPage to get total results up to total_pages*perPage; -1 or "all" for all pages
2741
+
- direction (string): direction to paginate, either "next" (default) or "prev" page
2742
+
- t0 (string): The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
2743
+
- t1 (string): The end of the timespan for the data. t1 can be a maximum of 31 days after t0.
2744
+
- timespan (number): The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be less than or equal to 31 days. The default is 1 day. If interval is provided, the timespan will be autocalculated.
2745
+
- interval (integer): The time interval in seconds for returned data. The valid intervals are: 300, 1200, 14400, 86400. The default is 1200. Interval is calculated if time params are provided.
2746
+
- perPage (integer): The number of entries per page returned. Acceptable range is 3 - 50. Default is 10.
2747
+
- startingAfter (string): A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
2748
+
- endingBefore (string): A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
2749
+
- configurationUpdatedAfter (string): Optional parameter to filter items to switches where the configuration has been updated after the given timestamp.
2750
+
- mac (string): Optional parameter to filter items to switches with MAC addresses that contain the search term or are an exact match.
2751
+
- macs (array): Optional parameter to filter items to switches that have one of the provided MAC addresses.
2752
+
- name (string): Optional parameter to filter items to switches with names that contain the search term or are an exact match.
2753
+
- networkIds (array): Optional parameter to filter items to switches in one of the provided networks.
2754
+
- portProfileIds (array): Optional parameter to filter items to switches that contain switchports belonging to one of the specified port profiles.
2755
+
- serial (string): Optional parameter to filter items to switches with serial number that contains the search term or are an exact match.
2756
+
- serials (array): Optional parameter to filter items to switches that have one of the provided serials.
- radiusServerTimeout (integer): The amount of time for which a RADIUS client waits for a reply from the RADIUS server (must be between 1-10 seconds).
1688
1688
- radiusServerAttemptsLimit (integer): The maximum number of transmit attempts after which a RADIUS server is failed over (must be between 1-5).
1689
1689
- radiusFallbackEnabled (boolean): Whether or not higher priority RADIUS servers should be retried after 60 seconds.
1690
+
- radiusRadsec (object): The current settings for RADIUS RADSec
1690
1691
- radiusCoaEnabled (boolean): If true, Meraki devices will act as a RADIUS Dynamic Authorization Server and will respond to RADIUS Change-of-Authorization and Disconnect messages sent by the RADIUS server.
1691
1692
- radiusFailoverPolicy (string): This policy determines how authentication requests should be handled in the event that all of the configured RADIUS servers are unreachable ('Deny access' or 'Allow access')
1692
1693
- radiusLoadBalancingPolicy (string): This policy determines which RADIUS server will be contacted first in an authentication attempt and the ordering of any necessary retry attempts ('Strict priority order' or 'Round robin')
- radiusServerTimeout (integer): The amount of time for which a RADIUS client waits for a reply from the RADIUS server (must be between 1-10 seconds).
721
721
- radiusServerAttemptsLimit (integer): The maximum number of transmit attempts after which a RADIUS server is failed over (must be between 1-5).
722
722
- radiusFallbackEnabled (boolean): Whether or not higher priority RADIUS servers should be retried after 60 seconds.
723
+
- radiusRadsec (object): The current settings for RADIUS RADSec
723
724
- radiusCoaEnabled (boolean): If true, Meraki devices will act as a RADIUS Dynamic Authorization Server and will respond to RADIUS Change-of-Authorization and Disconnect messages sent by the RADIUS server.
724
725
- radiusFailoverPolicy (string): This policy determines how authentication requests should be handled in the event that all of the configured RADIUS servers are unreachable ('Deny access' or 'Allow access')
725
726
- radiusLoadBalancingPolicy (string): This policy determines which RADIUS server will be contacted first in an authentication attempt and the ordering of any necessary retry attempts ('Strict priority order' or 'Round robin')
0 commit comments