Source code for dnacentersdk.api.v2_3_5_3.user_and_roles

# -*- coding: utf-8 -*-
"""Cisco DNA Center User and Roles API wrapper.

Copyright (c) 2019-2021 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 UserandRoles(object): """Cisco DNA Center User and Roles API (version: 2.3.5.3). Wraps the DNA Center User and Roles 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 UserandRoles 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(UserandRoles, self).__init__() self._session = session self._object_factory = object_factory self._request_validator = request_validator
[docs] def get_permissions_api(self, headers=None, **request_parameters): """Get permissions for a role from Cisco DNA Center System . Args: headers(dict): Dictionary of HTTP Headers to send with the Request . **request_parameters: Additional request parameters (provides support for parameters that may be added in the future). Returns: MyDict: JSON response. Access the object's properties by using the dot notation or the bracket notation. Raises: TypeError: If the parameter types are incorrect. MalformedRequest: If the request body created is invalid. ApiError: If the DNA Center cloud returns an error. Documentation Link: https://developer.cisco.com/docs/dna-center/#!get-permissions-api """ 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/system/api/v1/role/permissions" 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_ec0b30eca9d540a845848cffd7c602a_v2_3_5_3", json_data )
[docs] def get_roles_api(self, headers=None, **request_parameters): """Get all roles for the Cisco DNA Center system . Args: headers(dict): Dictionary of HTTP Headers to send with the Request . **request_parameters: Additional request parameters (provides support for parameters that may be added in the future). Returns: MyDict: JSON response. Access the object's properties by using the dot notation or the bracket notation. Raises: TypeError: If the parameter types are incorrect. MalformedRequest: If the request body created is invalid. ApiError: If the DNA Center cloud returns an error. Documentation Link: https://developer.cisco.com/docs/dna-center/#!get-roles-api """ check_type(headers, dict) if headers is not None: if "invokeSource" in headers: check_type(headers.get("invokeSource"), str, may_be_none=False) if "X-Auth-Token" in headers: check_type(headers.get("X-Auth-Token"), str, may_be_none=False) _params = {} _params.update(request_parameters) _params = dict_from_items_with_values(_params) path_params = {} with_custom_headers = False _headers = self._session.headers or {} if headers: _headers.update(dict_of_str(headers)) with_custom_headers = True e_url = "/dna/system/api/v1/roles" 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_bef02e8f6f8354dc99e375826a87c88c_v2_3_5_3", json_data )
[docs] def get_users_api(self, invoke_source, headers=None, **request_parameters): """Get all users for the Cisco DNA Center system . Args: invoke_source(str): invokeSource query parameter. The source that invokes this API . headers(dict): Dictionary of 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-users-api """ check_type(headers, dict) check_type(invoke_source, 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 = { "invokeSource": invoke_source, } _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/system/api/v1/user" 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_fa405b6d1be56739f2dfeea63212015_v2_3_5_3", json_data )
[docs] def add_user_api( self, email=None, firstName=None, lastName=None, password=None, roleList=None, username=None, headers=None, payload=None, active_validation=True, **request_parameters ): """Add a new user for Cisco DNA Center system . Args: email(string): User and Roles's Email. firstName(string): User and Roles's First Name. lastName(string): User and Roles's Last Name. password(string): User and Roles's Password. roleList(list): User and Roles's Role id list (list of strings). username(string): User and Roles's Username. 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-user-api """ 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 = { "firstName": firstName, "lastName": lastName, "username": username, "password": password, "email": email, "roleList": roleList, } _payload.update(payload or {}) _payload = dict_from_items_with_values(_payload) if active_validation: self._request_validator( "jsd_d82755e5e03510daf0951c1f42c2702_v2_3_5_3" ).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/system/api/v1/user" 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_d82755e5e03510daf0951c1f42c2702_v2_3_5_3", json_data )
[docs] def update_user_api( self, email=None, firstName=None, lastName=None, roleList=None, userId=None, username=None, headers=None, payload=None, active_validation=True, **request_parameters ): """Update a user for Cisco DNA Center system . Args: email(string): User and Roles's email should be set if the original value is not empty . firstName(string): User and Roles's firstName should be set if the original value is not empty . lastName(string): User and Roles's lastName should be set if the original value is not empty . roleList(list): User and Roles's Role id list (list of strings). userId(string): User and Roles's User Id. username(string): User and Roles's Username. 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-user-api """ 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 = { "firstName": firstName, "lastName": lastName, "email": email, "username": username, "userId": userId, "roleList": roleList, } _payload.update(payload or {}) _payload = dict_from_items_with_values(_payload) if active_validation: self._request_validator( "jsd_d2bd5f05bd535a89ebadb30e2ede9e_v2_3_5_3" ).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/system/api/v1/user" 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_d2bd5f05bd535a89ebadb30e2ede9e_v2_3_5_3", json_data )
[docs] def get_external_authentication_servers_api( self, invoke_source, headers=None, **request_parameters ): """Get external users authentication servers . Args: invoke_source(str): invokeSource query parameter. The source that invokes this API . headers(dict): Dictionary of 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-external-authentication-servers-api """ check_type(headers, dict) check_type(invoke_source, 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 = { "invokeSource": invoke_source, } _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/system/api/v1/users/external-servers" 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_def9045d4d9c96bcd42172a79c_v2_3_5_3", json_data )