# -*- coding: utf-8 -*-
"""Cisco Catalyst Center Devices API wrapper.
Copyright (c) 2026 Cisco Systems.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""
from builtins import * # noqa: F401,F403
from ...restsession import RestSession
from ...utils import (
apply_path_params,
check_type,
dict_from_items_with_values,
dict_of_str,
)
[docs]class Devices(object):
"""Cisco Catalyst Center Devices API (version: 3.1.6.0).
Wraps the Catalyst Center Devices
API and exposes the API as native Python
methods that return native Python objects.
"""
def __init__(self, session, object_factory, request_validator):
"""Initialize a new Devices
object with the provided RestSession.
Args:
session(RestSession): The RESTful session object to be used for
API calls to the Catalyst Center service.
Raises:
TypeError: If the parameter types are incorrect.
"""
check_type(session, RestSession)
super(Devices, self).__init__()
self._session = session
self._object_factory = object_factory
self._request_validator = request_validator
[docs] def retrieves_the_list_of_aaa_services_for_given_parameters(
self,
device_id=None,
device_name=None,
device_site_hierarchy_id=None,
end_time=None,
limit=None,
offset=None,
order=None,
server_ip=None,
site_hierarchy=None,
site_id=None,
sort_by=None,
start_time=None,
headers=None,
**request_parameters
):
"""Retrieves the list of AAA Services and offers basic filtering and sorting capabilities. For detailed information
about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-AAAServices-1.0.0-resolved.yaml.
Args:
start_time(int): startTime query parameter. Start time from which API queries the data set related to
the resource. It must be specified in UNIX epochtime in milliseconds. Value is
inclusive. If `startTime` is not provided, API will default to current time.
end_time(int): endTime query parameter. End time to which API queries the data set related to the
resource. It must be specified in UNIX epochtime in milliseconds. Value is inclusive.
limit(int): limit query parameter. Maximum number of records to return.
offset(int): offset query parameter. Specifies the starting point within all records returned by the
API. It's one based offset. The starting value is 1.
sort_by(str): sortBy query parameter. Field name on which sorting needs to be done.
order(str): order query parameter. The sort order of the field ascending or descending.
server_ip(str): serverIp query parameter. IP Address of the AAA Server. This parameter supports wildcard
(`*`) character -based search. Example: `10.76.81.*` or `*56.78*` or `*50.28` Examples:
serverIp=10.42.3.31 (single IP Address is requested)
serverIp=10.42.3.31&serverIp=name2&fabricVnName=name3 (multiple IP Addresses are
requested).
device_id(str): deviceId query parameter. The device UUID. Examples:
`deviceId=6bef213c-19ca-4170-8375-b694e251101c` (single deviceId is requested) `deviceId
=6bef213c-19ca-4170-8375-b694e251101c&deviceId=32219612-819e-4b5e-a96b-cf22aca13dd9
(multiple networkDeviceIds with & separator).
device_name(str): deviceName query parameter. Name of the device. This parameter supports wildcard (`*`)
character -based search. Example: `wnbu-sjc*` or `*wnbu-sjc*` or `*wnbu-sjc` Examples:
deviceName=wnbu-sjc24.cisco.com (single device name is requested) deviceName=wnbu-
sjc24.cisco.com&deviceName=wnbu-sjc22.cisco.com (multiple device names are requested).
site_hierarchy(str): siteHierarchy query parameter. The full hierarchical breakdown of the site tree
starting from Global site name and ending with the specific site name. The Root site is
named "Global" (Ex. `Global/AreaName/BuildingName/FloorName`) This field supports
wildcard asterisk (`*`) character search support. E.g. `*/San*, */San, /San*` Examples:
`?siteHierarchy=Global/AreaName/BuildingName/FloorName` (single siteHierarchy requested)
`?siteHierarchy=Global/AreaName/BuildingName/FloorName&siteHierarchy=Global/AreaName2/Bu
ildingName2/FloorName2` (multiple siteHierarchies requested).
device_site_hierarchy_id(str): deviceSiteHierarchyId query parameter. The full hierarchy breakdown of
the site tree in id form starting from Global site UUID and ending with the specific
site UUID. (Ex. `globalUuid/areaUuid/buildingUuid/floorUuid`) This field supports
wildcard asterisk (`*`) character search support. E.g. `*uuid*, *uuid, uuid*` Examples:
`?deviceSiteHierarchyId=globalUuid/areaUuid/buildingUuid/floorUuid `(single
siteHierarchyId requested) `?deviceSiteHierarchyId=globalUuid/areaUuid/buildingUuid/floo
rUuid&deviceSiteHierarchyId=globalUuid/areaUuid2/buildingUuid2/floorUuid2` (multiple
siteHierarchyIds requested).
site_id(str): siteId query parameter. The UUID of the site. (Ex. `flooruuid`) Examples: `?siteId=id1`
(single id requested) `?siteId=id1&siteId=id2&siteId=id3` (multiple ids requested).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!retrieves-the-list-of-a-a-a-services-for-given-parameters
"""
check_type(headers, dict)
check_type(start_time, int)
check_type(end_time, int)
check_type(limit, int)
check_type(offset, int)
check_type(sort_by, str)
check_type(order, str)
check_type(server_ip, str)
check_type(device_id, str)
check_type(device_name, str)
check_type(site_hierarchy, str)
check_type(device_site_hierarchy_id, str)
check_type(site_id, str)
if headers is not None:
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"startTime": start_time,
"endTime": end_time,
"limit": limit,
"offset": offset,
"sortBy": sort_by,
"order": order,
"serverIp": server_ip,
"deviceId": device_id,
"deviceName": device_name,
"siteHierarchy": site_hierarchy,
"deviceSiteHierarchyId": device_site_hierarchy_id,
"siteId": site_id,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/aaaServices"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory("bpm_cc60533fba1ac9a077366acd_v3_1_6_0", json_data)
[docs] def retrieves_the_total_number_of_aaa_services_for_given_parameters(
self,
device_id=None,
device_name=None,
device_site_hierarchy=None,
device_site_hierarchy_id=None,
device_site_id=None,
end_time=None,
server_ip=None,
start_time=None,
headers=None,
**request_parameters
):
"""Retrieves the total number of AAA Services for given parameters. For detailed information about the usage of the
API, please refer to the Open API specification document https://github.com/cisco-en-
programmability/catalyst-center-api-specs/blob/main/Assurance/CE_Cat_Center_Org-
AAAServices-1.0.0-resolved.yaml.
Args:
start_time(int): startTime query parameter. Start time from which API queries the data set related to
the resource. It must be specified in UNIX epochtime in milliseconds. Value is
inclusive.
end_time(int): endTime query parameter. End time to which API queries the data set related to the
resource. It must be specified in UNIX epochtime in milliseconds. Value is inclusive.
server_ip(str): serverIp query parameter. IP Address of the AAA Server. This parameter supports wildcard
(`*`) character -based search. Example: `10.76.81.*` or `*56.78*` or `*50.28` Examples:
serverIp=10.42.3.31 (single IP Address is requested)
serverIp=10.42.3.31&serverIp=name2&fabricVnName=name3 (multiple IP Addresses are
requested).
device_id(str): deviceId query parameter. The device UUID. Examples:
`deviceId=6bef213c-19ca-4170-8375-b694e251101c` (single deviceId is requested) `deviceId
=6bef213c-19ca-4170-8375-b694e251101c&deviceId=32219612-819e-4b5e-a96b-cf22aca13dd9
(multiple networkDeviceIds with & separator).
device_name(str): deviceName query parameter. Name of the device. This parameter supports wildcard (`*`)
character -based search. Example: `wnbu-sjc*` or `*wnbu-sjc*` or `*wnbu-sjc` Examples:
deviceName=wnbu-sjc24.cisco.com (single device name is requested) deviceName=wnbu-
sjc24.cisco.com&deviceName=wnbu-sjc22.cisco.com (multiple device names are requested).
device_site_hierarchy(str): deviceSiteHierarchy query parameter. The full hierarchical breakdown of the
site tree starting from Global site name and ending with the specific site name. The
Root site is named "Global" (Ex. `Global/AreaName/BuildingName/FloorName`) This field
supports wildcard asterisk (`*`) character search support. E.g. `*/San*, */San, /San*`
Examples: `?siteHierarchy=Global/AreaName/BuildingName/FloorName` (single siteHierarchy
requested) `?deviceSiteHierarchy=Global/AreaName/BuildingName/FloorName&deviceSiteHierar
chy=Global/AreaName2/BuildingName2/FloorName2` (multiple siteHierarchies requested).
device_site_hierarchy_id(str): deviceSiteHierarchyId query parameter. The full hierarchy breakdown of
the site tree in id form starting from Global site UUID and ending with the specific
site UUID. (Ex. `globalUuid/areaUuid/buildingUuid/floorUuid`) This field supports
wildcard asterisk (`*`) character search support. E.g. `*uuid*, *uuid, uuid*` Examples:
`?deviceSiteHierarchyId=globalUuid/areaUuid/buildingUuid/floorUuid `(single
siteHierarchyId requested) `?deviceSiteHierarchyId=globalUuid/areaUuid/buildingUuid/floo
rUuid&deviceSiteHierarchyId=globalUuid/areaUuid2/buildingUuid2/floorUuid2` (multiple
siteHierarchyIds requested).
device_site_id(str): deviceSiteId query parameter. The UUID of the site. (Ex. `flooruuid`) Examples:
`?deviceSiteIds=id1` (single id requested)
`?deviceSiteIds=id1&deviceSiteIds=id2&siteId=id3` (multiple ids requested).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!retrieves-the-total-number-of-a-a-a-services-for-given-parameters
"""
check_type(headers, dict)
check_type(start_time, int)
check_type(end_time, int)
check_type(server_ip, str)
check_type(device_id, str)
check_type(device_name, str)
check_type(device_site_hierarchy, str)
check_type(device_site_hierarchy_id, str)
check_type(device_site_id, str)
if headers is not None:
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"startTime": start_time,
"endTime": end_time,
"serverIp": server_ip,
"deviceId": device_id,
"deviceName": device_name,
"deviceSiteHierarchy": device_site_hierarchy,
"deviceSiteHierarchyId": device_site_hierarchy_id,
"deviceSiteId": device_site_id,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/aaaServices/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_dd9685e1250c69fcc71fa7f766750_v3_1_6_0", json_data
)
[docs] def retrieves_the_list_of_aaa_services_for_given_set_of_complex_filters(
self,
endTime=None,
filters=None,
page=None,
startTime=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Retrieves the list of AAA Services and offers complex filtering and sorting capabilities. For detailed
information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-AAAServices-1.0.0-resolved.yaml.
Args:
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
page(object): Devices's page.
startTime(integer): Devices's Start Time.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!retrieves-the-list-of-a-a-a-services-for-given-set-of-complex-filters
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"startTime": startTime,
"endTime": endTime,
"filters": filters,
"page": page,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator("jsd_f24a5ad5bf03fe236dd96dcb_v3_1_6_0").validate(
_payload
)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/aaaServices/query"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory("bpm_f24a5ad5bf03fe236dd96dcb_v3_1_6_0", json_data)
[docs] def retrieves_the_total_number_of_aaa_services_for_given_set_of_complex_filters(
self,
endTime=None,
filters=None,
startTime=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Retrieves the total number of AAA Services and offers complex filtering and sorting capabilities. For detailed
information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-AAAServices-1.0.0-resolved.yaml.
Args:
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
startTime(integer): Devices's Start Time.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!retrieves-the-total-number-of-a-a-a-services-for-given-set-of-complex-filters
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"startTime": startTime,
"endTime": endTime,
"filters": filters,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator("jsd_adfc115d6888722b71811ac96e_v3_1_6_0").validate(
_payload
)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/aaaServices/query/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_adfc115d6888722b71811ac96e_v3_1_6_0", json_data
)
[docs] def get_summary_analytics_data_of_aaa_services_for_given_set_of_complex_filters(
self,
aggregateAttributes=None,
attributes=None,
endTime=None,
filters=None,
groupBy=None,
page=None,
startTime=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Gets the summary analytics data related to AAA Services based on given filters and group by field. For detailed
information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-AAAServices-1.0.0-resolved.yaml.
Args:
aggregateAttributes(list): Devices's aggregateAttributes (list of objects).
attributes(list): Devices's Attributes (list of strings).
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
groupBy(list): Devices's Group By (list of strings).
page(object): Devices's page.
startTime(integer): Devices's Start Time.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-summary-analytics-data-of-a-a-a-services-for-given-set-of-complex-filters
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"startTime": startTime,
"endTime": endTime,
"groupBy": groupBy,
"filters": filters,
"attributes": attributes,
"aggregateAttributes": aggregateAttributes,
"page": page,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_d54c40ecb5f531cb5a78d0cd5dd585e_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/aaaServices/summaryAnalytics"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_d54c40ecb5f531cb5a78d0cd5dd585e_v3_1_6_0", json_data
)
[docs] def get_top_n_analytics_data_of_aaa_services_for_given_set_of_complex_filters(
self,
aggregateAttributes=None,
attributes=None,
endTime=None,
filters=None,
groupBy=None,
page=None,
startTime=None,
topN=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Gets the Top N analytics data related to AAA Services based on given filters and group by field. For detailed
information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-AAAServices-1.0.0-resolved.yaml.
Args:
aggregateAttributes(list): Devices's aggregateAttributes (list of objects).
attributes(list): Devices's Attributes (list of strings).
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
groupBy(list): Devices's Group By (list of strings).
page(object): Devices's page.
startTime(integer): Devices's Start Time.
topN(integer): Devices's Top N.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-top-n-analytics-data-of-a-a-a-services-for-given-set-of-complex-filters
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"startTime": startTime,
"endTime": endTime,
"topN": topN,
"groupBy": groupBy,
"filters": filters,
"attributes": attributes,
"aggregateAttributes": aggregateAttributes,
"page": page,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_bdca1829ea705fa690922e3e0f8ff7b0_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/aaaServices/topNAnalytics"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_bdca1829ea705fa690922e3e0f8ff7b0_v3_1_6_0", json_data
)
[docs] def get_trend_analytics_data_of_aaa_services_for_given_set_of_complex_filters(
self,
aggregateAttributes=None,
attributes=None,
endTime=None,
filters=None,
groupBy=None,
page=None,
startTime=None,
trendInterval=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Gets the trend analytics data related to AAA Services based on given filters and group by field. For detailed
information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-AAAServices-1.0.0-resolved.yaml.
Args:
aggregateAttributes(list): Devices's aggregateAttributes (list of objects).
attributes(list): Devices's Attributes (list of strings).
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
groupBy(list): Devices's Group By (list of strings).
page(object): Devices's page.
startTime(integer): Devices's Start Time.
trendInterval(string): Devices's Trend Interval.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-trend-analytics-data-of-a-a-a-services-for-given-set-of-complex-filters
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"startTime": startTime,
"endTime": endTime,
"trendInterval": trendInterval,
"groupBy": groupBy,
"filters": filters,
"attributes": attributes,
"aggregateAttributes": aggregateAttributes,
"page": page,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_c60312a923ee5a6fb3f2c725c32dc96f_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/aaaServices/trendAnalytics"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_c60312a923ee5a6fb3f2c725c32dc96f_v3_1_6_0", json_data
)
[docs] def retrieves_the_details_of_a_specific_aaa_service_matching_the_id_of_the_service(
self, id, end_time=None, start_time=None, headers=None, **request_parameters
):
"""Retrieves the details of the AAA Service matching the given id. For detailed information about the usage of the
API, please refer to the Open API specification document https://github.com/cisco-en-
programmability/catalyst-center-api-specs/blob/main/Assurance/CE_Cat_Center_Org-
AAAServices-1.0.0-resolved.yaml.
Args:
id(str): id path parameter. Unique id of the AAA Service. It is the combination of AAA Server IP
(`serverIp`) and Device UUID (`deviceId`) separated by underscore (`_`). Example: If
`serverIp` is `10.76.81.33` and `deviceId` is `6bef213c-19ca-4170-8375-b694e251101c`,
then the `id` would be `10.76.81.33_6bef213c-19ca-4170-8375-b694e251101c`.
start_time(int): startTime query parameter. Start time from which API queries the data set related to
the resource. It must be specified in UNIX epochtime in milliseconds. Value is
inclusive.
end_time(int): endTime query parameter. End time to which API queries the data set related to the
resource. It must be specified in UNIX epochtime in milliseconds. Value is inclusive.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!retrieves-the-details-of-a-specific-a-a-a-service-matching-the-id-of-the-service
"""
check_type(headers, dict)
check_type(start_time, int)
check_type(end_time, int)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"startTime": start_time,
"endTime": end_time,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/aaaServices/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory("bpm_a5f075784aa6b582aa9a24901_v3_1_6_0", json_data)
[docs] def get_trend_analytics_data_for_a_given_aaa_service_matching_the_id_of_the_service(
self,
id,
aggregateAttributes=None,
attributes=None,
endTime=None,
filters=None,
groupBy=None,
page=None,
startTime=None,
trendInterval=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Gets the trend analytics data related to a particular AAA Service matching the id. For detailed information
about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-AAAServices-1.0.0-resolved.yaml.
Args:
aggregateAttributes(list): Devices's aggregateAttributes (list of objects).
attributes(list): Devices's Attributes (list of strings).
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
groupBy(list): Devices's Group By (list of strings).
page(object): Devices's page.
startTime(integer): Devices's Start Time.
trendInterval(string): Devices's Trend Interval.
id(str): id path parameter. Unique id of the AAA Service. It is the combination of AAA Server IP
(`serverIp`) and Device UUID (`deviceId`) separated by underscore (`_`). Example: If
`serverIp` is `10.76.81.33` and `deviceId` is `6bef213c-19ca-4170-8375-b694e251101c`,
then the `id` would be `10.76.81.33_6bef213c-19ca-4170-8375-b694e251101c`.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-trend-analytics-data-for-a-given-a-a-a-service-matching-the-id-of-the-service
"""
check_type(headers, dict)
check_type(payload, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
_payload = {
"startTime": startTime,
"endTime": endTime,
"trendInterval": trendInterval,
"groupBy": groupBy,
"filters": filters,
"attributes": attributes,
"aggregateAttributes": aggregateAttributes,
"page": page,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_f33d768d01586c9133b155da5e5ade_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/aaaServices/{id}/trendAnalytics"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_f33d768d01586c9133b155da5e5ade_v3_1_6_0", json_data
)
[docs] def query_assurance_events(
self,
device_family,
ap_mac=None,
attribute=None,
client_mac=None,
end_time=None,
limit=None,
message_type=None,
network_device_id=None,
network_device_name=None,
offset=None,
order=None,
severity=None,
site_hierarchy_id=None,
site_id=None,
sort_by=None,
start_time=None,
view=None,
headers=None,
**request_parameters
):
"""Returns the list of events discovered by Catalyst Center, determined by the complex filters. Please refer to the
'API Support Documentation' section to understand which fields are supported. For detailed information
about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-AssuranceEvents-1.0.0-resolved.yaml.
Args:
device_family(str): deviceFamily query parameter. Device family. Please note that multiple families
across network device type and client type is not allowed. For example, choosing
`Routers` along with `Wireless Client` or `Unified AP` is not supported. Examples:
`deviceFamily=Switches and Hubs` (single deviceFamily requested) `deviceFamily=Switches
and Hubs&deviceFamily=Routers` (multiple deviceFamily requested).
start_time(int): startTime query parameter. Start time from which API queries the data set related to
the resource. It must be specified in UNIX epochtime in milliseconds. Value is
inclusive. If `startTime` is not provided, API will default to current time minus 24
hours.
end_time(int): endTime query parameter. End time to which API queries the data set related to the
resource. It must be specified in UNIX epochtime in milliseconds. Value is inclusive. If
`endTime` is not provided, API will default to current time.
message_type(str): messageType query parameter. Message type for the event. Examples:
`messageType=Syslog` (single messageType requested)
`messageType=Trap&messageType=Syslog` (multiple messageType requested).
severity(int): severity query parameter. Severity of the event between 0 and 6. This is applicable only
for events related to network devices (other than AP) and `Wired Client` events. (Value:
Severity), (0: Emergency), (1: Alert), (2: Critical), (3: Error), (4: Warning),
(5: Notice), (6: Info), Examples: `severity=0` (single severity requested)
`severity=0&severity=1` (multiple severity requested).
site_id(str): siteId query parameter. The UUID of the site. (Ex. `flooruuid`) Examples: `?siteId=id1`
(single siteId requested) `?siteId=id1&siteId=id2&siteId=id3` (multiple siteId
requested).
site_hierarchy_id(str): siteHierarchyId query parameter. The full hierarchy breakdown of the site tree
in id form starting from Global site UUID and ending with the specific site UUID. (Ex.
`globalUuid/areaUuid/buildingUuid/floorUuid`) This field supports wildcard asterisk
(`*`) character search support. E.g. `*uuid*, *uuid, uuid*` Examples:
`?siteHierarchyId=globalUuid/areaUuid/buildingUuid/floorUuid `(single siteHierarchyId
requested) `?siteHierarchyId=globalUuid/areaUuid/buildingUuid/floorUuid&siteHierarchyId=
globalUuid/areaUuid2/buildingUuid2/floorUuid2` (multiple siteHierarchyId requested).
network_device_name(str): networkDeviceName query parameter. Network device name. This parameter is
applicable for network device related families. This field supports wildcard (`*`)
character-based search. Ex: `*Branch*` or `Branch*` or `*Branch` Examples:
`networkDeviceName=Branch-3-Gateway` (single networkDeviceName requested)
`networkDeviceName=Branch-3-Gateway&networkDeviceName=Branch-3-Switch` (multiple
networkDeviceName requested).
network_device_id(str): networkDeviceId query parameter. The list of Network Device Uuids. (Ex.
`6bef213c-19ca-4170-8375-b694e251101c`) Examples:
`networkDeviceId=6bef213c-19ca-4170-8375-b694e251101c` (single networkDeviceId
requested) `networkDeviceId=6bef213c-19ca-4170-8375-
b694e251101c&networkDeviceId=32219612-819e-4b5e-a96b-
cf22aca13dd9&networkDeviceId=2541e9a7-b80d-4955-8aa2-79b233318ba0` (multiple
networkDeviceId with & separator).
ap_mac(str): apMac query parameter. MAC address of the access point. This parameter is applicable for
`Unified AP` and `Wireless Client` events. This field supports wildcard (`*`) character-
based search. Ex: `*50:0F*` or `50:0F*` or `*50:0F` Examples: `apMac=50:0F:80:0F:F7:E0`
(single apMac requested) `apMac=50:0F:80:0F:F7:E0&apMac=18:80:90:AB:7E:A0` (multiple
apMac requested).
client_mac(str): clientMac query parameter. MAC address of the client. This parameter is applicable for
`Wired Client` and `Wireless Client` events. This field supports wildcard (`*`)
character-based search. Ex: `*66:2B*` or `66:2B*` or `*66:2B` Examples:
`clientMac=66:2B:B8:D2:01:56` (single clientMac requested)
`clientMac=66:2B:B8:D2:01:56&clientMac=DC:A6:32:F5:5A:89` (multiple clientMac
requested).
attribute(str): attribute query parameter. The list of attributes that needs to be included in the
response. If this parameter is not provided, then basic attributes (`id`, `name`,
`timestamp`, `details`, `messageType`, `siteHierarchyId`, `siteHierarchy`,
`deviceFamily`, `networkDeviceId`, `networkDeviceName`, `managementIpAddress`) would be
part of the response. Examples: `attribute=name` (single attribute requested)
`attribute=name&attribute=networkDeviceName` (multiple attribute requested).
view(str): view query parameter. The list of events views. Please refer to `EventViews` for the
supported list Examples: `view=network` (single view requested) `view=network&view=ap`
(multiple view requested).
offset(int): offset query parameter. Specifies the starting point within all records returned by the
API. It's one based offset. The starting value is 1.
limit(int): limit query parameter. Maximum number of records to return.
sort_by(str): sortBy query parameter. A field within the response to sort by.
order(str): order query parameter. The sort order of the field ascending or descending.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!query-assurance-events
"""
check_type(headers, dict)
check_type(device_family, str, may_be_none=False)
check_type(start_time, int)
check_type(end_time, int)
check_type(message_type, str)
check_type(severity, int)
check_type(site_id, str)
check_type(site_hierarchy_id, str)
check_type(network_device_name, str)
check_type(network_device_id, str)
check_type(ap_mac, str)
check_type(client_mac, str)
check_type(attribute, str)
check_type(view, str)
check_type(offset, int)
check_type(limit, int)
check_type(sort_by, str)
check_type(order, str)
if headers is not None:
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"deviceFamily": device_family,
"startTime": start_time,
"endTime": end_time,
"messageType": message_type,
"severity": severity,
"siteId": site_id,
"siteHierarchyId": site_hierarchy_id,
"networkDeviceName": network_device_name,
"networkDeviceId": network_device_id,
"apMac": ap_mac,
"clientMac": client_mac,
"attribute": attribute,
"view": view,
"offset": offset,
"limit": limit,
"sortBy": sort_by,
"order": order,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/assuranceEvents"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_bc891de5102872b3415d23b7a0b_v3_1_6_0", json_data
)
[docs] def count_the_number_of_events(
self,
device_family,
ap_mac=None,
client_mac=None,
end_time=None,
message_type=None,
network_device_id=None,
network_device_name=None,
severity=None,
site_hierarchy_id=None,
site_id=None,
start_time=None,
headers=None,
**request_parameters
):
"""API to fetch the count of assurance events that match the filter criteria. Please refer to the 'API Support
Documentation' section to understand which fields are supported. For detailed information about the
usage of the API, please refer to the Open API specification document https://github.com/cisco-en-
programmability/catalyst-center-api-specs/blob/main/Assurance/CE_Cat_Center_Org-
AssuranceEvents-1.0.0-resolved.yaml.
Args:
device_family(str): deviceFamily query parameter. Device family. Please note that multiple families
across network device type and client type is not allowed. For example, choosing
`Routers` along with `Wireless Client` or `Unified AP` is not supported. Examples:
`deviceFamily=Switches and Hubs` (single deviceFamily requested) `deviceFamily=Switches
and Hubs&deviceFamily=Routers` (multiple deviceFamily requested).
start_time(str): startTime query parameter. Start time from which API queries the data set related to
the resource. It must be specified in UNIX epochtime in milliseconds. Value is
inclusive. If `startTime` is not provided, API will default to current time minus 24
hours.
end_time(str): endTime query parameter. End time to which API queries the data set related to the
resource. It must be specified in UNIX epochtime in milliseconds. Value is inclusive. If
`endTime` is not provided, API will default to current time.
message_type(str): messageType query parameter. Message type for the event. Examples:
`messageType=Syslog` (single messageType requested)
`messageType=Trap&messageType=Syslog` (multiple messageType requested).
severity(str): severity query parameter. Severity of the event between 0 and 6. This is applicable only
for events related to network devices (other than AP) and `Wired Client` events. (Value:
Severity), (0: Emergency), (1: Alert), (2: Critical), (3: Error), (4: Warning),
(5: Notice), (6: Info), Examples: `severity=0` (single severity requested)
`severity=0&severity=1` (multiple severity requested).
site_id(str): siteId query parameter. The UUID of the site. (Ex. `flooruuid`) Examples: `?siteId=id1`
(single siteId requested) `?siteId=id1&siteId=id2&siteId=id3` (multiple siteId
requested).
site_hierarchy_id(str): siteHierarchyId query parameter. The full hierarchy breakdown of the site tree
in id form starting from Global site UUID and ending with the specific site UUID. (Ex.
`globalUuid/areaUuid/buildingUuid/floorUuid`) This field supports wildcard asterisk
(`*`) character search support. E.g. `*uuid*, *uuid, uuid*` Examples:
`?siteHierarchyId=globalUuid/areaUuid/buildingUuid/floorUuid `(single siteHierarchyId
requested) `?siteHierarchyId=globalUuid/areaUuid/buildingUuid/floorUuid&siteHierarchyId=
globalUuid/areaUuid2/buildingUuid2/floorUuid2` (multiple siteHierarchyId requested).
network_device_name(str): networkDeviceName query parameter. Network device name. This parameter is
applicable for network device related families. This field supports wildcard (`*`)
character-based search. Ex: `*Branch*` or `Branch*` or `*Branch` Examples:
`networkDeviceName=Branch-3-Gateway` (single networkDeviceName requested)
`networkDeviceName=Branch-3-Gateway&networkDeviceName=Branch-3-Switch` (multiple
networkDeviceName requested).
network_device_id(str): networkDeviceId query parameter. The list of Network Device Uuids. (Ex.
`6bef213c-19ca-4170-8375-b694e251101c`) Examples:
`networkDeviceId=6bef213c-19ca-4170-8375-b694e251101c` (single networkDeviceId
requested) `networkDeviceId=6bef213c-19ca-4170-8375-
b694e251101c&networkDeviceId=32219612-819e-4b5e-a96b-
cf22aca13dd9&networkDeviceId=2541e9a7-b80d-4955-8aa2-79b233318ba0` (multiple
networkDeviceId requested).
ap_mac(str): apMac query parameter. MAC address of the access point. This parameter is applicable for
`Unified AP` and `Wireless Client` events. This field supports wildcard (`*`) character-
based search. Ex: `*50:0F*` or `50:0F*` or `*50:0F` Examples: `apMac=50:0F:80:0F:F7:E0`
(single apMac requested) `apMac=50:0F:80:0F:F7:E0&apMac=18:80:90:AB:7E:A0` (multiple
apMac requested).
client_mac(str): clientMac query parameter. MAC address of the client. This parameter is applicable for
`Wired Client` and `Wireless Client` events. This field supports wildcard (`*`)
character-based search. Ex: `*66:2B*` or `66:2B*` or `*66:2B` Examples:
`clientMac=66:2B:B8:D2:01:56` (single clientMac requested)
`clientMac=66:2B:B8:D2:01:56&clientMac=DC:A6:32:F5:5A:89` (multiple clientMac
requested).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!count-the-number-of-events
"""
check_type(headers, dict)
check_type(device_family, str, may_be_none=False)
check_type(start_time, str)
check_type(end_time, str)
check_type(message_type, str)
check_type(severity, str)
check_type(site_id, str)
check_type(site_hierarchy_id, str)
check_type(network_device_name, str)
check_type(network_device_id, str)
check_type(ap_mac, str)
check_type(client_mac, str)
if headers is not None:
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"deviceFamily": device_family,
"startTime": start_time,
"endTime": end_time,
"messageType": message_type,
"severity": severity,
"siteId": site_id,
"siteHierarchyId": site_hierarchy_id,
"networkDeviceName": network_device_name,
"networkDeviceId": network_device_id,
"apMac": ap_mac,
"clientMac": client_mac,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/assuranceEvents/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_abf597583520eb0a7a0b24e5c7f69_v3_1_6_0", json_data
)
[docs] def query_assurance_events_with_filters(
self,
attributes=None,
deviceFamily=None,
endTime=None,
filters=None,
page=None,
startTime=None,
views=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Returns the list of events discovered by Catalyst Center, determined by the complex filters. Please refer to the
'API Support Documentation' section to understand which fields are supported. For detailed information
about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-AssuranceEvents-1.0.0-resolved.yaml.
Args:
attributes(list): Devices's Attributes (list of strings).
deviceFamily(list): Devices's Device Family (list of strings).
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
page(object): Devices's page.
startTime(integer): Devices's Start Time.
views(list): Devices's Views (list of strings).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!query-assurance-events-with-filters
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"deviceFamily": deviceFamily,
"startTime": startTime,
"endTime": endTime,
"attributes": attributes,
"views": views,
"filters": filters,
"page": page,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_ef94c2c20ba15fd38e129ac75067de1e_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/assuranceEvents/query"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_ef94c2c20ba15fd38e129ac75067de1e_v3_1_6_0", json_data
)
[docs] def count_the_number_of_events_with_filters(
self,
deviceFamily=None,
endTime=None,
filters=None,
startTime=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""API to fetch the count of assurance events for the given complex query. Please refer to the 'API Support
Documentation' section to understand which fields are supported. For detailed information about the
usage of the API, please refer to the Open API specification document https://github.com/cisco-en-
programmability/catalyst-center-api-specs/blob/main/Assurance/CE_Cat_Center_Org-
AssuranceEvents-1.0.0-resolved.yaml.
Args:
deviceFamily(list): Devices's Device Family (list of strings).
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
startTime(integer): Devices's Start Time.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!count-the-number-of-events-with-filters
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"deviceFamily": deviceFamily,
"startTime": startTime,
"endTime": endTime,
"filters": filters,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_a91eed12dfc85dbdaacab22e6e9f04a5_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/assuranceEvents/query/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_a91eed12dfc85dbdaacab22e6e9f04a5_v3_1_6_0", json_data
)
[docs] def get_details_of_a_single_assurance_event(
self, id, attribute=None, view=None, headers=None, **request_parameters
):
"""API to fetch the details of an assurance event using event `id`. For detailed information about the usage of the
API, please refer to the Open API specification document https://github.com/cisco-en-
programmability/catalyst-center-api-specs/blob/main/Assurance/CE_Cat_Center_Org-
AssuranceEvents-1.0.0-resolved.yaml.
Args:
id(str): id path parameter. Unique identifier for the event.
attribute(str): attribute query parameter. The list of attributes that needs to be included in the
response. If this parameter is not provided, then basic attributes (`id`, `name`,
`timestamp`, `details`, `messageType`, `siteHierarchyId`, `siteHierarchy`,
`deviceFamily`, `networkDeviceId`, `networkDeviceName`, `managementIpAddress`) would be
part of the response. Examples: `attribute=name` (single attribute requested)
`attribute=name&attribute=networkDeviceName` (multiple attribute requested).
view(str): view query parameter. The list of events views. Please refer to `EventViews` for the
supported list Examples: `view=network` (single view requested) `view=network&view=ap`
(multiple view requested).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-details-of-a-single-assurance-event
"""
check_type(headers, dict)
check_type(attribute, str)
check_type(view, str)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"attribute": attribute,
"view": view,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/assuranceEvents/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_a36092e78528b9bd8730c93b5412d_v3_1_6_0", json_data
)
[docs] def get_list_of_child_events_for_the_given_wireless_client_event(
self, id, headers=None, **request_parameters
):
"""Wireless client event could have child events and this API can be used to fetch the same using parent event `id`
as the input. For detailed information about the usage of the API, please refer to the Open API
specification document https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-AssuranceEvents-1.0.0-resolved.yaml.
Args:
id(str): id path parameter. Unique identifier for the event.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-list-of-child-events-for-the-given-wireless-client-event
"""
check_type(headers, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/assuranceEvents/{id}/childEvents"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_d3cf1ace30895351b5b8c3f7919b972e_v3_1_6_0", json_data
)
[docs] def retrieves_the_list_of_d_h_c_p_services_for_given_parameters(
self,
device_id=None,
device_name=None,
device_site_hierarchy=None,
device_site_hierarchy_id=None,
device_site_id=None,
end_time=None,
limit=None,
offset=None,
order=None,
server_ip=None,
sort_by=None,
start_time=None,
headers=None,
**request_parameters
):
"""Retrieves the list of DHCP Services and offers basic filtering and sorting capabilities. For detailed
information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-DHCPServices-1.0.0-resolved.yaml.
Args:
start_time(int): startTime query parameter. Start time from which API queries the data set related to
the resource. It must be specified in UNIX epochtime in milliseconds. Value is
inclusive.
end_time(int): endTime query parameter. End time to which API queries the data set related to the
resource. It must be specified in UNIX epochtime in milliseconds. Value is inclusive.
limit(int): limit query parameter. Maximum number of records to return.
offset(int): offset query parameter. Specifies the starting point within all records returned by the
API. It's one based offset. The starting value is 1.
sort_by(str): sortBy query parameter. Field name on which sorting needs to be done.
order(str): order query parameter. The sort order of the field ascending or descending.
server_ip(str): serverIp query parameter. IP Address of the DHCP Server. This parameter supports
wildcard (`*`) character -based search. Example: `10.76.81.*` or `*56.78*` or `*50.28`
Examples: serverIp=10.42.3.31 (single IP Address is requested)
serverIp=10.42.3.31&serverIp=name2&fabricVnName=name3 (multiple IP Addresses are
requested).
device_id(str): deviceId query parameter. The device UUID. Examples:
`deviceId=6bef213c-19ca-4170-8375-b694e251101c` (single deviceId is requested) `deviceId
=6bef213c-19ca-4170-8375-b694e251101c&deviceId=32219612-819e-4b5e-a96b-cf22aca13dd9
(multiple networkDeviceIds with & separator).
device_name(str): deviceName query parameter. Name of the device. This parameter supports wildcard (`*`)
character -based search. Example: `wnbu-sjc*` or `*wnbu-sjc*` or `*wnbu-sjc` Examples:
deviceName=wnbu-sjc24.cisco.com (single device name is requested) deviceName=wnbu-
sjc24.cisco.com&deviceName=wnbu-sjc22.cisco.com (multiple device names are requested).
device_site_hierarchy(str): deviceSiteHierarchy query parameter. The full hierarchical breakdown of the
site tree starting from Global site name and ending with the specific site name. The
Root site is named "Global" (Ex. `Global/AreaName/BuildingName/FloorName`) This field
supports wildcard asterisk (`*`) character search support. E.g. `*/San*, */San, /San*`
Examples: `?siteHierarchy=Global/AreaName/BuildingName/FloorName` (single siteHierarchy
requested) `?deviceSiteHierarchy=Global/AreaName/BuildingName/FloorName&deviceSiteHierar
chy=Global/AreaName2/BuildingName2/FloorName2` (multiple siteHierarchies requested).
device_site_hierarchy_id(str): deviceSiteHierarchyId query parameter. The full hierarchy breakdown of
the site tree in id form starting from Global site UUID and ending with the specific
site UUID. (Ex. `globalUuid/areaUuid/buildingUuid/floorUuid`) This field supports
wildcard asterisk (`*`) character search support. E.g. `*uuid*, *uuid, uuid*` Examples:
`?deviceSiteHierarchyId=globalUuid/areaUuid/buildingUuid/floorUuid `(single
siteHierarchyId requested) `?deviceSiteHierarchyId=globalUuid/areaUuid/buildingUuid/floo
rUuid&deviceSiteHierarchyId=globalUuid/areaUuid2/buildingUuid2/floorUuid2` (multiple
siteHierarchyIds requested).
device_site_id(str): deviceSiteId query parameter. The UUID of the site. (Ex. `flooruuid`) Examples:
`?deviceSiteIds=id1` (single id requested)
`?deviceSiteIds=id1&deviceSiteIds=id2&siteId=id3` (multiple ids requested).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!retrieves-the-list-of-d-h-c-p-services-for-given-parameters
"""
check_type(headers, dict)
check_type(start_time, int)
check_type(end_time, int)
check_type(limit, int)
check_type(offset, int)
check_type(sort_by, str)
check_type(order, str)
check_type(server_ip, str)
check_type(device_id, str)
check_type(device_name, str)
check_type(device_site_hierarchy, str)
check_type(device_site_hierarchy_id, str)
check_type(device_site_id, str)
if headers is not None:
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"startTime": start_time,
"endTime": end_time,
"limit": limit,
"offset": offset,
"sortBy": sort_by,
"order": order,
"serverIp": server_ip,
"deviceId": device_id,
"deviceName": device_name,
"deviceSiteHierarchy": device_site_hierarchy,
"deviceSiteHierarchyId": device_site_hierarchy_id,
"deviceSiteId": device_site_id,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/dhcpServices"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_d9a96f4107695eec9ce303b039ed4747_v3_1_6_0", json_data
)
[docs] def retrieves_the_total_number_of_d_h_c_p_services_for_given_parameters(
self,
device_id=None,
device_name=None,
device_site_hierarchy=None,
device_site_hierarchy_id=None,
device_site_id=None,
end_time=None,
server_ip=None,
start_time=None,
headers=None,
**request_parameters
):
"""Retrieves the total number of DHCP Services for given parameters. For detailed information about the usage of
the API, please refer to the Open API specification document https://github.com/cisco-en-
programmability/catalyst-center-api-specs/blob/main/Assurance/CE_Cat_Center_Org-
DHCPServices-1.0.0-resolved.yaml.
Args:
start_time(int): startTime query parameter. Start time from which API queries the data set related to
the resource. It must be specified in UNIX epochtime in milliseconds. Value is
inclusive.
end_time(int): endTime query parameter. End time to which API queries the data set related to the
resource. It must be specified in UNIX epochtime in milliseconds. Value is inclusive.
server_ip(str): serverIp query parameter. IP Address of the DHCP Server. This parameter supports
wildcard (`*`) character -based search. Example: `10.76.81.*` or `*56.78*` or `*50.28`
Examples: serverIp=10.42.3.31 (single IP Address is requested)
serverIp=10.42.3.31&serverIp=name2&fabricVnName=name3 (multiple IP Addresses are
requested).
device_id(str): deviceId query parameter. The device UUID. Examples:
`deviceId=6bef213c-19ca-4170-8375-b694e251101c` (single deviceId is requested) `deviceId
=6bef213c-19ca-4170-8375-b694e251101c&deviceId=32219612-819e-4b5e-a96b-cf22aca13dd9
(multiple networkDeviceIds with & separator).
device_name(str): deviceName query parameter. Name of the device. This parameter supports wildcard (`*`)
character -based search. Example: `wnbu-sjc*` or `*wnbu-sjc*` or `*wnbu-sjc` Examples:
deviceName=wnbu-sjc24.cisco.com (single device name is requested) deviceName=wnbu-
sjc24.cisco.com&deviceName=wnbu-sjc22.cisco.com (multiple device names are requested).
device_site_hierarchy(str): deviceSiteHierarchy query parameter. The full hierarchical breakdown of the
site tree starting from Global site name and ending with the specific site name. The
Root site is named "Global" (Ex. `Global/AreaName/BuildingName/FloorName`) This field
supports wildcard asterisk (`*`) character search support. E.g. `*/San*, */San, /San*`
Examples: `?siteHierarchy=Global/AreaName/BuildingName/FloorName` (single siteHierarchy
requested) `?deviceSiteHierarchy=Global/AreaName/BuildingName/FloorName&deviceSiteHierar
chy=Global/AreaName2/BuildingName2/FloorName2` (multiple siteHierarchies requested).
device_site_hierarchy_id(str): deviceSiteHierarchyId query parameter. The full hierarchy breakdown of
the site tree in id form starting from Global site UUID and ending with the specific
site UUID. (Ex. `globalUuid/areaUuid/buildingUuid/floorUuid`) This field supports
wildcard asterisk (`*`) character search support. E.g. `*uuid*, *uuid, uuid*` Examples:
`?deviceSiteHierarchyId=globalUuid/areaUuid/buildingUuid/floorUuid `(single
siteHierarchyId requested) `?deviceSiteHierarchyId=globalUuid/areaUuid/buildingUuid/floo
rUuid&deviceSiteHierarchyId=globalUuid/areaUuid2/buildingUuid2/floorUuid2` (multiple
siteHierarchyIds requested).
device_site_id(str): deviceSiteId query parameter. The UUID of the site. (Ex. `flooruuid`) Examples:
`?deviceSiteIds=id1` (single id requested)
`?deviceSiteIds=id1&deviceSiteIds=id2&siteId=id3` (multiple ids requested).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!retrieves-the-total-number-of-d-h-c-p-services-for-given-parameters
"""
check_type(headers, dict)
check_type(start_time, int)
check_type(end_time, int)
check_type(server_ip, str)
check_type(device_id, str)
check_type(device_name, str)
check_type(device_site_hierarchy, str)
check_type(device_site_hierarchy_id, str)
check_type(device_site_id, str)
if headers is not None:
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"startTime": start_time,
"endTime": end_time,
"serverIp": server_ip,
"deviceId": device_id,
"deviceName": device_name,
"deviceSiteHierarchy": device_site_hierarchy,
"deviceSiteHierarchyId": device_site_hierarchy_id,
"deviceSiteId": device_site_id,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/dhcpServices/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_cf3eff4f30ab56ef8e4cad0be8bac653_v3_1_6_0", json_data
)
[docs] def retrieves_the_list_of_d_h_c_p_services_for_given_set_of_complex_filters(
self,
endTime=None,
filters=None,
page=None,
startTime=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Retrieves the list of DHCP Services and offers complex filtering and sorting capabilities. For detailed
information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-DHCPServices-1.0.0-resolved.yaml.
Args:
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
page(object): Devices's page.
startTime(integer): Devices's Start Time.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!retrieves-the-list-of-d-h-c-p-services-for-given-set-of-complex-filters
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"startTime": startTime,
"endTime": endTime,
"filters": filters,
"page": page,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_e6c22549e5145c4892d0bd3b97614e07_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/dhcpServices/query"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_e6c22549e5145c4892d0bd3b97614e07_v3_1_6_0", json_data
)
[docs] def retrieves_the_total_number_of_d_h_c_p_services_for_given_set_of_complex_filters(
self,
endTime=None,
filters=None,
startTime=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Retrieves the total number of DHCP Services and offers complex filtering and sorting capabilities. For detailed
information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-DHCPServices-1.0.0-resolved.yaml.
Args:
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
startTime(integer): Devices's Start Time.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!retrieves-the-total-number-of-d-h-c-p-services-for-given-set-of-complex-filters
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"startTime": startTime,
"endTime": endTime,
"filters": filters,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_afcd4a0cbe985fd7aafa73d671c43a1e_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/dhcpServices/query/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_afcd4a0cbe985fd7aafa73d671c43a1e_v3_1_6_0", json_data
)
[docs] def get_summary_analytics_data_of_d_h_c_p_services_for_given_set_of_complex_filters(
self,
aggregateAttributes=None,
attributes=None,
endTime=None,
filters=None,
groupBy=None,
page=None,
startTime=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Gets the summary analytics data related to DHCP Services based on given filters and group by field. For detailed
information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-DHCPServices-1.0.0-resolved.yaml.
Args:
aggregateAttributes(list): Devices's aggregateAttributes (list of objects).
attributes(list): Devices's Attributes (list of strings).
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
groupBy(list): Devices's Group By (list of strings).
page(object): Devices's page.
startTime(integer): Devices's Start Time.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-summary-analytics-data-of-d-h-c-p-services-for-given-set-of-complex-filters
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"startTime": startTime,
"endTime": endTime,
"groupBy": groupBy,
"filters": filters,
"attributes": attributes,
"aggregateAttributes": aggregateAttributes,
"page": page,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_a3fb2e7bb8aa50508425b1dd8818fda4_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/dhcpServices/summaryAnalytics"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_a3fb2e7bb8aa50508425b1dd8818fda4_v3_1_6_0", json_data
)
[docs] def get_top_n_analytics_data_of_d_h_c_p_services_for_given_set_of_complex_filters(
self,
aggregateAttributes=None,
attributes=None,
endTime=None,
filters=None,
groupBy=None,
page=None,
startTime=None,
topN=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Gets the Top N analytics data related to DHCP Services based on given filters and group by field. For detailed
information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-DHCPServices-1.0.0-resolved.yaml.
Args:
aggregateAttributes(list): Devices's aggregateAttributes (list of objects).
attributes(list): Devices's Attributes (list of strings).
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
groupBy(list): Devices's Group By (list of strings).
page(object): Devices's page.
startTime(integer): Devices's Start Time.
topN(integer): Devices's Top N.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-top-n-analytics-data-of-d-h-c-p-services-for-given-set-of-complex-filters
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"startTime": startTime,
"endTime": endTime,
"topN": topN,
"groupBy": groupBy,
"filters": filters,
"attributes": attributes,
"aggregateAttributes": aggregateAttributes,
"page": page,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_edf997bb4bcc5dd6baca80647d8a47ce_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/dhcpServices/topNAnalytics"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_edf997bb4bcc5dd6baca80647d8a47ce_v3_1_6_0", json_data
)
[docs] def get_trend_analytics_data_of_d_h_c_p_services_for_given_set_of_complex_filters(
self,
aggregateAttributes=None,
attributes=None,
endTime=None,
filters=None,
groupBy=None,
page=None,
startTime=None,
trendInterval=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Gets the trend analytics data related to DHCP Services based on given filters and group by field. For detailed
information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-DHCPServices-1.0.0-resolved.yaml.
Args:
aggregateAttributes(list): Devices's aggregateAttributes (list of objects).
attributes(list): Devices's Attributes (list of strings).
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
groupBy(list): Devices's Group By (list of strings).
page(object): Devices's page.
startTime(integer): Devices's Start Time.
trendInterval(string): Devices's Trend Interval.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-trend-analytics-data-of-d-h-c-p-services-for-given-set-of-complex-filters
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"startTime": startTime,
"endTime": endTime,
"trendInterval": trendInterval,
"groupBy": groupBy,
"filters": filters,
"attributes": attributes,
"aggregateAttributes": aggregateAttributes,
"page": page,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_d58baa26bd5a6d9c461592c872d515_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/dhcpServices/trendAnalytics"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_d58baa26bd5a6d9c461592c872d515_v3_1_6_0", json_data
)
[docs] def retrieves_the_details_of_a_specific_d_h_c_p_service_matching_the_id_of_the_service(
self, id, end_time=None, start_time=None, headers=None, **request_parameters
):
"""Retrieves the details of the DHCP Service matching the given id. For detailed information about the usage of the
API, please refer to the Open API specification document https://github.com/cisco-en-
programmability/catalyst-center-api-specs/blob/main/Assurance/CE_Cat_Center_Org-
DHCPServices-1.0.0-resolved.yaml.
Args:
id(str): id path parameter. Unique id of the DHCP Service. It is the combination of DHCP Server IP
(`serverIp`) and Device UUID (`deviceId`) separated by underscore (`_`). Example: If
`serverIp` is `10.76.81.33` and `deviceId` is `6bef213c-19ca-4170-8375-b694e251101c`,
then the `id` would be `10.76.81.33_6bef213c-19ca-4170-8375-b694e251101c`.
start_time(int): startTime query parameter. Start time from which API queries the data set related to
the resource. It must be specified in UNIX epochtime in milliseconds. Value is
inclusive.
end_time(int): endTime query parameter. End time to which API queries the data set related to the
resource. It must be specified in UNIX epochtime in milliseconds. Value is inclusive.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!retrieves-the-details-of-a-specific-d-h-c-p-service-matching-the-id-of-the-service
"""
check_type(headers, dict)
check_type(start_time, int)
check_type(end_time, int)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"startTime": start_time,
"endTime": end_time,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/dhcpServices/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_b5e7fa71240f5e669c902db27de09860_v3_1_6_0", json_data
)
[docs] def get_trend_analytics_data_for_a_given_d_h_c_p_service_matching_the_id_of_the_service(
self,
id,
aggregateAttributes=None,
attributes=None,
endTime=None,
filters=None,
groupBy=None,
page=None,
startTime=None,
trendInterval=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Gets the trend analytics data related to a particular DHCP Service matching the id. For detailed information
about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-DHCPServices-1.0.0-resolved.yaml.
Args:
aggregateAttributes(list): Devices's aggregateAttributes (list of objects).
attributes(list): Devices's Attributes (list of strings).
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
groupBy(list): Devices's Group By (list of strings).
page(object): Devices's page.
startTime(integer): Devices's Start Time.
trendInterval(string): Devices's Trend Interval.
id(str): id path parameter. Unique id of the DHCP Service. It is the combination of DHCP Server IP
(`serverIp`) and Device UUID (`deviceId`) separated by underscore (`_`). Example: If
`serverIp` is `10.76.81.33` and `deviceId` is `6bef213c-19ca-4170-8375-b694e251101c`,
then the `id` would be `10.76.81.33_6bef213c-19ca-4170-8375-b694e251101c`.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-trend-analytics-data-for-a-given-d-h-c-p-service-matching-the-id-of-the-service
"""
check_type(headers, dict)
check_type(payload, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
_payload = {
"startTime": startTime,
"endTime": endTime,
"trendInterval": trendInterval,
"groupBy": groupBy,
"filters": filters,
"attributes": attributes,
"aggregateAttributes": aggregateAttributes,
"page": page,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_eb1227bb250799b6ca76ed4bee9d9_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/dhcpServices/{id}/trendAnalytics"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_eb1227bb250799b6ca76ed4bee9d9_v3_1_6_0", json_data
)
[docs] def retrieves_the_list_of_d_n_s_services_for_given_parameters(
self,
device_id=None,
device_site_hierarchy_id=None,
device_site_id=None,
end_time=None,
limit=None,
offset=None,
order=None,
server_ip=None,
sort_by=None,
ssid=None,
start_time=None,
headers=None,
**request_parameters
):
"""Retrieves the list of DNS Services and offers basic filtering and sorting capabilities. For detailed information
about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-DNSServices-1.0.0-resolved.yaml.
Args:
start_time(int): startTime query parameter. Start time from which API queries the data set related to
the resource. It must be specified in UNIX epochtime in milliseconds. Value is
inclusive.
end_time(int): endTime query parameter. End time to which API queries the data set related to the
resource. It must be specified in UNIX epochtime in milliseconds. Value is inclusive.
limit(int): limit query parameter. Maximum number of records to return.
offset(int): offset query parameter. Specifies the starting point within all records returned by the
API. It's one based offset. The starting value is 1.
sort_by(str): sortBy query parameter. Field name on which sorting needs to be done.
order(str): order query parameter. The sort order of the field ascending or descending.
server_ip(str): serverIp query parameter. IP Address of the DNS Server. This parameter supports wildcard
(`*`) character -based search. Example: `10.76.81.*` or `*56.78*` or `*50.28` Examples:
serverIp=10.42.3.31 (single IP Address is requested)
serverIp=10.42.3.31&serverIp=name2&fabricVnName=name3 (multiple IP Addresses are
requested).
device_id(str): deviceId query parameter. The device UUID. Examples:
`deviceId=6bef213c-19ca-4170-8375-b694e251101c` (single deviceId is requested) `deviceId
=6bef213c-19ca-4170-8375-b694e251101c&deviceId=32219612-819e-4b5e-a96b-cf22aca13dd9
(multiple networkDeviceIds with & separator).
device_site_hierarchy_id(str): deviceSiteHierarchyId query parameter. The full hierarchy breakdown of
the site tree in id form starting from Global site UUID and ending with the specific
site UUID. (Ex. `globalUuid/areaUuid/buildingUuid/floorUuid`) This field supports
wildcard asterisk (`*`) character search support. E.g. `*uuid*, *uuid, uuid*` Examples:
`?deviceSiteHierarchyId=globalUuid/areaUuid/buildingUuid/floorUuid `(single
siteHierarchyId requested) `?deviceSiteHierarchyId=globalUuid/areaUuid/buildingUuid/floo
rUuid&deviceSiteHierarchyId=globalUuid/areaUuid2/buildingUuid2/floorUuid2` (multiple
siteHierarchyIds requested).
device_site_id(str): deviceSiteId query parameter. The UUID of the site. (Ex. `flooruuid`) Examples:
`?deviceSiteIds=id1` (single id requested)
`?deviceSiteIds=id1&deviceSiteIds=id2&siteId=id3` (multiple ids requested).
ssid(str): ssid query parameter. SSID is the name of wireless network to which client connects to. It is
also referred to as WLAN ID Wireless Local Area Network Identifier. This field supports
wildcard (`*`) character-based search. If the field contains the (`*`) character, please
use the /query API for search. Ex: `*Alpha*` or `Alpha*` or `*Alpha` Examples:
`ssid=Alpha` (single ssid requested) `ssid=Alpha&ssid=Guest` (multiple ssid requested).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!retrieves-the-list-of-d-n-s-services-for-given-parameters
"""
check_type(headers, dict)
check_type(start_time, int)
check_type(end_time, int)
check_type(limit, int)
check_type(offset, int)
check_type(sort_by, str)
check_type(order, str)
check_type(server_ip, str)
check_type(device_id, str)
check_type(device_site_hierarchy_id, str)
check_type(device_site_id, str)
check_type(ssid, str)
if headers is not None:
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"startTime": start_time,
"endTime": end_time,
"limit": limit,
"offset": offset,
"sortBy": sort_by,
"order": order,
"serverIp": server_ip,
"deviceId": device_id,
"deviceSiteHierarchyId": device_site_hierarchy_id,
"deviceSiteId": device_site_id,
"ssid": ssid,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/dnsServices"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_e71b7fc7245755ec8be93800d32738a8_v3_1_6_0", json_data
)
[docs] def retrieves_the_total_number_of_d_n_s_services_for_given_parameters(
self,
device_id=None,
device_site_hierarchy_id=None,
device_site_id=None,
end_time=None,
server_ip=None,
ssid=None,
start_time=None,
headers=None,
**request_parameters
):
"""Retrieves the total number of DNS Services for given parameters. For detailed information about the usage of the
API, please refer to the Open API specification document https://github.com/cisco-en-
programmability/catalyst-center-api-specs/blob/main/Assurance/CE_Cat_Center_Org-
DNSServices-1.0.0-resolved.yaml.
Args:
start_time(int): startTime query parameter. Start time from which API queries the data set related to
the resource. It must be specified in UNIX epochtime in milliseconds. Value is
inclusive.
end_time(int): endTime query parameter. End time to which API queries the data set related to the
resource. It must be specified in UNIX epochtime in milliseconds. Value is inclusive.
server_ip(str): serverIp query parameter. IP Address of the DNS Server. This parameter supports wildcard
(`*`) character -based search. Example: `10.76.81.*` or `*56.78*` or `*50.28` Examples:
serverIp=10.42.3.31 (single IP Address is requested)
serverIp=10.42.3.31&serverIp=name2&fabricVnName=name3 (multiple IP Addresses are
requested).
device_id(str): deviceId query parameter. The device UUID. Examples:
`deviceId=6bef213c-19ca-4170-8375-b694e251101c` (single deviceId is requested) `deviceId
=6bef213c-19ca-4170-8375-b694e251101c&deviceId=32219612-819e-4b5e-a96b-cf22aca13dd9
(multiple networkDeviceIds with & separator).
device_site_hierarchy_id(str): deviceSiteHierarchyId query parameter. The full hierarchy breakdown of
the site tree in id form starting from Global site UUID and ending with the specific
site UUID. (Ex. `globalUuid/areaUuid/buildingUuid/floorUuid`) This field supports
wildcard asterisk (`*`) character search support. E.g. `*uuid*, *uuid, uuid*` Examples:
`?deviceSiteHierarchyId=globalUuid/areaUuid/buildingUuid/floorUuid `(single
siteHierarchyId requested) `?deviceSiteHierarchyId=globalUuid/areaUuid/buildingUuid/floo
rUuid&deviceSiteHierarchyId=globalUuid/areaUuid2/buildingUuid2/floorUuid2` (multiple
siteHierarchyIds requested).
device_site_id(str): deviceSiteId query parameter. The UUID of the site. (Ex. `flooruuid`) Examples:
`?deviceSiteIds=id1` (single id requested)
`?deviceSiteIds=id1&deviceSiteIds=id2&siteId=id3` (multiple ids requested).
ssid(str): ssid query parameter. SSID is the name of wireless network to which client connects to. It is
also referred to as WLAN ID Wireless Local Area Network Identifier. This field supports
wildcard (`*`) character-based search. If the field contains the (`*`) character, please
use the /query API for search. Ex: `*Alpha*` or `Alpha*` or `*Alpha` Examples:
`ssid=Alpha` (single ssid requested) `ssid=Alpha&ssid=Guest` (multiple ssid requested).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!retrieves-the-total-number-of-d-n-s-services-for-given-parameters
"""
check_type(headers, dict)
check_type(start_time, int)
check_type(end_time, int)
check_type(server_ip, str)
check_type(device_id, str)
check_type(device_site_hierarchy_id, str)
check_type(device_site_id, str)
check_type(ssid, str)
if headers is not None:
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"startTime": start_time,
"endTime": end_time,
"serverIp": server_ip,
"deviceId": device_id,
"deviceSiteHierarchyId": device_site_hierarchy_id,
"deviceSiteId": device_site_id,
"ssid": ssid,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/dnsServices/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory("bpm_b1b7509cb0f7dc3d0a04479f_v3_1_6_0", json_data)
[docs] def retrieves_the_list_of_d_n_s_services_for_given_set_of_complex_filters(
self,
endTime=None,
filters=None,
page=None,
startTime=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Retrieves the list of DNS Services and offers complex filtering and sorting capabilities. For detailed
information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-DNSServices-1.0.0-resolved.yaml.
Args:
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
page(object): Devices's page.
startTime(integer): Devices's Start Time.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!retrieves-the-list-of-d-n-s-services-for-given-set-of-complex-filters
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"startTime": startTime,
"endTime": endTime,
"filters": filters,
"page": page,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_af7031cc5ca5b44af0e6454d558412c_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/dnsServices/query"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_af7031cc5ca5b44af0e6454d558412c_v3_1_6_0", json_data
)
[docs] def retrieves_the_total_number_of_d_n_s_services_for_given_set_of_complex_filters(
self,
endTime=None,
filters=None,
startTime=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Retrieves the total number of DNS Services and offers complex filtering and sorting capabilities. For detailed
information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-DNSServices-1.0.0-resolved.yaml.
Args:
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
startTime(integer): Devices's Start Time.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!retrieves-the-total-number-of-d-n-s-services-for-given-set-of-complex-filters
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"startTime": startTime,
"endTime": endTime,
"filters": filters,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_d10535ed2045b9bb5c58882e6f43cb2_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/dnsServices/query/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_d10535ed2045b9bb5c58882e6f43cb2_v3_1_6_0", json_data
)
[docs] def get_summary_analytics_data_of_d_n_s_services_for_given_set_of_complex_filters(
self,
aggregateAttributes=None,
attributes=None,
endTime=None,
filters=None,
groupBy=None,
page=None,
startTime=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Gets the summary analytics data related to DNS Services based on given filters and group by field. For detailed
information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-DNSServices-1.0.0-resolved.yaml.
Args:
aggregateAttributes(list): Devices's aggregateAttributes (list of objects).
attributes(list): Devices's Attributes (list of strings).
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
groupBy(list): Devices's Group By (list of strings).
page(object): Devices's page.
startTime(integer): Devices's Start Time.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-summary-analytics-data-of-d-n-s-services-for-given-set-of-complex-filters
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"startTime": startTime,
"endTime": endTime,
"groupBy": groupBy,
"filters": filters,
"attributes": attributes,
"aggregateAttributes": aggregateAttributes,
"page": page,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_e9c5c3e5515a2e1b2cdee6928ab_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/dnsServices/summaryAnalytics"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_e9c5c3e5515a2e1b2cdee6928ab_v3_1_6_0", json_data
)
[docs] def get_top_n_analytics_data_of_d_n_s_services_for_given_set_of_complex_filters(
self,
aggregateAttributes=None,
attributes=None,
endTime=None,
filters=None,
groupBy=None,
page=None,
startTime=None,
topN=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Gets the Top N analytics data related to DNS Services based on given filters and group by field. For detailed
information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-DNSServices-1.0.0-resolved.yaml.
Args:
aggregateAttributes(list): Devices's aggregateAttributes (list of objects).
attributes(list): Devices's Attributes (list of strings).
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
groupBy(list): Devices's Group By (list of strings).
page(object): Devices's page.
startTime(integer): Devices's Start Time.
topN(integer): Devices's Top N.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-top-n-analytics-data-of-d-n-s-services-for-given-set-of-complex-filters
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"startTime": startTime,
"endTime": endTime,
"topN": topN,
"groupBy": groupBy,
"filters": filters,
"attributes": attributes,
"aggregateAttributes": aggregateAttributes,
"page": page,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_b43e0f60e9ac5bd4960f9772cf7a497b_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/dnsServices/topNAnalytics"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_b43e0f60e9ac5bd4960f9772cf7a497b_v3_1_6_0", json_data
)
[docs] def get_trend_analytics_data_of_d_n_s_services_for_given_set_of_complex_filters(
self,
aggregateAttributes=None,
attributes=None,
endTime=None,
filters=None,
groupBy=None,
page=None,
startTime=None,
trendInterval=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Gets the trend analytics data related to DNS Services based on given filters and group by field. For detailed
information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-DNSServices-1.0.0-resolved.yaml.
Args:
aggregateAttributes(list): Devices's aggregateAttributes (list of objects).
attributes(list): Devices's Attributes (list of strings).
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
groupBy(list): Devices's Group By (list of strings).
page(object): Devices's page.
startTime(integer): Devices's Start Time.
trendInterval(string): Devices's Trend Interval.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-trend-analytics-data-of-d-n-s-services-for-given-set-of-complex-filters
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"startTime": startTime,
"endTime": endTime,
"trendInterval": trendInterval,
"groupBy": groupBy,
"filters": filters,
"attributes": attributes,
"aggregateAttributes": aggregateAttributes,
"page": page,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_a837b8a46cd459c8b429d16fb17f1370_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/dnsServices/trendAnalytics"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_a837b8a46cd459c8b429d16fb17f1370_v3_1_6_0", json_data
)
[docs] def retrieves_the_details_of_a_specific_d_n_s_service_matching_the_id_of_the_service(
self, id, end_time=None, start_time=None, headers=None, **request_parameters
):
"""Retrieves the details of the DNS Service matching the given id. For detailed information about the usage of the
API, please refer to the Open API specification document https://github.com/cisco-en-
programmability/catalyst-center-api-specs/blob/main/Assurance/CE_Cat_Center_Org-
DNSServices-1.0.0-resolved.yaml.
Args:
id(str): id path parameter. Unique id of the DNS Service. It is the combination of DNS Server IP
(`serverIp`) and Device UUID (`deviceId`) separated by underscore (`_`). Example: If
`serverIp` is `10.76.81.33` and `deviceId` is `6bef213c-19ca-4170-8375-b694e251101c`,
then the `id` would be `10.76.81.33_6bef213c-19ca-4170-8375-b694e251101c`.
start_time(int): startTime query parameter. Start time from which API queries the data set related to
the resource. It must be specified in UNIX epochtime in milliseconds. Value is
inclusive.
end_time(int): endTime query parameter. End time to which API queries the data set related to the
resource. It must be specified in UNIX epochtime in milliseconds. Value is inclusive.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!retrieves-the-details-of-a-specific-d-n-s-service-matching-the-id-of-the-service
"""
check_type(headers, dict)
check_type(start_time, int)
check_type(end_time, int)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"startTime": start_time,
"endTime": end_time,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/dnsServices/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_d6e70722df04553c9806af12c6d097db_v3_1_6_0", json_data
)
[docs] def get_trend_analytics_data_for_a_given_d_n_s_service_matching_the_id_of_the_service(
self,
id,
aggregateAttributes=None,
attributes=None,
endTime=None,
filters=None,
groupBy=None,
page=None,
startTime=None,
trendInterval=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Gets the trend analytics data related to a particular DNS Service matching the id. For detailed information
about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-DNSServices-1.0.0-resolved.yaml.
Args:
aggregateAttributes(list): Devices's aggregateAttributes (list of objects).
attributes(list): Devices's Attributes (list of strings).
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
groupBy(list): Devices's Group By (list of strings).
page(object): Devices's page.
startTime(integer): Devices's Start Time.
trendInterval(string): Devices's Trend Interval.
id(str): id path parameter. Unique id of the DNS Service. It is the combination of DNS Server IP
(`serverIp`) and Device UUID (`deviceId`) separated by underscore (`_`). Example: If
`serverIp` is `10.76.81.33` and `deviceId` is `6bef213c-19ca-4170-8375-b694e251101c`,
then the `id` would be `10.76.81.33_6bef213c-19ca-4170-8375-b694e251101c`.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-trend-analytics-data-for-a-given-d-n-s-service-matching-the-id-of-the-service
"""
check_type(headers, dict)
check_type(payload, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
_payload = {
"startTime": startTime,
"endTime": endTime,
"trendInterval": trendInterval,
"groupBy": groupBy,
"filters": filters,
"attributes": attributes,
"aggregateAttributes": aggregateAttributes,
"page": page,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_f1debbfd4775faba3779c513181dfbf_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/dnsServices/{id}/trendAnalytics"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_f1debbfd4775faba3779c513181dfbf_v3_1_6_0", json_data
)
[docs] def get_devices_energy(
self,
attribute=None,
cursor=None,
device_category=None,
device_sub_category=None,
end_time=None,
id=None,
limit=None,
order=None,
site_hierarchy=None,
site_hierarchy_id=None,
site_id=None,
sort_by=None,
start_time=None,
view=None,
headers=None,
**request_parameters
):
"""Retrieves a list of network devices with energy data based on the specified query parameters. For detailed
information about the usage of the API, please refer to the Open API specification document
- https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-deviceEnergy_1.0-1.0.1-resolved.yaml.
Args:
start_time(int): startTime query parameter. Start time from which API queries the data set related to
the resource. It must be specified in UNIX epochtime in milliseconds. Value is
inclusive. If `startTime` is not provided, API will default to one day before `endTime`.
end_time(int): endTime query parameter. End time to which API queries the data set related to the
resource. It must be specified in UNIX epochtime in milliseconds. Value is inclusive. If
`endTime` is not provided, API will default to one day after `startTime`. If `startTime`
is not provided either, API will default to current time.
limit(int): limit query parameter. Maximum number of records to return.
cursor(str): cursor query parameter. It's an opaque string field that indicates the next record in the
requested collection. If no records remain, the API returns a response with a count of
zero. The default value is an empty string, and the initial value must be an empty
string. The cursor value is populated by the API in the response page block. If the user
wants more records, the cursor in the subsequent request must be updated with the value
from the previous response.
sort_by(str): sortBy query parameter. A field within the response to sort by.
order(str): order query parameter. The sort order of the field ascending or descending.
id(str): id query parameter. The list of Device Uuids (e.g., `6bef213c-19ca-4170-8375-b694e251101c`).
Examples: `id=6bef213c-19ca-4170-8375-b694e251101c` (single device requested)
`id=6bef213c-19ca-4170-8375-b694e251101c&id=32219612-819e-4b5e-a96b-cf22aca13dd9`.
site_id(str): siteId query parameter. The UUID of the site. (Ex. `flooruuid`) Examples: `?siteId=id1`
(single id requested) `?siteId=id1&siteId=id2&siteId=id3` (multiple ids requested).
site_hierarchy(str): siteHierarchy query parameter. The full hierarchical breakdown of the site tree
starting from Global site name and ending with the specific site name. The Root site is
named "Global" (Ex. `Global/AreaName/BuildingName/FloorName`) This field supports
wildcard asterisk (`*`) character search support. E.g. `*/San*, */San, /San*` Examples:
`?siteHierarchy=Global/AreaName/BuildingName/FloorName` (single siteHierarchy requested)
`?siteHierarchy=Global/AreaName/BuildingName/FloorName&siteHierarchy=Global/AreaName2/Bu
ildingName2/FloorName2` (multiple siteHierarchies requested).
site_hierarchy_id(str): siteHierarchyId query parameter. The full hierarchy breakdown of the site tree
in id form starting from Global site UUID and ending with the specific site UUID. (Ex.
`globalUuid/areaUuid/buildingUuid/floorUuid`) This field supports wildcard asterisk
(`*`) character search support. E.g. `*uuid*, *uuid, uuid*` Examples:
`?siteHierarchyId=globalUuid/areaUuid/buildingUuid/floorUuid `(single siteHierarchyId
requested) `?siteHierarchyId=globalUuid/areaUuid/buildingUuid/floorUuid&siteHierarchyId=
globalUuid/areaUuid2/buildingUuid2/floorUuid2` (multiple siteHierarchyIds requested).
device_category(str): deviceCategory query parameter. The list of device deviceCategories. Examples:
`deviceCategory=Switch` (single device family requested)
`deviceCategory=Switch&deviceCategory=Router` (multiple device categories with comma
separator).
device_sub_category(str): deviceSubCategory query parameter. The list of device sub categories.
Examples: `deviceSubCategory=Cisco Catalyst 9300 Series Switches` (single device family
requested) `deviceSubCategory=Cisco Catalyst 9300 Series
Switches&deviceSubCategory=Cisco Catalyst 9400 Series Switches`.
view(str): view query parameter. List of views. View and attribute work in union. Each view will include
its attributes. For example, view device includes all the attributes related to device.
Please refer to `NetworkDeviceEnergyView` model for supported list of views Examples:
`view=device&view=energy`.
attribute(str): attribute query parameter. List of attributes. Please refer to
`NetworkDeviceEnergyAttribute` for supported list of attributes Examples:
`attribute=id&attribute=energyConsumed`.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-devices-energy
"""
check_type(headers, dict)
check_type(start_time, int)
check_type(end_time, int)
check_type(limit, int)
check_type(cursor, str)
check_type(sort_by, str)
check_type(order, str)
check_type(id, str)
check_type(site_id, str)
check_type(site_hierarchy, str)
check_type(site_hierarchy_id, str)
check_type(device_category, str)
check_type(device_sub_category, str)
check_type(view, str)
check_type(attribute, str)
if headers is not None:
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"startTime": start_time,
"endTime": end_time,
"limit": limit,
"cursor": cursor,
"sortBy": sort_by,
"order": order,
"id": id,
"siteId": site_id,
"siteHierarchy": site_hierarchy,
"siteHierarchyId": site_hierarchy_id,
"deviceCategory": device_category,
"deviceSubCategory": device_sub_category,
"view": view,
"attribute": attribute,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/energy/networkDevices"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_dd2b645f354b88c7b519cdbd5c4c4_v3_1_6_0", json_data
)
[docs] def count_devices_energy(
self,
device_category=None,
device_sub_category=None,
end_time=None,
id=None,
site_hierarchy=None,
site_hierarchy_id=None,
site_id=None,
start_time=None,
headers=None,
**request_parameters
):
"""Retrieves the total count of network devices that provide energy data, filtered according to the specified query
parameters. For detailed information about the usage of the API, please refer to the Open API
specification document - https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-deviceEnergy_1.0-1.0.1-resolved.yaml.
Args:
start_time(int): startTime query parameter. Start time from which API queries the data set related to
the resource. It must be specified in UNIX epochtime in milliseconds. Value is
inclusive. If `startTime` is not provided, API will default to one day before `endTime`.
end_time(int): endTime query parameter. End time to which API queries the data set related to the
resource. It must be specified in UNIX epochtime in milliseconds. Value is inclusive. If
`endTime` is not provided, API will default to one day after `startTime`. If `startTime`
is not provided either, API will default to current time.
id(str): id query parameter. The list of Device Uuids (e.g., `6bef213c-19ca-4170-8375-b694e251101c`).
Examples: `id=6bef213c-19ca-4170-8375-b694e251101c` (single device requested)
`id=6bef213c-19ca-4170-8375-b694e251101c&id=32219612-819e-4b5e-a96b-cf22aca13dd9`.
site_id(str): siteId query parameter. The UUID of the site. (Ex. `flooruuid`) Examples: `?siteId=id1`
(single id requested) `?siteId=id1&siteId=id2&siteId=id3` (multiple ids requested).
site_hierarchy(str): siteHierarchy query parameter. The full hierarchical breakdown of the site tree
starting from Global site name and ending with the specific site name. The Root site is
named "Global" (Ex. `Global/AreaName/BuildingName/FloorName`) This field supports
wildcard asterisk (`*`) character search support. E.g. `*/San*, */San, /San*` Examples:
`?siteHierarchy=Global/AreaName/BuildingName/FloorName` (single siteHierarchy requested)
`?siteHierarchy=Global/AreaName/BuildingName/FloorName&siteHierarchy=Global/AreaName2/Bu
ildingName2/FloorName2` (multiple siteHierarchies requested).
site_hierarchy_id(str): siteHierarchyId query parameter. The full hierarchy breakdown of the site tree
in id form starting from Global site UUID and ending with the specific site UUID. (Ex.
`globalUuid/areaUuid/buildingUuid/floorUuid`) This field supports wildcard asterisk
(`*`) character search support. E.g. `*uuid*, *uuid, uuid*` Examples:
`?siteHierarchyId=globalUuid/areaUuid/buildingUuid/floorUuid `(single siteHierarchyId
requested) `?siteHierarchyId=globalUuid/areaUuid/buildingUuid/floorUuid&siteHierarchyId=
globalUuid/areaUuid2/buildingUuid2/floorUuid2` (multiple siteHierarchyIds requested).
device_category(str): deviceCategory query parameter. The list of device deviceCategories. Examples:
`deviceCategory=Switch` (single device family requested)
`deviceCategory=Switch&deviceCategory=Router` (multiple device categories with comma
separator).
device_sub_category(str): deviceSubCategory query parameter. The list of device sub categories.
Examples: `deviceSubCategory=Cisco Catalyst 9300 Series Switches` (single device family
requested) `deviceSubCategory=Cisco Catalyst 9300 Series
Switches&deviceSubCategory=Cisco Catalyst 9400 Series Switches`.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!count-devices-energy
"""
check_type(headers, dict)
check_type(start_time, int)
check_type(end_time, int)
check_type(id, str)
check_type(site_id, str)
check_type(site_hierarchy, str)
check_type(site_hierarchy_id, str)
check_type(device_category, str)
check_type(device_sub_category, str)
if headers is not None:
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"startTime": start_time,
"endTime": end_time,
"id": id,
"siteId": site_id,
"siteHierarchy": site_hierarchy,
"siteHierarchyId": site_hierarchy_id,
"deviceCategory": device_category,
"deviceSubCategory": device_sub_category,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/energy/networkDevices/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_d220b1f9a1530fad206800cf7a946f_v3_1_6_0", json_data
)
[docs] def query_devices_energy(
self,
aggregateAttributes=None,
attributes=None,
endTime=None,
filters=None,
page=None,
startTime=None,
views=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Retrieves a list of network devices along with their energy data for a specified time range, based on the
filters provided in the request body. For detailed information about the usage of the API, please refer
to the Open API specification document - https://github.com/cisco-en-programmability/catalyst-center-
api-specs/blob/main/Assurance/CE_Cat_Center_Org-deviceEnergy_1.0-1.0.1-resolved.yaml.
Args:
aggregateAttributes(list): Devices's aggregateAttributes (list of objects).
attributes(list): Devices's Attributes (list of strings).
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
page(object): Devices's page.
startTime(integer): Devices's Start Time.
views(list): Devices's Views (list of strings).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!query-devices-energy
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"startTime": startTime,
"endTime": endTime,
"filters": filters,
"views": views,
"attributes": attributes,
"aggregateAttributes": aggregateAttributes,
"page": page,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_caeb723a074519498c6b08a1c9dacb3_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/energy/networkDevices/query"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_caeb723a074519498c6b08a1c9dacb3_v3_1_6_0", json_data
)
[docs] def count_devices_energy_from_query(
self,
aggregateAttributes=None,
attributes=None,
endTime=None,
filters=None,
page=None,
startTime=None,
views=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Retrieves the total count of network devices based on the specified complex filters. For detailed information
about the usage of the API, please refer to the Open API specification document
- https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-deviceEnergy_1.0-1.0.1-resolved.yaml.
Args:
aggregateAttributes(list): Devices's aggregateAttributes (list of objects).
attributes(list): Devices's Attributes (list of strings).
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
page(object): Devices's page.
startTime(integer): Devices's Start Time.
views(list): Devices's Views (list of strings).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!count-devices-energy-from-query
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"startTime": startTime,
"endTime": endTime,
"filters": filters,
"views": views,
"attributes": attributes,
"aggregateAttributes": aggregateAttributes,
"page": page,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_fcd7200871e5e2db7f1720d95fee764_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/energy/networkDevices/query/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_fcd7200871e5e2db7f1720d95fee764_v3_1_6_0", json_data
)
[docs] def get_device_energy_by_id(
self,
id,
attribute=None,
end_time=None,
start_time=None,
view=None,
headers=None,
**request_parameters
):
"""Retrieves network device energy data for a specified time range based on the device ID. For detailed information
about the usage of the API, please refer to the Open API specification document
- https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-deviceEnergy_1.0-1.0.1-resolved.yaml.
Args:
id(str): id path parameter. The UUID of the Network Device. (Ex.
"6bef213c-19ca-4170-8375-b694e251101c").
start_time(int): startTime query parameter. Start time from which API queries the data set related to
the resource. It must be specified in UNIX epochtime in milliseconds. Value is
inclusive. If `startTime` is not provided, API will default to one day before `endTime`.
end_time(int): endTime query parameter. End time to which API queries the data set related to the
resource. It must be specified in UNIX epochtime in milliseconds. Value is inclusive. If
`endTime` is not provided, API will default to one day after `startTime`. If `startTime`
is not provided either, API will default to current time.
view(str): view query parameter. List of views. View and attribute work in union. Each view will include
its attributes. For example, view device includes all the attributes related to device.
Please refer to `NetworkDeviceEnergyView` model for supported list of views Examples:
`view=device&view=energy`.
attribute(str): attribute query parameter. List of attributes. Please refer to
`NetworkDeviceEnergyAttribute` for supported list of attributes Examples:
`attribute=id&attribute=energyConsumed`.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-device-energy-by-i-d
"""
check_type(headers, dict)
check_type(start_time, int)
check_type(end_time, int)
check_type(view, str)
check_type(attribute, str)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"startTime": start_time,
"endTime": end_time,
"view": view,
"attribute": attribute,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/energy/networkDevices/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_f69049b5d6255ec68609f804c58c1bcb_v3_1_6_0", json_data
)
[docs] def gets_interfaces_along_with_statistics_and_poe_data_from_all_network_devices(
self,
attribute=None,
end_time=None,
interface_id=None,
interface_name=None,
limit=None,
network_device_id=None,
network_device_ip_address=None,
network_device_mac_address=None,
offset=None,
order=None,
site_hierarchy=None,
site_hierarchy_id=None,
site_id=None,
sort_by=None,
start_time=None,
view=None,
headers=None,
**request_parameters
):
"""Retrieves the list of the interfaces from all network devices based on the provided query parameters. The latest
interfaces data in the specified start and end time range will be returned. When there is no start and
end time specified returns the latest available data. The elements are grouped and sorted by
deviceUuid first, and are then sorted by the given sort field, or by the default value: name. The
supported sorting options are: name, adminStatus, description, duplexConfig, duplexOper,
interfaceIfIndex,interfaceType, macAddress,mediaType, operStatus, portChannelId, portMode,
portType,speed, vlanId This API can paginate up to 500,000 records, please narrow matching results
with additional filters beyond that value. The elements are grouped and sorted by deviceUuid first, and
are then sorted by the given sort field, or by the default value: name. The supported sorting options
are: name, adminStatus, description, duplexConfig, duplexOper,interfaceIfIndex,interfaceType,
macAddress,mediaType, operStatus,portChannelId, portMode, portType,speed, vlanId,pdPowerAdminMaxInWatt,p
dPowerBudgetInWatt,pdPowerConsumedInWatt,pdPowerRemainingInWatt,pdMaxPowerDrawn. For detailed
information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-interfaces-2.0.0-resolved.yaml.
Args:
start_time(int): startTime query parameter. Start time from which API queries the data set related to
the resource. It must be specified in UNIX epochtime in milliseconds. Value is
inclusive. If `startTime` is not provided, API will default to current time.
end_time(int): endTime query parameter. End time to which API queries the data set related to the
resource. It must be specified in UNIX epochtime in milliseconds. Value is inclusive.
limit(int): limit query parameter. Maximum number of records to return.
offset(int): offset query parameter. Specifies the starting point within all records returned by the
API. It's one based offset. The starting value is 1.
sort_by(str): sortBy query parameter. A field within the response to sort by.
order(str): order query parameter. The sort order of the field ascending or descending.
site_hierarchy(str): siteHierarchy query parameter. The full hierarchical breakdown of the site tree
starting from Global site name and ending with the specific site name. The Root site is
named "Global" (Ex. `Global/AreaName/BuildingName/FloorName`) This field supports
wildcard asterisk (`*`) character search support. E.g. `*/San*, */San, /San*` Examples:
`?siteHierarchy=Global/AreaName/BuildingName/FloorName` (single siteHierarchy requested)
`?siteHierarchy=Global/AreaName/BuildingName/FloorName&siteHierarchy=Global/AreaName2/Bu
ildingName2/FloorName2` (multiple siteHierarchies requested).
site_hierarchy_id(str): siteHierarchyId query parameter. The full hierarchy breakdown of the site tree
in id form starting from Global site UUID and ending with the specific site UUID. (Ex.
`globalUuid/areaUuid/buildingUuid/floorUuid`) This field supports wildcard asterisk
(`*`) character search support. E.g. `*uuid*, *uuid, uuid*` Examples:
`?siteHierarchyId=globalUuid/areaUuid/buildingUuid/floorUuid `(single siteHierarchyId
requested) `?siteHierarchyId=globalUuid/areaUuid/buildingUuid/floorUuid&siteHierarchyId=
globalUuid/areaUuid2/buildingUuid2/floorUuid2` (multiple siteHierarchyIds requested).
site_id(str): siteId query parameter. The UUID of the site. (Ex. `flooruuid`) Examples: `?siteId=id1`
(single id requested) `?siteId=id1&siteId=id2&siteId=id3` (multiple ids requested).
view(str): view query parameter. Views which are supported by this API. Each view represents a specific
data set. ### Response data provided by each view: 1.
**configuration** [id,name,adminStatus,description,duplexConfig,duplexOper,inte
rfaceIfIndex,interfaceType,ipv4Address,ipv6AddressList,isL3Interface,isWan,macAddress,me
diaType,name,operStatus, portChannelId,portMode, portType,speed,timestam
p,vlanId,networkDeviceId,networkDeviceIpAddress,networkDeviceMacAddress,siteName,siteHie
rarchy,siteHierarchyId] 2. **statistics** [id,name,rxDiscards,rxErr
or,rxRate,rxUtilization,txDiscards,txError,txRate,txUtilization,networkDeviceId,networkD
eviceIpAddress,networkDeviceMacAddress,siteName,siteHierarchy,siteHierarchyId]
3. **stackPort** [id,name,peerStackMember,peerStackPort,stackPortType,networkDe
viceId,networkDeviceIpAddress,networkDeviceMacAddress,siteName,siteHierarchy,siteHierarc
hyId] 4. **poE** [id, name,rxDiscards,rxError,rxRate,rxUt
ilization,txDiscards,txError,txRate,txUtilization,networkDeviceId,networkDeviceIpAddress
,networkDeviceMacAddress,siteName,siteHierarchy,siteHierarchyId] When this
query parameter is not added by default all configuration attributes will be
available in the response. **[configuration,statistics,stackPort]**.
attribute(str): attribute query parameter. The following list of attributes can be provided in the
attribute field [id,adminStatus, description,duplexConfig,duplexOper,interfaceI
fIndex,interfaceType,ipv4Address,ipv6AddressList,isL3Interface,isWan,macAddress,mediaTyp
e,name,operStatus,peerStackMember,peerStackPort, portChannelId,portMode, portType,rxDisc
ards,rxError,rxRate,rxUtilization,speed,stackPortType,timestamp,txDiscards,txError,txRat
e,txUtilization,vlanId,networkDeviceId,networkDeviceIpAddress,networkDeviceMacAddress,si
teName,siteHierarchy,siteHierarchyId,poeAdminStatus,poeOperStatus,chassisId,moduleId,pdC
lassSignal,pdClassSpare,pdDeviceType,pdDeviceModel,pdPowerAdminMaxInWatt,pdPowerBudgetIn
Watt,pdPowerConsumedInWatt,pdPowerRemainingInWatt,pdMaxPowerDrawn,pdConnectedDeviceList,
poeOperPriority,fastPoEEnabled,perpetualPoEEnabled,policingPoEEnabled,upoePlusEnabled,fo
urPairEnabled,poeDataTimestamp,pdLocation,pdDeviceName,pdConnectedSwitch,connectedSwitch
Uuid,ieeeCompliant,connectedSwitchType] If length of attribute list is too
long, please use 'views' param instead. Examples: attributes=name
(single attribute requested) attributes=name&description&duplexOper (multiple
attributes with comma separator).
network_device_id(str): networkDeviceId query parameter. The list of Network Device Uuids. (Ex.
`6bef213c-19ca-4170-8375-b694e251101c`) Examples:
`networkDeviceId=6bef213c-19ca-4170-8375-b694e251101c` (single networkDeviceId
requested) `networkDeviceId=6bef213c-19ca-4170-8375-
b694e251101c&networkDeviceId=32219612-819e-4b5e-a96b-
cf22aca13dd9&networkDeviceId=2541e9a7-b80d-4955-8aa2-79b233318ba0` (multiple
networkDeviceIds with & separator).
network_device_ip_address(str): networkDeviceIpAddress query parameter. The list of Network Device
management IP Address. (Ex. `121.1.1.10`) This field supports wildcard (`*`) character-
based search. Ex: `*1.1*` or `1.1*` or `*1.1` Examples:
`networkDeviceIpAddress=121.1.1.10` `networkDeviceIpAddress=121.1.1.10&networkDeviceIpAd
dress=172.20.1.10&networkDeviceIpAddress=10.10.20.10` (multiple networkDevice IP Address
with & separator).
network_device_mac_address(str): networkDeviceMacAddress query parameter. The list of Network Device MAC
Address. (Ex. `64:f6:9d:07:9a:00`) This field supports wildcard (`*`) character-based
search. Ex: `*AB:AB:AB*` or `AB:AB:AB*` or `*AB:AB:AB` Examples:
`networkDeviceMacAddress=64:f6:9d:07:9a:00`
`networkDeviceMacAddress=64:f6:9d:07:9a:00&networkDeviceMacAddress=70:56:9d:07:ac:77`
(multiple networkDevice MAC addresses with & separator).
interface_id(str): interfaceId query parameter. The list of Interface Uuids. (Ex.
`6bef213c-19ca-4170-8375-b694e251101c`) Examples:
`interfaceId=6bef213c-19ca-4170-8375-b694e251101c` (single interface uuid ) `interfaceId
=6bef213c-19ca-4170-8375-b694e251101c&32219612-819e-4b5e-a96b-cf22aca13dd9&2541e9a7-
b80d-4955-8aa2-79b233318ba0` (multiple Interface uuid with & separator).
interface_name(str): interfaceName query parameter. The list of Interface name (Ex.
`GigabitEthernet1/0/1`) This field supports wildcard (`*`) character-based search. Ex:
`*1/0/1*` or `1/0/1*` or `*1/0/1` Examples: `interfaceNames=GigabitEthernet1/0/1`
(single interface name)
`interfaceNames=GigabitEthernet1/0/1&GigabitEthernet2/0/1&GigabitEthernet3/0/1`
(multiple interface names with & separator).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!gets-interfaces-along-with-statistics-and-poe-data-from-all-network-devices
"""
check_type(headers, dict)
check_type(start_time, int)
check_type(end_time, int)
check_type(limit, int)
check_type(offset, int)
check_type(sort_by, str)
check_type(order, str)
check_type(site_hierarchy, str)
check_type(site_hierarchy_id, str)
check_type(site_id, str)
check_type(view, str)
check_type(attribute, (str, tuple))
check_type(network_device_id, str)
check_type(network_device_ip_address, str)
check_type(network_device_mac_address, str)
check_type(interface_id, str)
check_type(interface_name, str)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"startTime": start_time,
"endTime": end_time,
"limit": limit,
"offset": offset,
"sortBy": sort_by,
"order": order,
"siteHierarchy": site_hierarchy,
"siteHierarchyId": site_hierarchy_id,
"siteId": site_id,
"view": view,
"attribute": attribute,
"networkDeviceId": network_device_id,
"networkDeviceIpAddress": network_device_ip_address,
"networkDeviceMacAddress": network_device_mac_address,
"interfaceId": interface_id,
"interfaceName": interface_name,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/interfaces"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_fc7a61a854f2b2015d3f1c059ce9_v3_1_6_0", json_data
)
[docs] def gets_the_total_network_device_interface_counts(
self,
end_time=None,
interface_id=None,
interface_name=None,
network_device_id=None,
network_device_ip_address=None,
network_device_mac_address=None,
site_hierarchy=None,
site_hierarchy_id=None,
site_id=None,
start_time=None,
headers=None,
**request_parameters
):
"""Gets the total Network device interface counts. For detailed information about the usage of the API, please
refer to the Open API specification document https://github.com/cisco-en-programmability/catalyst-
center-api-specs/blob/main/Assurance/CE_Cat_Center_Org-interfaces-2.0.0-resolved.yaml.
Args:
start_time(int): startTime query parameter. Start time from which API queries the data set related to
the resource. It must be specified in UNIX epochtime in milliseconds. Value is
inclusive. If `startTime` is not provided, API will default to current time.
end_time(int): endTime query parameter. End time to which API queries the data set related to the
resource. It must be specified in UNIX epochtime in milliseconds. Value is inclusive.
site_hierarchy(str): siteHierarchy query parameter. The full hierarchical breakdown of the site tree
starting from Global site name and ending with the specific site name. The Root site is
named "Global" (Ex. `Global/AreaName/BuildingName/FloorName`) This field supports
wildcard asterisk (`*`) character search support. E.g. `*/San*, */San, /San*` Examples:
`?siteHierarchy=Global/AreaName/BuildingName/FloorName` (single siteHierarchy requested)
`?siteHierarchy=Global/AreaName/BuildingName/FloorName&siteHierarchy=Global/AreaName2/Bu
ildingName2/FloorName2` (multiple siteHierarchies requested).
site_hierarchy_id(str): siteHierarchyId query parameter. The full hierarchy breakdown of the site tree
in id form starting from Global site UUID and ending with the specific site UUID. (Ex.
`globalUuid/areaUuid/buildingUuid/floorUuid`) This field supports wildcard asterisk
(`*`) character search support. E.g. `*uuid*, *uuid, uuid*` Examples:
`?siteHierarchyId=globalUuid/areaUuid/buildingUuid/floorUuid `(single siteHierarchyId
requested) `?siteHierarchyId=globalUuid/areaUuid/buildingUuid/floorUuid&siteHierarchyId=
globalUuid/areaUuid2/buildingUuid2/floorUuid2` (multiple siteHierarchyIds requested).
site_id(str): siteId query parameter. The UUID of the site. (Ex. `flooruuid`) Examples: `?siteId=id1`
(single id requested) `?siteId=id1&siteId=id2&siteId=id3` (multiple ids requested).
network_device_id(str): networkDeviceId query parameter. The list of Network Device Uuids. (Ex.
`6bef213c-19ca-4170-8375-b694e251101c`) Examples:
`networkDeviceId=6bef213c-19ca-4170-8375-b694e251101c` (single networkDeviceId
requested) `networkDeviceId=6bef213c-19ca-4170-8375-
b694e251101c&networkDeviceId=32219612-819e-4b5e-a96b-
cf22aca13dd9&networkDeviceId=2541e9a7-b80d-4955-8aa2-79b233318ba0` (multiple
networkDeviceIds with & separator).
network_device_ip_address(str): networkDeviceIpAddress query parameter. The list of Network Device
management IP Address. (Ex. `121.1.1.10`) This field supports wildcard (`*`) character-
based search. Ex: `*1.1*` or `1.1*` or `*1.1` Examples:
`networkDeviceIpAddress=121.1.1.10` `networkDeviceIpAddress=121.1.1.10&networkDeviceIpAd
dress=172.20.1.10&networkDeviceIpAddress=10.10.20.10` (multiple networkDevice IP Address
with & separator).
network_device_mac_address(str): networkDeviceMacAddress query parameter. The list of Network Device MAC
Address. (Ex. `64:f6:9d:07:9a:00`) This field supports wildcard (`*`) character-based
search. Ex: `*AB:AB:AB*` or `AB:AB:AB*` or `*AB:AB:AB` Examples:
`networkDeviceMacAddress=64:f6:9d:07:9a:00`
`networkDeviceMacAddress=64:f6:9d:07:9a:00&networkDeviceMacAddress=70:56:9d:07:ac:77`
(multiple networkDevice MAC addresses with & separator).
interface_id(str): interfaceId query parameter. The list of Interface Uuids. (Ex.
`6bef213c-19ca-4170-8375-b694e251101c`) Examples:
`interfaceId=6bef213c-19ca-4170-8375-b694e251101c` (single interface uuid ) `interfaceId
=6bef213c-19ca-4170-8375-b694e251101c&32219612-819e-4b5e-a96b-cf22aca13dd9&2541e9a7-
b80d-4955-8aa2-79b233318ba0` (multiple Interface uuid with & separator).
interface_name(str): interfaceName query parameter. The list of Interface name (Ex.
`GigabitEthernet1/0/1`) This field supports wildcard (`*`) character-based search. Ex:
`*1/0/1*` or `1/0/1*` or `*1/0/1` Examples: `interfaceNames=GigabitEthernet1/0/1`
(single interface name)
`interfaceNames=GigabitEthernet1/0/1&GigabitEthernet2/0/1&GigabitEthernet3/0/1`
(multiple interface names with & separator).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!gets-the-total-network-device-interface-counts-in-the-specified-time-range-when-there-is-no-start-and-end-time-specified-returns-the-latest-interfaces-total-count
"""
check_type(headers, dict)
check_type(start_time, int)
check_type(end_time, int)
check_type(site_hierarchy, str)
check_type(site_hierarchy_id, str)
check_type(site_id, str)
check_type(network_device_id, str)
check_type(network_device_ip_address, str)
check_type(network_device_mac_address, str)
check_type(interface_id, str)
check_type(interface_name, str)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"startTime": start_time,
"endTime": end_time,
"siteHierarchy": site_hierarchy,
"siteHierarchyId": site_hierarchy_id,
"siteId": site_id,
"networkDeviceId": network_device_id,
"networkDeviceIpAddress": network_device_ip_address,
"networkDeviceMacAddress": network_device_mac_address,
"interfaceId": interface_id,
"interfaceName": interface_name,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/interfaces/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory("bpm_0f4b503bbce76ebb802f0ad7_v3_1_6_0", json_data)
[docs] def gets_the_list_of_interfaces_across_the_network_devices_based_on_the_provided_complex_filters_and_aggregation_functions(
self,
aggregateAttributes=None,
attributes=None,
endTime=None,
filters=None,
page=None,
startTime=None,
views=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Gets the list of interfaces across the Network Devices based on the provided complex filters and aggregation
functions The elements are grouped and sorted by deviceUuid first, and are then sorted by the given
sort field, or by the default value: name. The supported sorting options are: name, adminStatus,
description, duplexConfig, duplexOper, interfaceIfIndex,interfaceType, macAddress,mediaType, operStatus,
portChannelId, portMode, portType,speed, vlanId,pdPowerAdminMaxInWatt,pdPowerBudgetInWatt,pdPowerConsume
dInWatt,pdPowerRemainingInWatt,pdMaxPowerDrawn. For detailed information about the usage of the API,
please refer to the Open API specification document https://github.com/cisco-en-
programmability/catalyst-center-api-specs/blob/main/Assurance/CE_Cat_Center_Org-
interfaces-2.0.0-resolved.yaml.
Args:
aggregateAttributes(list): Devices's aggregateAttributes (list of objects).
attributes(list): Devices's Attributes (list of strings).
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
page(object): Devices's page.
startTime(integer): Devices's Start Time.
views(list): Devices's Views (list of strings).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!gets-the-list-of-interfaces-across-the-network-devices-based-on-the-provided-complex-filters-and-aggregation-functions
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"startTime": startTime,
"endTime": endTime,
"views": views,
"attributes": attributes,
"filters": filters,
"aggregateAttributes": aggregateAttributes,
"page": page,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_f667322836d5527482ad2100bec7feb4_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/interfaces/query"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_f667322836d5527482ad2100bec7feb4_v3_1_6_0", json_data
)
[docs] def get_total_interfaces_count_across_the_network_devices(
self,
aggregateAttributes=None,
attributes=None,
endTime=None,
filters=None,
page=None,
startTime=None,
views=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Gets the total number of interfaces across the Network devices based on the provided complex filters and
aggregation functions. For detailed information about the usage of the API, please refer to the Open API
specification document https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-interfaces-2.0.0-resolved.yaml.
Args:
aggregateAttributes(list): Devices's aggregateAttributes (list of objects).
attributes(list): Devices's Attributes (list of strings).
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
page(object): Devices's page.
startTime(integer): Devices's Start Time.
views(list): Devices's Views (list of strings).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!the-total-interfaces-count-across-the-network-devices
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"startTime": startTime,
"endTime": endTime,
"views": views,
"attributes": attributes,
"filters": filters,
"aggregateAttributes": aggregateAttributes,
"page": page,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_b0b146a144a65aa296b8b939c2926158_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/interfaces/query/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_b0b146a144a65aa296b8b939c2926158_v3_1_6_0", json_data
)
[docs] def get_the_interface_data_for_the_given_interface_idinstance_uuid_along_with_the_statistics_and_poe_data(
self,
id,
attribute=None,
end_time=None,
start_time=None,
view=None,
headers=None,
**request_parameters
):
"""Returns the interface data for the given interface instance Uuid along with the statistics data. The latest
interface data in the specified start and end time range will be returned. When there is no start and
end time specified returns the latest available data for the given interface Id. For detailed
information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-interfaces-2.0.0-resolved.yaml.
Args:
id(str): id path parameter. The interface Uuid.
start_time(int): startTime query parameter. Start time from which API queries the data set related to
the resource. It must be specified in UNIX epochtime in milliseconds. Value is
inclusive. If `startTime` is not provided, API will default to current time.
end_time(int): endTime query parameter. End time to which API queries the data set related to the
resource. It must be specified in UNIX epochtime in milliseconds. Value is inclusive.
view(str): view query parameter. Interface data model views.
attribute(str): attribute query parameter. The following list of attributes can be provided in the
attribute field [id,adminStatus, description,duplexConfig,duplexOper,interfaceI
fIndex,interfaceType,ipv4Address,ipv6AddressList,isL3Interface,isWan,macAddress,mediaTyp
e,name,operStatus,peerStackMember,peerStackPort, portChannelId,portMode, portType,rxDisc
ards,rxError,rxRate,rxUtilization,speed,stackPortType,timestamp,txDiscards,txError,txRat
e,txUtilization,vlanId,networkDeviceId,networkDeviceIpAddress,networkDeviceMacAddress,si
teName,siteHierarchy,siteHierarchyId,poeAdminStatus,poeOperStatus,chassisId,moduleId,pdC
lassSignal,pdClassSpare,pdDeviceType,pdDeviceModel,pdPowerAdminMaxInWatt,pdPowerBudgetIn
Watt,pdPowerConsumedInWatt,pdPowerRemainingInWatt,pdMaxPowerDrawn,pdConnectedDeviceList,
poeOperPriority,fastPoEEnabled,perpetualPoEEnabled,policingPoEEnabled,upoePlusEnabled,fo
urPairEnabled,poeDataTimestamp,pdLocation,pdDeviceName,pdConnectedSwitch,connectedSwitch
Uuid,ieeeCompliant,connectedSwitchType] If length of attribute list is too
long, please use 'views' param instead. Examples: attributes=name
(single attribute requested) attributes=name&description&duplexOper (multiple
attributes with comma separator).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-the-interface-data-for-the-given-interface-idinstance-uuid-along-with-the-statistics-and-poe-data
"""
check_type(headers, dict)
check_type(start_time, int)
check_type(end_time, int)
check_type(view, str)
check_type(attribute, str)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"startTime": start_time,
"endTime": end_time,
"view": view,
"attribute": attribute,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/interfaces/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_adcdf890505770af113b18b30c1b5f_v3_1_6_0", json_data
)
[docs] def get_trend_analytics_data_for_the_interfaces_in_the_specified_time_range(
self,
id,
aggregateAttributes=None,
attributes=None,
endTime=None,
filters=None,
startTime=None,
timestampOrder=None,
trendIntervalInMinutes=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""The Trend analytcis data for the interface, identified by its instanceUuid, in the specified time range. The
data is grouped based on the trend time Interval, other input parameters like attributes and aggregate
attributes. The default time interval range is 3 hours when start and endTime is not provided. The
field trendIntervalInMinutes is requiered and either the attributes or the aggregateAttributes fields is
also required. For detailed information about the usage of the API, please refer to the Open API
specification document https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-interfaces-2.0.0-resolved.yaml.
Args:
aggregateAttributes(list): Devices's aggregateAttributes (list of objects).
attributes(list): Devices's Attributes (list of strings).
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
startTime(integer): Devices's Start Time.
timestampOrder(string): Devices's Timestamp Order.
trendIntervalInMinutes(integer): Devices's Trend Interval In Minutes.
id(str): id path parameter. The interface instance Uuid.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!the-trend-analytcis-data-for-the-interfaces-in-the-specified-time-range
"""
check_type(headers, dict)
check_type(payload, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
_payload = {
"startTime": startTime,
"endTime": endTime,
"trendIntervalInMinutes": trendIntervalInMinutes,
"attributes": attributes,
"filters": filters,
"aggregateAttributes": aggregateAttributes,
"timestampOrder": timestampOrder,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_b9be51e25efc9f41d4f68451f9a6_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/interfaces/{id}/trendAnalytics"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_b9be51e25efc9f41d4f68451f9a6_v3_1_6_0", json_data
)
[docs] def gets_the_network_device_details_based_on_the_provided_query_parameters(
self,
attribute=None,
end_time=None,
fabric_role=None,
fabric_site_id=None,
family=None,
health_score=None,
id=None,
l2_vn=None,
l3_vn=None,
limit=None,
mac_address=None,
maintenance_mode=None,
management_ip_address=None,
offset=None,
order=None,
role=None,
serial_number=None,
site_hierarchy=None,
site_hierarchy_id=None,
site_id=None,
software_version=None,
sort_by=None,
start_time=None,
transit_network_id=None,
type=None,
view=None,
headers=None,
**request_parameters
):
"""Gets the Network Device details based on the provided query parameters. When there is no start and end time
specified returns the latest device details. For detailed information about the usage of the API, please
refer to the Open API specification document https://github.com/cisco-en-programmability/catalyst-
center-api-specs/blob/main/Assurance/CE_Cat_Center_Org-AssuranceNetworkDevices-2.0.1-resolved.yaml.
Args:
start_time(int): startTime query parameter. Start time from which API queries the data set related to
the resource. It must be specified in UNIX epochtime in milliseconds. Value is
inclusive. If `startTime` is not provided, API will default to current time.
end_time(int): endTime query parameter. End time to which API queries the data set related to the
resource. It must be specified in UNIX epochtime in milliseconds. Value is inclusive.
limit(int): limit query parameter. Maximum number of records to return.
offset(int): offset query parameter. Specifies the starting point within all records returned by the
API. It's one based offset. The starting value is 1.
sort_by(str): sortBy query parameter. A field within the response to sort by.
order(str): order query parameter. The sort order of the field ascending or descending.
site_hierarchy(str): siteHierarchy query parameter. The full hierarchical breakdown of the site tree
starting from Global site name and ending with the specific site name. The Root site is
named "Global" (Ex. `Global/AreaName/BuildingName/FloorName`) This field supports
wildcard asterisk (*) character search support. E.g. */San*, */San, /San* Examples:
`?siteHierarchy=Global/AreaName/BuildingName/FloorName` (single siteHierarchy requested)
`?siteHierarchy=Global/AreaName/BuildingName/FloorName&siteHierarchy=Global/AreaName2/Bu
ildingName2/FloorName2` (multiple siteHierarchies requested).
site_hierarchy_id(str): siteHierarchyId query parameter. The full hierarchy breakdown of the site tree
in id form starting from Global site UUID and ending with the specific site UUID. (Ex.
`globalUuid/areaUuid/buildingUuid/floorUuid`) This field supports wildcard asterisk (*)
character search support. E.g. `*uuid*, *uuid, uuid* Examples:
`?siteHierarchyId=globalUuid/areaUuid/buildingUuid/floorUuid `(single siteHierarchyId
requested) `?siteHierarchyId=globalUuid/areaUuid/buildingUuid/floorUuid&siteHierarchyId=
globalUuid/areaUuid2/buildingUuid2/floorUuid2` (multiple siteHierarchyIds requested).
site_id(str): siteId query parameter. The UUID of the site. (Ex. `flooruuid`) This field supports
wildcard asterisk (*) character search support. E.g.*flooruuid*, *flooruuid, flooruuid*
Examples: `?siteId=id1` (single id requested) `?siteId=id1&siteId=id2&siteId=id3`
(multiple ids requested).
id(str): id query parameter. The list of entity Uuids. (Ex."6bef213c-19ca-4170-8375-b694e251101c")
Examples: id=6bef213c-19ca-4170-8375-b694e251101c (single entity uuid requested) id=6bef
213c-19ca-4170-8375-b694e251101c&id=32219612-819e-4b5e-a96b-cf22aca13dd9&id=2541e9a7-
b80d-4955-8aa2-79b233318ba0 (multiple entity uuid with '&' separator).
management_ip_address(str): managementIpAddress query parameter. The list of entity management IP
Address. It can be either Ipv4 or Ipv6 address or combination of both(Ex. "121.1.1.10")
This field supports wildcard (`*`) character-based search. Ex: `*1.1*` or `1.1*` or
`*1.1` Examples: managementIpAddresses=121.1.1.10 managementIpAddresses=121.1.1.10&manag
ementIpAddresses=172.20.1.10&managementIpAddresses=200:10&=managementIpAddresses172.20.3
.4 (multiple entity IP Address with & separator).
mac_address(str): macAddress query parameter. The macAddress of the network device or client This field
supports wildcard (`*`) character-based search. Ex: `*AB:AB:AB*` or `AB:AB:AB*` or
`*AB:AB:AB` Examples: `macAddress=AB:AB:AB:CD:CD:CD` (single macAddress requested)
`macAddress=AB:AB:AB:CD:CD:DC&macAddress=AB:AB:AB:CD:CD:FE` (multiple macAddress
requested).
family(str): family query parameter. The list of network device family names Examples:family=Switches
and Hubs (single network device family name )family=Switches and
Hubs&family=Router&family=Wireless Controller (multiple Network device family names with
& separator). This field is not case sensitive.
type(str): type query parameter. The list of network device type This field supports wildcard (`*`)
character-based search. Ex: `*9407R*` or `*9407R` or `9407R*` Examples:
type=SwitchesCisco Catalyst 9407R Switch (single network device types ) type=Cisco
Catalyst 38xx stack-able ethernet switch&type=Cisco 3945 Integrated Services Router G2
(multiple Network device types with & separator).
role(str): role query parameter. The list of network device role. Examples:role=CORE,
role=CORE&role=ACCESS&role=ROUTER (multiple Network device roles with & separator). This
field is not case sensitive.
serial_number(str): serialNumber query parameter. The list of network device serial numbers. This field
supports wildcard (`*`) character-based search. Ex: `*MS1SV*` or `MS1SV*` or `*MS1SV`
Examples: serialNumber=9FUFMS1SVAX
serialNumber=9FUFMS1SVAX&FCW2333Q0BY&FJC240617JX(multiple Network device serial number
with & separator).
maintenance_mode(bool): maintenanceMode query parameter. The device maintenanceMode status true or
false.
software_version(str): softwareVersion query parameter. The list of network device software version This
field supports wildcard (`*`) character-based search. Ex: `*17.8*` or `*17.8` or `17.8*`
Examples: softwareVersion=2.3.4.0 (single network device software version )
softwareVersion=17.9.3.23&softwareVersion=17.7.1.2&softwareVersion=*.17.7 (multiple
Network device software versions with & separator).
health_score(str): healthScore query parameter. The list of entity health score categories Examples:
healthScore=good, healthScore=good&healthScore=fair (multiple entity healthscore values
with & separator). This field is not case sensitive.
view(str): view query parameter. The List of Network Device model views. Please refer to
```NetworkDeviceView``` section in the Open API specification document mentioned in the
description.
attribute(str): attribute query parameter. The List of Network Device model attributes. Please refer to
```NetworkDeviceAttribute``` section in the Open API specification document mentioned in
the description.
fabric_site_id(str): fabricSiteId query parameter. The fabric site Id or list to fabric site Ids to
filter the data This field supports wildcard asterisk (*) character search support.
E.g. *uuid*, *uuid, uuid* Examples: `?fabricSiteId=fabricSiteUuid)
?fabricSiteId=fabricSiteUuid1&fabricSiteId=fabricSiteUuid2 (multiple fabricSiteIds
requested).
l2_vn(str): l2Vn query parameter. The L2 Virtual Network Id or list to Virtual Network Ids to filter the
data This field supports wildcard asterisk (*) character search support. E.g. *uuid*,
*uuid, uuid* Examples: `?l2Vn=virtualNetworkId
?l2Vn=virtualNetworkId1&l2Vn=virtualNetworkId2 (multiple virtualNetworkId's requested).
l3_vn(str): l3Vn query parameter. The L3 Virtual Network Id or list to Virtual Network Ids to filter the
data This field supports wildcard asterisk (*) character search support. E.g. *uuid*,
*uuid, uuid* Examples: `?l3Vn=virtualNetworkId
?l3Vn=virtualNetworkId1&l3Vn=virtualNetworkId2 (multiple virtualNetworkId's requested).
transit_network_id(str): transitNetworkId query parameter. The Transit Network Id or list to Transit
Network Ids to filter the data This field supports wildcard asterisk (*) character
search support. E.g. *uuid*, *uuid, uuid* Examples:
`?transitNetworkId=transitNetworkId
?transitNetworkId=transitNetworkuuid1&transitNetworkId=transitNetworkuuid1 (multiple
transitNetworkIds requested.
fabric_role(str): fabricRole query parameter. The list of fabric device role. Examples:
fabricRole=BORDER, fabricRole=BORDER&fabricRole=EDGE (multiple fabric device roles with
& separator) Available values : BORDER, EDGE, MAP-SERVER, LEAF, SPINE, TRANSIT-CP,
EXTENDED-NODE, WLC, UNIFIED-AP.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!gets-the-network-device-details-based-on-the-provided-query-parameters
"""
check_type(headers, dict)
check_type(start_time, int)
check_type(end_time, int)
check_type(limit, int)
check_type(offset, int)
check_type(sort_by, str)
check_type(order, str)
check_type(site_hierarchy, str)
check_type(site_hierarchy_id, str)
check_type(site_id, str)
check_type(id, str)
check_type(management_ip_address, str)
check_type(mac_address, str)
check_type(family, str)
check_type(type, str)
check_type(role, str)
check_type(serial_number, str)
check_type(maintenance_mode, bool)
check_type(software_version, str)
check_type(health_score, str)
check_type(view, str)
check_type(attribute, str)
check_type(fabric_site_id, str)
check_type(l2_vn, str)
check_type(l3_vn, str)
check_type(transit_network_id, str)
check_type(fabric_role, str)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"startTime": start_time,
"endTime": end_time,
"limit": limit,
"offset": offset,
"sortBy": sort_by,
"order": order,
"siteHierarchy": site_hierarchy,
"siteHierarchyId": site_hierarchy_id,
"siteId": site_id,
"id": id,
"managementIpAddress": management_ip_address,
"macAddress": mac_address,
"family": family,
"type": type,
"role": role,
"serialNumber": serial_number,
"maintenanceMode": maintenance_mode,
"softwareVersion": software_version,
"healthScore": health_score,
"view": view,
"attribute": attribute,
"fabricSiteId": fabric_site_id,
"l2Vn": l2_vn,
"l3Vn": l3_vn,
"transitNetworkId": transit_network_id,
"fabricRole": fabric_role,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/networkDevices"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_c7314fc7e15dab859eb66f45b1e95a_v3_1_6_0", json_data
)
[docs] def gets_the_total_network_device_counts_based_on_the_provided_query_parameters(
self,
attribute=None,
end_time=None,
family=None,
health_score=None,
id=None,
mac_address=None,
maintenance_mode=None,
management_ip_address=None,
role=None,
serial_number=None,
site_hierarchy=None,
site_hierarchy_id=None,
site_id=None,
software_version=None,
start_time=None,
type=None,
view=None,
headers=None,
**request_parameters
):
"""Gets the total Network device counts. When there is no start and end time specified returns the latest
interfaces total count. For detailed information about the usage of the API, please refer to the Open
API specification document https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-AssuranceNetworkDevices-2.0.1-resolved.yaml.
Args:
start_time(int): startTime query parameter. Start time from which API queries the data set related to
the resource. It must be specified in UNIX epochtime in milliseconds. Value is
inclusive. If `startTime` is not provided, API will default to current time.
end_time(int): endTime query parameter. End time to which API queries the data set related to the
resource. It must be specified in UNIX epochtime in milliseconds. Value is inclusive.
id(str): id query parameter. The list of entity Uuids. (Ex."6bef213c-19ca-4170-8375-b694e251101c")
Examples: id=6bef213c-19ca-4170-8375-b694e251101c (single entity uuid requested) id=6bef
213c-19ca-4170-8375-b694e251101c&id=32219612-819e-4b5e-a96b-cf22aca13dd9&id=2541e9a7-
b80d-4955-8aa2-79b233318ba0 (multiple entity uuid with '&' separator).
site_hierarchy(str): siteHierarchy query parameter. The full hierarchical breakdown of the site tree
starting from Global site name and ending with the specific site name. The Root site is
named "Global" (Ex. `Global/AreaName/BuildingName/FloorName`) This field supports
wildcard asterisk (*) character search support. E.g. */San*, */San, /San* Examples:
`?siteHierarchy=Global/AreaName/BuildingName/FloorName` (single siteHierarchy requested)
`?siteHierarchy=Global/AreaName/BuildingName/FloorName&siteHierarchy=Global/AreaName2/Bu
ildingName2/FloorName2` (multiple siteHierarchies requested).
site_hierarchy_id(str): siteHierarchyId query parameter. The full hierarchy breakdown of the site tree
in id form starting from Global site UUID and ending with the specific site UUID. (Ex.
`globalUuid/areaUuid/buildingUuid/floorUuid`) This field supports wildcard asterisk (*)
character search support. E.g. `*uuid*, *uuid, uuid* Examples:
`?siteHierarchyId=globalUuid/areaUuid/buildingUuid/floorUuid `(single siteHierarchyId
requested) `?siteHierarchyId=globalUuid/areaUuid/buildingUuid/floorUuid&siteHierarchyId=
globalUuid/areaUuid2/buildingUuid2/floorUuid2` (multiple siteHierarchyIds requested).
site_id(str): siteId query parameter. The UUID of the site. (Ex. `flooruuid`) This field supports
wildcard asterisk (*) character search support. E.g.*flooruuid*, *flooruuid, flooruuid*
Examples: `?siteId=id1` (single id requested) `?siteId=id1&siteId=id2&siteId=id3`
(multiple ids requested).
management_ip_address(str): managementIpAddress query parameter. The list of entity management IP
Address. It can be either Ipv4 or Ipv6 address or combination of both(Ex. "121.1.1.10")
This field supports wildcard (`*`) character-based search. Ex: `*1.1*` or `1.1*` or
`*1.1` Examples: managementIpAddresses=121.1.1.10 managementIpAddresses=121.1.1.10&manag
ementIpAddresses=172.20.1.10&managementIpAddresses=200:10&=managementIpAddresses172.20.3
.4 (multiple entity IP Address with & separator).
mac_address(str): macAddress query parameter. The macAddress of the network device or client This field
supports wildcard (`*`) character-based search. Ex: `*AB:AB:AB*` or `AB:AB:AB*` or
`*AB:AB:AB` Examples: `macAddress=AB:AB:AB:CD:CD:CD` (single macAddress requested)
`macAddress=AB:AB:AB:CD:CD:DC&macAddress=AB:AB:AB:CD:CD:FE` (multiple macAddress
requested).
family(str): family query parameter. The list of network device family names Examples:family=Switches
and Hubs (single network device family name )family=Switches and
Hubs&family=Router&family=Wireless Controller (multiple Network device family names with
& separator). This field is not case sensitive.
type(str): type query parameter. The list of network device type This field supports wildcard (`*`)
character-based search. Ex: `*9407R*` or `*9407R` or `9407R*`Examples:type=SwitchesCisco
Catalyst 9407R Switch (single network device types )type=Cisco Catalyst 38xx stack-able
ethernet switch&type=Cisco 3945 Integrated Services Router G2 (multiple Network device
types with & separator).
role(str): role query parameter. The list of network device role. Examples:role=CORE,
role=CORE&role=ACCESS&role=ROUTER (multiple Network device roles with & separator). This
field is not case sensitive.
serial_number(str): serialNumber query parameter. The list of network device serial numbers. This field
supports wildcard (`*`) character-based search. Ex: `*MS1SV*` or `MS1SV*` or `*MS1SV`
Examples: serialNumber=9FUFMS1SVAX
serialNumber=9FUFMS1SVAX&FCW2333Q0BY&FJC240617JX(multiple Network device serial number
with & separator).
maintenance_mode(bool): maintenanceMode query parameter. The device maintenanceMode status true or
false.
software_version(str): softwareVersion query parameter. The list of network device software version This
field supports wildcard (`*`) character-based search. Ex: `*17.8*` or `*17.8` or `17.8*`
Examples: softwareVersion=2.3.4.0 (single network device software version )
softwareVersion=17.9.3.23&softwareVersion=17.7.1.2&softwareVersion=*.17.7 (multiple
Network device software versions with & separator).
health_score(str): healthScore query parameter. The list of entity health score categories
Examples:healthScore=good,healthScore=good&healthScore=fair (multiple entity healthscore
values with & separator). This field is not case sensitive.
view(str): view query parameter. The List of Network Device model views. Please refer to
```NetworkDeviceView``` for the supported list.
attribute(str): attribute query parameter. The List of Network Device model attributes. This is helps to
specify the interested fields in the request.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!gets-the-total-network-device-counts-based-on-the-provided-query-parameters
"""
check_type(headers, dict)
check_type(start_time, int)
check_type(end_time, int)
check_type(id, str)
check_type(site_hierarchy, str)
check_type(site_hierarchy_id, str)
check_type(site_id, str)
check_type(management_ip_address, str)
check_type(mac_address, str)
check_type(family, str)
check_type(type, str)
check_type(role, str)
check_type(serial_number, str)
check_type(maintenance_mode, bool)
check_type(software_version, str)
check_type(health_score, str)
check_type(view, str)
check_type(attribute, str)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"startTime": start_time,
"endTime": end_time,
"id": id,
"siteHierarchy": site_hierarchy,
"siteHierarchyId": site_hierarchy_id,
"siteId": site_id,
"managementIpAddress": management_ip_address,
"macAddress": mac_address,
"family": family,
"type": type,
"role": role,
"serialNumber": serial_number,
"maintenanceMode": maintenance_mode,
"softwareVersion": software_version,
"healthScore": health_score,
"view": view,
"attribute": attribute,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/networkDevices/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_d8782f4d285506d9e1391f0190ff738_v3_1_6_0", json_data
)
[docs] def gets_the_list_of_network_devices_based_on_the_provided_complex_filters_and_aggregation_functions(
self,
aggregateAttributes=None,
attributes=None,
endTime=None,
filters=None,
page=None,
startTime=None,
views=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Gets the list of Network Devices based on the provided complex filters and aggregation functions. For detailed
information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-AssuranceNetworkDevices-2.0.1-resolved.yaml.
Args:
aggregateAttributes(list): Devices's aggregateAttributes (list of objects).
attributes(list): Devices's Attributes (list of strings).
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
page(object): Devices's page.
startTime(integer): Devices's Start Time.
views(list): Devices's Views (list of strings).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!gets-the-list-of-network-devices-based-on-the-provided-complex-filters-and-aggregation-functions
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"startTime": startTime,
"endTime": endTime,
"views": views,
"attributes": attributes,
"filters": filters,
"aggregateAttributes": aggregateAttributes,
"page": page,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_bd1c59e9be75ac4a40decaa95ee9efd_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/networkDevices/query"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_bd1c59e9be75ac4a40decaa95ee9efd_v3_1_6_0", json_data
)
[docs] def gets_the_total_number_network_devices_based_on_the_provided_complex_filters_and_aggregation_functions(
self,
endTime=None,
filters=None,
startTime=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Gets the total number Network Devices based on the provided complex filters and aggregation functions. For
detailed information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-AssuranceNetworkDevices-2.0.1-resolved.yaml.
Args:
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
startTime(integer): Devices's Start Time.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!gets-the-total-number-network-devices-based-on-the-provided-complex-filters-and-aggregation-functions
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"startTime": startTime,
"endTime": endTime,
"filters": filters,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_d05c763ada545fbe94a4c0391456b89f_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/networkDevices/query/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_d05c763ada545fbe94a4c0391456b89f_v3_1_6_0", json_data
)
[docs] def gets_the_trend_analytics_data(
self,
aggregateAttributes=None,
attributes=None,
endTime=None,
filters=None,
groupBy=None,
page=None,
startTime=None,
trendInterval=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Gets the Trend analytics Network device data for the given time range. The data will be grouped based on the
given trend time Interval. The required property for this API is `trendInterval`. For detailed
information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-AssuranceNetworkDevices-2.0.1-resolved.yaml.
Args:
aggregateAttributes(list): Devices's Aggregate Attributes (list of strings).
attributes(list): Devices's Attributes (list of strings).
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
groupBy(list): Devices's Group By (list of strings).
page(object): Devices's page.
startTime(integer): Devices's Start Time.
trendInterval(string): Devices's Trend Interval.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!gets-the-trend-analytics-data
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"startTime": startTime,
"endTime": endTime,
"trendInterval": trendInterval,
"groupBy": groupBy,
"attributes": attributes,
"filters": filters,
"aggregateAttributes": aggregateAttributes,
"page": page,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_ac7ce690e0f55a469b0a9bfa3d2c165e_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/networkDevices/trendAnalytics"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_ac7ce690e0f55a469b0a9bfa3d2c165e_v3_1_6_0", json_data
)
[docs] def get_the_device_data_for_the_given_device_id_uuid(
self,
id,
attribute=None,
end_time=None,
start_time=None,
view=None,
headers=None,
**request_parameters
):
"""Returns the device data for the given device Uuid in the specified start and end time range. When there is no
start and end time specified returns the latest available data for the given Id. For detailed
information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-AssuranceNetworkDevices-2.0.1-resolved.yaml.
Args:
id(str): id path parameter. The device Uuid.
start_time(int): startTime query parameter. Start time from which API queries the data set related to
the resource. It must be specified in UNIX epochtime in milliseconds. Value is
inclusive. If `startTime` is not provided, API will default to current time.
end_time(int): endTime query parameter. End time to which API queries the data set related to the
resource. It must be specified in UNIX epochtime in milliseconds. Value is inclusive.
view(str): view query parameter. The List of Network Device model views. Please refer to
```NetworkDeviceView``` section in the Open API specification document mentioned in the
description.
attribute(str): attribute query parameter. The List of Network Device model attributes. Please refer to
```NetworkDeviceAttribute``` section in the Open API specification document mentioned in
the description.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-the-device-data-for-the-given-device-id-uuid
"""
check_type(headers, dict)
check_type(start_time, int)
check_type(end_time, int)
check_type(view, str)
check_type(attribute, str)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"startTime": start_time,
"endTime": end_time,
"view": view,
"attribute": attribute,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/networkDevices/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_f89c7ee84a615469b754add8feeabb5a_v3_1_6_0", json_data
)
[docs] def get_trend_analytics_data_for_the_network_device_in_the_specified_time_range(
self,
id,
aggregateAttributes=None,
attributes=None,
endTime=None,
filters=None,
groupBy=None,
page=None,
startTime=None,
trendIntervalInMinutes=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""The Trend analytics data for the network Device in the specified time range. The data is grouped based on the
trend time Interval, other input parameters like attribute and aggregate attributes. For detailed
information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-AssuranceNetworkDevices-2.0.1-resolved.yaml.
Args:
aggregateAttributes(list): Devices's aggregateAttributes (list of objects).
attributes(list): Devices's Attributes (list of strings).
endTime(integer): Devices's End Time.
filters(list): Devices's filters (list of objects).
groupBy(list): Devices's Group By (list of strings).
page(object): Devices's page.
startTime(integer): Devices's Start Time.
trendIntervalInMinutes(integer): Devices's Trend Interval In Minutes.
id(str): id path parameter. The device Uuid.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!the-trend-analytics-data-for-the-network-device-in-the-specified-time-range
"""
check_type(headers, dict)
check_type(payload, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
_payload = {
"startTime": startTime,
"endTime": endTime,
"trendIntervalInMinutes": trendIntervalInMinutes,
"groupBy": groupBy,
"filters": filters,
"attributes": attributes,
"aggregateAttributes": aggregateAttributes,
"page": page,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_ca2f659b595c0ba7c649fd8c8bdad6_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/data/api/v1/networkDevices/{id}/trendAnalytics"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_ca2f659b595c0ba7c649fd8c8bdad6_v3_1_6_0", json_data
)
[docs] def get_planned_access_points_for_building(
self,
building_id,
limit=None,
offset=None,
radios=None,
headers=None,
**request_parameters
):
"""Provides a list of Planned Access Points for the Building it is requested for.
Args:
building_id(str): buildingId path parameter. The instance UUID of the building hierarchy element.
limit(int): limit query parameter. The number of records to show for this page;The minimum is 1, and the
maximum is 500.
offset(int): offset query parameter. The page offset for the response. E.g. if limit=100, offset=0 will
return first 100 records, offset=1 will return next 100 records, etc.
radios(bool): radios query parameter. Whether to include the planned radio details of the planned access
points.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-planned-access-points-for-building
"""
check_type(headers, dict)
check_type(limit, int)
check_type(offset, int)
check_type(radios, bool)
check_type(building_id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"limit": limit,
"offset": offset,
"radios": radios,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"buildingId": building_id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/buildings/{buildingId}/planned-" + "access-points"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_efc372d6eb577ca47e8c86f30c3d2f_v3_1_6_0", json_data
)
[docs] def get_device_detail(
self, identifier, search_by, timestamp=None, headers=None, **request_parameters
):
"""Returns detailed Network Device information retrieved by Mac Address, Device Name or UUID for any given point of
time.
Args:
timestamp(int): timestamp query parameter. UTC timestamp of device data in milliseconds.
identifier(str): identifier query parameter. One of "macAddress", "nwDeviceName", "uuid" (case
insensitive).
search_by(str): searchBy query parameter. MAC Address, device name, or UUID of the network device.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-device-detail
"""
check_type(headers, dict)
check_type(timestamp, int)
check_type(identifier, str, may_be_none=False)
check_type(search_by, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"timestamp": timestamp,
"identifier": identifier,
"searchBy": search_by,
}
if _params["timestamp"] is None:
_params["timestamp"] = ""
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/device-detail"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_c9ee787eb5a0391309f45ddf392ca_v3_1_6_0", json_data
)
[docs] def get_device_enrichment_details(self, headers=None, **request_parameters):
"""Enriches a given network device context (device id or device Mac Address or device management IP address) with
details about the device and neighbor topology.
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
list: JSON response. A list of MyDict objects.
Access the object's properties by using the dot notation
or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-device-enrichment-details
"""
check_type(headers, dict)
if headers is not None:
if "entity_type" in headers:
check_type(headers.get("entity_type"), str, may_be_none=False)
if "entity_value" in headers:
check_type(headers.get("entity_value"), str, may_be_none=False)
if "__persistbapioutput" in headers:
check_type(headers.get("__persistbapioutput"), bool)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/device-enrichment-details"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_a20c25e0fa518bb186fd7747450ef6_v3_1_6_0", json_data
)
[docs] def devices(
self,
device_role=None,
end_time=None,
health=None,
limit=None,
offset=None,
site_id=None,
start_time=None,
headers=None,
**request_parameters
):
"""Intent API for accessing DNA Assurance Device object for generating reports, creating dashboards or creating
additional value added services.
Args:
device_role(str): deviceRole query parameter. CORE, ACCESS, DISTRIBUTION, ROUTER, WLC, or AP (case
insensitive).
site_id(str): siteId query parameter. DNAC site UUID.
health(str): health query parameter. DNAC health catagory: POOR, FAIR, or GOOD (case insensitive).
start_time(int): startTime query parameter. UTC epoch time in milliseconds.
end_time(int): endTime query parameter. UTC epoch time in milliseconds.
limit(int): limit query parameter. Max number of device entries in the response (default to 50. Max at
500).
offset(int): offset query parameter. The offset of the first device in the returned data (Mutiple of
'limit' + 1).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!devices
"""
check_type(headers, dict)
check_type(device_role, str)
check_type(site_id, str)
check_type(health, str)
check_type(start_time, int)
check_type(end_time, int)
check_type(limit, int)
check_type(offset, int)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"deviceRole": device_role,
"siteId": site_id,
"health": health,
"startTime": start_time,
"endTime": end_time,
"limit": limit,
"offset": offset,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/device-health"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_c75e364632e15384a18063458e2ba0e3_v3_1_6_0", json_data
)
[docs] def fetches_all_discovery_details(
self,
id=None,
limit=None,
name=None,
offset=None,
headers=None,
**request_parameters
):
"""API to fetch the discovery details using basic filters.
Args:
id(str): id query parameter. Optional list of the discovery ids to filter by.
limit(int): limit query parameter. The number of records to show for this page.
name(str): name query parameter. Optional name of the discovery to filter by. This supports partial
search. For example, searching for "Disc" will match "Discovery1", "Discovery2", etc.
offset(int): offset query parameter. The first record to show for this page; the first record is
numbered 1.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!fetches-all-discovery-details
"""
check_type(headers, dict)
check_type(id, str)
check_type(limit, int)
check_type(name, str)
check_type(offset, int)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"id": id,
"limit": limit,
"name": name,
"offset": offset,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/discoverys"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_e57f47555e32a607837eb83bf3c3_v3_1_6_0", json_data
)
[docs] def creates_discovery(
self,
credentials=None,
discoveryTypeDetails=None,
managementIpSelectionMethod=None,
name=None,
onlyNewDevice=None,
updateManagementIp=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""This API creates a discovery. The response includes a task url that provides access to the task's details. By
accessing this URL, users will receive a response containing a resultLocation attribute, which provides
details of the discovery settings that was created, including the discovery id.
Args:
credentials(object): Devices's credentials.
discoveryTypeDetails(object): Devices's discoveryTypeDetails.
managementIpSelectionMethod(string): Devices's When Catalyst Center discovers a device, it uses one of
the device's IP addresses as the preferred management IP address for the device. The IP
address can be that of a built-in management interface of the device, another physical
interface, or a logical interface like Loopback0. You can configure Catalyst Center to
log the device's loopback IP address as the preferred management IP address, provided
the IP address is reachable from Catalyst Center.. Available values are 'DEFAULT,
LOOPBACK'.
name(string): Devices's The name of the discovery job being created. This will be a unique name.
onlyNewDevice(boolean): Devices's This flag indicates to discover only new devices that are not in
inventory. If set to true, only devices that are not in the inventory will be
discovered. If set to false, devices that already exist in the inventory will not be
listed in the discovered devices list.
updateManagementIp(boolean): Devices's This flag indicates if the management IP address of existing
devices to be updated as part of this discovery. If set false devices get discovered
with the existing management IP address. If set true it overwrites the management IP
address with the new IP address used in discovery.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!creates-discovery
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"name": name,
"managementIpSelectionMethod": managementIpSelectionMethod,
"discoveryTypeDetails": discoveryTypeDetails,
"onlyNewDevice": onlyNewDevice,
"updateManagementIp": updateManagementIp,
"credentials": credentials,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_d5ecdc670ebc5bae807f25a53d4e8b7f_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/discoverys"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_d5ecdc670ebc5bae807f25a53d4e8b7f_v3_1_6_0", json_data
)
[docs] def count_the_number_of_discoveries(
self, id=None, name=None, headers=None, **request_parameters
):
"""API to fetch the count of discoveries using basic filters.
Args:
id(str): id query parameter. Optional list of the discovery ids to filter by.
name(str): name query parameter. Optional name of the discovery to filter by. This supports partial
search. For example, searching for "Disc" will match "Discovery1", "Discovery2", etc.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!count-the-number-of-discoveries
"""
check_type(headers, dict)
check_type(id, str)
check_type(name, str)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"id": id,
"name": name,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/discoverys/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_b3dbd0479f145eb5aabafa688b019faf_v3_1_6_0", json_data
)
[docs] def fetches_the_summary_of_all_discoveries_with_latest_jobs(
self, headers=None, **request_parameters
):
"""API to fetch the summary of all discoveries. The response includes the basic details of all discoveries, latest
job status and the number of reachable devices.
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!fetches-the-summary-of-all-discoveries-with-latest-jobs
"""
check_type(headers, dict)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/discoverys/jobs/summarys"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_d5b6cf4fe5628b00d79a402465216_v3_1_6_0", json_data
)
[docs] def fetches_the_discovery_job_details_for_the_given_job_id(
self, discovery_id, job_id, headers=None, **request_parameters
):
"""This API retrieves the details of a specific discovery job using the given job id and discovery id.
Args:
discovery_id(str): discoveryId path parameter. The id of the discovery.
job_id(str): jobId path parameter. The id of the discovery job.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!fetches-the-discovery-job-details-for-the-given-job-id
"""
check_type(headers, dict)
check_type(discovery_id, str, may_be_none=False)
check_type(job_id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"discoveryId": discovery_id,
"jobId": job_id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/discoverys/{discoveryId}/jobs/{jobId}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_dbf7bf70e5556a590074784c2e0c7b1_v3_1_6_0", json_data
)
[docs] def fetches_the_details_of_all_the_devices_discovered_by_the_given_job_id_and_discovery_id(
self,
discovery_id,
job_id,
cli=None,
http=None,
limit=None,
management_ip_address=None,
netconf=None,
offset=None,
ping=None,
reachability_status=None,
snmp=None,
headers=None,
**request_parameters
):
"""API to get the details of all the devices discovered by the given jobId and discoveryId.
Args:
discovery_id(str): discoveryId path parameter. The id of the discovery.
job_id(str): jobId path parameter. The id of the discovery job.
management_ip_address(str): managementIpAddress query parameter. Management IP address of the network
device.
reachability_status(str): reachabilityStatus query parameter. Reachability status of the network device.
ping(str): ping query parameter. Ping status for the IP during the job run.
cli(str): cli query parameter. CLI status for the IP during the job run.
snmp(str): snmp query parameter. SNMP status for the IP during the job run.
http(str): http query parameter. HTTP status for the IP during the job run.
netconf(str): netconf query parameter. Netconf status for the IP during the job run.
limit(int): limit query parameter. The number of records to show for this page.
offset(int): offset query parameter. The first record to show for this page; the first record is
numbered 1.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!fetches-the-details-of-all-the-devices-discovered-by-the-given-job-id-and-discovery-id
"""
check_type(headers, dict)
check_type(management_ip_address, str)
check_type(reachability_status, str)
check_type(ping, str)
check_type(cli, str)
check_type(snmp, str)
check_type(http, str)
check_type(netconf, str)
check_type(limit, int)
check_type(offset, int)
check_type(discovery_id, str, may_be_none=False)
check_type(job_id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"managementIpAddress": management_ip_address,
"reachabilityStatus": reachability_status,
"ping": ping,
"cli": cli,
"snmp": snmp,
"http": http,
"netconf": netconf,
"limit": limit,
"offset": offset,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"discoveryId": discovery_id,
"jobId": job_id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = (
"/dna/intent/api/v1/discoverys/{discoveryId}/jobs/{jobId}"
+ "/discoveredNetworkDevices"
)
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_c16b0a13d2a55b479931ae0fab475cb5_v3_1_6_0", json_data
)
[docs] def count_the_number_of_discovered_network_devices_by_discovery_id(
self,
discovery_id,
job_id,
cli=None,
http=None,
limit=None,
management_ip_address=None,
netconf=None,
offset=None,
ping=None,
reachability_status=None,
snmp=None,
headers=None,
**request_parameters
):
"""API to get the details of all the devices discovered by the given jobId and discoveryId.
Args:
discovery_id(str): discoveryId path parameter. The id of the discovery.
job_id(str): jobId path parameter. The id of the discovery job.
management_ip_address(str): managementIpAddress query parameter. Management IP address of the network
device.
reachability_status(str): reachabilityStatus query parameter. Reachability status of the network device.
ping(str): ping query parameter. Ping status for the IP during the job run.
cli(str): cli query parameter. CLI status for the IP during the job run.
snmp(str): snmp query parameter. SNMP status for the IP during the job run.
http(str): http query parameter. HTTP status for the IP during the job run.
netconf(str): netconf query parameter. Netconf status for the IP during the job run.
limit(int): limit query parameter. The number of records to show for this page.
offset(int): offset query parameter. The first record to show for this page; the first record is
numbered 1.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!count-the-number-of-discovered-network-devices-by-discovery-id
"""
check_type(headers, dict)
check_type(management_ip_address, str)
check_type(reachability_status, str)
check_type(ping, str)
check_type(cli, str)
check_type(snmp, str)
check_type(http, str)
check_type(netconf, str)
check_type(limit, int)
check_type(offset, int)
check_type(discovery_id, str, may_be_none=False)
check_type(job_id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"managementIpAddress": management_ip_address,
"reachabilityStatus": reachability_status,
"ping": ping,
"cli": cli,
"snmp": snmp,
"http": http,
"netconf": netconf,
"limit": limit,
"offset": offset,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"discoveryId": discovery_id,
"jobId": job_id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = (
"/dna/intent/api/v1/discoverys/{discoveryId}/jobs/{jobId}"
+ "/discoveredNetworkDevices/count"
)
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_ccb8d17550e3a75aa606aeee6ed3_v3_1_6_0", json_data
)
[docs] def stops_the_existing_discovery(
self, discovery_id, job_id, headers=None, **request_parameters
):
"""This API is to be used to stop an ongoing discovery job. After initiating discovery with the POST
/dna/intent/api/v1/discoverys/{id}/jobs API, the response will contain a jobId that can be used to stop
that particular discovery job.
Args:
discovery_id(str): discoveryId path parameter. The id of the discovery.
job_id(str): jobId path parameter. The id of the discovery job.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!stops-the-existing-discovery
"""
check_type(headers, dict)
check_type(discovery_id, str, may_be_none=False)
check_type(job_id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"discoveryId": discovery_id,
"jobId": job_id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/discoverys/{discoveryId}/jobs/{jobId}" + "/stop"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.post(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_bbd887834f58fab833d3194555514e_v3_1_6_0", json_data
)
[docs] def deletes_discovery_by_id(self, id, headers=None, **request_parameters):
"""API to delete discovery by the given discovery id.
Args:
id(str): id path parameter. The id of the discovery.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!deletes-discovery-by-id
"""
check_type(headers, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/discoverys/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.delete(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.delete(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_f547d78b6435e6a94e5ec41c70298c0_v3_1_6_0", json_data
)
[docs] def fetches_discovery_details_by_id(self, id, headers=None, **request_parameters):
"""API to get discovery details for the given discovery id.
Args:
id(str): id path parameter. The id of the discovery.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!fetches-discovery-details-by-id
"""
check_type(headers, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/discoverys/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory("bpm_a35e75534805604e0889f1583_v3_1_6_0", json_data)
[docs] def edits_discovery(
self,
id,
credentials=None,
discoveryTypeDetails=None,
managementIpSelectionMethod=None,
onlyNewDevice=None,
updateManagementIp=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""API to edit the discovery details of the given discovery id. Updating the discovery details while the discovery
is in progress is not allowed.
Args:
credentials(object): Devices's credentials.
discoveryTypeDetails(object): Devices's discoveryTypeDetails.
managementIpSelectionMethod(string): Devices's When Catalyst Center discovers a device, it uses one of
the device's IP addresses as the preferred management IP address for the device. The IP
address can be that of a built-in management interface of the device, another physical
interface, or a logical interface like Loopback0. You can configure Catalyst Center to
log the device's loopback IP address as the preferred management IP address, provided
the IP address is reachable from Catalyst Center.. Available values are 'DEFAULT,
LOOPBACK'.
onlyNewDevice(boolean): Devices's This flag indicates to discover only new devices that are not in
inventory. If set to true, only devices that are not in the inventory will be
discovered. If set to false, devices that already exist in the inventory will not be
listed in the discovered devices list.
updateManagementIp(boolean): Devices's This flag indicates if the management IP address of existing
devices to be updated as part of this discovery. If set false devices get discovered
with the existing management IP address. If set true it overwrites the management IP
address with the new IP address used in discovery.
id(str): id path parameter. The id of the discovery.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!edits-discovery
"""
check_type(headers, dict)
check_type(payload, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
_payload = {
"managementIpSelectionMethod": managementIpSelectionMethod,
"discoveryTypeDetails": discoveryTypeDetails,
"onlyNewDevice": onlyNewDevice,
"updateManagementIp": updateManagementIp,
"credentials": credentials,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_cf82058feef35cfabe601c3d51f01740_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/discoverys/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_cf82058feef35cfabe601c3d51f01740_v3_1_6_0", json_data
)
[docs] def fetches_all_the_discovery_job_details_by_discovery_id(
self,
id,
job_id=None,
limit=None,
offset=None,
order_by=None,
headers=None,
**request_parameters
):
"""API to get all the discovery job details by discovery id. A discovery can have multiple discovery jobs, created
against the same discovery id.
Args:
id(str): id path parameter. The id of the discovery.
job_id(str): jobId query parameter. Optional list of the discovery job ids to filter by.
limit(int): limit query parameter. The number of records to show for this page.
offset(int): offset query parameter. The first record to show for this page; the first record is
numbered 1.
order_by(str): orderBy query parameter. To fetch the latest discovery job. use the orderBy query
parameter with values such as startTime or endTime. By default, jobs are ordered by
startTime in descending order to display the most recent entries first.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!fetches-all-the-discovery-job-details-by-discovery-id
"""
check_type(headers, dict)
check_type(job_id, str)
check_type(limit, int)
check_type(offset, int)
check_type(order_by, str)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"jobId": job_id,
"limit": limit,
"offset": offset,
"orderBy": order_by,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/discoverys/{id}/jobs"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_faf4d312916c5aa6b23caccaf2f60d2c_v3_1_6_0", json_data
)
[docs] def starts_the_existing_discovery(self, id, headers=None, **request_parameters):
"""This API starts a discovery job using the given discovery id. The response includes a task url that provides
access to the task's details. By accessing this URL, users will receive a response containing a
resultLocation attribute, which provides details of the discovery job that was started, including the
jobId. A new discovery job is created every time this API is triggered.
Args:
id(str): id path parameter. The id of the discovery.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!starts-the-existing-discovery
"""
check_type(headers, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/discoverys/{id}/jobs"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.post(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_ca023ebd45bc4a916050fc418dd7f_v3_1_6_0", json_data
)
[docs] def count_the_number_of_discovery_jobs_for_given_discovery_id(
self, id, job_id=None, headers=None, **request_parameters
):
"""API to fetch the count of discovery jobs for given discovery id. A discovery can have multiple discovery jobs,
created against the same discovery id.
Args:
id(str): id path parameter. The id of the discovery.
job_id(str): jobId query parameter. Optional list of the discovery job ids to filter by.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!count-the-number-of-discovery-jobs-for-given-discovery-id
"""
check_type(headers, dict)
check_type(job_id, str)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"jobId": job_id,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/discoverys/{id}/jobs/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_ec84f99950b383bbcb694ac2002f_v3_1_6_0", json_data
)
[docs] def delete_filter_group_association(self, id, headers=None, **request_parameters):
"""Deletes the association between filter group and entity. For detailed information about the usage of the API,
please refer to the Open API specification document https://github.com/cisco-en-
programmability/catalyst-center-api-specs/blob/main/Assurance/CE_Cat_Center_Org-
FilterGroups-1.0.0-resolved.yaml.
Args:
id(str): id path parameter. Association id.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-filter-group-association
"""
check_type(headers, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/filterGroupAassociations/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.delete(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.delete(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_a043176bb35f2dba94756a8fbdf68e_v3_1_6_0", json_data
)
[docs] def get_the_filter_group_associations(
self,
entity_id=None,
entity_type=None,
filter_group_id=None,
headers=None,
**request_parameters
):
"""Returns the details of filter group associations for the given parameters. For detailed information about the
usage of the API, please refer to the Open API specification document https://github.com/cisco-en-
programmability/catalyst-center-api-specs/blob/main/Assurance/CE_Cat_Center_Org-
FilterGroups-1.0.0-resolved.yaml.
Args:
filter_group_id(str): filterGroupId query parameter. Filter Group id. Examples:
`?filterGroupId=2ee1b9f0-8036-443b-bad0-7692760af1b5`(single id requested) `?filterGroup
Id=2ee1b9f0-8036-443b-bad0-7692760af1b5&filterGroupId=ae368f0b-f4e3-4e8f-a914-
011cbd19bb51` (multiple ids requested).
entity_id(str): entityId query parameter. Entity id with which the filter group is associated. Examples:
`?entityId=2ee1b9f0-8036-443b-bad0-7692760af1b5`(single id requested) `?entityId=2ee1b9f
0-8036-443b-bad0-7692760af1b5&entityId=ae368f0b-f4e3-4e8f-a914-011cbd19bb51` (multiple
ids requested).
entity_type(str): entityType query parameter. Type of the entity with which the filter group is
associated. Examples: `?entityType=Issue Settings`(single type requested)
`?entityType=Custom Dashboard&entityType=Issue Settings` (multiple types requested).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-the-filter-group-associations
"""
check_type(headers, dict)
check_type(filter_group_id, str)
check_type(entity_id, str)
check_type(entity_type, str)
if headers is not None:
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"filterGroupId": filter_group_id,
"entityId": entity_id,
"entityType": entity_type,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/filterGroupAssociations"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_c44db9c3340579198ce6b231439d6bd_v3_1_6_0", json_data
)
[docs] def create_filter_group_association(
self,
entityId=None,
entityName=None,
entityType=None,
filterGroupId=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Creates association between a filter group and entity. For detailed information about the usage of the API,
please refer to the Open API specification document https://github.com/cisco-en-
programmability/catalyst-center-api-specs/blob/main/Assurance/CE_Cat_Center_Org-
FilterGroups-1.0.0-resolved.yaml.
Args:
entityId(string): Devices's Entity Id.
entityName(string): Devices's Entity Name.
entityType(string): Devices's Entity Type.
filterGroupId(string): Devices's Filter Group Id.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!create-filter-group-association
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"filterGroupId": filterGroupId,
"entityId": entityId,
"entityName": entityName,
"entityType": entityType,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_bc35f54af11e5b83a81c25927d1a10b5_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/filterGroupAssociations"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_bc35f54af11e5b83a81c25927d1a10b5_v3_1_6_0", json_data
)
[docs] def get_the_filter_groups_for_given_search_criteria(
self,
id=None,
limit=None,
name=None,
offset=None,
type=None,
headers=None,
**request_parameters
):
"""Returns the details of filter groups for given search criteria specified in query parameters. For detailed
information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-FilterGroups-1.0.0-resolved.yaml.
Args:
id(str): id query parameter. Filter Group id. Examples:
`?id=2ee1b9f0-8036-443b-bad0-7692760af1b5`(single id requested)
`?id=2ee1b9f0-8036-443b-bad0-7692760af1b5&id=ae368f0b-f4e3-4e8f-a914-011cbd19bb51`
(multiple ids requested).
name(str): name query parameter. Filter Group name. Examples: `?name=SJC Wireless`(single name
requested) `?name=SJC Wireless&name=Global Wired` (multiple names requested).
type(str): type query parameter. Type of the filter group. Examples: type=Generic (single Filter Group
type requested) type=Generic&type=Site (multiple Filter Group types requested).
offset(int): offset query parameter. Specifies the starting point within all records returned by the
API. It's one based offset. The starting value is 1.
limit(int): limit query parameter. Maximum number of records to return.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-the-filter-groups-for-given-search-criteria
"""
check_type(headers, dict)
check_type(id, str)
check_type(name, str)
check_type(type, str)
check_type(offset, int)
check_type(limit, int)
if headers is not None:
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"id": id,
"name": name,
"type": type,
"offset": offset,
"limit": limit,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/filterGroups"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_c44f41d6d561bb2a687325b094257_v3_1_6_0", json_data
)
[docs] def create_filter_group(
self,
filters=None,
name=None,
type=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Creates filter group with given filters. For detailed information about the usage of the API, please refer to
the Open API specification document https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-FilterGroups-1.0.0-resolved.yaml.
Args:
filters(list): Devices's filters (list of objects).
name(string): Devices's Name.
type(string): Devices's Type.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!create-filter-group
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"name": name,
"type": type,
"filters": filters,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_d6866f768b05f8aa12a142ec526f432_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/filterGroups"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_d6866f768b05f8aa12a142ec526f432_v3_1_6_0", json_data
)
[docs] def delete_a_filter_group(self, id, headers=None, **request_parameters):
"""Deletes the given filter group. For detailed information about the usage of the API, please refer to the Open
API specification document https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-FilterGroups-1.0.0-resolved.yaml.
Args:
id(str): id path parameter. The id of the filter group to be deleted.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-a-filter-group
"""
check_type(headers, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/filterGroups/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.delete(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.delete(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_a4c1fbb8bd1f55cdb284c431f16660e9_v3_1_6_0", json_data
)
[docs] def get_the_filter_group_details_for_the_given_id(
self, id, headers=None, **request_parameters
):
"""Returns the details of filter group for the given id. For detailed information about the usage of the API,
please refer to the Open API specification document https://github.com/cisco-en-
programmability/catalyst-center-api-specs/blob/main/Assurance/CE_Cat_Center_Org-
FilterGroups-1.0.0-resolved.yaml.
Args:
id(str): id path parameter. Filter Group id.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-the-filter-group-details-for-the-given-id
"""
check_type(headers, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/filterGroups/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_aa70871243c557adb53eb50be2d89f65_v3_1_6_0", json_data
)
[docs] def update_filter_group(
self,
id,
filters=None,
name=None,
type=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Updates the filter group for given id. The request payload should contain complete definition of the Filter
Group. For detailed information about the usage of the API, please refer to the Open API specification
document https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-FilterGroups-1.0.0-resolved.yaml.
Args:
filters(list): Devices's filters (list of objects).
name(string): Devices's Name.
type(string): Devices's Type.
id(str): id path parameter. The id of the filter group to be updated.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-filter-group
"""
check_type(headers, dict)
check_type(payload, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
_payload = {
"name": name,
"type": type,
"filters": filters,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_a69602efc6f4523d806ffb18fbcf5cee_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/filterGroups/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_a69602efc6f4523d806ffb18fbcf5cee_v3_1_6_0", json_data
)
[docs] def get_planned_access_points_for_floor(
self,
floor_id,
limit=None,
offset=None,
radios=None,
headers=None,
**request_parameters
):
"""Provides a list of Planned Access Points for the Floor it is requested for.
Args:
floor_id(str): floorId path parameter. The instance UUID of the floor hierarchy element.
limit(int): limit query parameter. The number of records to show for this page;The minimum is 1, and the
maximum is 500.
offset(int): offset query parameter. The page offset for the response. E.g. if limit=100, offset=0 will
return first 100 records, offset=1 will return next 100 records, etc.
radios(bool): radios query parameter. Whether to include the planned radio details of the planned access
points.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-planned-access-points-for-floor
"""
check_type(headers, dict)
check_type(limit, int)
check_type(offset, int)
check_type(radios, bool)
check_type(floor_id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"limit": limit,
"offset": offset,
"radios": radios,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"floorId": floor_id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/floors/{floorId}/planned-access-" + "points"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_a570c5ee77b59d8b9cd203e566288e1_v3_1_6_0", json_data
)
[docs] def create_planned_access_point_for_floor(
self,
floor_id,
attributes=None,
isSensor=None,
location=None,
position=None,
radioCount=None,
radios=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Allows creation of a new planned access point on an existing floor map including its planned radio and antenna
details. Use the Get variant of this API to fetch any existing planned access points for the floor.
The payload to create a planned access point is in the same format, albeit a single object instead of a
list, of that API.
Args:
attributes(object): Devices's attributes.
isSensor(boolean): Devices's Indicates that PAP is a sensor.
location(object): Devices's location.
position(object): Devices's position.
radioCount(integer): Devices's Number of radios of the planned access point.
radios(list): Devices's radios (list of objects).
floor_id(str): floorId path parameter. The instance UUID of the floor hierarchy element.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!create-planned-access-point-for-floor
"""
check_type(headers, dict)
check_type(payload, dict)
check_type(floor_id, str, may_be_none=False)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"floorId": floor_id,
}
_payload = {
"attributes": attributes,
"isSensor": isSensor,
"location": location,
"position": position,
"radioCount": radioCount,
"radios": radios,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_ca2fe989a227585086452d24d32867a6_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/floors/{floorId}/planned-access-" + "points"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_ca2fe989a227585086452d24d32867a6_v3_1_6_0", json_data
)
[docs] def update_planned_access_point_for_floor(
self,
floor_id,
attributes=None,
isSensor=None,
location=None,
position=None,
radioCount=None,
radios=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Allows updating a planned access point on an existing floor map including its planned radio and antenna details.
Use the Get variant of this API to fetch the existing planned access points for the floor. The payload
to update a planned access point is in the same format, albeit a single object instead of a list, of
that API.
Args:
attributes(object): Devices's attributes.
isSensor(boolean): Devices's Indicates that PAP is a sensor.
location(object): Devices's location.
position(object): Devices's position.
radioCount(integer): Devices's Number of radios of the planned access point.
radios(list): Devices's radios (list of objects).
floor_id(str): floorId path parameter. The instance UUID of the floor hierarchy element.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-planned-access-point-for-floor
"""
check_type(headers, dict)
check_type(payload, dict)
check_type(floor_id, str, may_be_none=False)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"floorId": floor_id,
}
_payload = {
"attributes": attributes,
"isSensor": isSensor,
"location": location,
"position": position,
"radioCount": radioCount,
"radios": radios,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_f6f9dde38ce458fcaf27ffd4f84bfe68_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/floors/{floorId}/planned-access-" + "points"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_f6f9dde38ce458fcaf27ffd4f84bfe68_v3_1_6_0", json_data
)
[docs] def delete_planned_access_point_for_floor(
self, floor_id, planned_access_point_uuid, headers=None, **request_parameters
):
"""Allow to delete a planned access point from an existing floor map including its planned radio and antenna
details. Use the Get variant of this API to fetch the existing planned access points for the floor.
The instanceUUID listed in each of the planned access point attributes acts as the path param input to
this API to delete that specific instance.
Args:
floor_id(str): floorId path parameter. The instance UUID of the floor hierarchy element.
planned_access_point_uuid(str): plannedAccessPointUuid path parameter. The instance UUID of the planned
access point to delete.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-planned-access-point-for-floor
"""
check_type(headers, dict)
check_type(floor_id, str, may_be_none=False)
check_type(planned_access_point_uuid, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"floorId": floor_id,
"plannedAccessPointUuid": planned_access_point_uuid,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = (
"/dna/intent/api/v1/floors/{floorId}/planned-access-"
+ "points/{plannedAccessPointUuid}"
)
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.delete(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.delete(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_cb644669ab8d5955826d23197015e208_v3_1_6_0", json_data
)
[docs] def get_all_health_score_definitions_for_given_filters(
self,
attribute=None,
device_type=None,
id=None,
include_for_overall_health=None,
limit=None,
offset=None,
headers=None,
**request_parameters
):
"""Get all health score defintions. Supported filters are id, name and overall health include status. A health
score definition can be different across device type. So, deviceType in the query param is important and
default is all device types. By default all supported attributes are listed in response. For detailed
information about the usage of the API, please refer to the Open API specification document
https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-issueAndHealthDefinitions-1.0.0-resolved.yaml.
Args:
device_type(str): deviceType query parameter. These are the device families supported for health score
definitions. If no input is made on device family, all device families are considered.
id(str): id query parameter. The definition identifier. Examples:
id=015d9cba-4f53-4087-8317-7e49e5ffef46 (single entity id request)
id=015d9cba-4f53-4087-8317-7e49e5ffef46&id=015d9cba-4f53-4087-8317-7e49e5ffef47
(multiple ids in the query param).
include_for_overall_health(bool): includeForOverallHealth query parameter. The inclusion status of the
issue definition, either true or false. true indicates that particular health metric is
included in overall health computation, otherwise false. By default it's set to true.
attribute(str): attribute query parameter. These are the attributes supported in health score
definitions response. By default, all properties are sent in response.
offset(int): offset query parameter. Specifies the starting point within all records returned by the
API. It's one based offset. The starting value is 1.
limit(int): limit query parameter. Maximum number of records to return.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-all-health-score-definitions-for-given-filters
"""
check_type(headers, dict)
check_type(device_type, str)
check_type(id, str)
check_type(include_for_overall_health, bool)
check_type(attribute, str)
check_type(offset, int)
check_type(limit, int)
if headers is not None:
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"deviceType": device_type,
"id": id,
"includeForOverallHealth": include_for_overall_health,
"attribute": attribute,
"offset": offset,
"limit": limit,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/healthScoreDefinitions"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_dea15738b550f3b147965f64050c97_v3_1_6_0", json_data
)
[docs] def update_health_score_definitions(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Update health thresholds, include status of overall health status for each metric. And also to synchronize with
global profile issue thresholds of the definition for given metric. For detailed information about the
usage of the API, please refer to the Open API specification document https://github.com/cisco-en-
programmability/catalyst-center-api-specs/blob/main/Assurance/CE_Cat_Center_Org-
issueAndHealthDefinitions-1.0.0-resolved.yaml.
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(list): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-health-score-definitions
"""
check_type(headers, dict)
check_type(payload, list)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = payload or []
if active_validation:
self._request_validator(
"jsd_b08f499f995f5f46ba52e0385b54721a_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/healthScoreDefinitions/bulkUpdate"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_b08f499f995f5f46ba52e0385b54721a_v3_1_6_0", json_data
)
[docs] def get_the_count_of_health_score_definitions_based_on_provided_filters(
self,
device_type=None,
id=None,
include_for_overall_health=None,
headers=None,
**request_parameters
):
"""Get the count of health score definitions based on provided filters. Supported filters are id, name and overall
health include status. For detailed information about the usage of the API, please refer to the Open API
specification document https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-issueAndHealthDefinitions-1.0.0-resolved.yaml.
Args:
device_type(str): deviceType query parameter. These are the device families supported for health score
definitions. If no input is made on device family, all device families are considered.
id(str): id query parameter. The definition identifier. Examples:
id=015d9cba-4f53-4087-8317-7e49e5ffef46 (single entity id request)
id=015d9cba-4f53-4087-8317-7e49e5ffef46&id=015d9cba-4f53-4087-8317-7e49e5ffef47
(multiple ids in the query param).
include_for_overall_health(bool): includeForOverallHealth query parameter. The inclusion status of the
issue definition, either true or false. true indicates that particular health metric is
included in overall health computation, otherwise false. By default it's set to true.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-the-count-of-health-score-definitions-based-on-provided-filters
"""
check_type(headers, dict)
check_type(device_type, str)
check_type(id, str)
check_type(include_for_overall_health, bool)
if headers is not None:
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"deviceType": device_type,
"id": id,
"includeForOverallHealth": include_for_overall_health,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/healthScoreDefinitions/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_d7eefccfc590dae32a123469f9fe3_v3_1_6_0", json_data
)
[docs] def get_health_score_definition_for_the_given_id(
self, id, headers=None, **request_parameters
):
"""Get health score defintion for the given id. Definition includes all properties from HealthScoreDefinition
schema by default. For detailed information about the usage of the API, please refer to the Open API
specification document https://github.com/cisco-en-programmability/catalyst-center-api-
specs/blob/main/Assurance/CE_Cat_Center_Org-issueAndHealthDefinitions-1.0.0-resolved.yaml.
Args:
id(str): id path parameter. Health score definition id.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-health-score-definition-for-the-given-id
"""
check_type(headers, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/healthScoreDefinitions/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_d2a0bbce2c5b6ba0b4aee3248ace42_v3_1_6_0", json_data
)
[docs] def update_health_score_definition_for_the_given_id(
self,
id,
includeForOverallHealth=None,
synchronizeToIssueThreshold=None,
thresholdValue=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Update health threshold, include status of overall health status. And also to synchronize with global profile
issue thresholds of the definition for given id. For detailed information about the usage of the API,
please refer to the Open API specification document https://github.com/cisco-en-
programmability/catalyst-center-api-specs/blob/main/Assurance/CE_Cat_Center_Org-
issueAndHealthDefinitions-1.0.0-resolved.yaml.
Args:
includeForOverallHealth(boolean): Devices's Include For Overall Health.
synchronizeToIssueThreshold(boolean): Devices's Synchronize To Issue Threshold.
thresholdValue(number): Devices's Thresehold Value.
id(str): id path parameter. Health score definition id.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-health-score-definition-for-the-given-id
"""
check_type(headers, dict)
check_type(payload, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-CALLER-ID" in headers:
check_type(headers.get("X-CALLER-ID"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
_payload = {
"includeForOverallHealth": includeForOverallHealth,
"thresholdValue": thresholdValue,
"synchronizeToIssueThreshold": synchronizeToIssueThreshold,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_b4f52e69ddca5b2583b28fb4c96447aa_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/healthScoreDefinitions/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_b4f52e69ddca5b2583b28fb4c96447aa_v3_1_6_0", json_data
)
[docs] def get_all_interfaces(
self,
last_input_time=None,
last_output_time=None,
limit=None,
offset=None,
headers=None,
**request_parameters
):
"""Returns all available interfaces. This endpoint can return a maximum of 500 interfaces. The API returns a
paginated response based on 'limit' and 'offset' parameters, allowing up to 500 records per page.
'limit' specifies the number of records, and 'offset' sets the starting point using 1-based indexing.
Use '/dna/intent/api/v1/interface/count' to get the total record count. For data sets over 500 records,
make multiple calls, adjusting 'limit' and 'offset' to retrieve all records incrementally.
Args:
offset(int): offset query parameter.
limit(int): limit query parameter. The number of records to show for this page. Min: 1, Max: 500.
last_input_time(str): lastInputTime query parameter. Last Input Time.
last_output_time(str): lastOutputTime query parameter. Last Output Time.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-all-interfaces
"""
check_type(headers, dict)
check_type(offset, int)
check_type(limit, int)
check_type(last_input_time, str)
check_type(last_output_time, str)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"offset": offset,
"limit": limit,
"lastInputTime": last_input_time,
"lastOutputTime": last_output_time,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/interface"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_d3d71136d95562afc211b40004d109_v3_1_6_0", json_data
)
[docs] def get_device_interface_count(self, headers=None, **request_parameters):
"""Returns the count of interfaces for all devices.
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-device-interface-count-for-multiple-devices
"""
check_type(headers, dict)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/interface/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_da44fbc3e415a99aac0bdd291e9a87a_v3_1_6_0", json_data
)
[docs] def get_interface_by_ip(self, ip_address, headers=None, **request_parameters):
"""Returns list of interfaces for specified device management IP address.
Args:
ip_address(str): ipAddress path parameter. IP address of the interface.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-interface-by-i-p
"""
check_type(headers, dict)
check_type(ip_address, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"ipAddress": ip_address,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/interface/ip-address/{ipAddress}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_cf7fa95e3ed4527aa5ba8ca871a8c142_v3_1_6_0", json_data
)
[docs] def get_isis_interfaces(self, headers=None, **request_parameters):
"""Returns the interfaces that has ISIS enabled.
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-i-s-i-s-interfaces
"""
check_type(headers, dict)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/interface/isis"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_af71ea437c8755869b00d26ba9234dff_v3_1_6_0", json_data
)
[docs] def get_interface_info_by_id(self, device_id, headers=None, **request_parameters):
"""Returns list of interfaces by specified device.
Args:
device_id(str): deviceId path parameter. Device ID.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-interface-info-by-id
"""
check_type(headers, dict)
check_type(device_id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"deviceId": device_id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/interface/network-device/{deviceId}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_e057192b97615f0d99a10e2b66bab13a_v3_1_6_0", json_data
)
[docs] def get_device_interface_count_by_id(
self, device_id, headers=None, **request_parameters
):
"""Returns the interface count for the given device.
Args:
device_id(str): deviceId path parameter. Device ID.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-device-interface-count
"""
check_type(headers, dict)
check_type(device_id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"deviceId": device_id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/interface/network-" + "device/{deviceId}/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_b7d6c62ea6522081fcf55de7eb9fd7_v3_1_6_0", json_data
)
[docs] def get_interface_details(
self, device_id, name, headers=None, **request_parameters
):
"""Returns interface by specified device Id and interface name.
Args:
device_id(str): deviceId path parameter. Device ID.
name(str): name query parameter. Interface name.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-interface-details-by-device-id-and-interface-name
"""
check_type(headers, dict)
check_type(name, str, may_be_none=False)
check_type(device_id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"name": name,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"deviceId": device_id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = (
"/dna/intent/api/v1/interface/network-" + "device/{deviceId}/interface-name"
)
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_bef9e9b306085d879b877598fad71b51_v3_1_6_0", json_data
)
[docs] def get_device_interfaces_by_specified_range(
self,
device_id,
records_to_return,
start_index,
headers=None,
**request_parameters
):
"""Returns the list of interfaces for the device for the specified range.
Args:
device_id(str): deviceId path parameter. Device ID.
start_index(int): startIndex path parameter. Start index.
records_to_return(int): recordsToReturn path parameter. Number of records to return.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-device-interfaces-by-specified-range
"""
check_type(headers, dict)
check_type(device_id, str, may_be_none=False)
check_type(start_index, int, may_be_none=False)
check_type(records_to_return, int, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"deviceId": device_id,
"startIndex": start_index,
"recordsToReturn": records_to_return,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = (
"/dna/intent/api/v1/interface/network-"
+ "device/{deviceId}/{startIndex}/{recordsToReturn}"
)
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_a3d52c630ba5deaada16fe3b07af744_v3_1_6_0", json_data
)
[docs] def get_ospf_interfaces(self, headers=None, **request_parameters):
"""Returns the interfaces that has OSPF enabled.
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-o-s-p-f-interfaces
"""
check_type(headers, dict)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/interface/ospf"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_a2868ff45f5621965f6ece01a742ce_v3_1_6_0", json_data
)
[docs] def get_interface_by_id(self, id, headers=None, **request_parameters):
"""Returns the interface for the given interface ID.
Args:
id(str): id path parameter. Interface ID.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-interface-by-id
"""
check_type(headers, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/interface/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_b16bff74ae54ca88a02b34df169218_v3_1_6_0", json_data
)
[docs] def update_interface_details(
self,
interface_uuid,
adminStatus=None,
deployment_mode=None,
description=None,
vlanId=None,
voiceVlanId=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Add/Update Interface description, VLAN membership, Voice VLAN and change Interface admin status ('UP'/'DOWN')
from Request body.
Args:
adminStatus(string): Devices's Admin status as ('UP'/'DOWN').
description(string): Devices's Description for the Interface.
vlanId(integer): Devices's VLAN Id to be Updated.
voiceVlanId(integer): Devices's Voice Vlan Id to be Updated.
interface_uuid(str): interfaceUuid path parameter. Interface ID.
deployment_mode(str): deploymentMode query parameter. Preview/Deploy ['Preview' means the configuration
is not pushed to the device. 'Deploy' makes the configuration pushed to the device].
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-interface-details
"""
check_type(headers, dict)
check_type(payload, dict)
check_type(deployment_mode, str)
check_type(interface_uuid, str, may_be_none=False)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"deploymentMode": deployment_mode,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"interfaceUuid": interface_uuid,
}
_payload = {
"description": description,
"adminStatus": adminStatus,
"vlanId": vlanId,
"voiceVlanId": voiceVlanId,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator("jsd_b887c55faaca726bbe4ac2564_v3_1_6_0").validate(
_payload
)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/interface/{interfaceUuid}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory("bpm_b887c55faaca726bbe4ac2564_v3_1_6_0", json_data)
[docs] def legit_operations_for_interface(
self, interface_uuid, headers=None, **request_parameters
):
"""Get list of all properties & operations valid for an interface.
Args:
interface_uuid(str): interfaceUuid path parameter. Interface ID.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!legit-operations-for-interface
"""
check_type(headers, dict)
check_type(interface_uuid, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"interfaceUuid": interface_uuid,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/interface/{interfaceUuid}/legit-" + "operation"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_fe6d62edcec25921926043ca25f75bed_v3_1_6_0", json_data
)
[docs] def clear_mac_address_table(
self,
interface_uuid,
deployment_mode=None,
operation=None,
payload=None,
headers=None,
active_validation=True,
**request_parameters
):
"""Clear mac-address on an individual port. In request body, operation needs to be specified as 'ClearMacAddress'.
In the future more possible operations will be added to this API.
Args:
operation(string): Devices's Operation needs to be specified as 'ClearMacAddress'.
payload(object): Devices's payload.
interface_uuid(str): interfaceUuid path parameter. Interface Id.
deployment_mode(str): deploymentMode query parameter. Preview/Deploy ['Preview' means the configuration
is not pushed to the device. 'Deploy' makes the configuration pushed to the device].
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!clear-mac-address-table
"""
check_type(headers, dict)
check_type(payload, dict)
check_type(deployment_mode, str)
check_type(interface_uuid, str, may_be_none=False)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"deploymentMode": deployment_mode,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"interfaceUuid": interface_uuid,
}
_payload = {
"operation": operation,
"payload": payload,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_e702d5786552992aa76b930780569_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/interface/{interfaceUuid}/operation"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_e702d5786552992aa76b930780569_v3_1_6_0", json_data
)
[docs] def get_device_list(
self,
associated_wlc_ip=None,
collection_interval=None,
collection_status=None,
device_support_level=None,
error_code=None,
error_description=None,
family=None,
hostname=None,
id=None,
license_name=None,
license_status=None,
license_type=None,
limit=None,
location=None,
location_name=None,
mac_address=None,
management_ip_address=None,
module_equpimenttype=None,
module_name=None,
module_operationstatecode=None,
module_partnumber=None,
module_servicestate=None,
module_vendorequipmenttype=None,
not_synced_for_minutes=None,
offset=None,
platform_id=None,
reachability_status=None,
role=None,
serial_number=None,
series=None,
software_type=None,
software_version=None,
type=None,
up_time=None,
headers=None,
**request_parameters
):
"""Returns list of network devices based on filter criteria such as management IP address, mac address, hostname,
etc. You can use the .* in any value to conduct a wildcard search. For example, to find all hostnames
beginning with myhost in the IP address range 192.25.18.n, issue the following request: GET
/dna/intent/api/v1/network-device?hostname=myhost.*&managementIpAddress=192.25.18..* If id parameter is
provided with comma separated ids, it will return the list of network-devices for the given ids and
ignores the other request parameters. The API returns a paginated response based on 'limit' and 'offset'
parameters, allowing up to 500 records per page. 'limit' specifies the number of records, and 'offset'
sets the starting point using 1-based indexing. Use '/dna/intent/api/v1/network-device/count' to get the
total record count. For data sets over 500 records, make multiple calls, adjusting 'limit' and 'offset'
to retrieve all records incrementally.
Args:
hostname(list, set, str, tuple): hostname query parameter.
management_ip_address(list, set, str, tuple): managementIpAddress query parameter.
mac_address(list, set, str, tuple): macAddress query parameter.
location_name(list, set, str, tuple): locationName query parameter.
serial_number(list, set, str, tuple): serialNumber query parameter.
location(list, set, str, tuple): location query parameter.
family(list, set, str, tuple): family query parameter.
type(list, set, str, tuple): type query parameter.
series(list, set, str, tuple): series query parameter.
collection_status(list, set, str, tuple): collectionStatus query parameter.
collection_interval(list, set, str, tuple): collectionInterval query parameter.
not_synced_for_minutes(list, set, str, tuple): notSyncedForMinutes query parameter.
error_code(list, set, str, tuple): errorCode query parameter.
error_description(list, set, str, tuple): errorDescription query parameter.
software_version(list, set, str, tuple): softwareVersion query parameter.
software_type(list, set, str, tuple): softwareType query parameter.
platform_id(list, set, str, tuple): platformId query parameter.
role(list, set, str, tuple): role query parameter.
reachability_status(list, set, str, tuple): reachabilityStatus query parameter.
up_time(list, set, str, tuple): upTime query parameter.
associated_wlc_ip(list, set, str, tuple): associatedWlcIp query parameter.
license_name(list, set, str, tuple): license.name query parameter.
license_type(list, set, str, tuple): license.type query parameter.
license_status(list, set, str, tuple): license.status query parameter.
module_name(list, set, str, tuple): module+name query parameter.
module_equpimenttype(list, set, str, tuple): module+equpimenttype query parameter.
module_servicestate(list, set, str, tuple): module+servicestate query parameter.
module_vendorequipmenttype(list, set, str, tuple): module+vendorequipmenttype query parameter.
module_partnumber(list, set, str, tuple): module+partnumber query parameter.
module_operationstatecode(list, set, str, tuple): module+operationstatecode query parameter.
id(str): id query parameter. Accepts comma separated ids and return list of network-devices for the
given ids. If invalid or not-found ids are provided, null entry will be returned in the
list.
device_support_level(str): deviceSupportLevel query parameter.
offset(int): offset query parameter. offset >= 1 [X gives results from Xth device onwards].
limit(int): limit query parameter. The number of records to show for this page. Min: 1, Max: 500.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-device-list
"""
check_type(headers, dict)
check_type(hostname, (list, set, str, tuple))
check_type(management_ip_address, (list, set, str, tuple))
check_type(mac_address, (list, set, str, tuple))
check_type(location_name, (list, set, str, tuple))
check_type(serial_number, (list, set, str, tuple))
check_type(location, (list, set, str, tuple))
check_type(family, (list, set, str, tuple))
check_type(type, (list, set, str, tuple))
check_type(series, (list, set, str, tuple))
check_type(collection_status, (list, set, str, tuple))
check_type(collection_interval, (list, set, str, tuple))
check_type(not_synced_for_minutes, (list, set, str, tuple))
check_type(error_code, (list, set, str, tuple))
check_type(error_description, (list, set, str, tuple))
check_type(software_version, (list, set, str, tuple))
check_type(software_type, (list, set, str, tuple))
check_type(platform_id, (list, set, str, tuple))
check_type(role, (list, set, str, tuple))
check_type(reachability_status, (list, set, str, tuple))
check_type(up_time, (list, set, str, tuple))
check_type(associated_wlc_ip, (list, set, str, tuple))
check_type(license_name, (list, set, str, tuple))
check_type(license_type, (list, set, str, tuple))
check_type(license_status, (list, set, str, tuple))
check_type(module_name, (list, set, str, tuple))
check_type(module_equpimenttype, (list, set, str, tuple))
check_type(module_servicestate, (list, set, str, tuple))
check_type(module_vendorequipmenttype, (list, set, str, tuple))
check_type(module_partnumber, (list, set, str, tuple))
check_type(module_operationstatecode, (list, set, str, tuple))
check_type(id, str)
check_type(device_support_level, str)
check_type(offset, int)
check_type(limit, int)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"hostname": hostname,
"managementIpAddress": management_ip_address,
"macAddress": mac_address,
"locationName": location_name,
"serialNumber": serial_number,
"location": location,
"family": family,
"type": type,
"series": series,
"collectionStatus": collection_status,
"collectionInterval": collection_interval,
"notSyncedForMinutes": not_synced_for_minutes,
"errorCode": error_code,
"errorDescription": error_description,
"softwareVersion": software_version,
"softwareType": software_type,
"platformId": platform_id,
"role": role,
"reachabilityStatus": reachability_status,
"upTime": up_time,
"associatedWlcIp": associated_wlc_ip,
"license.name": license_name,
"license.type": license_type,
"license.status": license_status,
"module+name": module_name,
"module+equpimenttype": module_equpimenttype,
"module+servicestate": module_servicestate,
"module+vendorequipmenttype": module_vendorequipmenttype,
"module+partnumber": module_partnumber,
"module+operationstatecode": module_operationstatecode,
"id": id,
"deviceSupportLevel": device_support_level,
"offset": offset,
"limit": limit,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_fe602e8165035b5cbc304fada4ee2f26_v3_1_6_0", json_data
)
[docs] def add_device(
self,
cliTransport=None,
computeDevice=None,
enablePassword=None,
extendedDiscoveryInfo=None,
httpPassword=None,
httpPort=None,
httpSecure=None,
httpUserName=None,
ipAddress=None,
merakiOrgId=None,
netconfPort=None,
password=None,
serialNumber=None,
snmpAuthPassphrase=None,
snmpAuthProtocol=None,
snmpMode=None,
snmpPrivPassphrase=None,
snmpPrivProtocol=None,
snmpROCommunity=None,
snmpRWCommunity=None,
snmpRetry=None,
snmpTimeout=None,
snmpUserName=None,
snmpVersion=None,
type=None,
userName=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Adds the device with given credential.
Args:
cliTransport(string): Devices's CLI transport. Supported values: telnet, ssh. Required if type is
NETWORK_DEVICE.
computeDevice(boolean): Devices's Compute Device or not. Options are true / false.
enablePassword(string): Devices's CLI enable password of the device. Required if device is configured to
use enable password.
extendedDiscoveryInfo(string): Devices's This field holds that info as whether to add device with canned
data or not. Supported values: DISCOVER_WITH_CANNED_DATA.
httpPassword(string): Devices's HTTP password of the device / API key for Meraki Dashboard. Required if
type is MERAKI_DASHBOARD or COMPUTE_DEVICE.
httpPort(string): Devices's HTTP port of the device. Required if type is COMPUTE_DEVICE.
httpSecure(boolean): Devices's Flag to select HTTP / HTTPS protocol. Options are true / false. true for
HTTPS and false for HTTP. Default is true.
httpUserName(string): Devices's HTTP Username of the device. Required if type is COMPUTE_DEVICE.
ipAddress(list): Devices's IP Address of the device. Required if type is NETWORK_DEVICE, COMPUTE_DEVICE
or THIRD_PARTY_DEVICE. (list of strings).
merakiOrgId(list): Devices's Selected Meraki organization for which the devices needs to be imported.
Required if type is MERAKI_DASHBOARD. (list of strings).
netconfPort(string): Devices's Netconf Port of the device. cliTransport must be 'ssh' if netconf is
provided. Netconf port is required for eWLC.
password(string): Devices's CLI Password of the device. Required if type is NETWORK_DEVICE.
serialNumber(string): Devices's Serial Number of the Device. Required if extendedDiscoveryInfo is
'DISCOVER_WITH_CANNED_DATA'.
snmpAuthPassphrase(string): Devices's SNMPv3 auth passphrase of the device. Required if snmpMode is
authNoPriv or authPriv.
snmpAuthProtocol(string): Devices's SNMPv3 auth protocol. Supported values: sha, md5. Required if
snmpMode is authNoPriv or authPriv.
snmpMode(string): Devices's SNMPv3 mode. Supported values: noAuthnoPriv, authNoPriv, authPriv. Required
if snmpVersion is v3.
snmpPrivPassphrase(string): Devices's SNMPv3 priv passphrase. Required if snmpMode is authPriv.
snmpPrivProtocol(string): Devices's SNMPv3 priv protocol. Supported values: AES128. Required if snmpMode
is authPriv.
snmpROCommunity(string): Devices's SNMP Read Community of the device. If snmpVersion is v2, at least one
of snmpROCommunity and snmpRWCommunity is required.
snmpRWCommunity(string): Devices's SNMP Write Community of the device. If snmpVersion is v2, at least
one of snmpROCommunity and snmpRWCommunity is required.
snmpRetry(integer): Devices's SNMP retry count. Max value supported is 3. Default is Global SNMP retry
(if exists) or 3.
snmpTimeout(integer): Devices's SNMP timeout in seconds. Max value supported is 300. Default is Global
SNMP timeout (if exists) or 5.
snmpUserName(string): Devices's SNMPV3 user name of the device. Required if snmpVersion is v3.
snmpVersion(string): Devices's SNMP version. Values supported: v2, v3. Required if type is
NETWORK_DEVICE, COMPUTE_DEVICE or THIRD_PARTY_DEVICE.
type(string): Devices's Type of device being added. Default is NETWORK_DEVICE.. Available values are
'COMPUTE_DEVICE', 'MERAKI_DASHBOARD', 'THIRD_PARTY_DEVICE' and 'NETWORK_DEVICE'.
userName(string): Devices's CLI user name of the device. Required if type is NETWORK_DEVICE.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-device
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"cliTransport": cliTransport,
"computeDevice": computeDevice,
"enablePassword": enablePassword,
"extendedDiscoveryInfo": extendedDiscoveryInfo,
"httpPassword": httpPassword,
"httpPort": httpPort,
"httpSecure": httpSecure,
"httpUserName": httpUserName,
"ipAddress": ipAddress,
"merakiOrgId": merakiOrgId,
"netconfPort": netconfPort,
"password": password,
"serialNumber": serialNumber,
"snmpAuthPassphrase": snmpAuthPassphrase,
"snmpAuthProtocol": snmpAuthProtocol,
"snmpMode": snmpMode,
"snmpPrivPassphrase": snmpPrivPassphrase,
"snmpPrivProtocol": snmpPrivProtocol,
"snmpROCommunity": snmpROCommunity,
"snmpRWCommunity": snmpRWCommunity,
"snmpRetry": snmpRetry,
"snmpTimeout": snmpTimeout,
"snmpUserName": snmpUserName,
"snmpVersion": snmpVersion,
"type": type,
"userName": userName,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_fe3ec7651e79d891fce37a0d860_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_fe3ec7651e79d891fce37a0d860_v3_1_6_0", json_data
)
[docs] def sync_devices(
self,
cliTransport=None,
computeDevice=None,
enablePassword=None,
extendedDiscoveryInfo=None,
httpPassword=None,
httpPort=None,
httpSecure=None,
httpUserName=None,
ipAddress=None,
merakiOrgId=None,
netconfPort=None,
password=None,
serialNumber=None,
snmpAuthPassphrase=None,
snmpAuthProtocol=None,
snmpMode=None,
snmpPrivPassphrase=None,
snmpPrivProtocol=None,
snmpROCommunity=None,
snmpRWCommunity=None,
snmpRetry=None,
snmpTimeout=None,
snmpUserName=None,
snmpVersion=None,
type=None,
updateMgmtIPaddressList=None,
userName=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Update the credentials, management IP address of a given device (or a set of devices) in Catalyst Center and
trigger an inventory sync.
Args:
cliTransport(string): Devices's CLI transport. Supported values: telnet, ssh. Use NO!$DATA!$ if no
change is required. Required if type is NETWORK_DEVICE.
computeDevice(boolean): Devices's Compute Device or not. Options are true / false.
enablePassword(string): Devices's CLI enable password of the device. Required if device is configured to
use enable password. Use NO!$DATA!$ if no change is required.
extendedDiscoveryInfo(string): Devices's This field holds that info as whether to add device with canned
data or not. Supported values: DISCOVER_WITH_CANNED_DATA.
httpPassword(string): Devices's HTTP password of the device / API key for Meraki Dashboard. Required if
type is MERAKI_DASHBOARD or COMPUTE_DEVICE. Use NO!$DATA!$ if no change is required.
httpPort(string): Devices's HTTP port of the device. Required if type is COMPUTE_DEVICE.
httpSecure(boolean): Devices's Flag to select HTTP / HTTPS protocol. Options are true / false. true for
HTTPS and false for HTTP.
httpUserName(string): Devices's HTTP Username of the device. Required if type is COMPUTE_DEVICE. Use
NO!$DATA!$ if no change is required.
ipAddress(list): Devices's IP Address of the device. Required. Use 'api.meraki.com' for Meraki
Dashboard. (list of strings).
merakiOrgId(list): Devices's Selected Meraki organization for which the devices needs to be imported.
Required if type is MERAKI_DASHBOARD. (list of strings).
netconfPort(string): Devices's Netconf Port of the device. cliTransport must be 'ssh' if netconf is
provided. Netconf port is required for eWLC.
password(string): Devices's CLI Password of the device. Required if type is NETWORK_DEVICE. Use
NO!$DATA!$ if no change is required.
serialNumber(string): Devices's Serial Number of the Device. Required if extendedDiscoveryInfo is
'DISCOVER_WITH_CANNED_DATA'.
snmpAuthPassphrase(string): Devices's SNMPv3 auth passphrase of the device. Required if snmpMode is
authNoPriv or authPriv. Use NO!$DATA!$ if no change is required.
snmpAuthProtocol(string): Devices's SNMPv3 auth protocol. Supported values: sha, md5. Required if
snmpMode is authNoPriv or authPriv. Use NODATACHANGE if no change is required.
snmpMode(string): Devices's SNMPv3 mode. Supported values: noAuthnoPriv, authNoPriv, authPriv. Required
if snmpVersion is v3. Use NODATACHANGE if no change is required.
snmpPrivPassphrase(string): Devices's SNMPv3 priv passphrase. Required if snmpMode is authPriv. Use
NO!$DATA!$ if no change is required.
snmpPrivProtocol(string): Devices's SNMPv3 priv protocol. Supported values: AES128. Required if snmpMode
is authPriv. Use NODATACHANGE if no change is required.
snmpROCommunity(string): Devices's SNMP Read Community of the device. If snmpVersion is v2, at least one
of snmpROCommunity and snmpRWCommunity is required. Use NO!$DATA!$ if no change is
required.
snmpRWCommunity(string): Devices's SNMP Write Community of the device. If snmpVersion is v2, at least
one of snmpROCommunity and snmpRWCommunity is required. Use NO!$DATA!$ if no change is
required.
snmpRetry(integer): Devices's SNMP retry count. Max value supported is 3. Default is Global SNMP retry
(if exists) or 3.
snmpTimeout(integer): Devices's SNMP timeout in seconds. Max value supported is 300. Default is Global
SNMP timeout (if exists) or 5.
snmpUserName(string): Devices's SNMPV3 user name of the device. Required if snmpVersion is v3. Use
NO!$DATA!$ if no change is required.
snmpVersion(string): Devices's SNMP version. Values supported: v2, v3. Required if type is
NETWORK_DEVICE, COMPUTE_DEVICE or THIRD_PARTY_DEVICE. Use NODATACHANGE if no change is
required.
type(string): Devices's Type of device being edited. Default is NETWORK_DEVICE.. Available values are
'COMPUTE_DEVICE', 'MERAKI_DASHBOARD', 'NETWORK_DEVICE', 'THIRD_PARTY_DEVICE' and
'NODATACHANGE'.
updateMgmtIPaddressList(list): Devices's updateMgmtIPaddressList (list of objects).
userName(string): Devices's CLI user name of the device. Required if type is NETWORK_DEVICE. Use
NO!$DATA!$ if no change is required.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-device-details
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"cliTransport": cliTransport,
"computeDevice": computeDevice,
"enablePassword": enablePassword,
"extendedDiscoveryInfo": extendedDiscoveryInfo,
"httpPassword": httpPassword,
"httpPort": httpPort,
"httpSecure": httpSecure,
"httpUserName": httpUserName,
"ipAddress": ipAddress,
"merakiOrgId": merakiOrgId,
"netconfPort": netconfPort,
"password": password,
"serialNumber": serialNumber,
"snmpAuthPassphrase": snmpAuthPassphrase,
"snmpAuthProtocol": snmpAuthProtocol,
"snmpMode": snmpMode,
"snmpPrivPassphrase": snmpPrivPassphrase,
"snmpPrivProtocol": snmpPrivProtocol,
"snmpROCommunity": snmpROCommunity,
"snmpRWCommunity": snmpRWCommunity,
"snmpRetry": snmpRetry,
"snmpTimeout": snmpTimeout,
"snmpUserName": snmpUserName,
"snmpVersion": snmpVersion,
"type": type,
"updateMgmtIPaddressList": updateMgmtIPaddressList,
"userName": userName,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_fe06867e548bba1919024b40d992_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_fe06867e548bba1919024b40d992_v3_1_6_0", json_data
)
[docs] def get_device_values_that_match_fully_or_partially_an_attribute(
self,
associated_wlc_ip=None,
collection_interval=None,
collection_status=None,
error_code=None,
family=None,
hostname=None,
limit=None,
mac_address=None,
management_ip_address=None,
offset=None,
platform_id=None,
reachability_failure_reason=None,
reachability_status=None,
role=None,
role_source=None,
serial_number=None,
series=None,
software_type=None,
software_version=None,
type=None,
up_time=None,
vrf_name=None,
headers=None,
**request_parameters
):
"""Returns the list of values of the first given required parameter. You can use the .* in any value to conduct a
wildcard search. For example, to get all the devices with the management IP address starting with 10.10.
, issue the following request: GET /dna/intent/api/v1/network-
device/autocomplete?managementIpAddress=10.10..* It will return the device management IP addresses that
match fully or partially the provided attribute. {[10.10.1.1, 10.10.20.2, …]}. The API returns a
paginated response based on 'limit' and 'offset' parameters, allowing up to 500 records per page.
'limit' specifies the number of records, and 'offset' sets the starting point using 1-based indexing.
For data sets over 500 records, make multiple calls, adjusting 'limit' and 'offset' to retrieve all
records incrementally.
Args:
vrf_name(str): vrfName query parameter.
management_ip_address(str): managementIpAddress query parameter.
hostname(str): hostname query parameter.
mac_address(str): macAddress query parameter.
family(str): family query parameter.
collection_status(str): collectionStatus query parameter.
collection_interval(str): collectionInterval query parameter.
software_version(str): softwareVersion query parameter.
software_type(str): softwareType query parameter.
reachability_status(str): reachabilityStatus query parameter.
reachability_failure_reason(str): reachabilityFailureReason query parameter.
error_code(str): errorCode query parameter.
platform_id(str): platformId query parameter.
series(str): series query parameter.
type(str): type query parameter.
serial_number(str): serialNumber query parameter.
up_time(str): upTime query parameter.
role(str): role query parameter.
role_source(str): roleSource query parameter.
associated_wlc_ip(str): associatedWlcIp query parameter.
offset(int): offset query parameter.
limit(int): limit query parameter. The number of records to show for this page. Min: 1, Max: 500.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-device-values-that-match-fully-or-partially-an-attribute
"""
check_type(headers, dict)
check_type(vrf_name, str)
check_type(management_ip_address, str)
check_type(hostname, str)
check_type(mac_address, str)
check_type(family, str)
check_type(collection_status, str)
check_type(collection_interval, str)
check_type(software_version, str)
check_type(software_type, str)
check_type(reachability_status, str)
check_type(reachability_failure_reason, str)
check_type(error_code, str)
check_type(platform_id, str)
check_type(series, str)
check_type(type, str)
check_type(serial_number, str)
check_type(up_time, str)
check_type(role, str)
check_type(role_source, str)
check_type(associated_wlc_ip, str)
check_type(offset, int)
check_type(limit, int)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"vrfName": vrf_name,
"managementIpAddress": management_ip_address,
"hostname": hostname,
"macAddress": mac_address,
"family": family,
"collectionStatus": collection_status,
"collectionInterval": collection_interval,
"softwareVersion": software_version,
"softwareType": software_type,
"reachabilityStatus": reachability_status,
"reachabilityFailureReason": reachability_failure_reason,
"errorCode": error_code,
"platformId": platform_id,
"series": series,
"type": type,
"serialNumber": serial_number,
"upTime": up_time,
"role": role,
"roleSource": role_source,
"associatedWlcIp": associated_wlc_ip,
"offset": offset,
"limit": limit,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/autocomplete"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_b5a5c8da4aaa526da6a06e97c80a38be_v3_1_6_0", json_data
)
[docs] def update_device_role(
self,
id=None,
role=None,
roleSource=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Updates the role of the device as access, core, distribution, border router.
Args:
id(string): Devices's DeviceId of the Device.
role(string): Devices's Role of device as ACCESS, CORE, DISTRIBUTION, BORDER ROUTER.
roleSource(string): Devices's Role source as MANUAL / AUTO.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-device-role
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"id": id,
"role": role,
"roleSource": roleSource,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_aa11f09d28165f4ea6c81b8642e59cc4_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/brief"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_aa11f09d28165f4ea6c81b8642e59cc4_v3_1_6_0", json_data
)
[docs] def get_polling_interval_for_all_devices(self, headers=None, **request_parameters):
"""Returns polling interval of all devices.
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-polling-interval-for-all-devices
"""
check_type(headers, dict)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/collection-" + "schedule/global"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_ce94ab18ad505e8a9846f6c4c9df0d2b_v3_1_6_0", json_data
)
[docs] def get_device_config_for_all_devices(self, headers=None, **request_parameters):
"""Returns the config for all devices. This API has been deprecated and will not be available in a Cisco Catalyst
Center release after Nov 1st 2024 23:59:59 GMT.
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-device-config-for-all-devices
"""
check_type(headers, dict)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/config"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_ed2bca4be412527198720a4dfec9604a_v3_1_6_0", json_data
)
[docs] def get_device_config_count(self, headers=None, **request_parameters):
"""Returns the count of device configs.
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-device-config-count
"""
check_type(headers, dict)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/config/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_dc0a72537a3578ca31cc5ef29131d35_v3_1_6_0", json_data
)
[docs] def get_device_count(
self,
hostname=None,
location_name=None,
mac_address=None,
management_ip_address=None,
headers=None,
**request_parameters
):
"""Returns the count of network devices based on the filter criteria by management IP address, mac address,
hostname and location name.
Args:
hostname(list, set, str, tuple): hostname query parameter.
management_ip_address(list, set, str, tuple): managementIpAddress query parameter.
mac_address(list, set, str, tuple): macAddress query parameter.
location_name(list, set, str, tuple): locationName query parameter.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-device-count
"""
check_type(headers, dict)
check_type(hostname, (list, set, str, tuple))
check_type(management_ip_address, (list, set, str, tuple))
check_type(mac_address, (list, set, str, tuple))
check_type(location_name, (list, set, str, tuple))
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"hostname": hostname,
"managementIpAddress": management_ip_address,
"macAddress": mac_address,
"locationName": location_name,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_bbfe7340fe6752e5bc273a303d165654_v3_1_6_0", json_data
)
[docs] def export_device_list(
self,
deviceUuids=None,
operationEnum=None,
parameters=None,
password=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Exports the selected network device to a file.
Args:
deviceUuids(list): Devices's List of device uuids (list of strings).
operationEnum(string): Devices's 0 to export Device Credential Details Or 1 to export Device Details.
Available values are 'CREDENTIALDETAILS' and 'DEVICEDETAILS'.
parameters(list): Devices's List of device parameters that needs to be exported to file (list of
strings).
password(string): Devices's Password is required when the operationEnum value is 0.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!export-device-list
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"deviceUuids": deviceUuids,
"operationEnum": operationEnum,
"parameters": parameters,
"password": password,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_e6ec627d3c587288978990aae75228_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/file"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_e6ec627d3c587288978990aae75228_v3_1_6_0", json_data
)
[docs] def get_functional_capability_for_devices(
self, device_id, function_name=None, headers=None, **request_parameters
):
"""Returns the functional-capability for given devices.
Args:
device_id(str): deviceId query parameter. Accepts comma separated deviceid's and return list of
functional-capabilities for the given id's. If invalid or not-found id's are provided,
null entry will be returned in the list.
function_name(list, set, str, tuple): functionName query parameter.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-functional-capability-for-devices
"""
check_type(headers, dict)
check_type(device_id, str, may_be_none=False)
check_type(function_name, (list, set, str, tuple))
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"deviceId": device_id,
"functionName": function_name,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/functional-capability"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_ad8cea95d71352f0842a2c869765e6cf_v3_1_6_0", json_data
)
[docs] def get_functional_capability_by_id(self, id, headers=None, **request_parameters):
"""Returns functional capability with given Id.
Args:
id(str): id path parameter. Functional Capability UUID.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-functional-capability-by-id
"""
check_type(headers, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/functional-" + "capability/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_f494532c45654fdaeda8d46a0d9753d_v3_1_6_0", json_data
)
[docs] def inventory_insight_device_link_mismatch(
self,
category,
site_id,
limit=None,
offset=None,
order=None,
sort_by=None,
headers=None,
**request_parameters
):
"""Find all devices with link mismatch (speed / vlan).
Args:
site_id(str): siteId path parameter.
offset(int): offset query parameter. Row Number. Default value is 1.
limit(int): limit query parameter. The number of records to show for this page. Min: 1, Max: 500.
category(str): category query parameter. Links mismatch category. Value can be speed-duplex or vlan.
sort_by(str): sortBy query parameter. Sort By.
order(str): order query parameter. Order. Value can be asc or desc. Default value is asc.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!inventory-insight-device-link-mismatch-a-p-i
"""
check_type(headers, dict)
check_type(offset, int)
check_type(limit, int)
check_type(category, str, may_be_none=False)
check_type(sort_by, str)
check_type(order, str)
check_type(site_id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"offset": offset,
"limit": limit,
"category": category,
"sortBy": sort_by,
"order": order,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"siteId": site_id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-" + "device/insight/{siteId}/device-link"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_eed1595442b757bf94938c858a257ced_v3_1_6_0", json_data
)
[docs] def get_network_device_by_ip(self, ip_address, headers=None, **request_parameters):
"""Returns the network device by specified IP address.
Args:
ip_address(str): ipAddress path parameter. Device IP address.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-network-device-by-i-p
"""
check_type(headers, dict)
check_type(ip_address, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"ipAddress": ip_address,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/ip-address/{ipAddress}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_dc74c2052a3a4eb7e2a01eaa8e7_v3_1_6_0", json_data
)
[docs] def get_modules(
self,
device_id,
limit=None,
name_list=None,
offset=None,
operational_state_code_list=None,
part_number_list=None,
vendor_equipment_type_list=None,
headers=None,
**request_parameters
):
"""Returns modules by specified device id. The API returns a paginated response based on 'limit' and 'offset'
parameters, allowing up to 500 records per page. 'limit' specifies the number of records, and 'offset'
sets the starting point using 1-based indexing. Use /dna/intent/api/v1/network-device/module/count API
to get the total record count. For data sets over 500 records, make multiple calls, adjusting 'limit'
and 'offset' to retrieve all records incrementally.
Args:
device_id(str): deviceId query parameter.
limit(int): limit query parameter. The number of records to show for this page. Min: 1, Max: 500.
offset(int): offset query parameter.
name_list(list, set, str, tuple): nameList query parameter.
vendor_equipment_type_list(list, set, str, tuple): vendorEquipmentTypeList query parameter.
part_number_list(list, set, str, tuple): partNumberList query parameter.
operational_state_code_list(list, set, str, tuple): operationalStateCodeList query parameter.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-modules
"""
check_type(headers, dict)
check_type(device_id, str, may_be_none=False)
check_type(limit, int)
check_type(offset, int)
check_type(name_list, (list, set, str, tuple))
check_type(vendor_equipment_type_list, (list, set, str, tuple))
check_type(part_number_list, (list, set, str, tuple))
check_type(operational_state_code_list, (list, set, str, tuple))
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"deviceId": device_id,
"limit": limit,
"offset": offset,
"nameList": name_list,
"vendorEquipmentTypeList": vendor_equipment_type_list,
"partNumberList": part_number_list,
"operationalStateCodeList": operational_state_code_list,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/module"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_ce9e547725c45c66824afda98179d12f_v3_1_6_0", json_data
)
[docs] def get_module_count(
self,
device_id,
name_list=None,
operational_state_code_list=None,
part_number_list=None,
vendor_equipment_type_list=None,
headers=None,
**request_parameters
):
"""Returns Module Count.
Args:
device_id(str): deviceId query parameter.
name_list(list, set, str, tuple): nameList query parameter.
vendor_equipment_type_list(list, set, str, tuple): vendorEquipmentTypeList query parameter.
part_number_list(list, set, str, tuple): partNumberList query parameter.
operational_state_code_list(list, set, str, tuple): operationalStateCodeList query parameter.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-module-count
"""
check_type(headers, dict)
check_type(device_id, str, may_be_none=False)
check_type(name_list, (list, set, str, tuple))
check_type(vendor_equipment_type_list, (list, set, str, tuple))
check_type(part_number_list, (list, set, str, tuple))
check_type(operational_state_code_list, (list, set, str, tuple))
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"deviceId": device_id,
"nameList": name_list,
"vendorEquipmentTypeList": vendor_equipment_type_list,
"partNumberList": part_number_list,
"operationalStateCodeList": operational_state_code_list,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/module/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_fb11f997009751c991884b5fc02087c5_v3_1_6_0", json_data
)
[docs] def get_module_info_by_id(self, id, headers=None, **request_parameters):
"""Returns Module info by 'module id'.
Args:
id(str): id path parameter. Module id.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-module-info-by-id
"""
check_type(headers, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/module/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_a4588640da5b018b499c5760f4092a_v3_1_6_0", json_data
)
[docs] def get_device_by_serial_number(
self, serial_number, headers=None, **request_parameters
):
"""Returns the network device with given serial number.
Args:
serial_number(str): serialNumber path parameter. Device serial number.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-device-by-serial-number
"""
check_type(headers, dict)
check_type(serial_number, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"serialNumber": serial_number,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/serial-" + "number/{serialNumber}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_c53d56c282e5f108c659009d21f9d26_v3_1_6_0", json_data
)
[docs] def sync_devices_using_forcesync(
self,
force_sync=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Synchronizes the devices. If forceSync param is false (default) then the sync would run in normal priority
thread. If forceSync param is true then the sync would run in high priority thread if available, else
the sync will fail. Result can be seen in the child task of each device.
Args:
force_sync(bool): forceSync query parameter.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(list): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!sync-devices
"""
check_type(headers, dict)
check_type(payload, list)
check_type(force_sync, bool)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"forceSync": force_sync,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = payload or []
if active_validation:
self._request_validator(
"jsd_f2c120b855cb8c852806ce72e54d_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/sync"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_f2c120b855cb8c852806ce72e54d_v3_1_6_0", json_data
)
[docs] def get_devices_registered_for_wsa_notification(
self, macaddress=None, serial_number=None, headers=None, **request_parameters
):
"""It fetches devices which are registered to receive WSA notifications. The device serial number and/or MAC
address are required to be provided as query parameters.
Args:
serial_number(str): serialNumber query parameter. Serial number of the device.
macaddress(str): macaddress query parameter. Mac addres of the device.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-devices-registered-for-w-s-a-notification
"""
check_type(headers, dict)
check_type(serial_number, str)
check_type(macaddress, str)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"serialNumber": serial_number,
"macaddress": macaddress,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/tenantinfo/macaddress"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_b2c39feb5e48913492c33add7f13_v3_1_6_0", json_data
)
[docs] def get_all_user_defined_fields(
self, id=None, name=None, headers=None, **request_parameters
):
"""Gets existing global User Defined Fields. If no input is given, it fetches ALL the Global UDFs. Filter/search is
supported by UDF Id(s) or UDF name(s) or both.
Args:
id(str): id query parameter. Comma-seperated id(s) used for search/filtering.
name(str): name query parameter. Comma-seperated name(s) used for search/filtering.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-all-user-defined-fields
"""
check_type(headers, dict)
check_type(id, str)
check_type(name, str)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"id": id,
"name": name,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/user-defined-field"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_d31b0bb4bde55bb8a3078b66c81f3a22_v3_1_6_0", json_data
)
[docs] def create_user_defined_field(
self,
description=None,
name=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Creates a new global User Defined Field, which can be assigned to devices.
Args:
description(string): Devices's Description of UDF.
name(string): Devices's Name of UDF.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!create-user-defined-field
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"name": name,
"description": description,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_ed266e6eda225aedbf581508635da822_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/user-defined-field"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_ed266e6eda225aedbf581508635da822_v3_1_6_0", json_data
)
[docs] def delete_user_defined_field(self, id, headers=None, **request_parameters):
"""Deletes an existing Global User-Defined-Field using it's id.
Args:
id(str): id path parameter. UDF id.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-user-defined-field
"""
check_type(headers, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/user-defined-" + "field/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.delete(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.delete(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_f0f19119501094fb5fafe05dfbca_v3_1_6_0", json_data
)
[docs] def update_user_defined_field(
self,
id,
description=None,
name=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Updates an existing global User Defined Field, using it's id.
Args:
description(string): Devices's Description of UDF.
name(string): Devices's Name of UDF.
id(str): id path parameter. UDF id.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-user-defined-field
"""
check_type(headers, dict)
check_type(payload, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
_payload = {
"name": name,
"description": description,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_d76a951f85a7a927afc2f1ea935c8_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/user-defined-" + "field/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_d76a951f85a7a927afc2f1ea935c8_v3_1_6_0", json_data
)
[docs] def get_chassis_details_for_device(
self, device_id, headers=None, **request_parameters
):
"""Returns chassis details for given device ID.
Args:
device_id(str): deviceId path parameter. Device ID.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-chassis-details-for-device
"""
check_type(headers, dict)
check_type(device_id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"deviceId": device_id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/{deviceId}/chassis"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_a03cee8dfd7514487a134a422f5e0d7_v3_1_6_0", json_data
)
[docs] def get_stack_details_for_device(
self, device_id, headers=None, **request_parameters
):
"""Retrieves complete stack details for given device ID.
Args:
device_id(str): deviceId path parameter. Device ID.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-stack-details-for-device
"""
check_type(headers, dict)
check_type(device_id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"deviceId": device_id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/{deviceId}/stack"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_c07eaefa1fa45faa801764d9094336ae_v3_1_6_0", json_data
)
[docs] def remove_user_defined_field_from_device(
self, device_id, name, headers=None, **request_parameters
):
"""Remove a User-Defined-Field from device. Name of UDF has to be passed as the query parameter. Please note that
Global UDF will not be deleted by this operation.
Args:
device_id(str): deviceId path parameter. UUID of device from which UDF has to be removed.
name(str): name query parameter. Name of UDF to be removed.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!remove-user-defined-field-from-device
"""
check_type(headers, dict)
check_type(name, str, may_be_none=False)
check_type(device_id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"name": name,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"deviceId": device_id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/{deviceId}/user-" + "defined-field"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.delete(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.delete(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_c1144f7a496455f99f95d36d6474c4b4_v3_1_6_0", json_data
)
[docs] def add_user_defined_field_to_device(
self,
device_id,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Assigns an existing Global User-Defined-Field to a device. If the UDF is already assigned to the specific
device, then it updates the device UDF value accordingly. Please note that the assigning UDF 'name' must
be an existing global UDF. Otherwise error shall be shown.
Args:
device_id(str): deviceId path parameter. UUID of device to which UDF has to be added.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(list): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-user-defined-field-to-device
"""
check_type(headers, dict)
check_type(payload, list)
check_type(device_id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"deviceId": device_id,
}
_payload = payload or []
if active_validation:
self._request_validator(
"jsd_a73fbc67627e5bbbafe748de84d42df6_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/{deviceId}/user-" + "defined-field"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_a73fbc67627e5bbbafe748de84d42df6_v3_1_6_0", json_data
)
[docs] def get_the_details_of_physical_components_of_the_given_device(
self, device_uuid, type=None, headers=None, **request_parameters
):
"""Return all types of equipment details like PowerSupply, Fan, Chassis, Backplane, Module, PROCESSOR, Other and
SFP for the Given device.
Args:
device_uuid(str): deviceUuid path parameter.
type(str): type query parameter. Type value can be PowerSupply, Fan, Chassis, Backplane, Module,
PROCESSOR, Other, SFP. If no type is mentioned, All equipments are fetched for the
device.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-the-details-of-physical-components-of-the-given-device
"""
check_type(headers, dict)
check_type(type, str)
check_type(device_uuid, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"type": type,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"deviceUuid": device_uuid,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/{deviceUuid}/equipment"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_c1cb24a2b53ce8d29d119c6ee1112_v3_1_6_0", json_data
)
[docs] def poe_interface_details(
self, device_uuid, interface_name_list=None, headers=None, **request_parameters
):
"""Returns POE interface details for the device, where deviceuuid is mandatory & accepts comma seperated interface
names which is optional and returns information for that particular interfaces where(operStatus =
operationalStatus).
Args:
device_uuid(str): deviceUuid path parameter. uuid of the device.
interface_name_list(str): interfaceNameList query parameter. comma seperated interface names.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!returns-p-o-e-interface-details-for-the-device
"""
check_type(headers, dict)
check_type(interface_name_list, str)
check_type(device_uuid, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"interfaceNameList": interface_name_list,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"deviceUuid": device_uuid,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = (
"/dna/intent/api/v1/network-" + "device/{deviceUuid}/interface/poe-detail"
)
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_ab3215d9be065533b7cbbc978cb4d905_v3_1_6_0", json_data
)
[docs] def get_connected_device_detail(
self, device_uuid, interface_uuid, headers=None, **request_parameters
):
"""Get connected device detail for given deviceUuid and interfaceUuid.
Args:
device_uuid(str): deviceUuid path parameter. instanceuuid of Device.
interface_uuid(str): interfaceUuid path parameter. instanceuuid of interface.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-connected-device-detail
"""
check_type(headers, dict)
check_type(device_uuid, str, may_be_none=False)
check_type(interface_uuid, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"deviceUuid": device_uuid,
"interfaceUuid": interface_uuid,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = (
"/dna/intent/api/v1/network-"
+ "device/{deviceUuid}/interface/{interfaceUuid}/neighbor"
)
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_a1878314ffd35d29bea49f12d10b59c8_v3_1_6_0", json_data
)
[docs] def get_linecard_details(self, device_uuid, headers=None, **request_parameters):
"""Get line card detail for a given deviceuuid. Response will contain serial no, part no, switch no and slot no.
Args:
device_uuid(str): deviceUuid path parameter. instanceuuid of device.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-linecard-details
"""
check_type(headers, dict)
check_type(device_uuid, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"deviceUuid": device_uuid,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/{deviceUuid}/line-card"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_bd31690b61f45d9f880d74d4e682b070_v3_1_6_0", json_data
)
[docs] def poe_details_(self, device_uuid, headers=None, **request_parameters):
"""Returns POE details for device.
Args:
device_uuid(str): deviceUuid path parameter. UUID of the device.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!p-o-e-details
"""
return self.poe_details(device_uuid, headers=headers, **request_parameters)
[docs] def poe_details(self, device_uuid, headers=None, **request_parameters):
"""Returns POE details for device.
Args:
device_uuid(str): deviceUuid path parameter. UUID of the device.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!p-o-e-details
"""
check_type(headers, dict)
check_type(device_uuid, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"deviceUuid": device_uuid,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/{deviceUuid}/poe"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_f7a67aba0b365a1e9dae62d148511a25_v3_1_6_0", json_data
)
[docs] def get_supervisor_card_detail(
self, device_uuid, headers=None, **request_parameters
):
"""Get supervisor card detail for a given deviceuuid. Response will contain serial no, part no, switch no and slot
no.
Args:
device_uuid(str): deviceUuid path parameter. instanceuuid of device.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-supervisor-card-detail
"""
check_type(headers, dict)
check_type(device_uuid, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"deviceUuid": device_uuid,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-" + "device/{deviceUuid}/supervisor-card"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_eb13516155a28570e542dcf10a91_v3_1_6_0", json_data
)
[docs] def update_device_management_address(
self,
deviceid,
newIP=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""This is a simple PUT API to edit the management IP Address of the device.
Args:
newIP(string): Devices's New IP Address of the device to be Updated.
deviceid(str): deviceid path parameter. The UUID of the device whose management IP address is to be
updated.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-device-management-address
"""
check_type(headers, dict)
check_type(payload, dict)
check_type(deviceid, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"deviceid": deviceid,
}
_payload = {
"newIP": newIP,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_cb98464ddb5ee9ba7ebb4428443ba9_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/{deviceid}/management-" + "address"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_cb98464ddb5ee9ba7ebb4428443ba9_v3_1_6_0", json_data
)
[docs] def delete_device_by_id(
self, id, clean_config=None, headers=None, **request_parameters
):
"""This API allows any network device that is not currently provisioned to be removed from the inventory.
Important: Devices currently provisioned cannot be deleted. To delete a provisioned device, the device
must be first deprovisioned.
Args:
id(str): id path parameter. Device ID.
clean_config(bool): cleanConfig query parameter. Selecting the clean up configuration option will
attempt to remove device settings that were configured during the addition of the device
to the inventory and site assignment. Please note that this operation is different from
deprovisioning. It does not remove configurations that were pushed during device
provisioning.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-device-by-id
"""
check_type(headers, dict)
check_type(clean_config, bool)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"cleanConfig": clean_config,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.delete(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.delete(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_e01233fa258e393239c4b41882806_v3_1_6_0", json_data
)
[docs] def get_device_by_id(self, id, headers=None, **request_parameters):
"""Returns the network device details for the given device ID.
Args:
id(str): id path parameter. Device ID.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-device-by-i-d
"""
check_type(headers, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_d86f657f8592f97014d2ebf8d37ac_v3_1_6_0", json_data
)
[docs] def get_device_summary(self, id, headers=None, **request_parameters):
"""Returns brief summary of device info for the given device Id.
Args:
id(str): id path parameter. Device ID.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-device-summary
"""
check_type(headers, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/{id}/brief"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_fe0153ca24205608b8741d51f5a6d54a_v3_1_6_0", json_data
)
[docs] def get_polling_interval_by_id(self, id, headers=None, **request_parameters):
"""Returns polling interval by device id.
Args:
id(str): id path parameter. Device ID.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-polling-interval-by-id
"""
check_type(headers, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/{id}/collection-" + "schedule"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_f90daf1c279351f884ba3198d3b2d641_v3_1_6_0", json_data
)
[docs] def get_organization_list_for_meraki(self, id, headers=None, **request_parameters):
"""Returns list of organizations for meraki dashboard.
Args:
id(str): id path parameter. Device Id.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-organization-list-for-meraki
"""
check_type(headers, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/{id}/meraki-" + "organization"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_b4ba6d23d5e7eb62cbba4c9e1a29d_v3_1_6_0", json_data
)
[docs] def get_device_interface_vlans(
self, id, interface_type=None, headers=None, **request_parameters
):
"""Returns Device Interface VLANs. If parameter value is null or empty, it won't return any value in response.
Args:
id(str): id path parameter.
interface_type(str): interfaceType query parameter. Vlan associated with sub-interface. If no
interfaceType mentioned it will return all types of Vlan interfaces. If interfaceType is
selected but not specified then it will take default value.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-device-interface-v-l-a-ns
"""
check_type(headers, dict)
check_type(interface_type, str)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"interfaceType": interface_type,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/{id}/vlan"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_fd5fb603cba6523abb25c8ec131fbb8b_v3_1_6_0", json_data
)
[docs] def get_wireless_lan_controller_details_by_id(
self, id, headers=None, **request_parameters
):
"""Returns the wireless lan controller info with given device ID.
Args:
id(str): id path parameter. Device ID.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-wireless-lan-controller-details-by-id
"""
check_type(headers, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-device/{id}/wireless-info"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_c01ee650fcf858789ca00c8deda969b9_v3_1_6_0", json_data
)
[docs] def get_device_config_by_id(
self, network_device_id, headers=None, **request_parameters
):
"""Returns the device config by specified device ID.
Args:
network_device_id(str): networkDeviceId path parameter.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-device-config-by-id
"""
check_type(headers, dict)
check_type(network_device_id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"networkDeviceId": network_device_id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/network-" + "device/{networkDeviceId}/config"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_af0bbf34adb5146b931ec874fc2cc40_v3_1_6_0", json_data
)
[docs] def retrieve_scheduled_maintenance_windows_for_network_devices(
self,
limit=None,
network_device_ids=None,
offset=None,
order=None,
sort_by=None,
status=None,
headers=None,
**request_parameters
):
"""This API retrieves a list of scheduled maintenance windows for network devices based on filter parameters. Each
maintenance window is composed of a start schedule and end schedule, both of which have unique
identifiers(`startId` and `endId`). These identifiers can be used to fetch the status of the start
schedule and end schedule using the `GET /dna/intent/api/v1/activities/{id}` API. Completed maintenance
schedules are automatically removed from the system after two weeks. The API returns a paginated
response based on 'limit' and 'offset' parameters, allowing up to 500 records per page. 'limit'
specifies the number of records, and 'offset' sets the starting point using 1-based indexing. Use
'/dna/intent/api/v1/networkDeviceMaintenanceSchedules/count' API to get the total record count. For data
sets over 500 records, make multiple calls, adjusting 'limit' and 'offset' to retrieve all records
incrementally.
Args:
network_device_ids(str): networkDeviceIds query parameter. List of network device ids.
status(str): status query parameter. The status of the maintenance schedule. Possible values are:
UPCOMING, IN_PROGRESS, COMPLETED, FAILED. Refer features for more details.
limit(int): limit query parameter. The number of records to show for this page. Min: 1, Max: 500.
offset(int): offset query parameter. The first record to show for this page; the first record is
numbered 1.
sort_by(str): sortBy query parameter. A property within the response to sort by.
order(str): order query parameter. Whether ascending or descending order should be used to sort the
response.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!retrieve-scheduled-maintenance-windows-for-network-devices
"""
check_type(headers, dict)
check_type(network_device_ids, str)
check_type(status, str)
check_type(limit, int)
check_type(offset, int)
check_type(sort_by, str)
check_type(order, str)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"networkDeviceIds": network_device_ids,
"status": status,
"limit": limit,
"offset": offset,
"sortBy": sort_by,
"order": order,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/networkDeviceMaintenanceSchedules"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_a90a937a8af85fbfa73d607be7ebafc2_v3_1_6_0", json_data
)
[docs] def create_maintenance_schedule_for_network_devices(
self,
description=None,
maintenanceSchedule=None,
networkDeviceIds=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""API to create maintenance schedule for network devices. The state of network device can be queried using API
`GET /dna/intent/api/v1/networkDevices`. The `managementState` attribute of the network device will be
updated to `UNDER_MAINTENANCE` when the maintenance window starts.
Args:
description(string): Devices's A brief narrative describing the maintenance schedule.
maintenanceSchedule(object): Devices's maintenanceSchedule.
networkDeviceIds(list): Devices's List of network device ids. This field is applicable only during
creation of schedules; for updates, it is read-only. (list of strings).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!create-maintenance-schedule-for-network-devices
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"description": description,
"maintenanceSchedule": maintenanceSchedule,
"networkDeviceIds": networkDeviceIds,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_c1dae5c13e6959348fe1fe0652958647_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/networkDeviceMaintenanceSchedules"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_c1dae5c13e6959348fe1fe0652958647_v3_1_6_0", json_data
)
[docs] def retrieve_the_total_number_of_scheduled_maintenance_windows(
self, network_device_ids=None, status=None, headers=None, **request_parameters
):
"""Retrieve the total count of all scheduled maintenance windows for network devices.
Args:
network_device_ids(str): networkDeviceIds query parameter. List of network device ids.
status(str): status query parameter. The status of the maintenance schedule. Possible values are:
UPCOMING, IN_PROGRESS, COMPLETED, FAILED. Refer features for more details.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!retrieve-the-total-number-of-scheduled-maintenance-windows
"""
check_type(headers, dict)
check_type(network_device_ids, str)
check_type(status, str)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"networkDeviceIds": network_device_ids,
"status": status,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/networkDeviceMaintenanceSchedules/cou" + "nt"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_c0a858b81cc65ae4b0eb0e69995b8e8c_v3_1_6_0", json_data
)
[docs] def delete_maintenance_schedule(self, id, headers=None, **request_parameters):
"""API to delete maintenance schedule by id. Deletion is allowed if the maintenance window is in the `UPCOMING`,
`COMPLETED`, or `FAILED` state. Deletion of maintenance schedule is not allowed if the maintenance
window is currently `IN_PROGRESS`. To delete the maintenance schedule while it is `IN_PROGRESS`, first
exit the current maintenance window using `PUT
/dna/intent/api/v1/networkDeviceMaintenanceSchedules/{id}` API, and then proceed to delete the
maintenance schedule.
Args:
id(str): id path parameter. Unique identifier for the maintenance schedule.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-maintenance-schedule
"""
check_type(headers, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/networkDeviceMaintenanceSchedules/{id" + "}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.delete(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.delete(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_ff24d0609c3514fbb7377f5dbd70d0a_v3_1_6_0", json_data
)
[docs] def retrieves_the_maintenance_schedule_information(
self, id, headers=None, **request_parameters
):
"""API to retrieve the maintenance schedule information for the given id.
Args:
id(str): id path parameter. Unique identifier for the maintenance schedule.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!retrieves-the-maintenance-schedule-information
"""
check_type(headers, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/networkDeviceMaintenanceSchedules/{id" + "}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_ce5b6297263a50feb20e532932d39580_v3_1_6_0", json_data
)
[docs] def updates_the_maintenance_schedule_information(
self,
id,
description=None,
maintenanceSchedule=None,
networkDeviceIds=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""API to update the maintenance schedule for the network devices. The `maintenanceSchedule` can be updated only if
the `status` value is `UPCOMING` or `IN_PROGRESS`. User can exit `IN_PROGRESS` maintenance window by
setting the `endTime` to -1. This will update the endTime to the current time and exit the maintenance
window immediately. When exiting the maintenance window, only the endTime will be updated while other
parameters remain read-only.
Args:
description(string): Devices's A brief narrative describing the maintenance schedule.
maintenanceSchedule(object): Devices's maintenanceSchedule.
networkDeviceIds(list): Devices's List of network device ids. This field is applicable only during
creation of schedules; for updates, it is read-only. (list of strings).
id(str): id path parameter. Unique identifier for the maintenance schedule.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!updates-the-maintenance-schedule-information
"""
check_type(headers, dict)
check_type(payload, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
_payload = {
"description": description,
"maintenanceSchedule": maintenanceSchedule,
"networkDeviceIds": networkDeviceIds,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_e5bb87a955e33a7ee46f1085fd880_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/networkDeviceMaintenanceSchedules/{id" + "}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_e5bb87a955e33a7ee46f1085fd880_v3_1_6_0", json_data
)
[docs] def retrieve_network_devices(
self,
family=None,
id=None,
limit=None,
management_address=None,
management_state=None,
offset=None,
order=None,
reachability_status=None,
role=None,
serial_number=None,
sort_by=None,
stack_device=None,
status=None,
views=None,
headers=None,
**request_parameters
):
"""API to fetch the list of network devices using basic filters. Use the `/dna/intent/api/v1/networkDevices/query`
API for advanced filtering. Refer features for more details. The API returns a paginated response based
on 'limit' and 'offset' parameters, allowing up to 500 records per page. 'limit' specifies the number of
records, and 'offset' sets the starting point using 1-based indexing. Use
/dna/intent/api/v1/networkDevices/count API to get the total record count. For data sets over 500
records, make multiple calls, adjusting 'limit' and 'offset' to retrieve all records incrementally.
Args:
id(str): id query parameter. Network device Id.
management_address(str): managementAddress query parameter. Management address of the network device.
serial_number(str): serialNumber query parameter. Serial number of the network device.
family(str): family query parameter. Product family of the network device. For example, Switches,
Routers, etc.
stack_device(str): stackDevice query parameter. Flag indicating if the device is a stack device.
role(str): role query parameter. Role assigned to the network device. Available values : BORDER_ROUTER,
CORE, DISTRIBUTION, ACCESS, UNKNOWN.
status(str): status query parameter. Inventory related status of the network device. Available values :
MANAGED, SYNC_NOT_STARTED, SYNC_INIT_FAILED, SYNC_PRECHECK_FAILED, SYNC_IN_PROGRESS,
SYNC_INTERNAL_ERROR, SYNC_DISABLED, DELETING_DEVICE, UNDER_MAINTENANCE, QUARANTINED,
UNASSOCIATED, UNREACHABLE, UNKNOWN. Refer features for more details.
reachability_status(str): reachabilityStatus query parameter. Reachability status of the network device.
Available values : REACHABLE, ONLY_PING_REACHABLE, UNREACHABLE, UNKNOWN. Refer features
for more details.
management_state(str): managementState query parameter. The status of the network device's
manageability. Available statuses are MANAGED, UNDER_MAINTENANCE, NEVER_MANAGED. Refer
features for more details.
views(str): views query parameter. The specific views being requested. This is an optional parameter
which can be passed to get one or more of the network device data. If this is not
provided, then it will default to BASIC views. If multiple views are provided, the
response will contain the union of the views. Refer features for more details. Available
values : BASIC, RESYNC, USER_DEFINED_FIELDS.
limit(int): limit query parameter. The number of records to show for this page. Min: 1, Max: 500.
offset(int): offset query parameter. The first record to show for this page; the first record is
numbered 1.
sort_by(str): sortBy query parameter. A property within the response to sort by. Available values : id,
managementAddress, dnsResolvedManagementIpAddress, hostname, macAddress, type, family,
series, platformids, softwareType, softwareVersion, vendor, bootTime, role, roleSource,
apEthernetMacAddress, apManagerInterfaceIpAddress, apWlcIpAddress, deviceSupportLevel,
reachabilityFailureReason, resyncStartTime, resyncEndTime, resyncReasons,
pendingResyncRequestCount, pendingResyncRequestReasons, resyncIntervalSource,
resyncIntervalMinutes.
order(str): order query parameter. Whether ascending or descending order should be used to sort the
response.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!retrieve-network-devices
"""
check_type(headers, dict)
check_type(id, str)
check_type(management_address, str)
check_type(serial_number, str)
check_type(family, str)
check_type(stack_device, str)
check_type(role, str)
check_type(status, str)
check_type(reachability_status, str)
check_type(management_state, str)
check_type(views, str)
check_type(limit, int)
check_type(offset, int)
check_type(sort_by, str)
check_type(order, str)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"id": id,
"managementAddress": management_address,
"serialNumber": serial_number,
"family": family,
"stackDevice": stack_device,
"role": role,
"status": status,
"reachabilityStatus": reachability_status,
"managementState": management_state,
"views": views,
"limit": limit,
"offset": offset,
"sortBy": sort_by,
"order": order,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/networkDevices"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_e78bc218325565becdd907ff2e4e30_v3_1_6_0", json_data
)
[docs] def adds_a_new_network_device(
self,
category=None,
credentials=None,
managementAddress=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Adds the network device to inventory. The API supports Network Device, Meraki Dashboard, Compute Device,
Firewall Management Center (FMC) and Third-Party Device. Access points associated with added WLC will be
automatically added to inventory. For Meraki Dashboard, use the dashboard URL as the management address.
Args:
category(string): Devices's Category of the device. Used to determine the type of the device being
added.. Available values are 'NETWORK_DEVICE, COMPUTE_DEVICE, THIRD_PARTY_DEVICE,
MERAKI_DASHBOARD, FIREWALL_MANAGEMENT_CENTER'.
credentials(object): Devices's credentials.
managementAddress(string): Devices's Management address of the network device. For meraki dashboard,
this is the dashboard URL.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!adds-a-new-network-device
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"credentials": credentials,
"managementAddress": managementAddress,
"category": category,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_c5df380093bd5a748d177a34375faab4_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/networkDevices"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_c5df380093bd5a748d177a34375faab4_v3_1_6_0", json_data
)
[docs] def count_the_number_of_network_devices(
self,
family=None,
id=None,
management_address=None,
management_state=None,
reachability_status=None,
role=None,
serial_number=None,
stack_device=None,
status=None,
headers=None,
**request_parameters
):
"""API to fetch the count of network devices using basic filters. Use the
`/dna/intent/api/v1/networkDevices/query/count` API if you need advanced filtering.
Args:
id(str): id query parameter. Network device Id.
management_address(str): managementAddress query parameter. Management address of the network device.
serial_number(str): serialNumber query parameter. Serial number of the network device.
family(str): family query parameter. Product family of the network device. For example, Switches,
Routers, etc.
stack_device(str): stackDevice query parameter. Flag indicating if the device is a stack device.
role(str): role query parameter. Role assigned to the network device. Available values : BORDER_ROUTER,
CORE, DISTRIBUTION, ACCESS, UNKNOWN.
status(str): status query parameter. Inventory related status of the network device. Available values :
MANAGED, SYNC_NOT_STARTED, SYNC_INIT_FAILED, SYNC_PRECHECK_FAILED, SYNC_IN_PROGRESS,
SYNC_INTERNAL_ERROR, SYNC_DISABLED, DELETING_DEVICE, UNDER_MAINTENANCE, QUARANTINED,
UNASSOCIATED, UNREACHABLE, UNKNOWN. Refer features for more details.
reachability_status(str): reachabilityStatus query parameter. Reachability status of the network device.
Available values : REACHABLE, ONLY_PING_REACHABLE, UNREACHABLE, UNKNOWN. Refer features
for more details.
management_state(str): managementState query parameter. The status of the network device's
manageability. Available values : MANAGED, UNDER_MAINTENANCE, NEVER_MANAGED. Refer
features for more details.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!count-the-number-of-network-devices
"""
check_type(headers, dict)
check_type(id, str)
check_type(management_address, str)
check_type(serial_number, str)
check_type(family, str)
check_type(stack_device, str)
check_type(role, str)
check_type(status, str)
check_type(reachability_status, str)
check_type(management_state, str)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"id": id,
"managementAddress": management_address,
"serialNumber": serial_number,
"family": family,
"stackDevice": stack_device,
"role": role,
"status": status,
"reachabilityStatus": reachability_status,
"managementState": management_state,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/networkDevices/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_fc60c9c2ca32545fab1bbe540a99c218_v3_1_6_0", json_data
)
[docs] def delete_network_device_with_configuration_cleanup(
self,
id=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""This API endpoint facilitates the deletion of a network device after performing configuration cleanup on the
device.
Args:
id(string): Devices's The unique identifier of the network device to be deleted.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-network-device-with-configuration-cleanup
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"id": id,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_a18e761ac8592e9a5c4e0bb2308cf0_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/networkDevices/deleteWithCleanup"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_a18e761ac8592e9a5c4e0bb2308cf0_v3_1_6_0", json_data
)
[docs] def delete_a_network_device_without_configuration_cleanup(
self,
id=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""This API endpoint facilitates the deletion of a network device without performing configuration cleanup on the
device. To delete a device via API, you must have permission to provision the network device. Although
the API operation does not change the device configuration, removing a device without cleaning up its
configuration could lead to a network behaviour that is not consistent with the configurations that are
known to the system.
Args:
id(string): Devices's The unique identifier of the network device to be deleted.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-a-network-device-without-configuration-cleanup
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"id": id,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_ce6c2c14553f9a4a88f66a04c21c4_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/networkDevices/deleteWithoutCleanup"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_ce6c2c14553f9a4a88f66a04c21c4_v3_1_6_0", json_data
)
[docs] def exports_the_credentials_of_network_devices(
self,
exportSshKey=None,
networkDeviceIds=None,
password=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Exports device credentials of all network devices in the inventory to an encrypted CSV file. To export
credentials for selected devices only, provide the networkDeviceIds parameter in the request body. The
exported file will be in zip format encrypted using the password provided in the request body. The ZIP
file will contain a CSV file with the credentials of the selected network devices. If networkDeviceIds
is not provided, then the credentials of all the network devices will be exported. Credentials for
access points and Meraki devices cannot be exported. The response contains a task ID. Use the
/dna/intent/api/v1/tasks/{taskId} API to check the status of the task. The task will be completed when
the file is ready for download. The download URL will be available in the resultLocation attribute of
the task API response.
Args:
exportSshKey(boolean): Devices's Flag to export the SSH key. If not provided, the SSH key will not be
exported.
networkDeviceIds(list): Devices's List of network device IDs to export the credentials for. If not
provided, all devices will be exported. (list of strings).
password(string): Devices's Password to encrypt the CSV file. A password must contain, at minimum: 8
characters, one lowercase letter, one uppercase letter, one number, one special
character (-=[];,./~!@#$%^&*()_+{}|:?). The password cannot contain spaces or the
characters < >.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!exports-the-credentials-of-network-devices
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"networkDeviceIds": networkDeviceIds,
"password": password,
"exportSshKey": exportSshKey,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_a542b2feed5259a2922ebd75ca99a141_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/networkDevices/exportCredentials"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_a542b2feed5259a2922ebd75ca99a141_v3_1_6_0", json_data
)
[docs] def query_network_devices_with_filters(
self,
filter=None,
page=None,
views=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Returns the list of network devices, determined by the filters. It is possible to filter the network devices
based on various parameters, such as device type, device role, software version, etc. The API returns a
paginated response based on 'limit' and 'offset' parameters, allowing up to 500 records per page.
'limit' specifies the number of records, and 'offset' sets the starting point using 1-based indexing.
Use '/dna/intent/api/v1/networkDevices/query/count' API to get the total record count. For data sets
over 500 records, make multiple calls, adjusting 'limit' and 'offset' to retrieve all records
incrementally.
Args:
filter(object): Devices's filter.
page(object): Devices's page.
views(list): Devices's The specific views being requested. This is an optional parameter which can be
passed to get one or more of the network device data. If this is not provided, then it
will default to BASIC views. If multiple views are provided, the response will contain
the union of the views. (list of strings).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!query-network-devices-with-filters
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"filter": filter,
"views": views,
"page": page,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_fff3662537e538f82bfb5809e30b3df_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/networkDevices/query"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_fff3662537e538f82bfb5809e30b3df_v3_1_6_0", json_data
)
[docs] def count_the_number_of_network_devices_with_filters(
self,
filter=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""API to fetch the count of network devices for the given filter query.
Args:
filter(object): Devices's filter.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!count-the-number-of-network-devices-with-filters
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"filter": filter,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_a7283357c1657bf8ccb3d32a96249d4_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/networkDevices/query/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_a7283357c1657bf8ccb3d32a96249d4_v3_1_6_0", json_data
)
[docs] def update_global_resync_interval(
self,
interval=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Updates the resync interval (in minutes) globally for devices which do not have custom resync interval. To
override this setting for all network devices refer to
[/networkDevices/resyncIntervalSettings/override].
Args:
interval(integer): Devices's Resync Interval should be between 360 to 1440 minutes.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-global-resync-interval
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"interval": interval,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_a64bd4956649de3a61e10f0637e_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/networkDevices/resyncIntervalSettings"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_a64bd4956649de3a61e10f0637e_v3_1_6_0", json_data
)
[docs] def override_resync_interval(self, headers=None, **request_parameters):
"""Overrides the global resync interval on all network devices. This essentially removes device specific intervals
if set.
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!override-resync-interval
"""
check_type(headers, dict)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/networkDevices/resyncIntervalSettings" + "/override"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.post(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_dc239a9ab9e5562b93a45ea0b9708b84_v3_1_6_0", json_data
)
[docs] def validates_a_network_device(
self,
category=None,
credentials=None,
managementAddress=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Validates the credentials and connectivity of a network device. This endpoint checks if the provided details are
correct and if the device can be reached. The task response contains status for HTTP, SNMP, CLI,
NETCONF, Enable Password and CLI Priviledge 15.
Args:
category(string): Devices's Category of the device. Used to determine the type of the device being
added.. Available values are 'NETWORK_DEVICE, COMPUTE_DEVICE, THIRD_PARTY_DEVICE,
MERAKI_DASHBOARD, FIREWALL_MANAGEMENT_CENTER'.
credentials(object): Devices's credentials.
managementAddress(string): Devices's Management address of the network device. For meraki dashboard,
this is the dashboard URL.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!validates-a-network-device
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"credentials": credentials,
"managementAddress": managementAddress,
"category": category,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_edac26fbcb77539ebe8bc5bd4b49055b_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/networkDevices/validateDevice"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_edac26fbcb77539ebe8bc5bd4b49055b_v3_1_6_0", json_data
)
[docs] def get_details_of_a_single_network_device(
self, id, views=None, headers=None, **request_parameters
):
"""API to fetch the details of network device using the `id`. Use the `/dna/intent/api/v1/networkDevices/query` API
for advanced filtering. The API supports views to fetch only the required fields. Refer features for
more details.
Args:
id(str): id path parameter. Unique identifier for the network device.
views(str): views query parameter. The specific views being requested. This is an optional parameter
which can be passed to get one or more of the network device data. If this is not
provided, then it will default to BASIC views. If multiple views are provided, the
response will contain the union of the views. Available values : BASIC, RESYNC,
USER_DEFINED_FIELDS, CREDENTIALS (without sensitive credentials).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-details-of-a-single-network-device
"""
check_type(headers, dict)
check_type(views, str)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"views": views,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/networkDevices/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_fc15032bbf55ec0bbdd3964c9f00089_v3_1_6_0", json_data
)
[docs] def updates_the_network_device(
self,
id,
category=None,
credentials=None,
managementAddress=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Updates the network device with the given identifier. The API supports Network Device, Meraki Dashboard, Compute
Device, Firewall Management Center (FMC) and Third-Party Device. Access points associated with added WLC
will be automatically added to inventory. For Meraki Dashboard, use the dashboard URL as the management
address. If a different managementIpAddress is provided, the device will be updated with the new
managementIpAddress. This API does not support partial updates. If you want to perform a partial update,
use the POST /dna/intent/api/v1/networkDevices/{id}/update API.
Args:
category(string): Devices's Category of the device. Used to determine the type of the device being
added.. Available values are 'NETWORK_DEVICE, COMPUTE_DEVICE, THIRD_PARTY_DEVICE,
MERAKI_DASHBOARD, FIREWALL_MANAGEMENT_CENTER'.
credentials(object): Devices's credentials.
managementAddress(string): Devices's Management address of the network device. For meraki dashboard,
this is the dashboard URL.
id(str): id path parameter. Unique identifier of the device.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!updates-the-network-device
"""
check_type(headers, dict)
check_type(payload, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
_payload = {
"credentials": credentials,
"managementAddress": managementAddress,
"category": category,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_b0780003f8f05720a7b04cfa0d0a9a85_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/networkDevices/{id}"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_b0780003f8f05720a7b04cfa0d0a9a85_v3_1_6_0", json_data
)
[docs] def get_resync_interval_for_the_network_device(
self, id, headers=None, **request_parameters
):
"""Fetch the reysnc interval for the given network device id.
Args:
id(str): id path parameter. The id of the network device.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-resync-interval-for-the-network-device
"""
check_type(headers, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/networkDevices/{id}/resyncIntervalSet" + "tings"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_e56a4c0d91dd53ecb737da824115a050_v3_1_6_0", json_data
)
[docs] def update_resync_interval_for_the_network_device(
self,
id,
interval=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Update the resync interval (in minutes) for the given network device id. To disable periodic resync, set
interval as `0`. To use global settings, set interval as `null`.
Args:
interval(integer): Devices's Resync interval should be between 360 to 1440 minutes. To disable periodic
resync, set interval as `0`. To use global settings, set interval as `null`.
id(str): id path parameter. The id of the network device.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-resync-interval-for-the-network-device
"""
check_type(headers, dict)
check_type(payload, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
_payload = {
"interval": interval,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_fdfc828270d950ecb75480fe03f7d573_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/networkDevices/{id}/resyncIntervalSet" + "tings"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.put(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_fdfc828270d950ecb75480fe03f7d573_v3_1_6_0", json_data
)
[docs] def partially_updates_an_existing_network_device(
self,
id,
category=None,
credentials=None,
managementAddress=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Updates specified fields of an existing network device. Only include the fields you wish to update. Omitted
fields remain unchanged. To unset a field, explicitly set it to null. If a different managementIpAddress
is provided, the device will be updated with the new managementIpAddress.
Args:
category(string): Devices's Category of the device. Used to determine the type of the device being
added.. Available values are 'NETWORK_DEVICE', 'COMPUTE_DEVICE', 'THIRD_PARTY_DEVICE',
'MERAKI_DASHBOARD' and 'FIREWALL_MANAGEMENT_CENTER'.
credentials(object): Devices's credentials.
managementAddress(string): Devices's Management address of the network device. For meraki dashboard,
this is the dashboard URL.
id(str): id path parameter. Unique identifier of the network device.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!partially-updates-an-existing-network-device
"""
check_type(headers, dict)
check_type(payload, dict)
check_type(id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"id": id,
}
_payload = {
"category": category,
"managementAddress": managementAddress,
"credentials": credentials,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_b2c5c14bd5ecba26b364716a91731_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/networkDevices/{id}/update"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_b2c5c14bd5ecba26b364716a91731_v3_1_6_0", json_data
)
[docs] def retrieves_the_list_of_port_channels_for_the_network_device(
self, network_device_id, id=None, name=None, headers=None, **request_parameters
):
"""This API endpoint retrieves the list of port channels for the given network device.
Args:
network_device_id(str): networkDeviceId path parameter. Unique identifier for the network device.
id(str): id query parameter. Optional list of the port channel ids to filter by.
name(str): name query parameter. Optional name of the port channel to filter by. This supports partial
search. For example, searching for "Port" will match "Port-channel1", "Port-channel2",
etc.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!retrieves-the-list-of-port-channels-for-the-network-device
"""
check_type(headers, dict)
check_type(id, str)
check_type(name, str)
check_type(network_device_id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"id": id,
"name": name,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"networkDeviceId": network_device_id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/networkDevices/{networkDeviceId}/port" + "Channels"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_bbfe7b248059dca461333715ed62b4_v3_1_6_0", json_data
)
[docs] def retrieve_port_channels_count_for_a_network_device(
self, network_device_id, id=None, name=None, headers=None, **request_parameters
):
"""This API endpoint retrieves the count of port channels for the given network device.
Args:
network_device_id(str): networkDeviceId path parameter. Unique identifier for the network device.
id(str): id query parameter. Optional list of the port channel ids to filter by.
name(str): name query parameter. Optional name of the port channel to filter by. This supports partial
search. For example, searching for "Port" will match "Port-channel1", "Port-channel2",
etc.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!retrieve-port-channels-count-for-a-network-device
"""
check_type(headers, dict)
check_type(id, str)
check_type(name, str)
check_type(network_device_id, str, may_be_none=False)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"id": id,
"name": name,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"networkDeviceId": network_device_id,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = (
"/dna/intent/api/v1/networkDevices/{networkDeviceId}/port"
+ "Channels/count"
)
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_eef6fe8cbdb35819ad2c9e83c6fa9876_v3_1_6_0", json_data
)
[docs] def rogue_additional_details(
self,
endTime=None,
limit=None,
offset=None,
siteId=None,
startTime=None,
threatLevel=None,
threatType=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""This API provides additional information of the rogue threats with details at BSSID level. The additional
information includes Switch Port details in case of Rogue on Wire, first time when the rogue is seen in
the network etc.
Args:
endTime(number): Devices's This is the epoch end time in milliseconds upto which data need to be
fetched. Default value is current time.
limit(number): Devices's The maximum number of entries to return. Default value is 1000.
offset(number): Devices's The offset of the first item in the collection to return. Default value is 1.
siteId(list): Devices's Filter Rogues by location. Site IDs information can be fetched from "Get Site"
API (list of strings).
startTime(number): Devices's This is the epoch start time in milliseconds from which data need to be
fetched. Default value is 24 hours earlier to endTime.
threatLevel(list): Devices's Filter Rogues by Threat Level. Threat Level information can be fetched from
"Get Threat Levels" API (list of strings).
threatType(list): Devices's Filter Rogues by Threat Type. Threat Type information can be fetched from
"Get Threat Types" API (list of strings).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!rogue-additional-details
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"offset": offset,
"limit": limit,
"startTime": startTime,
"endTime": endTime,
"siteId": siteId,
"threatLevel": threatLevel,
"threatType": threatType,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_c8354b61a36524cbb2e1037bd814807_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/security/rogue/additional/details"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_c8354b61a36524cbb2e1037bd814807_v3_1_6_0", json_data
)
[docs] def rogue_additional_detail_count(
self,
endTime=None,
siteId=None,
startTime=None,
threatLevel=None,
threatType=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""This API returns the count for the Rogue Additional Details.
Args:
endTime(number): Devices's This is the epoch end time in milliseconds upto which data need to be
fetched. Default value is current time.
siteId(list): Devices's Filter Rogues by location. Site IDs information can be fetched from "Get Site"
API (list of strings).
startTime(number): Devices's This is the epoch start time in milliseconds from which data need to be
fetched. Default value is 24 hours earlier to endTime.
threatLevel(list): Devices's This information can be fetched from "Get Threat Levels" API (list of
strings).
threatType(list): Devices's This information can be fetched from "Get Threat Types" API (list of
strings).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!rogue-additional-detail-count
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"startTime": startTime,
"endTime": endTime,
"siteId": siteId,
"threatLevel": threatLevel,
"threatType": threatType,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_de4c9b685250dfa8556ab1ec20407c_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/security/rogue/additional/details/cou" + "nt"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_de4c9b685250dfa8556ab1ec20407c_v3_1_6_0", json_data
)
[docs] def start_wireless_rogue_ap_containment(
self,
macAddress=None,
type=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Intent API to start the wireless rogue access point containment. This API will initiate the containment
operation on the strongest detecting WLC for the given Rogue AP. This is a resource intensive operation
which has legal implications since the rogue access point on whom it is triggered, might be a valid
neighbor access point.
Args:
macAddress(string): Devices's Mac Address.
type(integer): Devices's Type.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!start-wireless-rogue-a-p-containment
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"macAddress": macAddress,
"type": type,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_fe62979a925778bdb0a974a7d86a12_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/security/rogue/wireless-" + "containment/start"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_fe62979a925778bdb0a974a7d86a12_v3_1_6_0", json_data
)
[docs] def wireless_rogue_ap_containment_status(
self, mac_address, headers=None, **request_parameters
):
"""Intent API to check the wireless rogue access point containment status. The response includes all the details
like containment status, contained by WLC, containment status of each BSSID etc. This API also includes
the information of strongest detecting WLC for this rogue access point.
Args:
mac_address(str): macAddress path parameter. MAC Address of the Wireless Rogue AP.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!wireless-rogue-a-p-containment-status
"""
check_type(headers, dict)
check_type(mac_address, str, may_be_none=False)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"macAddress": mac_address,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = (
"/dna/intent/api/v1/security/rogue/wireless-"
+ "containment/status/{macAddress}"
)
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_e81244d1a2d9513384d543f0362c35d1_v3_1_6_0", json_data
)
[docs] def stop_wireless_rogue_ap_containment(
self,
macAddress=None,
type=None,
wlcIp=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Intent API to stop the wireless rogue access point containment. This API will stop the containment through
single WLC. The response includes the details like WLC and BSSID on which the stop containment has been
initiated.
Args:
macAddress(string): Devices's Mac Address.
type(integer): Devices's Type.
wlcIp(string): Devices's Wlc Ip.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!stop-wireless-rogue-a-p-containment
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"macAddress": macAddress,
"type": type,
"wlcIp": wlcIp,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_d9ed5bba1155b9c8fe132640832f94e_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/security/rogue/wireless-" + "containment/stop"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_d9ed5bba1155b9c8fe132640832f94e_v3_1_6_0", json_data
)
[docs] def threat_details(
self,
endTime=None,
isNewThreat=None,
limit=None,
offset=None,
siteId=None,
startTime=None,
threatLevel=None,
threatType=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""The details for the Rogue and aWIPS threats.
Args:
endTime(integer): Devices's End Time.
isNewThreat(boolean): Devices's Is New Threat.
limit(integer): Devices's Limit.
offset(integer): Devices's Offset.
siteId(list): Devices's Site Id (list of strings).
startTime(integer): Devices's Start Time.
threatLevel(list): Devices's Threat Level (list of strings).
threatType(list): Devices's Threat Type (list of strings).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!threat-details
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"offset": offset,
"limit": limit,
"startTime": startTime,
"endTime": endTime,
"siteId": siteId,
"threatLevel": threatLevel,
"threatType": threatType,
"isNewThreat": isNewThreat,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_f4ce55b5f235924903516ef31dc9e3c_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/security/threats/details"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_f4ce55b5f235924903516ef31dc9e3c_v3_1_6_0", json_data
)
[docs] def threat_detail_count(
self,
endTime=None,
isNewThreat=None,
limit=None,
offset=None,
siteId=None,
startTime=None,
threatLevel=None,
threatType=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""The details count for the Rogue and aWIPS threats.
Args:
endTime(integer): Devices's End Time.
isNewThreat(boolean): Devices's Is New Threat.
limit(integer): Devices's Limit.
offset(integer): Devices's Offset.
siteId(list): Devices's Site Id (list of strings).
startTime(integer): Devices's Start Time.
threatLevel(list): Devices's Threat Level (list of strings).
threatType(list): Devices's Threat Type (list of strings).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!threat-detail-count
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"offset": offset,
"limit": limit,
"startTime": startTime,
"endTime": endTime,
"siteId": siteId,
"threatLevel": threatLevel,
"threatType": threatType,
"isNewThreat": isNewThreat,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_c7266d89581c9601b79b7304fda3_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/security/threats/details/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_c7266d89581c9601b79b7304fda3_v3_1_6_0", json_data
)
[docs] def get_threat_levels(self, headers=None, **request_parameters):
"""Intent API to fetch all threat levels defined.
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-threat-levels
"""
check_type(headers, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/security/threats/level"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_eb1bd16969ed5cee8eb0a208b7441edd_v3_1_6_0", json_data
)
[docs] def get_allowed_mac_address(
self, limit=None, offset=None, headers=None, **request_parameters
):
"""Intent API to fetch all the allowed mac addresses in the system.
Args:
offset(int): offset query parameter. The offset of the first item in the collection to return.
limit(int): limit query parameter. The maximum number of entries to return. If the value exceeds the
total count, then the maximum entries will be returned.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
list: JSON response. A list of MyDict objects.
Access the object's properties by using the dot notation
or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-allowed-mac-address
"""
check_type(headers, dict)
check_type(offset, int)
check_type(limit, int)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {
"offset": offset,
"limit": limit,
}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/security/threats/rogue/allowed-list"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_b22e597335a8ba98dc758699726b3_v3_1_6_0", json_data
)
[docs] def add_allowed_mac_address(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Intent API to add the threat mac address to allowed list.
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(list): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-allowed-mac-address
"""
check_type(headers, dict)
check_type(payload, list)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = payload or []
if active_validation:
self._request_validator(
"jsd_fdd36dd2454547096bb65df3755710f_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/security/threats/rogue/allowed-list"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_fdd36dd2454547096bb65df3755710f_v3_1_6_0", json_data
)
[docs] def get_allowed_mac_address_count(self, headers=None, **request_parameters):
"""Intent API to fetch the count of allowed mac addresses in the system.
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-allowed-mac-address-count
"""
check_type(headers, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/security/threats/rogue/allowed-" + "list/count"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_f1a062d6eeac569b9ab40cf2d3b0ffa7_v3_1_6_0", json_data
)
[docs] def remove_allowed_mac_address(
self, mac_address, headers=None, **request_parameters
):
"""Intent API to remove the threat mac address from allowed list.
Args:
mac_address(str): macAddress path parameter. Threat mac address which needs to be removed from the
allowed list. Multiple mac addresses will be removed if provided as comma separated
values (example: 00:2A:10:51:22:43,00:2A:10:51:22:44). Note: In one request, maximum 100
mac addresses can be removed.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!remove-allowed-mac-address
"""
check_type(headers, dict)
check_type(mac_address, str, may_be_none=False)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"macAddress": mac_address,
}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = (
"/dna/intent/api/v1/security/threats/rogue/allowed-" + "list/{macAddress}"
)
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.delete(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.delete(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_dda7feeaa3a564d97eb01f9843ed720_v3_1_6_0", json_data
)
[docs] def threat_summary(
self,
endTime=None,
siteId=None,
startTime=None,
threatLevel=None,
threatType=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""The Threat Summary for the Rogues and aWIPS.
Args:
endTime(integer): Devices's End Time.
siteId(list): Devices's Site Id (list of strings).
startTime(integer): Devices's Start Time.
threatLevel(list): Devices's Threat Level (list of strings).
threatType(list): Devices's Threat Type (list of strings).
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!threat-summary
"""
check_type(headers, dict)
check_type(payload, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
_payload = {
"startTime": startTime,
"endTime": endTime,
"siteId": siteId,
"threatLevel": threatLevel,
"threatType": threatType,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_e6eed78cb55d51a1bfe669729df25689_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/security/threats/summary"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_e6eed78cb55d51a1bfe669729df25689_v3_1_6_0", json_data
)
[docs] def get_threat_types(self, headers=None, **request_parameters):
"""Intent API to fetch all threat types defined.
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-threat-types
"""
check_type(headers, dict)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v1/security/threats/type"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_c1720793d71052418cadda1f9fd5f977_v3_1_6_0", json_data
)
[docs] def get_device_enrichment_details_v2(self, headers=None, **request_parameters):
"""Enriches a given network device context (device id or device Mac Address or device management IP address) with
details about the device and neighbor topology.
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
list: JSON response. A list of MyDict objects.
Access the object's properties by using the dot notation
or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-device-enrichment-details-v2
"""
check_type(headers, dict)
if headers is not None:
if "entity_type" in headers:
check_type(headers.get("entity_type"), str, may_be_none=False)
if "entity_value" in headers:
check_type(headers.get("entity_value"), str, may_be_none=False)
if "__persistbapioutput" in headers:
check_type(headers.get("__persistbapioutput"), bool)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {}
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v2/device-enrichment-details"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.get(
endpoint_full_url, params=_params, headers=_headers
)
else:
json_data = self._session.get(endpoint_full_url, params=_params)
return self._object_factory(
"bpm_ed54ba7565b85835b0d810f764ac79b7_v3_1_6_0", json_data
)
[docs] def get_device_interface_stats_info_v2(
self,
device_id,
endTime=None,
query=None,
startTime=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""This API returns the Interface Stats for the given Device Id. Please refer to the Feature tab for the Request
Body usage and the API filtering support.
Args:
endTime(integer): Devices's UTC epoch timestamp in milliseconds.
query(object): Devices's query.
startTime(integer): Devices's UTC epoch timestamp in milliseconds.
device_id(str): deviceId path parameter. Network Device Id.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(dict): A JSON serializable Python object to send in the
body of the Request.
active_validation(bool): Enable/Disable payload validation.
Defaults to True.
**request_parameters: Additional request parameters (provides
support for parameters that may be added in the future).
Returns:
MyDict: JSON response. Access the object's properties by using
the dot notation or the bracket notation.
Raises:
TypeError: If the parameter types are incorrect.
MalformedRequest: If the request body created is invalid.
ApiError: If the Catalyst Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-device-interface-stats-info-v2
"""
check_type(headers, dict)
check_type(payload, dict)
check_type(device_id, str, may_be_none=False)
if headers is not None:
if "Content-Type" in headers:
check_type(headers.get("Content-Type"), str, may_be_none=False)
if "X-Auth-Token" in headers:
check_type(headers.get("X-Auth-Token"), str, may_be_none=False)
_params = {}
_params.update(request_parameters)
_params = dict_from_items_with_values(_params)
path_params = {
"deviceId": device_id,
}
_payload = {
"startTime": startTime,
"endTime": endTime,
"query": query,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_a9e0722d184658c592bd130ff03e1dde_v3_1_6_0"
).validate(_payload)
with_custom_headers = False
_headers = self._session.headers or {}
if headers:
_headers.update(dict_of_str(headers))
with_custom_headers = True
e_url = "/dna/intent/api/v2/networkDevices/{deviceId}/interfaces/" + "query"
endpoint_full_url = apply_path_params(e_url, path_params)
if with_custom_headers:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload, headers=_headers
)
else:
json_data = self._session.post(
endpoint_full_url, params=_params, json=_payload
)
return self._object_factory(
"bpm_a9e0722d184658c592bd130ff03e1dde_v3_1_6_0", json_data
)
# Alias Functions
Devices.get_device_interface_stats_info = Devices.get_device_interface_stats_info_v2