# -*- coding: utf-8 -*-
"""Cisco DNA Center SDA API wrapper.
Copyright (c) 2024 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 *
from ...restsession import RestSession
from ...utils import (
apply_path_params,
check_type,
dict_from_items_with_values,
dict_of_str,
)
[docs]class Sda(object):
"""Cisco DNA Center SDA API (version: 2.3.7.6).
Wraps the DNA Center SDA
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 Sda
object with the provided RestSession.
Args:
session(RestSession): The RESTful session object to be used for
API calls to the DNA Center service.
Raises:
TypeError: If the parameter types are incorrect.
"""
check_type(session, RestSession)
super(Sda, self).__init__()
self._session = session
self._object_factory = object_factory
self._request_validator = request_validator
[docs] def get_default_authentication_profile_v1(
self,
site_name_hierarchy,
authenticate_template_name=None,
headers=None,
**request_parameters
):
"""Get default authentication profile from SDA Fabric .
Args:
site_name_hierarchy(str): siteNameHierarchy query parameter.
authenticate_template_name(str): authenticateTemplateName 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-default-authentication-profile-from-sda-fabric
"""
check_type(headers, dict)
check_type(site_name_hierarchy, str, may_be_none=False)
check_type(authenticate_template_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 = {
"siteNameHierarchy": site_name_hierarchy,
"authenticateTemplateName": authenticate_template_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/business/sda/authentication-profile"
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_e414dcbeeabd5a359352a0e2ad5ec3f5_v2_3_7_6", json_data
)
[docs] def add_default_authentication_profile_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Add default authentication template in SDA Fabric .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-default-authentication-template-in-sda-fabric
"""
check_type(headers, dict)
check_type(payload, list)
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 = payload or []
if active_validation:
self._request_validator(
"jsd_d1d42ef2f1895a82a2830bf1353e6baa_v2_3_7_6"
).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/business/sda/authentication-profile"
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_d1d42ef2f1895a82a2830bf1353e6baa_v2_3_7_6", json_data
)
[docs] def update_default_authentication_profile_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Update default authentication profile in SDA Fabric .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-default-authentication-profile-in-sda-fabric
"""
check_type(headers, dict)
check_type(payload, list)
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 = payload or []
if active_validation:
self._request_validator(
"jsd_d999a1d36ee52babb6b619877dad734_v2_3_7_6"
).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/business/sda/authentication-profile"
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_d999a1d36ee52babb6b619877dad734_v2_3_7_6", json_data
)
[docs] def delete_default_authentication_profile_v1(
self, site_name_hierarchy, headers=None, **request_parameters
):
"""Delete default authentication profile in SDA Fabric .
Args:
site_name_hierarchy(str): siteNameHierarchy 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-default-authentication-profile-from-sda-fabric
"""
check_type(headers, dict)
check_type(site_name_hierarchy, 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 = {
"siteNameHierarchy": site_name_hierarchy,
}
_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/business/sda/authentication-profile"
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_b2be8b5dda8b81620b903afe9f_v2_3_7_6", json_data
)
[docs] def adds_border_device_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Add border device in SDA Fabric .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-border-device-in-sda-fabric
"""
check_type(headers, dict)
check_type(payload, list)
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 = payload or []
if active_validation:
self._request_validator(
"jsd_b6f2d8e46cdd5f05bb06f52cd1b26fb2_v2_3_7_6"
).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/business/sda/border-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_b6f2d8e46cdd5f05bb06f52cd1b26fb2_v2_3_7_6", json_data
)
[docs] def gets_border_device_detail_v1(
self, device_management_ip_address, headers=None, **request_parameters
):
"""Get border device detail from SDA Fabric .
Args:
device_management_ip_address(str): deviceManagementIpAddress 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-border-device-detail-from-sda-fabric
"""
check_type(headers, dict)
check_type(device_management_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 = {
"deviceManagementIpAddress": device_management_ip_address,
}
_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/business/sda/border-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_aae881ff75d5488a5325ea949be4c5b_v2_3_7_6", json_data
)
[docs] def deletes_border_device_v1(
self, device_management_ip_address, headers=None, **request_parameters
):
"""Delete border device from SDA Fabric .
Args:
device_management_ip_address(str): deviceManagementIpAddress 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-border-device-from-sda-fabric
"""
check_type(headers, dict)
check_type(device_management_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 = {
"deviceManagementIpAddress": device_management_ip_address,
}
_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/business/sda/border-device"
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_a102ba155e35f84b7af3396aa407d02_v2_3_7_6", json_data
)
[docs] def delete_control_plane_device_v1(
self, device_management_ip_address, headers=None, **request_parameters
):
"""Delete control plane device in SDA Fabric .
Args:
device_management_ip_address(str): deviceManagementIpAddress 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-control-plane-device-in-sda-fabric
"""
check_type(headers, dict)
check_type(device_management_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 = {
"deviceManagementIpAddress": device_management_ip_address,
}
_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/business/sda/control-plane-device"
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_c05702ed7075a2f9ab14c051f1ac883_v2_3_7_6", json_data
)
[docs] def get_control_plane_device_v1(
self, device_management_ip_address, headers=None, **request_parameters
):
"""Get control plane device from SDA Fabric .
Args:
device_management_ip_address(str): deviceManagementIpAddress 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-control-plane-device-from-sda-fabric
"""
check_type(headers, dict)
check_type(device_management_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 = {
"deviceManagementIpAddress": device_management_ip_address,
}
_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/business/sda/control-plane-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_c1a89e4a8ff15608bc6c10d7ef7389d7_v2_3_7_6", json_data
)
[docs] def add_control_plane_device_v1(
self,
deviceManagementIpAddress=None,
routeDistributionProtocol=None,
siteNameHierarchy=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Add control plane device in SDA Fabric .
Args:
deviceManagementIpAddress(string): SDA's Management Ip Address of the Device which is provisioned
successfully .
routeDistributionProtocol(string): SDA's Route Distribution Protocol for Control Plane Device. Allowed
values are "LISP_BGP" or "LISP_PUB_SUB". Default value is "LISP_BGP" .
siteNameHierarchy(string): SDA's siteNameHierarchy of the Provisioned Device(site should be part of
Fabric Site) .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-control-plane-device-in-sda-fabric
"""
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 = {
"deviceManagementIpAddress": deviceManagementIpAddress,
"siteNameHierarchy": siteNameHierarchy,
"routeDistributionProtocol": routeDistributionProtocol,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_ae7f02a3d051f2baf7cc087990d658_v2_3_7_6"
).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/business/sda/control-plane-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_ae7f02a3d051f2baf7cc087990d658_v2_3_7_6", json_data
)
[docs] def get_device_info_v1(
self, device_management_ip_address, headers=None, **request_parameters
):
"""Get device info from SDA Fabric .
Args:
device_management_ip_address(str): deviceManagementIpAddress 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-device-info-from-sda-fabric
"""
check_type(headers, dict)
check_type(device_management_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 = {
"deviceManagementIpAddress": device_management_ip_address,
}
_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/business/sda/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_d12790f461c553a08142ec740db5efbf_v2_3_7_6", json_data
)
[docs] def get_device_role_in_sda_fabric_v1(
self, device_management_ip_address, headers=None, **request_parameters
):
"""Get device role in SDA Fabric .
Args:
device_management_ip_address(str): deviceManagementIpAddress query parameter. Device Management
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-device-role-in-sda-fabric
"""
check_type(headers, dict)
check_type(device_management_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 = {
"deviceManagementIpAddress": device_management_ip_address,
}
_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/business/sda/device/role"
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_ea24b22ce355a229b7fd067401ddf3a_v2_3_7_6", json_data
)
[docs] def add_edge_device_v1(
self,
deviceManagementIpAddress=None,
siteNameHierarchy=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Add edge device in SDA Fabric .
Args:
deviceManagementIpAddress(string): SDA's Management Ip Address of the Device which is provisioned
successfully .
siteNameHierarchy(string): SDA's siteNameHierarchy of the Provisioned Device(site should be part of
Fabric Site) .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-edge-device-in-sda-fabric
"""
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 = {
"deviceManagementIpAddress": deviceManagementIpAddress,
"siteNameHierarchy": siteNameHierarchy,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_e0c7b28d55c85d49a84c1403ca14bd5f_v2_3_7_6"
).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/business/sda/edge-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_e0c7b28d55c85d49a84c1403ca14bd5f_v2_3_7_6", json_data
)
[docs] def delete_edge_device_v1(
self, device_management_ip_address, headers=None, **request_parameters
):
"""Delete edge device from SDA Fabric. .
Args:
device_management_ip_address(str): deviceManagementIpAddress 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-edge-device-from-sda-fabric
"""
check_type(headers, dict)
check_type(device_management_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 = {
"deviceManagementIpAddress": device_management_ip_address,
}
_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/business/sda/edge-device"
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_b70d8c6f85254a053ab281fd9e8fc_v2_3_7_6", json_data
)
[docs] def get_edge_device_v1(
self, device_management_ip_address, headers=None, **request_parameters
):
"""Get edge device from SDA Fabric .
Args:
device_management_ip_address(str): deviceManagementIpAddress 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-edge-device-from-sda-fabric
"""
check_type(headers, dict)
check_type(device_management_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 = {
"deviceManagementIpAddress": device_management_ip_address,
}
_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/business/sda/edge-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_a2ee396d6595001acfbbcdfa25093ff_v2_3_7_6", json_data
)
[docs] def get_site_v1(self, site_name_hierarchy, headers=None, **request_parameters):
"""Get Site info from SDA Fabric .
Args:
site_name_hierarchy(str): siteNameHierarchy query parameter. Site Name Hierarchy .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-site-from-sda-fabric
"""
check_type(headers, dict)
check_type(site_name_hierarchy, 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 = {
"siteNameHierarchy": site_name_hierarchy,
}
_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/business/sda/fabric-site"
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_d23f3e54f8c59caac3ca905f7bf543a_v2_3_7_6", json_data
)
[docs] def delete_site_v1(self, site_name_hierarchy, headers=None, **request_parameters):
"""Delete Site from SDA Fabric .
Args:
site_name_hierarchy(str): siteNameHierarchy query parameter. Site Name Hierarchy .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-site-from-sda-fabric
"""
check_type(headers, dict)
check_type(site_name_hierarchy, 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 = {
"siteNameHierarchy": site_name_hierarchy,
}
_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/business/sda/fabric-site"
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_f9db3b115f0b8c8b3ce14bc5f975_v2_3_7_6", json_data
)
[docs] def add_site_v1(
self,
fabricName=None,
fabricType=None,
siteNameHierarchy=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Add Site in SDA Fabric .
Args:
fabricName(string): SDA's Warning Starting DNACenter 2.2.3.5 release, this field has been deprecated.
SD-Access Fabric does not need it anymore. It will be removed in future DNACenter
releases. .
fabricType(string): SDA's Type of SD-Access Fabric. Allowed values are "FABRIC_SITE" or "FABRIC_ZONE".
Default value is "FABRIC_SITE". .
siteNameHierarchy(string): SDA's Existing site name hierarchy available at global level. For Example
"Global/Chicago/Building21/Floor1" .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-site-in-sda-fabric
"""
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 = {
"fabricName": fabricName,
"siteNameHierarchy": siteNameHierarchy,
"fabricType": fabricType,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_a764c85d8df5c30b9143619d4f9cde9_v2_3_7_6"
).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/business/sda/fabric-site"
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_a764c85d8df5c30b9143619d4f9cde9_v2_3_7_6", json_data
)
[docs] def add_port_assignment_for_access_point_v1(
self,
authenticateTemplateName=None,
dataIpAddressPoolName=None,
deviceManagementIpAddress=None,
interfaceDescription=None,
interfaceName=None,
siteNameHierarchy=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Add Port assignment for access point in SDA Fabric .
Args:
authenticateTemplateName(string): SDA's Authenticate TemplateName associated to Fabric Site . Available
values are 'No Authentication', 'Open Authentication', 'Closed Authentication ' and 'Low
Impact '.
dataIpAddressPoolName(string): SDA's Ip Pool Name, that is assigned to INFRA_VN .
deviceManagementIpAddress(string): SDA's Management Ip Address of the edge device .
interfaceDescription(string): SDA's Details or note of interface port assignment .
interfaceName(string): SDA's Interface Name of the edge device .
siteNameHierarchy(string): SDA's Path of sda Fabric Site .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-port-assignment-for-access-point-in-sda-fabric
"""
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 = {
"siteNameHierarchy": siteNameHierarchy,
"deviceManagementIpAddress": deviceManagementIpAddress,
"interfaceName": interfaceName,
"dataIpAddressPoolName": dataIpAddressPoolName,
"authenticateTemplateName": authenticateTemplateName,
"interfaceDescription": interfaceDescription,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_e4a09bf566f35babad9e27f5eb61a86d_v2_3_7_6"
).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/business/sda/hostonboarding/access-" + "point"
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_e4a09bf566f35babad9e27f5eb61a86d_v2_3_7_6", json_data
)
[docs] def delete_port_assignment_for_access_point_v1(
self,
device_management_ip_address,
interface_name,
headers=None,
**request_parameters
):
"""Delete Port assignment for access point in SDA Fabric .
Args:
device_management_ip_address(str): deviceManagementIpAddress query parameter.
interface_name(str): interfaceName 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-port-assignment-for-access-point-in-sda-fabric
"""
check_type(headers, dict)
check_type(device_management_ip_address, str, may_be_none=False)
check_type(interface_name, 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 = {
"deviceManagementIpAddress": device_management_ip_address,
"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/intent/api/v1/business/sda/hostonboarding/access-" + "point"
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_bd26b08b64545bae20f60c56891576_v2_3_7_6", json_data
)
[docs] def get_port_assignment_for_access_point_v1(
self,
device_management_ip_address,
interface_name,
headers=None,
**request_parameters
):
"""Get Port assignment for access point in SDA Fabric .
Args:
device_management_ip_address(str): deviceManagementIpAddress query parameter.
interface_name(str): interfaceName 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-port-assignment-for-access-point-in-sda-fabric
"""
check_type(headers, dict)
check_type(device_management_ip_address, str, may_be_none=False)
check_type(interface_name, 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 = {
"deviceManagementIpAddress": device_management_ip_address,
"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/intent/api/v1/business/sda/hostonboarding/access-" + "point"
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_b035b0b3b60b5f2bb7c8c82e7f94b63b_v2_3_7_6", json_data
)
[docs] def delete_port_assignment_for_user_device_v1(
self,
device_management_ip_address,
interface_name,
headers=None,
**request_parameters
):
"""Delete Port assignment for user device in SDA Fabric. .
Args:
device_management_ip_address(str): deviceManagementIpAddress query parameter.
interface_name(str): interfaceName 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-port-assignment-for-user-device-in-sda-fabric
"""
check_type(headers, dict)
check_type(device_management_ip_address, str, may_be_none=False)
check_type(interface_name, 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 = {
"deviceManagementIpAddress": device_management_ip_address,
"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/intent/api/v1/business/sda/hostonboarding/user-" + "device"
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_cb88b50dd5ead96ecfb4ab0390f47_v2_3_7_6", json_data
)
[docs] def add_port_assignment_for_user_device_v1(
self,
authenticateTemplateName=None,
dataIpAddressPoolName=None,
deviceManagementIpAddress=None,
interfaceDescription=None,
interfaceName=None,
interfaceNames=None,
scalableGroupName=None,
siteNameHierarchy=None,
voiceIpAddressPoolName=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Add Port assignment for user device in SDA Fabric. .
Args:
authenticateTemplateName(string): SDA's Authenticate TemplateName associated with siteNameHierarchy .
Available values are 'Open Authentication', 'Closed Authentication', 'Low Impact' and
'No Authentication'.
dataIpAddressPoolName(string): SDA's Ip Pool Name, that is assigned to virtual network with traffic type
as DATA(can't be empty if voiceIpAddressPoolName is empty) .
deviceManagementIpAddress(string): SDA's Management Ip Address of the Edge Node Device. .
interfaceDescription(string): SDA's User defined text message for port assignment .
interfaceName(string): SDA's Interface Name on the Edge Node Device. .
interfaceNames(list): SDA's List of Interface Names on the Edge Node Device.
E.g.["GigabitEthernet1/0/3","GigabitEthernet1/0/4"] (list of strings).
scalableGroupName(string): SDA's Scalable Group name associated with VN .
siteNameHierarchy(string): SDA's Complete Path of SD-Access Fabric Site. .
voiceIpAddressPoolName(string): SDA's Ip Pool Name, that is assigned to virtual network with traffic
type as VOICE(can't be empty if dataIpAddressPoolName is empty) .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-port-assignment-for-user-device-in-sda-fabric
"""
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 = {
"siteNameHierarchy": siteNameHierarchy,
"deviceManagementIpAddress": deviceManagementIpAddress,
"interfaceName": interfaceName,
"interfaceNames": interfaceNames,
"dataIpAddressPoolName": dataIpAddressPoolName,
"voiceIpAddressPoolName": voiceIpAddressPoolName,
"authenticateTemplateName": authenticateTemplateName,
"scalableGroupName": scalableGroupName,
"interfaceDescription": interfaceDescription,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_af29516f0c8591da2a92523b5ab3386_v2_3_7_6"
).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/business/sda/hostonboarding/user-" + "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_af29516f0c8591da2a92523b5ab3386_v2_3_7_6", json_data
)
[docs] def get_port_assignment_for_user_device_v1(
self,
device_management_ip_address,
interface_name,
headers=None,
**request_parameters
):
"""Get Port assignment for user device in SDA Fabric. .
Args:
device_management_ip_address(str): deviceManagementIpAddress query parameter.
interface_name(str): interfaceName 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-port-assignment-for-user-device-in-sda-fabric
"""
check_type(headers, dict)
check_type(device_management_ip_address, str, may_be_none=False)
check_type(interface_name, 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 = {
"deviceManagementIpAddress": device_management_ip_address,
"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/intent/api/v1/business/sda/hostonboarding/user-" + "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_a446d7327733580e9a6b661715eb4c09_v2_3_7_6", json_data
)
[docs] def add_multicast_in_sda_fabric_v1(
self,
multicastMethod=None,
multicastType=None,
multicastVnInfo=None,
siteNameHierarchy=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Add multicast in SDA fabric .
Args:
multicastMethod(string): SDA's Multicast Method . Available values are 'native_multicast'.
multicastType(string): SDA's Multicast Type . Available values are 'ssm', 'asm_with_internal_rp' and
'asm_with_external_rp'.
multicastVnInfo(list): SDA's multicastVnInfo (list of objects).
siteNameHierarchy(string): SDA's Full path of sda Fabric Site .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-multicast-in-sda-fabric
"""
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 = {
"siteNameHierarchy": siteNameHierarchy,
"multicastMethod": multicastMethod,
"multicastType": multicastType,
"multicastVnInfo": multicastVnInfo,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_b7079a38844e56dd8f1b6b876880a02e_v2_3_7_6"
).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/business/sda/multicast"
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_b7079a38844e56dd8f1b6b876880a02e_v2_3_7_6", json_data
)
[docs] def get_multicast_details_from_sda_fabric_v1(
self, site_name_hierarchy, headers=None, **request_parameters
):
"""Get multicast details from SDA fabric .
Args:
site_name_hierarchy(str): siteNameHierarchy query parameter. fabric site name hierarchy .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-multicast-details-from-sda-fabric
"""
check_type(headers, dict)
check_type(site_name_hierarchy, 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 = {
"siteNameHierarchy": site_name_hierarchy,
}
_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/business/sda/multicast"
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_c27bbb42365955bc210924e1362c34_v2_3_7_6", json_data
)
[docs] def delete_multicast_from_sda_fabric_v1(
self, site_name_hierarchy, headers=None, **request_parameters
):
"""Delete multicast from SDA fabric .
Args:
site_name_hierarchy(str): siteNameHierarchy 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-multicast-from-sda-fabric
"""
check_type(headers, dict)
check_type(site_name_hierarchy, 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 = {
"siteNameHierarchy": site_name_hierarchy,
}
_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/business/sda/multicast"
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_e8e007d3e25f7fb83a6579016aea72_v2_3_7_6", json_data
)
[docs] def delete_provisioned_wired_device_v1(
self, device_management_ip_address, headers=None, **request_parameters
):
"""Delete provisioned Wired Device .
Args:
device_management_ip_address(str): deviceManagementIpAddress query parameter. Valid IP address of
the device currently provisioned in a fabric site .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-provisioned-wired-device
"""
check_type(headers, dict)
check_type(device_management_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 = {
"deviceManagementIpAddress": device_management_ip_address,
}
_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/business/sda/provision-device"
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_e5bd8dbbf65253f0aadd77a62b1b8b58_v2_3_7_6", json_data
)
[docs] def re_provision_wired_device_v1(
self,
deviceManagementIpAddress=None,
siteNameHierarchy=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Re-Provision Wired Device .
Args:
deviceManagementIpAddress(string): SDA's Management Ip Address of the device to be re-provisioned .
siteNameHierarchy(string): SDA's siteNameHierarchy of the provisioned 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!re-provision-wired-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 = {
"deviceManagementIpAddress": deviceManagementIpAddress,
"siteNameHierarchy": siteNameHierarchy,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_fd488ff002115f3b8f0ee165e5347609_v2_3_7_6"
).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/business/sda/provision-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_fd488ff002115f3b8f0ee165e5347609_v2_3_7_6", json_data
)
[docs] def provision_wired_device_v1(
self,
deviceManagementIpAddress=None,
siteNameHierarchy=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Provision Wired Device .
Args:
deviceManagementIpAddress(string): SDA's Management Ip Address of the device to be provisioned .
siteNameHierarchy(string): SDA's Site Name Hierarchy for device location(only building / floor level) .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!provision-wired-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 = {
"deviceManagementIpAddress": deviceManagementIpAddress,
"siteNameHierarchy": siteNameHierarchy,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_d1608b2751c883a072ee3fb80228_v2_3_7_6"
).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/business/sda/provision-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_d1608b2751c883a072ee3fb80228_v2_3_7_6", json_data
)
[docs] def get_provisioned_wired_device_v1(
self, device_management_ip_address, headers=None, **request_parameters
):
"""Get Provisioned Wired Device .
Args:
device_management_ip_address(str): deviceManagementIpAddress 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-provisioned-wired-device
"""
check_type(headers, dict)
check_type(device_management_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 = {
"deviceManagementIpAddress": device_management_ip_address,
}
_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/business/sda/provision-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_d8f10868c21856eab31776f109aba2bb_v2_3_7_6", json_data
)
[docs] def delete_transit_peer_network_v1(
self, transit_peer_network_name, headers=None, **request_parameters
):
"""Delete Transit Peer Network from SD-Access .
Args:
transit_peer_network_name(str): transitPeerNetworkName query parameter. Transit Peer Network 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-transit-peer-network
"""
check_type(headers, dict)
check_type(transit_peer_network_name, 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 = {
"transitPeerNetworkName": transit_peer_network_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/business/sda/transit-peer-network"
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_a34aab91750028f4d584d36811844_v2_3_7_6", json_data
)
[docs] def get_transit_peer_network_info_v1(
self, transit_peer_network_name, headers=None, **request_parameters
):
"""Get Transit Peer Network Info from SD-Access .
Args:
transit_peer_network_name(str): transitPeerNetworkName query parameter. Transit or Peer Network
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-transit-peer-network-info
"""
check_type(headers, dict)
check_type(transit_peer_network_name, 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 = {
"transitPeerNetworkName": transit_peer_network_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/business/sda/transit-peer-network"
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_d39e10793a45d3db229d6d3820c665a_v2_3_7_6", json_data
)
[docs] def add_transit_peer_network_v1(
self,
ipTransitSettings=None,
sdaTransitSettings=None,
transitPeerNetworkName=None,
transitPeerNetworkType=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Add Transit Peer Network in SD-Access .
Args:
ipTransitSettings(object): SDA's ipTransitSettings.
sdaTransitSettings(object): SDA's sdaTransitSettings.
transitPeerNetworkName(string): SDA's Transit Peer Network Name .
transitPeerNetworkType(string): SDA's Transit Peer Network Type . Available values are 'ip_transit',
'sda_transit_with_lisp_bgp' and 'sda_transit_with_pub_sub'.
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-transit-peer-network
"""
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 = {
"transitPeerNetworkName": transitPeerNetworkName,
"transitPeerNetworkType": transitPeerNetworkType,
"ipTransitSettings": ipTransitSettings,
"sdaTransitSettings": sdaTransitSettings,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_d7073129453698264e7519d82991c_v2_3_7_6"
).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/business/sda/transit-peer-network"
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_d7073129453698264e7519d82991c_v2_3_7_6", json_data
)
[docs] def delete_vn_v1(
self,
site_name_hierarchy,
virtual_network_name,
headers=None,
**request_parameters
):
"""Delete virtual network (VN) from SDA Fabric .
Args:
virtual_network_name(str): virtualNetworkName query parameter.
site_name_hierarchy(str): siteNameHierarchy 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-vn-from-sda-fabric
"""
check_type(headers, dict)
check_type(virtual_network_name, str, may_be_none=False)
check_type(site_name_hierarchy, 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 = {
"virtualNetworkName": virtual_network_name,
"siteNameHierarchy": site_name_hierarchy,
}
_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/business/sda/virtual-network"
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_cb9f8ad5359b2b2cbc151ac3a842a_v2_3_7_6", json_data
)
[docs] def get_vn_v1(
self,
site_name_hierarchy,
virtual_network_name,
headers=None,
**request_parameters
):
"""Get virtual network (VN) from SDA Fabric .
Args:
virtual_network_name(str): virtualNetworkName query parameter.
site_name_hierarchy(str): siteNameHierarchy 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-vn-from-sda-fabric
"""
check_type(headers, dict)
check_type(virtual_network_name, str, may_be_none=False)
check_type(site_name_hierarchy, 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 = {
"virtualNetworkName": virtual_network_name,
"siteNameHierarchy": site_name_hierarchy,
}
_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/business/sda/virtual-network"
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_cb1fe08692b85767a42b84340c4c7d53_v2_3_7_6", json_data
)
[docs] def add_vn_v1(
self,
siteNameHierarchy=None,
virtualNetworkName=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Add virtual network (VN) in SDA Fabric .
Args:
siteNameHierarchy(string): SDA's Path of sda Fabric Site .
virtualNetworkName(string): SDA's Virtual Network Name, that is created at Global level .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-vn-in-fabric
"""
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 = {
"virtualNetworkName": virtualNetworkName,
"siteNameHierarchy": siteNameHierarchy,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_e3a724a35854758d65a83823c88435_v2_3_7_6"
).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/business/sda/virtual-network"
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_e3a724a35854758d65a83823c88435_v2_3_7_6", json_data
)
[docs] def get_virtual_network_summary_v1(
self, site_name_hierarchy, headers=None, **request_parameters
):
"""Get Virtual Network Summary .
Args:
site_name_hierarchy(str): siteNameHierarchy query parameter. Complete fabric siteNameHierarchy
Path .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-virtual-network-summary
"""
check_type(headers, dict)
check_type(site_name_hierarchy, 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 = {
"siteNameHierarchy": site_name_hierarchy,
}
_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/business/sda/virtual-network/summary"
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_ccf5ce99e049525f8184fcaa5991d919_v2_3_7_6", json_data
)
[docs] def get_ip_pool_from_sda_virtual_network_v1(
self,
ip_pool_name,
site_name_hierarchy,
virtual_network_name,
headers=None,
**request_parameters
):
"""Get IP Pool from SDA Virtual Network .
Args:
site_name_hierarchy(str): siteNameHierarchy query parameter.
virtual_network_name(str): virtualNetworkName query parameter.
ip_pool_name(str): ipPoolName query parameter. ipPoolName. Note: Use vlanName as a value for this
parameter if same ip pool is assigned to multiple virtual networks (e.g..
ipPoolName=vlan1021) .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-ip-pool-from-sda-virtual-network
"""
check_type(headers, dict)
check_type(site_name_hierarchy, str, may_be_none=False)
check_type(virtual_network_name, str, may_be_none=False)
check_type(ip_pool_name, 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 = {
"siteNameHierarchy": site_name_hierarchy,
"virtualNetworkName": virtual_network_name,
"ipPoolName": ip_pool_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/business/sda/virtualnetwork/ippool"
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_b88723912610599ba42292db52d1dae4_v2_3_7_6", json_data
)
[docs] def delete_ip_pool_from_sda_virtual_network_v1(
self,
ip_pool_name,
site_name_hierarchy,
virtual_network_name,
headers=None,
**request_parameters
):
"""Delete IP Pool from SDA Virtual Network .
Args:
site_name_hierarchy(str): siteNameHierarchy query parameter.
virtual_network_name(str): virtualNetworkName query parameter.
ip_pool_name(str): ipPoolName 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-ip-pool-from-sda-virtual-network
"""
check_type(headers, dict)
check_type(site_name_hierarchy, str, may_be_none=False)
check_type(virtual_network_name, str, may_be_none=False)
check_type(ip_pool_name, 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 = {
"siteNameHierarchy": site_name_hierarchy,
"virtualNetworkName": virtual_network_name,
"ipPoolName": ip_pool_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/business/sda/virtualnetwork/ippool"
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_c923d016d5401b7a9943724df3844_v2_3_7_6", json_data
)
[docs] def add_ip_pool_in_sda_virtual_network_v1(
self,
autoGenerateVlanName=None,
ipPoolName=None,
isBridgeModeVm=None,
isCommonPool=None,
isIpDirectedBroadcast=None,
isL2FloodingEnabled=None,
isLayer2Only=None,
isThisCriticalPool=None,
isWirelessPool=None,
poolType=None,
scalableGroupName=None,
siteNameHierarchy=None,
trafficType=None,
virtualNetworkName=None,
vlanId=None,
vlanName=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Add IP Pool in SDA Virtual Network .
Args:
autoGenerateVlanName(boolean): SDA's It will auto generate vlanName, if vlanName is empty(applicable for
L3 and INFRA_VN) .
ipPoolName(string): SDA's Ip Pool Name, that is reserved to Fabric Site (Required for L3 and INFRA_VN) .
isBridgeModeVm(boolean): SDA's Bridge Mode Vm enablement flag (applicable for L3 and L2 and default
value is False ) .
isCommonPool(boolean): SDA's Common Pool enablement flag(applicable for L3 and L2 and default value is
False ) .
isIpDirectedBroadcast(boolean): SDA's Ip Directed Broadcast enablement flag(applicable for L3 and
default value is False ) .
isL2FloodingEnabled(boolean): SDA's Layer2 flooding enablement flag(applicable for L3 , L2 and always
true for L2 and default value is False ) .
isLayer2Only(boolean): SDA's Layer2 Only enablement flag and default value is False .
isThisCriticalPool(boolean): SDA's Critical pool enablement flag(applicable for L3 and default value is
False ) .
isWirelessPool(boolean): SDA's Wireless Pool enablement flag(applicable for L3 and L2 and default value
is False ) .
poolType(string): SDA's Pool Type (applicable for INFRA_VN) . Available values are 'AP' and 'Extended'.
scalableGroupName(string): SDA's Scalable Group Name(applicable for L3) .
siteNameHierarchy(string): SDA's Path of sda Fabric Site .
trafficType(string): SDA's Traffic type(applicable for L3 and L2) . Available values are 'Data' and
'Voice'.
virtualNetworkName(string): SDA's Virtual Network Name, that is associated to Fabric Site .
vlanId(string): SDA's vlan Id(applicable for L3 , L2 and INFRA_VN) .
vlanName(string): SDA's Vlan name represent the segment name, if empty, vlanName would be auto generated
by API .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-ip-pool-in-sda-virtual-network
"""
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 = {
"siteNameHierarchy": siteNameHierarchy,
"virtualNetworkName": virtualNetworkName,
"isLayer2Only": isLayer2Only,
"ipPoolName": ipPoolName,
"vlanId": vlanId,
"vlanName": vlanName,
"autoGenerateVlanName": autoGenerateVlanName,
"trafficType": trafficType,
"scalableGroupName": scalableGroupName,
"isL2FloodingEnabled": isL2FloodingEnabled,
"isThisCriticalPool": isThisCriticalPool,
"isWirelessPool": isWirelessPool,
"isIpDirectedBroadcast": isIpDirectedBroadcast,
"isCommonPool": isCommonPool,
"isBridgeModeVm": isBridgeModeVm,
"poolType": poolType,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_b07f187b7456c8bbb6088a2f24dcee_v2_3_7_6"
).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/business/sda/virtualnetwork/ippool"
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_b07f187b7456c8bbb6088a2f24dcee_v2_3_7_6", json_data
)
[docs] def update_anycast_gateways_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Updates anycast gateways based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-anycast-gateways
"""
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_f486694f3da57b4921b7f2036a1b754_v2_3_7_6"
).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/sda/anycastGateways"
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_f486694f3da57b4921b7f2036a1b754_v2_3_7_6", json_data
)
[docs] def add_anycast_gateways_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Adds anycast gateways based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-anycast-gateways
"""
check_type(headers, dict)
check_type(payload, list)
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 = payload or []
if active_validation:
self._request_validator(
"jsd_ee8590b6b45048b84e814161272bee_v2_3_7_6"
).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/sda/anycastGateways"
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_ee8590b6b45048b84e814161272bee_v2_3_7_6", json_data
)
[docs] def get_anycast_gateways_v1(
self,
fabric_id=None,
id=None,
ip_pool_name=None,
limit=None,
offset=None,
virtual_network_name=None,
vlan_id=None,
vlan_name=None,
headers=None,
**request_parameters
):
"""Returns a list of anycast gateways that match the provided query parameters. .
Args:
id(str): id query parameter. ID of the anycast gateway. .
fabric_id(str): fabricId query parameter. ID of the fabric the anycast gateway is assigned to. .
virtual_network_name(str): virtualNetworkName query parameter. Name of the virtual network
associated with the anycast gateways. .
ip_pool_name(str): ipPoolName query parameter. Name of the IP pool associated with the anycast
gateways. .
vlan_name(str): vlanName query parameter. VLAN name of the anycast gateways. .
vlan_id(int): vlanId query parameter. VLAN ID of the anycast gateways. The allowed range for vlanId is
[2-4093] except for reserved VLANs [1002-1005], 2046, and 4094. .
offset(int): offset query parameter. Starting record for pagination. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-anycast-gateways
"""
check_type(headers, dict)
check_type(id, str)
check_type(fabric_id, str)
check_type(virtual_network_name, str)
check_type(ip_pool_name, str)
check_type(vlan_name, str)
check_type(vlan_id, int)
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 = {
"id": id,
"fabricId": fabric_id,
"virtualNetworkName": virtual_network_name,
"ipPoolName": ip_pool_name,
"vlanName": vlan_name,
"vlanId": vlan_id,
"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/sda/anycastGateways"
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_c634a503551e885c053fd1ed9d3fd_v2_3_7_6", json_data
)
[docs] def get_anycast_gateway_count_v1(
self,
fabric_id=None,
ip_pool_name=None,
virtual_network_name=None,
vlan_id=None,
vlan_name=None,
headers=None,
**request_parameters
):
"""Returns the count of anycast gateways that match the provided query parameters. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric the anycast gateway is assigned to. .
virtual_network_name(str): virtualNetworkName query parameter. Name of the virtual network
associated with the anycast gateways. .
ip_pool_name(str): ipPoolName query parameter. Name of the IP pool associated with the anycast
gateways. .
vlan_name(str): vlanName query parameter. VLAN name of the anycast gateways. .
vlan_id(int): vlanId query parameter. VLAN ID of the anycast gateways. The allowed range for vlanId is
[2-4093] except for reserved VLANs [1002-1005], 2046, and 4094. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-anycast-gateway-count
"""
check_type(headers, dict)
check_type(fabric_id, str)
check_type(virtual_network_name, str)
check_type(ip_pool_name, str)
check_type(vlan_name, str)
check_type(vlan_id, 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 = {
"fabricId": fabric_id,
"virtualNetworkName": virtual_network_name,
"ipPoolName": ip_pool_name,
"vlanName": vlan_name,
"vlanId": vlan_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/intent/api/v1/sda/anycastGateways/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_a280b785a3ca53c349c68ca9070_v2_3_7_6", json_data
)
[docs] def delete_anycast_gateway_by_id_v1(self, id, headers=None, **request_parameters):
"""Deletes an anycast gateway based on id. .
Args:
id(str): id path parameter. ID of the anycast gateway. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-anycast-gateway-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/sda/anycastGateways/{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_e66d9fbfe55cf5882bf219b0fffa13_v2_3_7_6", json_data
)
[docs] def get_authentication_profiles_v1(
self,
authentication_profile_name=None,
fabric_id=None,
limit=None,
offset=None,
headers=None,
**request_parameters
):
"""Returns a list of authentication profiles that match the provided query parameters. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric the authentication profile is assigned
to. .
authentication_profile_name(str): authenticationProfileName query parameter. Return only the
authentication profiles with this specified name. Note that 'No Authentication' is not a
valid option for this parameter. .
offset(int): offset query parameter. Starting record for pagination. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-authentication-profiles
"""
check_type(headers, dict)
check_type(fabric_id, str)
check_type(authentication_profile_name, 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 = {
"fabricId": fabric_id,
"authenticationProfileName": authentication_profile_name,
"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/sda/authenticationProfiles"
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_e6713a34508993b3e9f6837dd690_v2_3_7_6", json_data
)
[docs] def update_authentication_profile_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Updates an authentication profile based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-authentication-profile
"""
check_type(headers, dict)
check_type(payload, list)
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 = payload or []
if active_validation:
self._request_validator("jsd_ea8d75a9d8d9e6882da4a4a91_v2_3_7_6").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/sda/authenticationProfiles"
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_ea8d75a9d8d9e6882da4a4a91_v2_3_7_6", json_data)
[docs] def get_fabric_devices_v1(
self,
fabric_id,
device_roles=None,
limit=None,
network_device_id=None,
offset=None,
headers=None,
**request_parameters
):
"""Returns a list of fabric devices that match the provided query parameters. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric this device belongs to. .
network_device_id(str): networkDeviceId query parameter. Network device ID of the fabric device.
.
device_roles(str): deviceRoles query parameter. Device roles of the fabric device. Allowed values
are [CONTROL_PLANE_NODE, EDGE_NODE, BORDER_NODE, WIRELESS_CONTROLLER_NODE,
EXTENDED_NODE]. .
offset(int): offset query parameter. Starting record for pagination. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-fabric-devices
"""
check_type(headers, dict)
check_type(fabric_id, str, may_be_none=False)
check_type(network_device_id, str)
check_type(device_roles, 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 = {
"fabricId": fabric_id,
"networkDeviceId": network_device_id,
"deviceRoles": device_roles,
"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/sda/fabricDevices"
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_d5486968c9ff5b23ae1fdd15ad6da1ef_v2_3_7_6", json_data
)
[docs] def update_fabric_devices_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Updates fabric devices based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-fabric-devices
"""
check_type(headers, dict)
check_type(payload, list)
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 = payload or []
if active_validation:
self._request_validator(
"jsd_a924f763a15125a8d5beaa6dd6fa2c_v2_3_7_6"
).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/sda/fabricDevices"
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_a924f763a15125a8d5beaa6dd6fa2c_v2_3_7_6", json_data
)
[docs] def delete_fabric_devices_v1(
self,
fabric_id,
device_roles=None,
network_device_id=None,
headers=None,
**request_parameters
):
"""Deletes fabric devices based on user input. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric this device belongs to. .
network_device_id(str): networkDeviceId query parameter. Network device ID of the fabric device.
.
device_roles(str): deviceRoles query parameter. Device roles of the fabric device. Allowed values
are [CONTROL_PLANE_NODE, EDGE_NODE, BORDER_NODE, WIRELESS_CONTROLLER_NODE]. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-fabric-devices
"""
check_type(headers, dict)
check_type(fabric_id, str, may_be_none=False)
check_type(network_device_id, str)
check_type(device_roles, 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 = {
"fabricId": fabric_id,
"networkDeviceId": network_device_id,
"deviceRoles": device_roles,
}
_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/sda/fabricDevices"
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_c5d22b295a4c8e4a1dfdb4645f92_v2_3_7_6", json_data
)
[docs] def add_fabric_devices_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Adds fabric devices based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-fabric-devices
"""
check_type(headers, dict)
check_type(payload, list)
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 = payload or []
if active_validation:
self._request_validator(
"jsd_d77719c37558f694e5545a21406275_v2_3_7_6"
).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/sda/fabricDevices"
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_d77719c37558f694e5545a21406275_v2_3_7_6", json_data
)
[docs] def get_fabric_devices_count_v1(
self,
fabric_id,
device_roles=None,
network_device_id=None,
headers=None,
**request_parameters
):
"""Returns the count of fabric devices that match the provided query parameters. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric this device belongs to. .
network_device_id(str): networkDeviceId query parameter. Network device ID of the fabric device.
.
device_roles(str): deviceRoles query parameter. Device roles of the fabric device. Allowed values
are [CONTROL_PLANE_NODE, EDGE_NODE, BORDER_NODE, WIRELESS_CONTROLLER_NODE,
EXTENDED_NODE]. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-fabric-devices-count
"""
check_type(headers, dict)
check_type(fabric_id, str, may_be_none=False)
check_type(network_device_id, str)
check_type(device_roles, 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 = {
"fabricId": fabric_id,
"networkDeviceId": network_device_id,
"deviceRoles": device_roles,
}
_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/sda/fabricDevices/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_f081250cdc75361afea8d1624123bb4_v2_3_7_6", json_data
)
[docs] def delete_fabric_device_layer2_handoffs_v1(
self, fabric_id, network_device_id, headers=None, **request_parameters
):
"""Deletes layer 2 handoffs of a fabric device based on user input. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric this device belongs to. .
network_device_id(str): networkDeviceId query parameter. Network device ID of the fabric 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-fabric-device-layer2-handoffs
"""
check_type(headers, dict)
check_type(fabric_id, str, may_be_none=False)
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 = {
"fabricId": fabric_id,
"networkDeviceId": network_device_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/intent/api/v1/sda/fabricDevices/layer2Handoffs"
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_b6484275a25c54488d300c11c5ddd481_v2_3_7_6", json_data
)
[docs] def get_fabric_devices_layer2_handoffs_v1(
self,
fabric_id,
limit=None,
network_device_id=None,
offset=None,
headers=None,
**request_parameters
):
"""Returns a list of layer 2 handoffs of fabric devices that match the provided query parameters. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric this device belongs to. .
network_device_id(str): networkDeviceId query parameter. Network device ID of the fabric device.
.
offset(int): offset query parameter. Starting record for pagination. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-fabric-devices-layer2-handoffs
"""
check_type(headers, dict)
check_type(fabric_id, str, may_be_none=False)
check_type(network_device_id, 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 = {
"fabricId": fabric_id,
"networkDeviceId": network_device_id,
"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/sda/fabricDevices/layer2Handoffs"
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_ec047337e36b59db977e1dae8dd724ef_v2_3_7_6", json_data
)
[docs] def add_fabric_devices_layer2_handoffs_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Adds layer 2 handoffs in fabric devices based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-fabric-devices-layer2-handoffs
"""
check_type(headers, dict)
check_type(payload, list)
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 = payload or []
if active_validation:
self._request_validator(
"jsd_e86b65311b05d29ba5eea0d5f1fd88f_v2_3_7_6"
).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/sda/fabricDevices/layer2Handoffs"
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_e86b65311b05d29ba5eea0d5f1fd88f_v2_3_7_6", json_data
)
[docs] def get_fabric_devices_layer2_handoffs_count_v1(
self, fabric_id, network_device_id=None, headers=None, **request_parameters
):
"""Returns the count of layer 2 handoffs of fabric devices that match the provided query parameters. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric this device belongs to. .
network_device_id(str): networkDeviceId query parameter. Network device ID of the fabric 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-fabric-devices-layer2-handoffs-count
"""
check_type(headers, dict)
check_type(fabric_id, str, may_be_none=False)
check_type(network_device_id, 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 = {
"fabricId": fabric_id,
"networkDeviceId": network_device_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/intent/api/v1/sda/fabricDevices/layer2Handoffs/coun" + "t"
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_c6da6b1da95bb691d2e39cee84dbb2_v2_3_7_6", json_data
)
[docs] def delete_fabric_device_layer2_handoff_by_id_v1(
self, id, headers=None, **request_parameters
):
"""Deletes a layer 2 handoff of a fabric device based on id. .
Args:
id(str): id path parameter. ID of the layer 2 handoff of a fabric 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-fabric-device-layer2-handoff-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/sda/fabricDevices/layer2Handoffs/{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_b6406a55509e5aeaa71d960f98_v2_3_7_6", json_data
)
[docs] def add_fabric_devices_layer3_handoffs_with_ip_transit_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Adds layer 3 handoffs with ip transit in fabric devices based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-fabric-devices-layer3-handoffs-with-ip-transit
"""
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_c45c1c55d498d03a72933690098_v2_3_7_6"
).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/sda/fabricDevices/layer3Handoffs/ipTr" + "ansits"
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_c45c1c55d498d03a72933690098_v2_3_7_6", json_data
)
[docs] def update_fabric_devices_layer3_handoffs_with_ip_transit_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Updates layer 3 handoffs with ip transit of fabric devices based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-fabric-devices-layer3-handoffs-with-ip-transit
"""
check_type(headers, dict)
check_type(payload, list)
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 = payload or []
if active_validation:
self._request_validator(
"jsd_f0942fbb79f855e889d60777f41ea944_v2_3_7_6"
).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/sda/fabricDevices/layer3Handoffs/ipTr" + "ansits"
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_f0942fbb79f855e889d60777f41ea944_v2_3_7_6", json_data
)
[docs] def delete_fabric_device_layer3_handoffs_with_ip_transit_v1(
self, fabric_id, network_device_id, headers=None, **request_parameters
):
"""Deletes layer 3 handoffs with ip transit of a fabric device based on user input. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric this device belongs to. .
network_device_id(str): networkDeviceId query parameter. Network device ID of the fabric 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-fabric-device-layer3-handoffs-with-ip-transit
"""
check_type(headers, dict)
check_type(fabric_id, str, may_be_none=False)
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 = {
"fabricId": fabric_id,
"networkDeviceId": network_device_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/intent/api/v1/sda/fabricDevices/layer3Handoffs/ipTr" + "ansits"
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_fdab9b7917a1567980b0071e058921fe_v2_3_7_6", json_data
)
[docs] def get_fabric_devices_layer3_handoffs_with_ip_transit_v1(
self,
fabric_id,
limit=None,
network_device_id=None,
offset=None,
headers=None,
**request_parameters
):
"""Returns a list of layer 3 handoffs with ip transit of fabric devices that match the provided query parameters. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric this device belongs to. .
network_device_id(str): networkDeviceId query parameter. Network device ID of the fabric device.
.
offset(int): offset query parameter. Starting record for pagination. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-fabric-devices-layer3-handoffs-with-ip-transit
"""
check_type(headers, dict)
check_type(fabric_id, str, may_be_none=False)
check_type(network_device_id, 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 = {
"fabricId": fabric_id,
"networkDeviceId": network_device_id,
"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/sda/fabricDevices/layer3Handoffs/ipTr" + "ansits"
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_ee0d11a1e0dd573da2d6fb96d92c4bb8_v2_3_7_6", json_data
)
[docs] def get_fabric_devices_layer3_handoffs_with_ip_transit_count_v1(
self, fabric_id, network_device_id=None, headers=None, **request_parameters
):
"""Returns the count of layer 3 handoffs with ip transit of fabric devices that match the provided query
parameters. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric this device belongs to. .
network_device_id(str): networkDeviceId query parameter. Network device ID of the fabric 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-fabric-devices-layer3-handoffs-with-ip-transit-count
"""
check_type(headers, dict)
check_type(fabric_id, str, may_be_none=False)
check_type(network_device_id, 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 = {
"fabricId": fabric_id,
"networkDeviceId": network_device_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/intent/api/v1/sda/fabricDevices/layer3Handoffs/ipTr" + "ansits/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_a4fa61561aa0fe56939c3f24d4_v2_3_7_6", json_data
)
[docs] def delete_fabric_device_layer3_handoff_with_ip_transit_by_id_v1(
self, id, headers=None, **request_parameters
):
"""Deletes a layer 3 handoff with ip transit of a fabric device by id. .
Args:
id(str): id path parameter. ID of the layer 3 handoff with ip transit of a fabric 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-fabric-device-layer3-handoff-with-ip-transit-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/sda/fabricDevices/layer3Handoffs/ipTr" + "ansits/{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_fafe4d2d2fe510db8f0906e5f583559_v2_3_7_6", json_data
)
[docs] def update_fabric_devices_layer3_handoffs_with_sda_transit_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Updates layer 3 handoffs with sda transit of fabric devices based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-fabric-devices-layer3-handoffs-with-sda-transit
"""
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_c90c04b8356cf9974957e0f9516d0_v2_3_7_6"
).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/sda/fabricDevices/layer3Handoffs/sdaT" + "ransits"
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_c90c04b8356cf9974957e0f9516d0_v2_3_7_6", json_data
)
[docs] def get_fabric_devices_layer3_handoffs_with_sda_transit_v1(
self,
fabric_id,
limit=None,
network_device_id=None,
offset=None,
headers=None,
**request_parameters
):
"""Returns a list of layer 3 handoffs with sda transit of fabric devices that match the provided query parameters.
.
Args:
fabric_id(str): fabricId query parameter. ID of the fabric this device belongs to. .
network_device_id(str): networkDeviceId query parameter. Network device ID of the fabric device.
.
offset(int): offset query parameter. Starting record for pagination. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-fabric-devices-layer3-handoffs-with-sda-transit
"""
check_type(headers, dict)
check_type(fabric_id, str, may_be_none=False)
check_type(network_device_id, 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 = {
"fabricId": fabric_id,
"networkDeviceId": network_device_id,
"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/sda/fabricDevices/layer3Handoffs/sdaT" + "ransits"
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_d8e5a783df185c88bae2bd8ba6b6bb2d_v2_3_7_6", json_data
)
[docs] def delete_fabric_device_layer3_handoffs_with_sda_transit_v1(
self, fabric_id, network_device_id, headers=None, **request_parameters
):
"""Deletes layer 3 handoffs with sda transit of a fabric device based on user input. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric this device belongs to. .
network_device_id(str): networkDeviceId query parameter. Network device ID of the fabric 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-fabric-device-layer3-handoffs-with-sda-transit
"""
check_type(headers, dict)
check_type(fabric_id, str, may_be_none=False)
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 = {
"fabricId": fabric_id,
"networkDeviceId": network_device_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/intent/api/v1/sda/fabricDevices/layer3Handoffs/sdaT" + "ransits"
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_aae870923852f3ac5904f65812c559_v2_3_7_6", json_data
)
[docs] def add_fabric_devices_layer3_handoffs_with_sda_transit_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Adds layer 3 handoffs with sda transit in fabric devices based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-fabric-devices-layer3-handoffs-with-sda-transit
"""
check_type(headers, dict)
check_type(payload, list)
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 = payload or []
if active_validation:
self._request_validator(
"jsd_f95014e3b3385f21afa39325f3508427_v2_3_7_6"
).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/sda/fabricDevices/layer3Handoffs/sdaT" + "ransits"
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_f95014e3b3385f21afa39325f3508427_v2_3_7_6", json_data
)
[docs] def get_fabric_devices_layer3_handoffs_with_sda_transit_count_v1(
self, fabric_id, network_device_id=None, headers=None, **request_parameters
):
"""Returns the count of layer 3 handoffs with sda transit of fabric devices that match the provided query
parameters. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric this device belongs to. .
network_device_id(str): networkDeviceId query parameter. Network device ID of the fabric 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-fabric-devices-layer3-handoffs-with-sda-transit-count
"""
check_type(headers, dict)
check_type(fabric_id, str, may_be_none=False)
check_type(network_device_id, 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 = {
"fabricId": fabric_id,
"networkDeviceId": network_device_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/intent/api/v1/sda/fabricDevices/layer3Handoffs/sdaT" + "ransits/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_b183d0cc487506ab776e0d470b0db91_v2_3_7_6", json_data
)
[docs] def delete_fabric_device_by_id_v1(self, id, headers=None, **request_parameters):
"""Deletes a fabric device based on id. .
Args:
id(str): id path parameter. ID of the fabric 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-fabric-device-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/sda/fabricDevices/{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_d9e0c5eb356eda1fa6f45928cb6f2_v2_3_7_6", json_data
)
[docs] def get_fabric_sites_v1(
self,
id=None,
limit=None,
offset=None,
site_id=None,
headers=None,
**request_parameters
):
"""Returns a list of fabric sites that match the provided query parameters. .
Args:
id(str): id query parameter. ID of the fabric site. .
site_id(str): siteId query parameter. ID of the network hierarchy associated with the fabric
site. .
offset(int): offset query parameter. Starting record for pagination. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-fabric-sites
"""
check_type(headers, dict)
check_type(id, str)
check_type(site_id, 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 = {
"id": id,
"siteId": site_id,
"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/sda/fabricSites"
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_a7079f75dd5973b2bf50461bdcf2de_v2_3_7_6", json_data
)
[docs] def add_fabric_site_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Adds a fabric site based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-fabric-site
"""
check_type(headers, dict)
check_type(payload, list)
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 = payload or []
if active_validation:
self._request_validator(
"jsd_bfca373c5d7c863eef14abc654fd_v2_3_7_6"
).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/sda/fabricSites"
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_bfca373c5d7c863eef14abc654fd_v2_3_7_6", json_data
)
[docs] def update_fabric_site_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Updates a fabric site based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-fabric-site
"""
check_type(headers, dict)
check_type(payload, list)
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 = payload or []
if active_validation:
self._request_validator(
"jsd_effb55c158f28469762804e84633_v2_3_7_6"
).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/sda/fabricSites"
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_effb55c158f28469762804e84633_v2_3_7_6", json_data
)
[docs] def get_fabric_site_count_v1(self, headers=None, **request_parameters):
"""Returns the count of fabric sites that match the provided query parameters. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-fabric-site-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/sda/fabricSites/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_b871b97883085717bfbb14e860ab6654_v2_3_7_6", json_data
)
[docs] def delete_fabric_site_by_id_v1(self, id, headers=None, **request_parameters):
"""Deletes a fabric site based on id. .
Args:
id(str): id path parameter. ID of the fabric site. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-fabric-site-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/sda/fabricSites/{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_c94ba483b75e03a2c23aae02c510ac_v2_3_7_6", json_data
)
[docs] def get_fabric_zones_v1(
self,
id=None,
limit=None,
offset=None,
site_id=None,
headers=None,
**request_parameters
):
"""Returns a list of fabric zones that match the provided query parameters. .
Args:
id(str): id query parameter. ID of the fabric zone. .
site_id(str): siteId query parameter. ID of the network hierarchy associated with the fabric
zone. .
offset(int): offset query parameter. Starting record for pagination. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-fabric-zones
"""
check_type(headers, dict)
check_type(id, str)
check_type(site_id, 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 = {
"id": id,
"siteId": site_id,
"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/sda/fabricZones"
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_e722d98d14d5e119ca03fa114edb38f_v2_3_7_6", json_data
)
[docs] def update_fabric_zone_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Updates a fabric zone based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-fabric-zone
"""
check_type(headers, dict)
check_type(payload, list)
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 = payload or []
if active_validation:
self._request_validator(
"jsd_ada3522de8ef54729e9fc242df292547_v2_3_7_6"
).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/sda/fabricZones"
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_ada3522de8ef54729e9fc242df292547_v2_3_7_6", json_data
)
[docs] def add_fabric_zone_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Adds a fabric zone based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-fabric-zone
"""
check_type(headers, dict)
check_type(payload, list)
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 = payload or []
if active_validation:
self._request_validator(
"jsd_ae4d33eacca95f109bebc6fd0528ca48_v2_3_7_6"
).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/sda/fabricZones"
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_ae4d33eacca95f109bebc6fd0528ca48_v2_3_7_6", json_data
)
[docs] def get_fabric_zone_count_v1(self, headers=None, **request_parameters):
"""Returns the count of fabric zones that match the provided query parameters. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-fabric-zone-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/sda/fabricZones/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_b7004918aecc58c7880ae97d344bb885_v2_3_7_6", json_data
)
[docs] def delete_fabric_zone_by_id_v1(self, id, headers=None, **request_parameters):
"""Deletes a fabric zone based on id. .
Args:
id(str): id path parameter. ID of the fabric zone. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-fabric-zone-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/sda/fabricZones/{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_cdb33e11852af80e1ed8f26e4336d_v2_3_7_6", json_data
)
[docs] def add_layer2_virtual_networks_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Adds layer 2 virtual networks based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-layer2-virtual-networks
"""
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_f09c94c65c858e4b7be0b7cb3d25b7a_v2_3_7_6"
).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/sda/layer2VirtualNetworks"
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_f09c94c65c858e4b7be0b7cb3d25b7a_v2_3_7_6", json_data
)
[docs] def delete_layer2_virtual_networks_v1(
self,
fabric_id,
associated_layer3_virtual_network_name=None,
traffic_type=None,
vlan_id=None,
vlan_name=None,
headers=None,
**request_parameters
):
"""Deletes layer 2 virtual networks based on user input. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric the layer 2 virtual network is
assigned to. .
vlan_name(str): vlanName query parameter. The vlan name of the layer 2 virtual network. .
vlan_id(int): vlanId query parameter. The vlan ID of the layer 2 virtual network. .
traffic_type(str): trafficType query parameter. The traffic type of the layer 2 virtual network.
.
associated_layer3_virtual_network_name(str): associatedLayer3VirtualNetworkName query parameter.
Name of the associated layer 3 virtual network. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-layer2-virtual-networks
"""
check_type(headers, dict)
check_type(fabric_id, str, may_be_none=False)
check_type(vlan_name, str)
check_type(vlan_id, int)
check_type(traffic_type, str)
check_type(associated_layer3_virtual_network_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 = {
"fabricId": fabric_id,
"vlanName": vlan_name,
"vlanId": vlan_id,
"trafficType": traffic_type,
"associatedLayer3VirtualNetworkName": associated_layer3_virtual_network_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/sda/layer2VirtualNetworks"
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_fa8caf01309507e9be1544b9d1faa39_v2_3_7_6", json_data
)
[docs] def get_layer2_virtual_networks_v1(
self,
associated_layer3_virtual_network_name=None,
fabric_id=None,
id=None,
limit=None,
offset=None,
traffic_type=None,
vlan_id=None,
vlan_name=None,
headers=None,
**request_parameters
):
"""Returns a list of layer 2 virtual networks that match the provided query parameters. .
Args:
id(str): id query parameter. ID of the layer 2 virtual network. .
fabric_id(str): fabricId query parameter. ID of the fabric the layer 2 virtual network is
assigned to. .
vlan_name(str): vlanName query parameter. The vlan name of the layer 2 virtual network. .
vlan_id(int): vlanId query parameter. The vlan ID of the layer 2 virtual network. .
traffic_type(str): trafficType query parameter. The traffic type of the layer 2 virtual network.
.
associated_layer3_virtual_network_name(str): associatedLayer3VirtualNetworkName query parameter.
Name of the associated layer 3 virtual network. .
offset(int): offset query parameter. Starting record for pagination. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-layer2-virtual-networks
"""
check_type(headers, dict)
check_type(id, str)
check_type(fabric_id, str)
check_type(vlan_name, str)
check_type(vlan_id, int)
check_type(traffic_type, str)
check_type(associated_layer3_virtual_network_name, 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 = {
"id": id,
"fabricId": fabric_id,
"vlanName": vlan_name,
"vlanId": vlan_id,
"trafficType": traffic_type,
"associatedLayer3VirtualNetworkName": associated_layer3_virtual_network_name,
"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/sda/layer2VirtualNetworks"
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_c794771a235f0da82cf11d968c9ec3_v2_3_7_6", json_data
)
[docs] def update_layer2_virtual_networks_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Updates layer 2 virtual networks based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-layer2-virtual-networks
"""
check_type(headers, dict)
check_type(payload, list)
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 = payload or []
if active_validation:
self._request_validator(
"jsd_bcb7a52e3c5763b246bcf438fe57c9_v2_3_7_6"
).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/sda/layer2VirtualNetworks"
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_bcb7a52e3c5763b246bcf438fe57c9_v2_3_7_6", json_data
)
[docs] def get_layer2_virtual_network_count_v1(
self,
associated_layer3_virtual_network_name=None,
fabric_id=None,
traffic_type=None,
vlan_id=None,
vlan_name=None,
headers=None,
**request_parameters
):
"""Returns the count of layer 2 virtual networks that match the provided query parameters. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric the layer 2 virtual network is
assigned to. .
vlan_name(str): vlanName query parameter. The vlan name of the layer 2 virtual network. .
vlan_id(int): vlanId query parameter. The vlan ID of the layer 2 virtual network. .
traffic_type(str): trafficType query parameter. The traffic type of the layer 2 virtual network.
.
associated_layer3_virtual_network_name(str): associatedLayer3VirtualNetworkName query parameter.
Name of the associated layer 3 virtual network. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-layer2-virtual-network-count
"""
check_type(headers, dict)
check_type(fabric_id, str)
check_type(vlan_name, str)
check_type(vlan_id, int)
check_type(traffic_type, str)
check_type(associated_layer3_virtual_network_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 = {
"fabricId": fabric_id,
"vlanName": vlan_name,
"vlanId": vlan_id,
"trafficType": traffic_type,
"associatedLayer3VirtualNetworkName": associated_layer3_virtual_network_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/sda/layer2VirtualNetworks/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_a69aee0c555fb5baaa9db43327f955_v2_3_7_6", json_data
)
[docs] def delete_layer2_virtual_network_by_id_v1(
self, id, headers=None, **request_parameters
):
"""Deletes a layer 2 virtual network based on id. .
Args:
id(str): id path parameter. ID of the layer 2 virtual network. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-layer2-virtual-network-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/sda/layer2VirtualNetworks/{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_bfbdb9daba59fc9587824918c61cd6_v2_3_7_6", json_data
)
[docs] def add_layer3_virtual_networks_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Adds layer 3 virtual networks based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-layer3-virtual-networks
"""
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_dabd13cd5e9c928daf80d6758d62_v2_3_7_6"
).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/sda/layer3VirtualNetworks"
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_dabd13cd5e9c928daf80d6758d62_v2_3_7_6", json_data
)
[docs] def get_layer3_virtual_networks_v1(
self,
anchored_site_id=None,
fabric_id=None,
limit=None,
offset=None,
virtual_network_name=None,
headers=None,
**request_parameters
):
"""Returns a list of layer 3 virtual networks that match the provided query parameters. .
Args:
virtual_network_name(str): virtualNetworkName query parameter. Name of the layer 3 virtual
network. .
fabric_id(str): fabricId query parameter. ID of the fabric the layer 3 virtual network is
assigned to. .
anchored_site_id(str): anchoredSiteId query parameter. Fabric ID of the fabric site the layer 3
virtual network is anchored at. .
offset(int): offset query parameter. Starting record for pagination. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-layer3-virtual-networks
"""
check_type(headers, dict)
check_type(virtual_network_name, str)
check_type(fabric_id, str)
check_type(anchored_site_id, 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 = {
"virtualNetworkName": virtual_network_name,
"fabricId": fabric_id,
"anchoredSiteId": anchored_site_id,
"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/sda/layer3VirtualNetworks"
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_fa3e62148dd542a8452b68ea888833a_v2_3_7_6", json_data
)
[docs] def delete_layer3_virtual_networks_v1(
self, virtual_network_name=None, headers=None, **request_parameters
):
"""Deletes layer 3 virtual networks based on user input. .
Args:
virtual_network_name(str): virtualNetworkName query parameter. Name of the layer 3 virtual
network. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-layer3-virtual-networks
"""
check_type(headers, dict)
check_type(virtual_network_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 = {
"virtualNetworkName": virtual_network_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/sda/layer3VirtualNetworks"
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_e14a6db07f5c41903df6039be72e9c_v2_3_7_6", json_data
)
[docs] def update_layer3_virtual_networks_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Updates layer 3 virtual networks based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-layer3-virtual-networks
"""
check_type(headers, dict)
check_type(payload, list)
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 = payload or []
if active_validation:
self._request_validator(
"jsd_ed9125b257ea54b79ef2db2d8ebd9d00_v2_3_7_6"
).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/sda/layer3VirtualNetworks"
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_ed9125b257ea54b79ef2db2d8ebd9d00_v2_3_7_6", json_data
)
[docs] def get_layer3_virtual_networks_count_v1(
self, anchored_site_id=None, fabric_id=None, headers=None, **request_parameters
):
"""Returns the count of layer 3 virtual networks that match the provided query parameters. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric the layer 3 virtual network is
assigned to. .
anchored_site_id(str): anchoredSiteId query parameter. Fabric ID of the fabric site the layer 3
virtual network is anchored at. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-layer3-virtual-networks-count
"""
check_type(headers, dict)
check_type(fabric_id, str)
check_type(anchored_site_id, 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 = {
"fabricId": fabric_id,
"anchoredSiteId": anchored_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/intent/api/v1/sda/layer3VirtualNetworks/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_ced302dd267557c79c2f5aee72da9e4c_v2_3_7_6", json_data
)
[docs] def delete_layer3_virtual_network_by_id_v1(
self, id, headers=None, **request_parameters
):
"""Deletes a layer 3 virtual network based on id. .
Args:
id(str): id path parameter. ID of the layer 3 virtual network. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-layer3-virtual-network-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/sda/layer3VirtualNetworks/{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_a4e95fb6765d48bac0c654a393a0a8_v2_3_7_6", json_data
)
[docs] def update_multicast_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Updates a multicast configuration at a fabric level based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-multicast
"""
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_cfb964a2958909f7ca12d23ab2bdb_v2_3_7_6"
).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/sda/multicast"
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_cfb964a2958909f7ca12d23ab2bdb_v2_3_7_6", json_data
)
[docs] def get_multicast_v1(
self,
fabric_id=None,
limit=None,
offset=None,
headers=None,
**request_parameters
):
"""Returns a list of multicast configurations at a fabric site level that match the provided query parameters. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric site where multicast is configured. .
offset(int): offset query parameter. Starting record for pagination. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-multicast
"""
check_type(headers, dict)
check_type(fabric_id, 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 = {
"fabricId": fabric_id,
"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/sda/multicast"
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_eb648d275875745950bc33d3f12a28f_v2_3_7_6", json_data
)
[docs] def add_multicast_virtual_networks_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Adds multicast for virtual networks based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-multicast-virtual-networks
"""
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_cdc0bafd4257e78d211a1f4120bfa9_v2_3_7_6"
).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/sda/multicast/virtualNetworks"
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_cdc0bafd4257e78d211a1f4120bfa9_v2_3_7_6", json_data
)
[docs] def get_multicast_virtual_networks_v1(
self,
fabric_id=None,
limit=None,
offset=None,
virtual_network_name=None,
headers=None,
**request_parameters
):
"""Returns a list of multicast configurations for virtual networks that match the provided query parameters. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric site where multicast is configured. .
virtual_network_name(str): virtualNetworkName query parameter. Name of the virtual network
associated to the multicast configuration. .
offset(int): offset query parameter. Starting record for pagination. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-multicast-virtual-networks
"""
check_type(headers, dict)
check_type(fabric_id, str)
check_type(virtual_network_name, 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 = {
"fabricId": fabric_id,
"virtualNetworkName": virtual_network_name,
"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/sda/multicast/virtualNetworks"
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_bc8fbaa14c0b5064ba44a9aaf997a593_v2_3_7_6", json_data
)
[docs] def update_multicast_virtual_networks_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Updates multicast configurations for virtual networks based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-multicast-virtual-networks
"""
check_type(headers, dict)
check_type(payload, list)
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 = payload or []
if active_validation:
self._request_validator(
"jsd_bc3ed6556f9b9c959e53e271d70_v2_3_7_6"
).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/sda/multicast/virtualNetworks"
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_bc3ed6556f9b9c959e53e271d70_v2_3_7_6", json_data
)
[docs] def get_multicast_virtual_network_count_v1(
self, fabric_id=None, headers=None, **request_parameters
):
"""Returns the count of multicast configurations associated to virtual networks that match the provided query
parameters. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric site the multicast configuration is
associated with. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-multicast-virtual-network-count
"""
check_type(headers, dict)
check_type(fabric_id, 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 = {
"fabricId": fabric_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/intent/api/v1/sda/multicast/virtualNetworks/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_ecb8526b5333b7d7223dc4a68794_v2_3_7_6", json_data
)
[docs] def delete_multicast_virtual_network_by_id_v1(
self, id, headers=None, **request_parameters
):
"""Deletes a multicast configuration for a virtual network based on id. .
Args:
id(str): id path parameter. ID of the multicast configuration. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-multicast-virtual-network-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/sda/multicast/virtualNetworks/{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_e1e7b254440156e0a9ed4e72c5a9685a_v2_3_7_6", json_data
)
[docs] def add_port_assignments_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Adds port assignments based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-port-assignments
"""
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_d6b58f378895114839682dceed1a9b5_v2_3_7_6"
).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/sda/portAssignments"
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_d6b58f378895114839682dceed1a9b5_v2_3_7_6", json_data
)
[docs] def get_port_assignments_v1(
self,
data_vlan_name=None,
fabric_id=None,
interface_name=None,
limit=None,
network_device_id=None,
offset=None,
voice_vlan_name=None,
headers=None,
**request_parameters
):
"""Returns a list of port assignments that match the provided query parameters. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric the device is assigned to. .
network_device_id(str): networkDeviceId query parameter. Network device ID of the port
assignment. .
interface_name(str): interfaceName query parameter. Interface name of the port assignment. .
data_vlan_name(str): dataVlanName query parameter. Data VLAN name of the port assignment. .
voice_vlan_name(str): voiceVlanName query parameter. Voice VLAN name of the port assignment. .
offset(int): offset query parameter. Starting record for pagination. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-port-assignments
"""
check_type(headers, dict)
check_type(fabric_id, str)
check_type(network_device_id, str)
check_type(interface_name, str)
check_type(data_vlan_name, str)
check_type(voice_vlan_name, 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 = {
"fabricId": fabric_id,
"networkDeviceId": network_device_id,
"interfaceName": interface_name,
"dataVlanName": data_vlan_name,
"voiceVlanName": voice_vlan_name,
"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/sda/portAssignments"
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_a9bc4645925814ac76d95268fe3f05_v2_3_7_6", json_data
)
[docs] def update_port_assignments_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Updates port assignments based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-port-assignments
"""
check_type(headers, dict)
check_type(payload, list)
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 = payload or []
if active_validation:
self._request_validator(
"jsd_cad522e57a7b96b7238935689ed_v2_3_7_6"
).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/sda/portAssignments"
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_cad522e57a7b96b7238935689ed_v2_3_7_6", json_data
)
[docs] def delete_port_assignments_v1(
self,
fabric_id,
network_device_id,
data_vlan_name=None,
interface_name=None,
voice_vlan_name=None,
headers=None,
**request_parameters
):
"""Deletes port assignments based on user input. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric the device is assigned to. .
network_device_id(str): networkDeviceId query parameter. Network device ID of the port
assignment. .
interface_name(str): interfaceName query parameter. Interface name of the port assignment. .
data_vlan_name(str): dataVlanName query parameter. Data VLAN name of the port assignment. .
voice_vlan_name(str): voiceVlanName query parameter. Voice VLAN name of the port assignment. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-port-assignments
"""
check_type(headers, dict)
check_type(fabric_id, str, may_be_none=False)
check_type(network_device_id, str, may_be_none=False)
check_type(interface_name, str)
check_type(data_vlan_name, str)
check_type(voice_vlan_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 = {
"fabricId": fabric_id,
"networkDeviceId": network_device_id,
"interfaceName": interface_name,
"dataVlanName": data_vlan_name,
"voiceVlanName": voice_vlan_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/sda/portAssignments"
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_ee38ba825f79a76d9e7e6074c450_v2_3_7_6", json_data
)
[docs] def get_port_assignment_count_v1(
self,
data_vlan_name=None,
fabric_id=None,
interface_name=None,
network_device_id=None,
voice_vlan_name=None,
headers=None,
**request_parameters
):
"""Returns the count of port assignments that match the provided query parameters. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric the device is assigned to. .
network_device_id(str): networkDeviceId query parameter. Network device ID of the port
assignment. .
interface_name(str): interfaceName query parameter. Interface name of the port assignment. .
data_vlan_name(str): dataVlanName query parameter. Data VLAN name of the port assignment. .
voice_vlan_name(str): voiceVlanName query parameter. Voice VLAN name of the port assignment. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-port-assignment-count
"""
check_type(headers, dict)
check_type(fabric_id, str)
check_type(network_device_id, str)
check_type(interface_name, str)
check_type(data_vlan_name, str)
check_type(voice_vlan_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 = {
"fabricId": fabric_id,
"networkDeviceId": network_device_id,
"interfaceName": interface_name,
"dataVlanName": data_vlan_name,
"voiceVlanName": voice_vlan_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/sda/portAssignments/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_e11301d6336f512fbc6db01768e3ad5a_v2_3_7_6", json_data
)
[docs] def delete_port_assignment_by_id_v1(self, id, headers=None, **request_parameters):
"""Deletes a port assignment based on id. .
Args:
id(str): id path parameter. ID of the port assignment. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-port-assignment-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/sda/portAssignments/{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_aa18582de8753438e0908cf9d92c2de_v2_3_7_6", json_data
)
[docs] def get_port_channels_v1(
self,
connected_device_type=None,
fabric_id=None,
limit=None,
network_device_id=None,
offset=None,
port_channel_name=None,
headers=None,
**request_parameters
):
"""Returns a list of port channels that match the provided query parameters. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric the device is assigned to. .
network_device_id(str): networkDeviceId query parameter. ID of the network device. .
port_channel_name(str): portChannelName query parameter. Name of the port channel. .
connected_device_type(str): connectedDeviceType query parameter. Connected device type of the
port channel. The allowed values are [TRUNK, EXTENDED_NODE]. .
offset(int): offset query parameter. Starting record for pagination. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-port-channels
"""
check_type(headers, dict)
check_type(fabric_id, str)
check_type(network_device_id, str)
check_type(port_channel_name, str)
check_type(connected_device_type, 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 = {
"fabricId": fabric_id,
"networkDeviceId": network_device_id,
"portChannelName": port_channel_name,
"connectedDeviceType": connected_device_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/sda/portChannels"
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_c747d79eb18e52f5a161006aa28df129_v2_3_7_6", json_data
)
[docs] def add_port_channels_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Adds port channels based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-port-channels
"""
check_type(headers, dict)
check_type(payload, list)
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 = payload or []
if active_validation:
self._request_validator(
"jsd_f2b137487385de6925b7b6136d4b027_v2_3_7_6"
).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/sda/portChannels"
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_f2b137487385de6925b7b6136d4b027_v2_3_7_6", json_data
)
[docs] def update_port_channels_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Updates port channels based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-port-channels
"""
check_type(headers, dict)
check_type(payload, list)
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 = payload or []
if active_validation:
self._request_validator(
"jsd_bd421c1db8c5deaa3301b8cc73dd541_v2_3_7_6"
).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/sda/portChannels"
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_bd421c1db8c5deaa3301b8cc73dd541_v2_3_7_6", json_data
)
[docs] def delete_port_channels_v1(
self,
fabric_id,
network_device_id,
connected_device_type=None,
port_channel_name=None,
headers=None,
**request_parameters
):
"""Deletes port channels based on user input. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric the device is assigned to. .
network_device_id(str): networkDeviceId query parameter. ID of the network device. .
port_channel_name(str): portChannelName query parameter. Name of the port channel. .
connected_device_type(str): connectedDeviceType query parameter. Connected device type of the
port channel. The allowed values are [TRUNK, EXTENDED_NODE]. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-port-channels
"""
check_type(headers, dict)
check_type(fabric_id, str, may_be_none=False)
check_type(network_device_id, str, may_be_none=False)
check_type(port_channel_name, str)
check_type(connected_device_type, 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 = {
"fabricId": fabric_id,
"networkDeviceId": network_device_id,
"portChannelName": port_channel_name,
"connectedDeviceType": connected_device_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/sda/portChannels"
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_fd48c49a3f65cecb1f84f10b69b04f5_v2_3_7_6", json_data
)
[docs] def get_port_channel_count_v1(
self,
connected_device_type=None,
fabric_id=None,
network_device_id=None,
port_channel_name=None,
headers=None,
**request_parameters
):
"""Returns the count of port channels that match the provided query parameters. .
Args:
fabric_id(str): fabricId query parameter. ID of the fabric the device is assigned to. .
network_device_id(str): networkDeviceId query parameter. ID of the network device. .
port_channel_name(str): portChannelName query parameter. Name of the port channel. .
connected_device_type(str): connectedDeviceType query parameter. Connected device type of the
port channel. The allowed values are [TRUNK, EXTENDED_NODE]. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-port-channel-count
"""
check_type(headers, dict)
check_type(fabric_id, str)
check_type(network_device_id, str)
check_type(port_channel_name, str)
check_type(connected_device_type, 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 = {
"fabricId": fabric_id,
"networkDeviceId": network_device_id,
"portChannelName": port_channel_name,
"connectedDeviceType": connected_device_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/sda/portChannels/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_b6ba7d5504bb3493964063611a_v2_3_7_6", json_data
)
[docs] def delete_port_channel_by_id_v1(self, id, headers=None, **request_parameters):
"""Deletes a port channel based on id. .
Args:
id(str): id path parameter. ID of the port channel. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-port-channel-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/sda/portChannels/{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_bcad6a4ea0850bf9b099b938bc55932_v2_3_7_6", json_data
)
[docs] def delete_provisioned_devices_v1(
self, network_device_id=None, site_id=None, headers=None, **request_parameters
):
"""Delete provisioned devices based on query parameters. .
Args:
network_device_id(str): networkDeviceId query parameter. ID of the network device. .
site_id(str): siteId query parameter. ID of the site hierarchy. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-provisioned-devices
"""
check_type(headers, dict)
check_type(network_device_id, str)
check_type(site_id, 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 = {
"networkDeviceId": network_device_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/intent/api/v1/sda/provisionDevices"
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_b049914e384051afbf87971d3066152b_v2_3_7_6", json_data
)
[docs] def provision_devices_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Provisions network devices to respective Sites based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!provision-devices
"""
check_type(headers, dict)
check_type(payload, list)
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 = payload or []
if active_validation:
self._request_validator(
"jsd_bdcb514ae33b571795e4a42147d11f87_v2_3_7_6"
).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/sda/provisionDevices"
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_bdcb514ae33b571795e4a42147d11f87_v2_3_7_6", json_data
)
[docs] def get_provisioned_devices_v1(
self,
id=None,
limit=None,
network_device_id=None,
offset=None,
site_id=None,
headers=None,
**request_parameters
):
"""Returns the list of provisioned devices based on query parameters. .
Args:
id(str): id query parameter. ID of the provisioned device. .
network_device_id(str): networkDeviceId query parameter. ID of the network device. .
site_id(str): siteId query parameter. ID of the site hierarchy. .
offset(int): offset query parameter. Starting record for pagination. .
limit(int): limit query parameter. Maximum number of devices 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-provisioned-devices
"""
check_type(headers, dict)
check_type(id, str)
check_type(network_device_id, str)
check_type(site_id, 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 = {
"id": id,
"networkDeviceId": network_device_id,
"siteId": site_id,
"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/sda/provisionDevices"
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_f974cbea9645bfda97affac9ea41ffe_v2_3_7_6", json_data
)
[docs] def re_provision_devices_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Re-provisions network devices to the site based on the user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!re-provision-devices
"""
check_type(headers, dict)
check_type(payload, list)
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 = payload or []
if active_validation:
self._request_validator(
"jsd_f4b2825561e808787a16f7e0a1f_v2_3_7_6"
).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/sda/provisionDevices"
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_f4b2825561e808787a16f7e0a1f_v2_3_7_6", json_data
)
[docs] def get_provisioned_devices_count_v1(
self, site_id=None, headers=None, **request_parameters
):
"""Returns the count of provisioned devices based on query parameters. .
Args:
site_id(str): siteId query parameter. ID of the site hierarchy. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-provisioned-devices-count
"""
check_type(headers, dict)
check_type(site_id, 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 = {
"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/intent/api/v1/sda/provisionDevices/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_acb7d048a5455b75965c3706f8977_v2_3_7_6", json_data
)
[docs] def delete_provisioned_device_by_id_v1(
self, id, headers=None, **request_parameters
):
"""Deletes provisioned device based on Id. .
Args:
id(str): id path parameter. ID of the provisioned 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-provisioned-device-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/sda/provisionDevices/{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_ab7cbac7eaa45f259c9035fb828f6c08_v2_3_7_6", json_data
)
[docs] def update_transit_networks_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Updates transit networks based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-transit-networks
"""
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_cc1599012a5a59c8abdda5376b5cc583_v2_3_7_6"
).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/sda/transitNetworks"
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_cc1599012a5a59c8abdda5376b5cc583_v2_3_7_6", json_data
)
[docs] def get_transit_networks_v1(
self,
id=None,
limit=None,
name=None,
offset=None,
type=None,
headers=None,
**request_parameters
):
"""Returns a list of transit networks that match the provided query parameters. .
Args:
id(str): id query parameter. ID of the transit network. .
name(str): name query parameter. Name of the transit network. .
type(str): type query parameter. Type of the transit network. Allowed values are
[IP_BASED_TRANSIT, SDA_LISP_PUB_SUB_TRANSIT, SDA_LISP_BGP_TRANSIT]. .
offset(int): offset query parameter. Starting record for pagination. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-transit-networks
"""
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-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/sda/transitNetworks"
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_eb415f4615ac09e61c6582ecca2fa_v2_3_7_6", json_data
)
[docs] def add_transit_networks_v1(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""Adds transit networks based on user input. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-transit-networks
"""
check_type(headers, dict)
check_type(payload, list)
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 = payload or []
if active_validation:
self._request_validator(
"jsd_ae57085565e551594fc05b4db6a64af_v2_3_7_6"
).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/sda/transitNetworks"
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_ae57085565e551594fc05b4db6a64af_v2_3_7_6", json_data
)
[docs] def get_transit_networks_count_v1(
self, type=None, headers=None, **request_parameters
):
"""Returns the count of transit networks that match the provided query parameters. .
Args:
type(str): type query parameter. Type of the transit network. Allowed values are
[IP_BASED_TRANSIT, SDA_LISP_PUB_SUB_TRANSIT, SDA_LISP_BGP_TRANSIT]. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-transit-networks-count
"""
check_type(headers, dict)
check_type(type, 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 = {
"type": 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/sda/transitNetworks/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_fe6a7f95437d57bd997d2c8f0482310d_v2_3_7_6", json_data
)
[docs] def delete_transit_network_by_id_v1(self, id, headers=None, **request_parameters):
"""Deletes a transit network based on id. .
Args:
id(str): id path parameter. ID of the transit network. .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-transit-network-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/sda/transitNetworks/{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_bc1bbf0065150ebabbe5e5bee3d80d7_v2_3_7_6", json_data
)
[docs] def add_virtual_network_with_scalable_groups_v1(
self,
isGuestVirtualNetwork=None,
scalableGroupNames=None,
vManageVpnId=None,
virtualNetworkName=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Add virtual network with scalable groups at global level .
Args:
isGuestVirtualNetwork(boolean): SDA's Guest Virtual Network enablement flag, default value is False. .
scalableGroupNames(list): SDA's Scalable Group to be associated to virtual network (list of strings).
vManageVpnId(string): SDA's vManage vpn id for SD-WAN .
virtualNetworkName(string): SDA's Virtual Network Name to be assigned at global level .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!add-virtual-network-with-scalable-groups
"""
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 = {
"virtualNetworkName": virtualNetworkName,
"isGuestVirtualNetwork": isGuestVirtualNetwork,
"scalableGroupNames": scalableGroupNames,
"vManageVpnId": vManageVpnId,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_f5ebb9d50aab287f320d32181c0_v2_3_7_6"
).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/virtual-network"
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_f5ebb9d50aab287f320d32181c0_v2_3_7_6", json_data
)
[docs] def delete_virtual_network_with_scalable_groups_v1(
self, virtual_network_name, headers=None, **request_parameters
):
"""Delete virtual network with scalable groups .
Args:
virtual_network_name(str): virtualNetworkName 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!delete-virtual-network-with-scalable-groups
"""
check_type(headers, dict)
check_type(virtual_network_name, 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 = {
"virtualNetworkName": virtual_network_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/virtual-network"
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_f2e8552eabc5e5f97e1f40bcc4b4c75_v2_3_7_6", json_data
)
[docs] def get_virtual_network_with_scalable_groups_v1(
self, virtual_network_name, headers=None, **request_parameters
):
"""Get virtual network with scalable groups .
Args:
virtual_network_name(str): virtualNetworkName 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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!get-virtual-network-with-scalable-groups
"""
check_type(headers, dict)
check_type(virtual_network_name, 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 = {
"virtualNetworkName": virtual_network_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/virtual-network"
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_ea4b1c052b855bd9a0e99f803e6185a5_v2_3_7_6", json_data
)
[docs] def update_virtual_network_with_scalable_groups_v1(
self,
isGuestVirtualNetwork=None,
scalableGroupNames=None,
vManageVpnId=None,
virtualNetworkName=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""Update virtual network with scalable groups .
Args:
isGuestVirtualNetwork(boolean): SDA's Indicates whether to set this as guest virtual network or not,
default value is False. .
scalableGroupNames(list): SDA's Scalable Group Name to be associated to virtual network (list of
strings).
vManageVpnId(string): SDA's vManage vpn id for SD-WAN .
virtualNetworkName(string): SDA's Virtual Network Name to be assigned global level .
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 DNA Center cloud returns an error.
Documentation Link:
https://developer.cisco.com/docs/dna-center/#!update-virtual-network-with-scalable-groups
"""
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 = {
"virtualNetworkName": virtualNetworkName,
"isGuestVirtualNetwork": isGuestVirtualNetwork,
"scalableGroupNames": scalableGroupNames,
"vManageVpnId": vManageVpnId,
}
_payload.update(payload or {})
_payload = dict_from_items_with_values(_payload)
if active_validation:
self._request_validator(
"jsd_f9492367570c5f009cf8b5955790e87c_v2_3_7_6"
).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/virtual-network"
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_f9492367570c5f009cf8b5955790e87c_v2_3_7_6", json_data
)
# Alias Function
[docs] def get_default_authentication_profile(
self,
site_name_hierarchy,
authenticate_template_name=None,
headers=None,
**request_parameters
):
"""This function is an alias of get_default_authentication_profile_v1 .
Args:
site_name_hierarchy(basestring): siteNameHierarchy query parameter.
authenticate_template_name(basestring): authenticateTemplateName 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:
This function returns the output of get_default_authentication_profile_v1 .
"""
return self.get_default_authentication_profile_v1(
site_name_hierarchy=site_name_hierarchy,
authenticate_template_name=authenticate_template_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def get_device_info(
self, device_management_ip_address, headers=None, **request_parameters
):
"""This function is an alias of get_device_info_v1 .
Args:
device_management_ip_address(basestring): deviceManagementIpAddress 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:
This function returns the output of get_device_info_v1 .
"""
return self.get_device_info_v1(
device_management_ip_address=device_management_ip_address,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def adds_border_device(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of adds_border_device_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of adds_border_device_v1 .
"""
return self.adds_border_device_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def get_site(self, site_name_hierarchy, headers=None, **request_parameters):
"""This function is an alias of get_site_v1 .
Args:
site_name_hierarchy(basestring): siteNameHierarchy query parameter. Site Name Hierarchy .
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:
This function returns the output of get_site_v1 .
"""
return self.get_site_v1(
site_name_hierarchy=site_name_hierarchy,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def add_port_assignment_for_access_point(
self,
authenticateTemplateName=None,
dataIpAddressPoolName=None,
deviceManagementIpAddress=None,
interfaceDescription=None,
interfaceName=None,
siteNameHierarchy=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""This function is an alias of add_port_assignment_for_access_point_v1 .
Args:
authenticateTemplateName(string): SDA's Authenticate TemplateName associated to Fabric Site . Available
values are 'No Authentication', 'Open Authentication', 'Closed Authentication ' and 'Low
Impact '.
dataIpAddressPoolName(string): SDA's Ip Pool Name, that is assigned to INFRA_VN .
deviceManagementIpAddress(string): SDA's Management Ip Address of the edge device .
interfaceDescription(string): SDA's Details or note of interface port assignment .
interfaceName(string): SDA's Interface Name of the edge device .
siteNameHierarchy(string): SDA's Path of sda Fabric Site .
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of add_port_assignment_for_access_point_v1 .
"""
return self.add_port_assignment_for_access_point_v1(
authenticateTemplateName=authenticateTemplateName,
dataIpAddressPoolName=dataIpAddressPoolName,
deviceManagementIpAddress=deviceManagementIpAddress,
interfaceDescription=interfaceDescription,
interfaceName=interfaceName,
siteNameHierarchy=siteNameHierarchy,
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def update_anycast_gateways(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of update_anycast_gateways_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of update_anycast_gateways_v1 .
"""
return self.update_anycast_gateways_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def get_ip_pool_from_sda_virtual_network(
self,
ip_pool_name,
site_name_hierarchy,
virtual_network_name,
headers=None,
**request_parameters
):
"""This function is an alias of get_ip_pool_from_sda_virtual_network_v1 .
Args:
site_name_hierarchy(basestring): siteNameHierarchy query parameter.
virtual_network_name(basestring): virtualNetworkName query parameter.
ip_pool_name(basestring): ipPoolName query parameter. ipPoolName. Note: Use vlanName as a value for this
parameter if same ip pool is assigned to multiple virtual networks (e.g..
ipPoolName=vlan1021) .
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:
This function returns the output of get_ip_pool_from_sda_virtual_network_v1 .
"""
return self.get_ip_pool_from_sda_virtual_network_v1(
ip_pool_name=ip_pool_name,
site_name_hierarchy=site_name_hierarchy,
virtual_network_name=virtual_network_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def add_anycast_gateways(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of add_anycast_gateways_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of add_anycast_gateways_v1 .
"""
return self.add_anycast_gateways_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def add_default_authentication_profile(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of add_default_authentication_profile_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of add_default_authentication_profile_v1 .
"""
return self.add_default_authentication_profile_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def delete_ip_pool_from_sda_virtual_network(
self,
ip_pool_name,
site_name_hierarchy,
virtual_network_name,
headers=None,
**request_parameters
):
"""This function is an alias of delete_ip_pool_from_sda_virtual_network_v1 .
Args:
site_name_hierarchy(basestring): siteNameHierarchy query parameter.
virtual_network_name(basestring): virtualNetworkName query parameter.
ip_pool_name(basestring): ipPoolName 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:
This function returns the output of delete_ip_pool_from_sda_virtual_network_v1 .
"""
return self.delete_ip_pool_from_sda_virtual_network_v1(
ip_pool_name=ip_pool_name,
site_name_hierarchy=site_name_hierarchy,
virtual_network_name=virtual_network_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def add_ip_pool_in_sda_virtual_network(
self,
autoGenerateVlanName=None,
ipPoolName=None,
isBridgeModeVm=None,
isCommonPool=None,
isIpDirectedBroadcast=None,
isL2FloodingEnabled=None,
isLayer2Only=None,
isThisCriticalPool=None,
isWirelessPool=None,
poolType=None,
scalableGroupName=None,
siteNameHierarchy=None,
trafficType=None,
virtualNetworkName=None,
vlanId=None,
vlanName=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""This function is an alias of add_ip_pool_in_sda_virtual_network_v1 .
Args:
autoGenerateVlanName(boolean): SDA's It will auto generate vlanName, if vlanName is empty(applicable for
L3 and INFRA_VN) .
ipPoolName(string): SDA's Ip Pool Name, that is reserved to Fabric Site (Required for L3 and INFRA_VN) .
isBridgeModeVm(boolean): SDA's Bridge Mode Vm enablement flag (applicable for L3 and L2 and default
value is False ) .
isCommonPool(boolean): SDA's Common Pool enablement flag(applicable for L3 and L2 and default value is
False ) .
isIpDirectedBroadcast(boolean): SDA's Ip Directed Broadcast enablement flag(applicable for L3 and
default value is False ) .
isL2FloodingEnabled(boolean): SDA's Layer2 flooding enablement flag(applicable for L3 , L2 and always
true for L2 and default value is False ) .
isLayer2Only(boolean): SDA's Layer2 Only enablement flag and default value is False .
isThisCriticalPool(boolean): SDA's Critical pool enablement flag(applicable for L3 and default value is
False ) .
isWirelessPool(boolean): SDA's Wireless Pool enablement flag(applicable for L3 and L2 and default value
is False ) .
poolType(string): SDA's Pool Type (applicable for INFRA_VN) . Available values are 'AP' and 'Extended'.
scalableGroupName(string): SDA's Scalable Group Name(applicable for L3) .
siteNameHierarchy(string): SDA's Path of sda Fabric Site .
trafficType(string): SDA's Traffic type(applicable for L3 and L2) . Available values are 'Data' and
'Voice'.
virtualNetworkName(string): SDA's Virtual Network Name, that is associated to Fabric Site .
vlanId(string): SDA's vlan Id(applicable for L3 , L2 and INFRA_VN) .
vlanName(string): SDA's Vlan name represent the segment name, if empty, vlanName would be auto generated
by API .
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of add_ip_pool_in_sda_virtual_network_v1 .
"""
return self.add_ip_pool_in_sda_virtual_network_v1(
autoGenerateVlanName=autoGenerateVlanName,
ipPoolName=ipPoolName,
isBridgeModeVm=isBridgeModeVm,
isCommonPool=isCommonPool,
isIpDirectedBroadcast=isIpDirectedBroadcast,
isL2FloodingEnabled=isL2FloodingEnabled,
isLayer2Only=isLayer2Only,
isThisCriticalPool=isThisCriticalPool,
isWirelessPool=isWirelessPool,
poolType=poolType,
scalableGroupName=scalableGroupName,
siteNameHierarchy=siteNameHierarchy,
trafficType=trafficType,
virtualNetworkName=virtualNetworkName,
vlanId=vlanId,
vlanName=vlanName,
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def delete_fabric_device_layer2_handoffs(
self, fabric_id, network_device_id, headers=None, **request_parameters
):
"""This function is an alias of delete_fabric_device_layer2_handoffs_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric this device belongs to. .
network_device_id(basestring): networkDeviceId query parameter. Network device ID of the fabric 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:
This function returns the output of delete_fabric_device_layer2_handoffs_v1 .
"""
return self.delete_fabric_device_layer2_handoffs_v1(
fabric_id=fabric_id,
network_device_id=network_device_id,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def get_authentication_profiles(
self,
authentication_profile_name=None,
fabric_id=None,
limit=None,
offset=None,
headers=None,
**request_parameters
):
"""This function is an alias of get_authentication_profiles_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric the authentication profile is assigned
to. .
authentication_profile_name(basestring): authenticationProfileName query parameter. Return only the
authentication profiles with this specified name. Note that 'No Authentication' is not a
valid option for this parameter. .
offset(int): offset query parameter. Starting record for pagination. .
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:
This function returns the output of get_authentication_profiles_v1 .
"""
return self.get_authentication_profiles_v1(
authentication_profile_name=authentication_profile_name,
fabric_id=fabric_id,
limit=limit,
offset=offset,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def get_fabric_devices_layer3_handoffs_with_ip_transit_count(
self, fabric_id, network_device_id=None, headers=None, **request_parameters
):
"""This function is an alias of get_fabric_devices_layer3_handoffs_with_ip_transit_count_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric this device belongs to. .
network_device_id(basestring): networkDeviceId query parameter. Network device ID of the fabric 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:
This function returns the output of get_fabric_devices_layer3_handoffs_with_ip_transit_count_v1 .
"""
return self.get_fabric_devices_layer3_handoffs_with_ip_transit_count_v1(
fabric_id=fabric_id,
network_device_id=network_device_id,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def add_fabric_devices_layer3_handoffs_with_ip_transit(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of add_fabric_devices_layer3_handoffs_with_ip_transit_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of add_fabric_devices_layer3_handoffs_with_ip_transit_v1 .
"""
return self.add_fabric_devices_layer3_handoffs_with_ip_transit_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def get_layer3_virtual_networks_count(
self, anchored_site_id=None, fabric_id=None, headers=None, **request_parameters
):
"""This function is an alias of get_layer3_virtual_networks_count_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric the layer 3 virtual network is
assigned to. .
anchored_site_id(basestring): anchoredSiteId query parameter. Fabric ID of the fabric site the layer 3
virtual network is anchored at. .
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:
This function returns the output of get_layer3_virtual_networks_count_v1 .
"""
return self.get_layer3_virtual_networks_count_v1(
anchored_site_id=anchored_site_id,
fabric_id=fabric_id,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def add_port_assignments(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of add_port_assignments_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of add_port_assignments_v1 .
"""
return self.add_port_assignments_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def delete_layer2_virtual_network_by_id(
self, id, headers=None, **request_parameters
):
"""This function is an alias of delete_layer2_virtual_network_by_id_v1 .
Args:
id(basestring): id path parameter. ID of the layer 2 virtual network. .
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:
This function returns the output of delete_layer2_virtual_network_by_id_v1 .
"""
return self.delete_layer2_virtual_network_by_id_v1(
id=id, headers=headers, **request_parameters
)
# Alias Function
# Alias Function
[docs] def get_fabric_sites(
self,
id=None,
limit=None,
offset=None,
site_id=None,
headers=None,
**request_parameters
):
"""This function is an alias of get_fabric_sites_v1 .
Args:
id(basestring): id query parameter. ID of the fabric site. .
site_id(basestring): siteId query parameter. ID of the network hierarchy associated with the fabric
site. .
offset(int): offset query parameter. Starting record for pagination. .
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:
This function returns the output of get_fabric_sites_v1 .
"""
return self.get_fabric_sites_v1(
id=id,
limit=limit,
offset=offset,
site_id=site_id,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def add_virtual_network_with_scalable_groups(
self,
isGuestVirtualNetwork=None,
scalableGroupNames=None,
vManageVpnId=None,
virtualNetworkName=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""This function is an alias of add_virtual_network_with_scalable_groups_v1 .
Args:
isGuestVirtualNetwork(boolean): SDA's Guest Virtual Network enablement flag, default value is False. .
scalableGroupNames(list): SDA's Scalable Group to be associated to virtual network (list of strings).
vManageVpnId(string): SDA's vManage vpn id for SD-WAN .
virtualNetworkName(string): SDA's Virtual Network Name to be assigned at global level .
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of add_virtual_network_with_scalable_groups_v1 .
"""
return self.add_virtual_network_with_scalable_groups_v1(
isGuestVirtualNetwork=isGuestVirtualNetwork,
scalableGroupNames=scalableGroupNames,
vManageVpnId=vManageVpnId,
virtualNetworkName=virtualNetworkName,
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def delete_port_assignment_for_access_point(
self,
device_management_ip_address,
interface_name,
headers=None,
**request_parameters
):
"""This function is an alias of delete_port_assignment_for_access_point_v1 .
Args:
device_management_ip_address(basestring): deviceManagementIpAddress query parameter.
interface_name(basestring): interfaceName 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:
This function returns the output of delete_port_assignment_for_access_point_v1 .
"""
return self.delete_port_assignment_for_access_point_v1(
device_management_ip_address=device_management_ip_address,
interface_name=interface_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def add_multicast_in_sda_fabric(
self,
multicastMethod=None,
multicastType=None,
multicastVnInfo=None,
siteNameHierarchy=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""This function is an alias of add_multicast_in_sda_fabric_v1 .
Args:
multicastMethod(string): SDA's Multicast Method . Available values are 'native_multicast'.
multicastType(string): SDA's Multicast Type . Available values are 'ssm', 'asm_with_internal_rp' and
'asm_with_external_rp'.
multicastVnInfo(list): SDA's multicastVnInfo (list of objects).
siteNameHierarchy(string): SDA's Full path of sda Fabric Site .
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of add_multicast_in_sda_fabric_v1 .
"""
return self.add_multicast_in_sda_fabric_v1(
multicastMethod=multicastMethod,
multicastType=multicastType,
multicastVnInfo=multicastVnInfo,
siteNameHierarchy=siteNameHierarchy,
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def update_transit_networks(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of update_transit_networks_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of update_transit_networks_v1 .
"""
return self.update_transit_networks_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def delete_fabric_device_layer3_handoff_with_ip_transit_by_id(
self, id, headers=None, **request_parameters
):
"""This function is an alias of delete_fabric_device_layer3_handoff_with_ip_transit_by_id_v1 .
Args:
id(basestring): id path parameter. ID of the layer 3 handoff with ip transit of a fabric 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:
This function returns the output of delete_fabric_device_layer3_handoff_with_ip_transit_by_id_v1 .
"""
return self.delete_fabric_device_layer3_handoff_with_ip_transit_by_id_v1(
id=id, headers=headers, **request_parameters
)
# Alias Function
# Alias Function
[docs] def delete_fabric_site_by_id(self, id, headers=None, **request_parameters):
"""This function is an alias of delete_fabric_site_by_id_v1 .
Args:
id(basestring): id path parameter. ID of the fabric site. .
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:
This function returns the output of delete_fabric_site_by_id_v1 .
"""
return self.delete_fabric_site_by_id_v1(
id=id, headers=headers, **request_parameters
)
# Alias Function
[docs] def get_fabric_devices_layer2_handoffs(
self,
fabric_id,
limit=None,
network_device_id=None,
offset=None,
headers=None,
**request_parameters
):
"""This function is an alias of get_fabric_devices_layer2_handoffs_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric this device belongs to. .
network_device_id(basestring): networkDeviceId query parameter. Network device ID of the fabric device.
.
offset(int): offset query parameter. Starting record for pagination. .
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:
This function returns the output of get_fabric_devices_layer2_handoffs_v1 .
"""
return self.get_fabric_devices_layer2_handoffs_v1(
fabric_id=fabric_id,
limit=limit,
network_device_id=network_device_id,
offset=offset,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def get_fabric_devices_count(
self,
fabric_id,
device_roles=None,
network_device_id=None,
headers=None,
**request_parameters
):
"""This function is an alias of get_fabric_devices_count_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric this device belongs to. .
network_device_id(basestring): networkDeviceId query parameter. Network device ID of the fabric device.
.
device_roles(basestring): deviceRoles query parameter. Device roles of the fabric device. Allowed values
are [CONTROL_PLANE_NODE, EDGE_NODE, BORDER_NODE, WIRELESS_CONTROLLER_NODE,
EXTENDED_NODE]. .
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:
This function returns the output of get_fabric_devices_count_v1 .
"""
return self.get_fabric_devices_count_v1(
fabric_id=fabric_id,
device_roles=device_roles,
network_device_id=network_device_id,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def delete_fabric_device_layer2_handoff_by_id(
self, id, headers=None, **request_parameters
):
"""This function is an alias of delete_fabric_device_layer2_handoff_by_id_v1 .
Args:
id(basestring): id path parameter. ID of the layer 2 handoff of a fabric 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:
This function returns the output of delete_fabric_device_layer2_handoff_by_id_v1 .
"""
return self.delete_fabric_device_layer2_handoff_by_id_v1(
id=id, headers=headers, **request_parameters
)
# Alias Function
[docs] def get_port_channels(
self,
connected_device_type=None,
fabric_id=None,
limit=None,
network_device_id=None,
offset=None,
port_channel_name=None,
headers=None,
**request_parameters
):
"""This function is an alias of get_port_channels_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric the device is assigned to. .
network_device_id(basestring): networkDeviceId query parameter. ID of the network device. .
port_channel_name(basestring): portChannelName query parameter. Name of the port channel. .
connected_device_type(basestring): connectedDeviceType query parameter. Connected device type of the
port channel. The allowed values are [TRUNK, EXTENDED_NODE]. .
offset(int): offset query parameter. Starting record for pagination. .
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:
This function returns the output of get_port_channels_v1 .
"""
return self.get_port_channels_v1(
connected_device_type=connected_device_type,
fabric_id=fabric_id,
limit=limit,
network_device_id=network_device_id,
offset=offset,
port_channel_name=port_channel_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def add_edge_device(
self,
deviceManagementIpAddress=None,
siteNameHierarchy=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""This function is an alias of add_edge_device_v1 .
Args:
deviceManagementIpAddress(string): SDA's Management Ip Address of the Device which is provisioned
successfully .
siteNameHierarchy(string): SDA's siteNameHierarchy of the Provisioned Device(site should be part of
Fabric Site) .
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of add_edge_device_v1 .
"""
return self.add_edge_device_v1(
deviceManagementIpAddress=deviceManagementIpAddress,
siteNameHierarchy=siteNameHierarchy,
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def get_device_role_in_sda_fabric(
self, device_management_ip_address, headers=None, **request_parameters
):
"""This function is an alias of get_device_role_in_sda_fabric_v1 .
Args:
device_management_ip_address(basestring): deviceManagementIpAddress query parameter. Device Management
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:
This function returns the output of get_device_role_in_sda_fabric_v1 .
"""
return self.get_device_role_in_sda_fabric_v1(
device_management_ip_address=device_management_ip_address,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def delete_port_channel_by_id(self, id, headers=None, **request_parameters):
"""This function is an alias of delete_port_channel_by_id_v1 .
Args:
id(basestring): id path parameter. ID of the port channel. .
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:
This function returns the output of delete_port_channel_by_id_v1 .
"""
return self.delete_port_channel_by_id_v1(
id=id, headers=headers, **request_parameters
)
# Alias Function
[docs] def update_fabric_devices_layer3_handoffs_with_ip_transit(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of update_fabric_devices_layer3_handoffs_with_ip_transit_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of update_fabric_devices_layer3_handoffs_with_ip_transit_v1 .
"""
return self.update_fabric_devices_layer3_handoffs_with_ip_transit_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def update_multicast(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of update_multicast_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of update_multicast_v1 .
"""
return self.update_multicast_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def get_transit_networks_count(self, type=None, headers=None, **request_parameters):
"""This function is an alias of get_transit_networks_count_v1 .
Args:
type(basestring): type query parameter. Type of the transit network. Allowed values are
[IP_BASED_TRANSIT, SDA_LISP_PUB_SUB_TRANSIT, SDA_LISP_BGP_TRANSIT]. .
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:
This function returns the output of get_transit_networks_count_v1 .
"""
return self.get_transit_networks_count_v1(
type=type, headers=headers, **request_parameters
)
# Alias Function
[docs] def add_layer3_virtual_networks(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of add_layer3_virtual_networks_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of add_layer3_virtual_networks_v1 .
"""
return self.add_layer3_virtual_networks_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def get_layer3_virtual_networks(
self,
anchored_site_id=None,
fabric_id=None,
limit=None,
offset=None,
virtual_network_name=None,
headers=None,
**request_parameters
):
"""This function is an alias of get_layer3_virtual_networks_v1 .
Args:
virtual_network_name(basestring): virtualNetworkName query parameter. Name of the layer 3 virtual
network. .
fabric_id(basestring): fabricId query parameter. ID of the fabric the layer 3 virtual network is
assigned to. .
anchored_site_id(basestring): anchoredSiteId query parameter. Fabric ID of the fabric site the layer 3
virtual network is anchored at. .
offset(int): offset query parameter. Starting record for pagination. .
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:
This function returns the output of get_layer3_virtual_networks_v1 .
"""
return self.get_layer3_virtual_networks_v1(
anchored_site_id=anchored_site_id,
fabric_id=fabric_id,
limit=limit,
offset=offset,
virtual_network_name=virtual_network_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def get_port_assignment_count(
self,
data_vlan_name=None,
fabric_id=None,
interface_name=None,
network_device_id=None,
voice_vlan_name=None,
headers=None,
**request_parameters
):
"""This function is an alias of get_port_assignment_count_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric the device is assigned to. .
network_device_id(basestring): networkDeviceId query parameter. Network device ID of the port
assignment. .
interface_name(basestring): interfaceName query parameter. Interface name of the port assignment. .
data_vlan_name(basestring): dataVlanName query parameter. Data VLAN name of the port assignment. .
voice_vlan_name(basestring): voiceVlanName query parameter. Voice VLAN name of the port assignment. .
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:
This function returns the output of get_port_assignment_count_v1 .
"""
return self.get_port_assignment_count_v1(
data_vlan_name=data_vlan_name,
fabric_id=fabric_id,
interface_name=interface_name,
network_device_id=network_device_id,
voice_vlan_name=voice_vlan_name,
headers=headers,
**request_parameters
)
# Alias Function
# Alias Function
[docs] def delete_multicast_virtual_network_by_id(
self, id, headers=None, **request_parameters
):
"""This function is an alias of delete_multicast_virtual_network_by_id_v1 .
Args:
id(basestring): id path parameter. ID of the multicast configuration. .
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:
This function returns the output of delete_multicast_virtual_network_by_id_v1 .
"""
return self.delete_multicast_virtual_network_by_id_v1(
id=id, headers=headers, **request_parameters
)
# Alias Function
[docs] def delete_virtual_network_with_scalable_groups(
self, virtual_network_name, headers=None, **request_parameters
):
"""This function is an alias of delete_virtual_network_with_scalable_groups_v1 .
Args:
virtual_network_name(basestring): virtualNetworkName 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:
This function returns the output of delete_virtual_network_with_scalable_groups_v1 .
"""
return self.delete_virtual_network_with_scalable_groups_v1(
virtual_network_name=virtual_network_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def delete_provisioned_devices(
self, network_device_id=None, site_id=None, headers=None, **request_parameters
):
"""This function is an alias of delete_provisioned_devices_v1 .
Args:
network_device_id(basestring): networkDeviceId query parameter. ID of the network device. .
site_id(basestring): siteId query parameter. ID of the site hierarchy. .
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:
This function returns the output of delete_provisioned_devices_v1 .
"""
return self.delete_provisioned_devices_v1(
network_device_id=network_device_id,
site_id=site_id,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def delete_layer3_virtual_network_by_id(
self, id, headers=None, **request_parameters
):
"""This function is an alias of delete_layer3_virtual_network_by_id_v1 .
Args:
id(basestring): id path parameter. ID of the layer 3 virtual network. .
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:
This function returns the output of delete_layer3_virtual_network_by_id_v1 .
"""
return self.delete_layer3_virtual_network_by_id_v1(
id=id, headers=headers, **request_parameters
)
# Alias Function
[docs] def delete_transit_peer_network(
self, transit_peer_network_name, headers=None, **request_parameters
):
"""This function is an alias of delete_transit_peer_network_v1 .
Args:
transit_peer_network_name(basestring): transitPeerNetworkName query parameter. Transit Peer Network 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:
This function returns the output of delete_transit_peer_network_v1 .
"""
return self.delete_transit_peer_network_v1(
transit_peer_network_name=transit_peer_network_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def delete_provisioned_device_by_id(self, id, headers=None, **request_parameters):
"""This function is an alias of delete_provisioned_device_by_id_v1 .
Args:
id(basestring): id path parameter. ID of the provisioned 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:
This function returns the output of delete_provisioned_device_by_id_v1 .
"""
return self.delete_provisioned_device_by_id_v1(
id=id, headers=headers, **request_parameters
)
# Alias Function
[docs] def get_fabric_devices(
self,
fabric_id,
device_roles=None,
limit=None,
network_device_id=None,
offset=None,
headers=None,
**request_parameters
):
"""This function is an alias of get_fabric_devices_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric this device belongs to. .
network_device_id(basestring): networkDeviceId query parameter. Network device ID of the fabric device.
.
device_roles(basestring): deviceRoles query parameter. Device roles of the fabric device. Allowed values
are [CONTROL_PLANE_NODE, EDGE_NODE, BORDER_NODE, WIRELESS_CONTROLLER_NODE,
EXTENDED_NODE]. .
offset(int): offset query parameter. Starting record for pagination. .
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:
This function returns the output of get_fabric_devices_v1 .
"""
return self.get_fabric_devices_v1(
fabric_id=fabric_id,
device_roles=device_roles,
limit=limit,
network_device_id=network_device_id,
offset=offset,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def add_multicast_virtual_networks(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of add_multicast_virtual_networks_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of add_multicast_virtual_networks_v1 .
"""
return self.add_multicast_virtual_networks_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def get_transit_networks(
self,
id=None,
limit=None,
name=None,
offset=None,
type=None,
headers=None,
**request_parameters
):
"""This function is an alias of get_transit_networks_v1 .
Args:
id(basestring): id query parameter. ID of the transit network. .
name(basestring): name query parameter. Name of the transit network. .
type(basestring): type query parameter. Type of the transit network. Allowed values are
[IP_BASED_TRANSIT, SDA_LISP_PUB_SUB_TRANSIT, SDA_LISP_BGP_TRANSIT]. .
offset(int): offset query parameter. Starting record for pagination. .
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:
This function returns the output of get_transit_networks_v1 .
"""
return self.get_transit_networks_v1(
id=id,
limit=limit,
name=name,
offset=offset,
type=type,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def delete_vn(
self,
site_name_hierarchy,
virtual_network_name,
headers=None,
**request_parameters
):
"""This function is an alias of delete_vn_v1 .
Args:
virtual_network_name(basestring): virtualNetworkName query parameter.
site_name_hierarchy(basestring): siteNameHierarchy 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:
This function returns the output of delete_vn_v1 .
"""
return self.delete_vn_v1(
site_name_hierarchy=site_name_hierarchy,
virtual_network_name=virtual_network_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def add_fabric_devices_layer2_handoffs(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of add_fabric_devices_layer2_handoffs_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of add_fabric_devices_layer2_handoffs_v1 .
"""
return self.add_fabric_devices_layer2_handoffs_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def update_fabric_devices(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of update_fabric_devices_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of update_fabric_devices_v1 .
"""
return self.update_fabric_devices_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def gets_border_device_detail(
self, device_management_ip_address, headers=None, **request_parameters
):
"""This function is an alias of gets_border_device_detail_v1 .
Args:
device_management_ip_address(basestring): deviceManagementIpAddress 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:
This function returns the output of gets_border_device_detail_v1 .
"""
return self.gets_border_device_detail_v1(
device_management_ip_address=device_management_ip_address,
headers=headers,
**request_parameters
)
# Alias Function
# Alias Function
[docs] def get_transit_peer_network_info(
self, transit_peer_network_name, headers=None, **request_parameters
):
"""This function is an alias of get_transit_peer_network_info_v1 .
Args:
transit_peer_network_name(basestring): transitPeerNetworkName query parameter. Transit or Peer Network
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:
This function returns the output of get_transit_peer_network_info_v1 .
"""
return self.get_transit_peer_network_info_v1(
transit_peer_network_name=transit_peer_network_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def delete_fabric_device_by_id(self, id, headers=None, **request_parameters):
"""This function is an alias of delete_fabric_device_by_id_v1 .
Args:
id(basestring): id path parameter. ID of the fabric 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:
This function returns the output of delete_fabric_device_by_id_v1 .
"""
return self.delete_fabric_device_by_id_v1(
id=id, headers=headers, **request_parameters
)
# Alias Function
[docs] def get_port_assignments(
self,
data_vlan_name=None,
fabric_id=None,
interface_name=None,
limit=None,
network_device_id=None,
offset=None,
voice_vlan_name=None,
headers=None,
**request_parameters
):
"""This function is an alias of get_port_assignments_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric the device is assigned to. .
network_device_id(basestring): networkDeviceId query parameter. Network device ID of the port
assignment. .
interface_name(basestring): interfaceName query parameter. Interface name of the port assignment. .
data_vlan_name(basestring): dataVlanName query parameter. Data VLAN name of the port assignment. .
voice_vlan_name(basestring): voiceVlanName query parameter. Voice VLAN name of the port assignment. .
offset(int): offset query parameter. Starting record for pagination. .
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:
This function returns the output of get_port_assignments_v1 .
"""
return self.get_port_assignments_v1(
data_vlan_name=data_vlan_name,
fabric_id=fabric_id,
interface_name=interface_name,
limit=limit,
network_device_id=network_device_id,
offset=offset,
voice_vlan_name=voice_vlan_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def get_virtual_network_with_scalable_groups(
self, virtual_network_name, headers=None, **request_parameters
):
"""This function is an alias of get_virtual_network_with_scalable_groups_v1 .
Args:
virtual_network_name(basestring): virtualNetworkName 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:
This function returns the output of get_virtual_network_with_scalable_groups_v1 .
"""
return self.get_virtual_network_with_scalable_groups_v1(
virtual_network_name=virtual_network_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def get_multicast_details_from_sda_fabric(
self, site_name_hierarchy, headers=None, **request_parameters
):
"""This function is an alias of get_multicast_details_from_sda_fabric_v1 .
Args:
site_name_hierarchy(basestring): siteNameHierarchy query parameter. fabric site name hierarchy .
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:
This function returns the output of get_multicast_details_from_sda_fabric_v1 .
"""
return self.get_multicast_details_from_sda_fabric_v1(
site_name_hierarchy=site_name_hierarchy,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def delete_provisioned_wired_device(
self, device_management_ip_address, headers=None, **request_parameters
):
"""This function is an alias of delete_provisioned_wired_device_v1 .
Args:
device_management_ip_address(basestring): deviceManagementIpAddress query parameter. Valid IP address of
the device currently provisioned in a fabric site .
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:
This function returns the output of delete_provisioned_wired_device_v1 .
"""
return self.delete_provisioned_wired_device_v1(
device_management_ip_address=device_management_ip_address,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def delete_anycast_gateway_by_id(self, id, headers=None, **request_parameters):
"""This function is an alias of delete_anycast_gateway_by_id_v1 .
Args:
id(basestring): id path parameter. ID of the anycast gateway. .
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:
This function returns the output of delete_anycast_gateway_by_id_v1 .
"""
return self.delete_anycast_gateway_by_id_v1(
id=id, headers=headers, **request_parameters
)
# Alias Function
[docs] def get_virtual_network_summary(
self, site_name_hierarchy, headers=None, **request_parameters
):
"""This function is an alias of get_virtual_network_summary_v1 .
Args:
site_name_hierarchy(basestring): siteNameHierarchy query parameter. Complete fabric siteNameHierarchy
Path .
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:
This function returns the output of get_virtual_network_summary_v1 .
"""
return self.get_virtual_network_summary_v1(
site_name_hierarchy=site_name_hierarchy,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def add_port_channels(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of add_port_channels_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of add_port_channels_v1 .
"""
return self.add_port_channels_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def delete_edge_device(
self, device_management_ip_address, headers=None, **request_parameters
):
"""This function is an alias of delete_edge_device_v1 .
Args:
device_management_ip_address(basestring): deviceManagementIpAddress 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:
This function returns the output of delete_edge_device_v1 .
"""
return self.delete_edge_device_v1(
device_management_ip_address=device_management_ip_address,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def delete_fabric_devices(
self,
fabric_id,
device_roles=None,
network_device_id=None,
headers=None,
**request_parameters
):
"""This function is an alias of delete_fabric_devices_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric this device belongs to. .
network_device_id(basestring): networkDeviceId query parameter. Network device ID of the fabric device.
.
device_roles(basestring): deviceRoles query parameter. Device roles of the fabric device. Allowed values
are [CONTROL_PLANE_NODE, EDGE_NODE, BORDER_NODE, WIRELESS_CONTROLLER_NODE]. .
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:
This function returns the output of delete_fabric_devices_v1 .
"""
return self.delete_fabric_devices_v1(
fabric_id=fabric_id,
device_roles=device_roles,
network_device_id=network_device_id,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def get_fabric_zones(
self,
id=None,
limit=None,
offset=None,
site_id=None,
headers=None,
**request_parameters
):
"""This function is an alias of get_fabric_zones_v1 .
Args:
id(basestring): id query parameter. ID of the fabric zone. .
site_id(basestring): siteId query parameter. ID of the network hierarchy associated with the fabric
zone. .
offset(int): offset query parameter. Starting record for pagination. .
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:
This function returns the output of get_fabric_zones_v1 .
"""
return self.get_fabric_zones_v1(
id=id,
limit=limit,
offset=offset,
site_id=site_id,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def update_fabric_devices_layer3_handoffs_with_sda_transit(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of update_fabric_devices_layer3_handoffs_with_sda_transit_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of update_fabric_devices_layer3_handoffs_with_sda_transit_v1 .
"""
return self.update_fabric_devices_layer3_handoffs_with_sda_transit_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def update_authentication_profile(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of update_authentication_profile_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of update_authentication_profile_v1 .
"""
return self.update_authentication_profile_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def delete_control_plane_device(
self, device_management_ip_address, headers=None, **request_parameters
):
"""This function is an alias of delete_control_plane_device_v1 .
Args:
device_management_ip_address(basestring): deviceManagementIpAddress 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:
This function returns the output of delete_control_plane_device_v1 .
"""
return self.delete_control_plane_device_v1(
device_management_ip_address=device_management_ip_address,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def get_multicast_virtual_networks(
self,
fabric_id=None,
limit=None,
offset=None,
virtual_network_name=None,
headers=None,
**request_parameters
):
"""This function is an alias of get_multicast_virtual_networks_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric site where multicast is configured. .
virtual_network_name(basestring): virtualNetworkName query parameter. Name of the virtual network
associated to the multicast configuration. .
offset(int): offset query parameter. Starting record for pagination. .
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:
This function returns the output of get_multicast_virtual_networks_v1 .
"""
return self.get_multicast_virtual_networks_v1(
fabric_id=fabric_id,
limit=limit,
offset=offset,
virtual_network_name=virtual_network_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def update_port_assignments(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of update_port_assignments_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of update_port_assignments_v1 .
"""
return self.update_port_assignments_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def get_fabric_devices_layer3_handoffs_with_sda_transit(
self,
fabric_id,
limit=None,
network_device_id=None,
offset=None,
headers=None,
**request_parameters
):
"""This function is an alias of get_fabric_devices_layer3_handoffs_with_sda_transit_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric this device belongs to. .
network_device_id(basestring): networkDeviceId query parameter. Network device ID of the fabric device.
.
offset(int): offset query parameter. Starting record for pagination. .
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:
This function returns the output of get_fabric_devices_layer3_handoffs_with_sda_transit_v1 .
"""
return self.get_fabric_devices_layer3_handoffs_with_sda_transit_v1(
fabric_id=fabric_id,
limit=limit,
network_device_id=network_device_id,
offset=offset,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def delete_fabric_device_layer3_handoffs_with_sda_transit(
self, fabric_id, network_device_id, headers=None, **request_parameters
):
"""This function is an alias of delete_fabric_device_layer3_handoffs_with_sda_transit_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric this device belongs to. .
network_device_id(basestring): networkDeviceId query parameter. Network device ID of the fabric 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:
This function returns the output of delete_fabric_device_layer3_handoffs_with_sda_transit_v1 .
"""
return self.delete_fabric_device_layer3_handoffs_with_sda_transit_v1(
fabric_id=fabric_id,
network_device_id=network_device_id,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def add_layer2_virtual_networks(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of add_layer2_virtual_networks_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of add_layer2_virtual_networks_v1 .
"""
return self.add_layer2_virtual_networks_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def add_fabric_devices_layer3_handoffs_with_sda_transit(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of add_fabric_devices_layer3_handoffs_with_sda_transit_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of add_fabric_devices_layer3_handoffs_with_sda_transit_v1 .
"""
return self.add_fabric_devices_layer3_handoffs_with_sda_transit_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def delete_port_assignment_for_user_device(
self,
device_management_ip_address,
interface_name,
headers=None,
**request_parameters
):
"""This function is an alias of delete_port_assignment_for_user_device_v1 .
Args:
device_management_ip_address(basestring): deviceManagementIpAddress query parameter.
interface_name(basestring): interfaceName 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:
This function returns the output of delete_port_assignment_for_user_device_v1 .
"""
return self.delete_port_assignment_for_user_device_v1(
device_management_ip_address=device_management_ip_address,
interface_name=interface_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def get_fabric_devices_layer2_handoffs_count(
self, fabric_id, network_device_id=None, headers=None, **request_parameters
):
"""This function is an alias of get_fabric_devices_layer2_handoffs_count_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric this device belongs to. .
network_device_id(basestring): networkDeviceId query parameter. Network device ID of the fabric 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:
This function returns the output of get_fabric_devices_layer2_handoffs_count_v1 .
"""
return self.get_fabric_devices_layer2_handoffs_count_v1(
fabric_id=fabric_id,
network_device_id=network_device_id,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def add_transit_networks(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of add_transit_networks_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of add_transit_networks_v1 .
"""
return self.add_transit_networks_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def update_multicast_virtual_networks(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of update_multicast_virtual_networks_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of update_multicast_virtual_networks_v1 .
"""
return self.update_multicast_virtual_networks_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def delete_transit_network_by_id(self, id, headers=None, **request_parameters):
"""This function is an alias of delete_transit_network_by_id_v1 .
Args:
id(basestring): id path parameter. ID of the transit network. .
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:
This function returns the output of delete_transit_network_by_id_v1 .
"""
return self.delete_transit_network_by_id_v1(
id=id, headers=headers, **request_parameters
)
# Alias Function
[docs] def delete_fabric_zone_by_id(self, id, headers=None, **request_parameters):
"""This function is an alias of delete_fabric_zone_by_id_v1 .
Args:
id(basestring): id path parameter. ID of the fabric zone. .
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:
This function returns the output of delete_fabric_zone_by_id_v1 .
"""
return self.delete_fabric_zone_by_id_v1(
id=id, headers=headers, **request_parameters
)
# Alias Function
[docs] def get_provisioned_devices_count(
self, site_id=None, headers=None, **request_parameters
):
"""This function is an alias of get_provisioned_devices_count_v1 .
Args:
site_id(basestring): siteId query parameter. ID of the site hierarchy. .
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:
This function returns the output of get_provisioned_devices_count_v1 .
"""
return self.get_provisioned_devices_count_v1(
site_id=site_id, headers=headers, **request_parameters
)
# Alias Function
[docs] def delete_site(self, site_name_hierarchy, headers=None, **request_parameters):
"""This function is an alias of delete_site_v1 .
Args:
site_name_hierarchy(basestring): siteNameHierarchy query parameter. Site Name Hierarchy .
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:
This function returns the output of delete_site_v1 .
"""
return self.delete_site_v1(
site_name_hierarchy=site_name_hierarchy,
headers=headers,
**request_parameters
)
# Alias Function
# Alias Function
[docs] def delete_layer3_virtual_networks(
self, virtual_network_name=None, headers=None, **request_parameters
):
"""This function is an alias of delete_layer3_virtual_networks_v1 .
Args:
virtual_network_name(basestring): virtualNetworkName query parameter. Name of the layer 3 virtual
network. .
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:
This function returns the output of delete_layer3_virtual_networks_v1 .
"""
return self.delete_layer3_virtual_networks_v1(
virtual_network_name=virtual_network_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def update_fabric_zone(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of update_fabric_zone_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of update_fabric_zone_v1 .
"""
return self.update_fabric_zone_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def get_multicast(
self,
fabric_id=None,
limit=None,
offset=None,
headers=None,
**request_parameters
):
"""This function is an alias of get_multicast_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric site where multicast is configured. .
offset(int): offset query parameter. Starting record for pagination. .
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:
This function returns the output of get_multicast_v1 .
"""
return self.get_multicast_v1(
fabric_id=fabric_id,
limit=limit,
offset=offset,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def add_fabric_zone(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of add_fabric_zone_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of add_fabric_zone_v1 .
"""
return self.add_fabric_zone_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def re_provision_wired_device(
self,
deviceManagementIpAddress=None,
siteNameHierarchy=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""This function is an alias of re_provision_wired_device_v1 .
Args:
deviceManagementIpAddress(string): SDA's Management Ip Address of the device to be re-provisioned .
siteNameHierarchy(string): SDA's siteNameHierarchy of the provisioned device .
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of re_provision_wired_device_v1 .
"""
return self.re_provision_wired_device_v1(
deviceManagementIpAddress=deviceManagementIpAddress,
siteNameHierarchy=siteNameHierarchy,
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def delete_port_assignment_by_id(self, id, headers=None, **request_parameters):
"""This function is an alias of delete_port_assignment_by_id_v1 .
Args:
id(basestring): id path parameter. ID of the port assignment. .
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:
This function returns the output of delete_port_assignment_by_id_v1 .
"""
return self.delete_port_assignment_by_id_v1(
id=id, headers=headers, **request_parameters
)
# Alias Function
[docs] def delete_fabric_device_layer3_handoffs_with_ip_transit(
self, fabric_id, network_device_id, headers=None, **request_parameters
):
"""This function is an alias of delete_fabric_device_layer3_handoffs_with_ip_transit_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric this device belongs to. .
network_device_id(basestring): networkDeviceId query parameter. Network device ID of the fabric 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:
This function returns the output of delete_fabric_device_layer3_handoffs_with_ip_transit_v1 .
"""
return self.delete_fabric_device_layer3_handoffs_with_ip_transit_v1(
fabric_id=fabric_id,
network_device_id=network_device_id,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def add_transit_peer_network(
self,
ipTransitSettings=None,
sdaTransitSettings=None,
transitPeerNetworkName=None,
transitPeerNetworkType=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""This function is an alias of add_transit_peer_network_v1 .
Args:
ipTransitSettings(object): SDA's ipTransitSettings.
sdaTransitSettings(object): SDA's sdaTransitSettings.
transitPeerNetworkName(string): SDA's Transit Peer Network Name .
transitPeerNetworkType(string): SDA's Transit Peer Network Type . Available values are 'ip_transit',
'sda_transit_with_lisp_bgp' and 'sda_transit_with_pub_sub'.
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of add_transit_peer_network_v1 .
"""
return self.add_transit_peer_network_v1(
ipTransitSettings=ipTransitSettings,
sdaTransitSettings=sdaTransitSettings,
transitPeerNetworkName=transitPeerNetworkName,
transitPeerNetworkType=transitPeerNetworkType,
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def get_control_plane_device(
self, device_management_ip_address, headers=None, **request_parameters
):
"""This function is an alias of get_control_plane_device_v1 .
Args:
device_management_ip_address(basestring): deviceManagementIpAddress 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:
This function returns the output of get_control_plane_device_v1 .
"""
return self.get_control_plane_device_v1(
device_management_ip_address=device_management_ip_address,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def delete_layer2_virtual_networks(
self,
fabric_id,
associated_layer3_virtual_network_name=None,
traffic_type=None,
vlan_id=None,
vlan_name=None,
headers=None,
**request_parameters
):
"""This function is an alias of delete_layer2_virtual_networks_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric the layer 2 virtual network is
assigned to. .
vlan_name(basestring): vlanName query parameter. The vlan name of the layer 2 virtual network. .
vlan_id(int): vlanId query parameter. The vlan ID of the layer 2 virtual network. .
traffic_type(basestring): trafficType query parameter. The traffic type of the layer 2 virtual network.
.
associated_layer3_virtual_network_name(basestring): associatedLayer3VirtualNetworkName query parameter.
Name of the associated layer 3 virtual network. .
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:
This function returns the output of delete_layer2_virtual_networks_v1 .
"""
return self.delete_layer2_virtual_networks_v1(
fabric_id=fabric_id,
associated_layer3_virtual_network_name=associated_layer3_virtual_network_name,
traffic_type=traffic_type,
vlan_id=vlan_id,
vlan_name=vlan_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def get_fabric_zone_count(self, headers=None, **request_parameters):
"""This function is an alias of get_fabric_zone_count_v1 .
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:
This function returns the output of get_fabric_zone_count_v1 .
"""
return self.get_fabric_zone_count_v1(headers=headers, **request_parameters)
# Alias Function
[docs] def add_port_assignment_for_user_device(
self,
authenticateTemplateName=None,
dataIpAddressPoolName=None,
deviceManagementIpAddress=None,
interfaceDescription=None,
interfaceName=None,
interfaceNames=None,
scalableGroupName=None,
siteNameHierarchy=None,
voiceIpAddressPoolName=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""This function is an alias of add_port_assignment_for_user_device_v1 .
Args:
authenticateTemplateName(string): SDA's Authenticate TemplateName associated with siteNameHierarchy .
Available values are 'Open Authentication', 'Closed Authentication', 'Low Impact' and
'No Authentication'.
dataIpAddressPoolName(string): SDA's Ip Pool Name, that is assigned to virtual network with traffic type
as DATA(can't be empty if voiceIpAddressPoolName is empty) .
deviceManagementIpAddress(string): SDA's Management Ip Address of the Edge Node Device. .
interfaceDescription(string): SDA's User defined text message for port assignment .
interfaceName(string): SDA's Interface Name on the Edge Node Device. .
interfaceNames(list): SDA's List of Interface Names on the Edge Node Device.
E.g.["GigabitEthernet1/0/3","GigabitEthernet1/0/4"] (list of strings).
scalableGroupName(string): SDA's Scalable Group name associated with VN .
siteNameHierarchy(string): SDA's Complete Path of SD-Access Fabric Site. .
voiceIpAddressPoolName(string): SDA's Ip Pool Name, that is assigned to virtual network with traffic
type as VOICE(can't be empty if dataIpAddressPoolName is empty) .
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of add_port_assignment_for_user_device_v1 .
"""
return self.add_port_assignment_for_user_device_v1(
authenticateTemplateName=authenticateTemplateName,
dataIpAddressPoolName=dataIpAddressPoolName,
deviceManagementIpAddress=deviceManagementIpAddress,
interfaceDescription=interfaceDescription,
interfaceName=interfaceName,
interfaceNames=interfaceNames,
scalableGroupName=scalableGroupName,
siteNameHierarchy=siteNameHierarchy,
voiceIpAddressPoolName=voiceIpAddressPoolName,
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def update_port_channels(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of update_port_channels_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of update_port_channels_v1 .
"""
return self.update_port_channels_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def get_vn(
self,
site_name_hierarchy,
virtual_network_name,
headers=None,
**request_parameters
):
"""This function is an alias of get_vn_v1 .
Args:
virtual_network_name(basestring): virtualNetworkName query parameter.
site_name_hierarchy(basestring): siteNameHierarchy 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:
This function returns the output of get_vn_v1 .
"""
return self.get_vn_v1(
site_name_hierarchy=site_name_hierarchy,
virtual_network_name=virtual_network_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def get_fabric_devices_layer3_handoffs_with_ip_transit(
self,
fabric_id,
limit=None,
network_device_id=None,
offset=None,
headers=None,
**request_parameters
):
"""This function is an alias of get_fabric_devices_layer3_handoffs_with_ip_transit_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric this device belongs to. .
network_device_id(basestring): networkDeviceId query parameter. Network device ID of the fabric device.
.
offset(int): offset query parameter. Starting record for pagination. .
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:
This function returns the output of get_fabric_devices_layer3_handoffs_with_ip_transit_v1 .
"""
return self.get_fabric_devices_layer3_handoffs_with_ip_transit_v1(
fabric_id=fabric_id,
limit=limit,
network_device_id=network_device_id,
offset=offset,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def add_fabric_site(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of add_fabric_site_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of add_fabric_site_v1 .
"""
return self.add_fabric_site_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def update_virtual_network_with_scalable_groups(
self,
isGuestVirtualNetwork=None,
scalableGroupNames=None,
vManageVpnId=None,
virtualNetworkName=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""This function is an alias of update_virtual_network_with_scalable_groups_v1 .
Args:
isGuestVirtualNetwork(boolean): SDA's Indicates whether to set this as guest virtual network or not,
default value is False. .
scalableGroupNames(list): SDA's Scalable Group Name to be associated to virtual network (list of
strings).
vManageVpnId(string): SDA's vManage vpn id for SD-WAN .
virtualNetworkName(string): SDA's Virtual Network Name to be assigned global level .
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of update_virtual_network_with_scalable_groups_v1 .
"""
return self.update_virtual_network_with_scalable_groups_v1(
isGuestVirtualNetwork=isGuestVirtualNetwork,
scalableGroupNames=scalableGroupNames,
vManageVpnId=vManageVpnId,
virtualNetworkName=virtualNetworkName,
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def get_anycast_gateways(
self,
fabric_id=None,
id=None,
ip_pool_name=None,
limit=None,
offset=None,
virtual_network_name=None,
vlan_id=None,
vlan_name=None,
headers=None,
**request_parameters
):
"""This function is an alias of get_anycast_gateways_v1 .
Args:
id(basestring): id query parameter. ID of the anycast gateway. .
fabric_id(basestring): fabricId query parameter. ID of the fabric the anycast gateway is assigned to. .
virtual_network_name(basestring): virtualNetworkName query parameter. Name of the virtual network
associated with the anycast gateways. .
ip_pool_name(basestring): ipPoolName query parameter. Name of the IP pool associated with the anycast
gateways. .
vlan_name(basestring): vlanName query parameter. VLAN name of the anycast gateways. .
vlan_id(int): vlanId query parameter. VLAN ID of the anycast gateways. The allowed range for vlanId is
[2-4093] except for reserved VLANs [1002-1005], 2046, and 4094. .
offset(int): offset query parameter. Starting record for pagination. .
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:
This function returns the output of get_anycast_gateways_v1 .
"""
return self.get_anycast_gateways_v1(
fabric_id=fabric_id,
id=id,
ip_pool_name=ip_pool_name,
limit=limit,
offset=offset,
virtual_network_name=virtual_network_name,
vlan_id=vlan_id,
vlan_name=vlan_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def provision_devices(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of provision_devices_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of provision_devices_v1 .
"""
return self.provision_devices_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def update_layer3_virtual_networks(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of update_layer3_virtual_networks_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of update_layer3_virtual_networks_v1 .
"""
return self.update_layer3_virtual_networks_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def delete_multicast_from_sda_fabric(
self, site_name_hierarchy, headers=None, **request_parameters
):
"""This function is an alias of delete_multicast_from_sda_fabric_v1 .
Args:
site_name_hierarchy(basestring): siteNameHierarchy 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:
This function returns the output of delete_multicast_from_sda_fabric_v1 .
"""
return self.delete_multicast_from_sda_fabric_v1(
site_name_hierarchy=site_name_hierarchy,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def add_control_plane_device(
self,
deviceManagementIpAddress=None,
routeDistributionProtocol=None,
siteNameHierarchy=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""This function is an alias of add_control_plane_device_v1 .
Args:
deviceManagementIpAddress(string): SDA's Management Ip Address of the Device which is provisioned
successfully .
routeDistributionProtocol(string): SDA's Route Distribution Protocol for Control Plane Device. Allowed
values are "LISP_BGP" or "LISP_PUB_SUB". Default value is "LISP_BGP" .
siteNameHierarchy(string): SDA's siteNameHierarchy of the Provisioned Device(site should be part of
Fabric Site) .
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of add_control_plane_device_v1 .
"""
return self.add_control_plane_device_v1(
deviceManagementIpAddress=deviceManagementIpAddress,
routeDistributionProtocol=routeDistributionProtocol,
siteNameHierarchy=siteNameHierarchy,
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def delete_port_assignments(
self,
fabric_id,
network_device_id,
data_vlan_name=None,
interface_name=None,
voice_vlan_name=None,
headers=None,
**request_parameters
):
"""This function is an alias of delete_port_assignments_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric the device is assigned to. .
network_device_id(basestring): networkDeviceId query parameter. Network device ID of the port
assignment. .
interface_name(basestring): interfaceName query parameter. Interface name of the port assignment. .
data_vlan_name(basestring): dataVlanName query parameter. Data VLAN name of the port assignment. .
voice_vlan_name(basestring): voiceVlanName query parameter. Voice VLAN name of the port assignment. .
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:
This function returns the output of delete_port_assignments_v1 .
"""
return self.delete_port_assignments_v1(
fabric_id=fabric_id,
network_device_id=network_device_id,
data_vlan_name=data_vlan_name,
interface_name=interface_name,
voice_vlan_name=voice_vlan_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def get_multicast_virtual_network_count(
self, fabric_id=None, headers=None, **request_parameters
):
"""This function is an alias of get_multicast_virtual_network_count_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric site the multicast configuration is
associated with. .
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:
This function returns the output of get_multicast_virtual_network_count_v1 .
"""
return self.get_multicast_virtual_network_count_v1(
fabric_id=fabric_id, headers=headers, **request_parameters
)
# Alias Function
[docs] def update_default_authentication_profile(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of update_default_authentication_profile_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of update_default_authentication_profile_v1 .
"""
return self.update_default_authentication_profile_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def get_fabric_devices_layer3_handoffs_with_sda_transit_count(
self, fabric_id, network_device_id=None, headers=None, **request_parameters
):
"""This function is an alias of get_fabric_devices_layer3_handoffs_with_sda_transit_count_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric this device belongs to. .
network_device_id(basestring): networkDeviceId query parameter. Network device ID of the fabric 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:
This function returns the output of get_fabric_devices_layer3_handoffs_with_sda_transit_count_v1 .
"""
return self.get_fabric_devices_layer3_handoffs_with_sda_transit_count_v1(
fabric_id=fabric_id,
network_device_id=network_device_id,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def add_fabric_devices(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of add_fabric_devices_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of add_fabric_devices_v1 .
"""
return self.add_fabric_devices_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def get_provisioned_devices(
self,
id=None,
limit=None,
network_device_id=None,
offset=None,
site_id=None,
headers=None,
**request_parameters
):
"""This function is an alias of get_provisioned_devices_v1 .
Args:
id(basestring): id query parameter. ID of the provisioned device. .
network_device_id(basestring): networkDeviceId query parameter. ID of the network device. .
site_id(basestring): siteId query parameter. ID of the site hierarchy. .
offset(int): offset query parameter. Starting record for pagination. .
limit(int): limit query parameter. Maximum number of devices 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:
This function returns the output of get_provisioned_devices_v1 .
"""
return self.get_provisioned_devices_v1(
id=id,
limit=limit,
network_device_id=network_device_id,
offset=offset,
site_id=site_id,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def get_layer2_virtual_network_count(
self,
associated_layer3_virtual_network_name=None,
fabric_id=None,
traffic_type=None,
vlan_id=None,
vlan_name=None,
headers=None,
**request_parameters
):
"""This function is an alias of get_layer2_virtual_network_count_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric the layer 2 virtual network is
assigned to. .
vlan_name(basestring): vlanName query parameter. The vlan name of the layer 2 virtual network. .
vlan_id(int): vlanId query parameter. The vlan ID of the layer 2 virtual network. .
traffic_type(basestring): trafficType query parameter. The traffic type of the layer 2 virtual network.
.
associated_layer3_virtual_network_name(basestring): associatedLayer3VirtualNetworkName query parameter.
Name of the associated layer 3 virtual network. .
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:
This function returns the output of get_layer2_virtual_network_count_v1 .
"""
return self.get_layer2_virtual_network_count_v1(
associated_layer3_virtual_network_name=associated_layer3_virtual_network_name,
fabric_id=fabric_id,
traffic_type=traffic_type,
vlan_id=vlan_id,
vlan_name=vlan_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def get_anycast_gateway_count(
self,
fabric_id=None,
ip_pool_name=None,
virtual_network_name=None,
vlan_id=None,
vlan_name=None,
headers=None,
**request_parameters
):
"""This function is an alias of get_anycast_gateway_count_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric the anycast gateway is assigned to. .
virtual_network_name(basestring): virtualNetworkName query parameter. Name of the virtual network
associated with the anycast gateways. .
ip_pool_name(basestring): ipPoolName query parameter. Name of the IP pool associated with the anycast
gateways. .
vlan_name(basestring): vlanName query parameter. VLAN name of the anycast gateways. .
vlan_id(int): vlanId query parameter. VLAN ID of the anycast gateways. The allowed range for vlanId is
[2-4093] except for reserved VLANs [1002-1005], 2046, and 4094. .
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:
This function returns the output of get_anycast_gateway_count_v1 .
"""
return self.get_anycast_gateway_count_v1(
fabric_id=fabric_id,
ip_pool_name=ip_pool_name,
virtual_network_name=virtual_network_name,
vlan_id=vlan_id,
vlan_name=vlan_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def get_port_channel_count(
self,
connected_device_type=None,
fabric_id=None,
network_device_id=None,
port_channel_name=None,
headers=None,
**request_parameters
):
"""This function is an alias of get_port_channel_count_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric the device is assigned to. .
network_device_id(basestring): networkDeviceId query parameter. ID of the network device. .
port_channel_name(basestring): portChannelName query parameter. Name of the port channel. .
connected_device_type(basestring): connectedDeviceType query parameter. Connected device type of the
port channel. The allowed values are [TRUNK, EXTENDED_NODE]. .
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:
This function returns the output of get_port_channel_count_v1 .
"""
return self.get_port_channel_count_v1(
connected_device_type=connected_device_type,
fabric_id=fabric_id,
network_device_id=network_device_id,
port_channel_name=port_channel_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def get_edge_device(
self, device_management_ip_address, headers=None, **request_parameters
):
"""This function is an alias of get_edge_device_v1 .
Args:
device_management_ip_address(basestring): deviceManagementIpAddress 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:
This function returns the output of get_edge_device_v1 .
"""
return self.get_edge_device_v1(
device_management_ip_address=device_management_ip_address,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def get_fabric_site_count(self, headers=None, **request_parameters):
"""This function is an alias of get_fabric_site_count_v1 .
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:
This function returns the output of get_fabric_site_count_v1 .
"""
return self.get_fabric_site_count_v1(headers=headers, **request_parameters)
# Alias Function
[docs] def re_provision_devices(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of re_provision_devices_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of re_provision_devices_v1 .
"""
return self.re_provision_devices_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def provision_wired_device(
self,
deviceManagementIpAddress=None,
siteNameHierarchy=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""This function is an alias of provision_wired_device_v1 .
Args:
deviceManagementIpAddress(string): SDA's Management Ip Address of the device to be provisioned .
siteNameHierarchy(string): SDA's Site Name Hierarchy for device location(only building / floor level) .
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of provision_wired_device_v1 .
"""
return self.provision_wired_device_v1(
deviceManagementIpAddress=deviceManagementIpAddress,
siteNameHierarchy=siteNameHierarchy,
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def get_provisioned_wired_device(
self, device_management_ip_address, headers=None, **request_parameters
):
"""This function is an alias of get_provisioned_wired_device_v1 .
Args:
device_management_ip_address(basestring): deviceManagementIpAddress 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:
This function returns the output of get_provisioned_wired_device_v1 .
"""
return self.get_provisioned_wired_device_v1(
device_management_ip_address=device_management_ip_address,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def get_port_assignment_for_user_device(
self,
device_management_ip_address,
interface_name,
headers=None,
**request_parameters
):
"""This function is an alias of get_port_assignment_for_user_device_v1 .
Args:
device_management_ip_address(basestring): deviceManagementIpAddress query parameter.
interface_name(basestring): interfaceName 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:
This function returns the output of get_port_assignment_for_user_device_v1 .
"""
return self.get_port_assignment_for_user_device_v1(
device_management_ip_address=device_management_ip_address,
interface_name=interface_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def delete_default_authentication_profile(
self, site_name_hierarchy, headers=None, **request_parameters
):
"""This function is an alias of delete_default_authentication_profile_v1 .
Args:
site_name_hierarchy(basestring): siteNameHierarchy 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:
This function returns the output of delete_default_authentication_profile_v1 .
"""
return self.delete_default_authentication_profile_v1(
site_name_hierarchy=site_name_hierarchy,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def update_fabric_site(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of update_fabric_site_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of update_fabric_site_v1 .
"""
return self.update_fabric_site_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def add_site(
self,
fabricName=None,
fabricType=None,
siteNameHierarchy=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""This function is an alias of add_site_v1 .
Args:
fabricName(string): SDA's Warning Starting DNA Center 2.2.3.5 release, this field has been deprecated.
SD-Access Fabric does not need it anymore. It will be removed in future DNA Center
releases. .
fabricType(string): SDA's Type of SD-Access Fabric. Allowed values are "FABRIC_SITE" or "FABRIC_ZONE".
Default value is "FABRIC_SITE". .
siteNameHierarchy(string): SDA's Existing site name hierarchy available at global level. For Example
"Global/Chicago/Building21/Floor1" .
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of add_site_v1 .
"""
return self.add_site_v1(
fabricName=fabricName,
fabricType=fabricType,
siteNameHierarchy=siteNameHierarchy,
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def deletes_border_device(
self, device_management_ip_address, headers=None, **request_parameters
):
"""This function is an alias of deletes_border_device_v1 .
Args:
device_management_ip_address(basestring): deviceManagementIpAddress 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:
This function returns the output of deletes_border_device_v1 .
"""
return self.deletes_border_device_v1(
device_management_ip_address=device_management_ip_address,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def get_layer2_virtual_networks(
self,
associated_layer3_virtual_network_name=None,
fabric_id=None,
id=None,
limit=None,
offset=None,
traffic_type=None,
vlan_id=None,
vlan_name=None,
headers=None,
**request_parameters
):
"""This function is an alias of get_layer2_virtual_networks_v1 .
Args:
id(basestring): id query parameter. ID of the layer 2 virtual network. .
fabric_id(basestring): fabricId query parameter. ID of the fabric the layer 2 virtual network is
assigned to. .
vlan_name(basestring): vlanName query parameter. The vlan name of the layer 2 virtual network. .
vlan_id(int): vlanId query parameter. The vlan ID of the layer 2 virtual network. .
traffic_type(basestring): trafficType query parameter. The traffic type of the layer 2 virtual network.
.
associated_layer3_virtual_network_name(basestring): associatedLayer3VirtualNetworkName query parameter.
Name of the associated layer 3 virtual network. .
offset(int): offset query parameter. Starting record for pagination. .
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:
This function returns the output of get_layer2_virtual_networks_v1 .
"""
return self.get_layer2_virtual_networks_v1(
associated_layer3_virtual_network_name=associated_layer3_virtual_network_name,
fabric_id=fabric_id,
id=id,
limit=limit,
offset=offset,
traffic_type=traffic_type,
vlan_id=vlan_id,
vlan_name=vlan_name,
headers=headers,
**request_parameters
)
# Alias Function
# Alias Function
[docs] def get_port_assignment_for_access_point(
self,
device_management_ip_address,
interface_name,
headers=None,
**request_parameters
):
"""This function is an alias of get_port_assignment_for_access_point_v1 .
Args:
device_management_ip_address(basestring): deviceManagementIpAddress query parameter.
interface_name(basestring): interfaceName 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:
This function returns the output of get_port_assignment_for_access_point_v1 .
"""
return self.get_port_assignment_for_access_point_v1(
device_management_ip_address=device_management_ip_address,
interface_name=interface_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def delete_port_channels(
self,
fabric_id,
network_device_id,
connected_device_type=None,
port_channel_name=None,
headers=None,
**request_parameters
):
"""This function is an alias of delete_port_channels_v1 .
Args:
fabric_id(basestring): fabricId query parameter. ID of the fabric the device is assigned to. .
network_device_id(basestring): networkDeviceId query parameter. ID of the network device. .
port_channel_name(basestring): portChannelName query parameter. Name of the port channel. .
connected_device_type(basestring): connectedDeviceType query parameter. Connected device type of the
port channel. The allowed values are [TRUNK, EXTENDED_NODE]. .
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:
This function returns the output of delete_port_channels_v1 .
"""
return self.delete_port_channels_v1(
fabric_id=fabric_id,
network_device_id=network_device_id,
connected_device_type=connected_device_type,
port_channel_name=port_channel_name,
headers=headers,
**request_parameters
)
# Alias Function
[docs] def add_vn(
self,
siteNameHierarchy=None,
virtualNetworkName=None,
headers=None,
payload=None,
active_validation=True,
**request_parameters
):
"""This function is an alias of add_vn .
Args:
siteNameHierarchy(string): SDA's Path of sda Fabric Site .
virtualNetworkName(string): SDA's Virtual Network Name, that is created at Global level .
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of add_vn .
"""
return self.add_vn_v1(
siteNameHierarchy=siteNameHierarchy,
virtualNetworkName=virtualNetworkName,
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)
# Alias Function
[docs] def update_layer2_virtual_networks(
self, headers=None, payload=None, active_validation=True, **request_parameters
):
"""This function is an alias of update_layer2_virtual_networks_v1 .
Args:
headers(dict): Dictionary of HTTP Headers to send with the Request
.
payload(): 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:
This function returns the output of update_layer2_virtual_networks_v1 .
"""
return self.update_layer2_virtual_networks_v1(
headers=headers,
payload=payload,
active_validation=active_validation,
**request_parameters
)