Source code for ambra_sdk.service.entrypoints.generated.filter

""" Filter.

Do not edit this file by hand.
This is generated by parsing api.html service doc.
"""
from ambra_sdk.exceptions.service import FilterNotFound
from ambra_sdk.exceptions.service import InvalidCondition
from ambra_sdk.exceptions.service import InvalidConfig
from ambra_sdk.exceptions.service import InvalidField
from ambra_sdk.exceptions.service import InvalidParameters
from ambra_sdk.exceptions.service import InvalidSortField
from ambra_sdk.exceptions.service import InvalidSortOrder
from ambra_sdk.exceptions.service import NotFound
from ambra_sdk.exceptions.service import NotPermitted
from ambra_sdk.service.query import QueryO
from ambra_sdk.service.query import AsyncQueryO
from ambra_sdk.service.query import QueryOPSF
from ambra_sdk.service.query import AsyncQueryOPSF

class Filter:
    """Filter."""

    def __init__(self, api):
        self._api = api

    
[docs] def list( self, account_id, type, ): """List. :param account_id: Limit to global filters and filters within the account namespaces :param type: The type of filter to list (repeat this to get multiple types) """ request_data = { 'account_id': account_id, 'type': type, } errors_mapping = {} errors_mapping[('FILTER_NOT_FOUND', None)] = FilterNotFound('The filter can not be found. The error_subtype will hold the filter UUID') errors_mapping[('INVALID_CONDITION', None)] = InvalidCondition('The condition is not support. The error_subtype will hold the filter expression this applies to') errors_mapping[('INVALID_FIELD', None)] = InvalidField('The field is not valid for this object. The error_subtype will hold the filter expression this applies to') errors_mapping[('INVALID_SORT_FIELD', None)] = InvalidSortField('The field is not valid for this object. The error_subtype will hold the field name this applies to') errors_mapping[('INVALID_SORT_ORDER', None)] = InvalidSortOrder('The sort order for the field is invalid. The error_subtype will hold the field name this applies to') query_data = { 'api': self._api, 'url': '/filter/list', 'request_data': request_data, 'errors_mapping': errors_mapping, 'required_sid': True, } query_data['paginated_field'] = 'filters' return QueryOPSF(**query_data)
[docs] def add( self, configuration, name, type, account_id=None, tier_parent_id=None, ): """Add. :param configuration: The configuration as a JSON data structure :param name: The name of the filter :param type: The type of the filter :param account_id: The account id to link this filter with (optional) :param tier_parent_id: The uuid of the filter that this filter should be a child of (optional, for tiered filters) """ request_data = { 'account_id': account_id, 'configuration': configuration, 'name': name, 'tier_parent_id': tier_parent_id, 'type': type, } errors_mapping = {} errors_mapping[('INVALID_CONFIG', None)] = InvalidConfig('The configuration is invalid') query_data = { 'api': self._api, 'url': '/filter/add', 'request_data': request_data, 'errors_mapping': errors_mapping, 'required_sid': True, } return QueryO(**query_data)
[docs] def get( self, uuid, ): """Get. :param uuid: The filter uuid """ request_data = { 'uuid': uuid, } errors_mapping = {} errors_mapping[('NOT_FOUND', None)] = NotFound('The filter can not be found') query_data = { 'api': self._api, 'url': '/filter/get', 'request_data': request_data, 'errors_mapping': errors_mapping, 'required_sid': True, } return QueryO(**query_data)
[docs] def set( self, uuid, account_id=None, configuration=None, name=None, type=None, ): """Set. :param uuid: The filter uuid :param account_id: The account id to link this filter with (optional) :param configuration: The configuration as a JSON data structure (optional) :param name: The name of the filter (optional) :param type: The type of the filter (optional) """ request_data = { 'account_id': account_id, 'configuration': configuration, 'name': name, 'type': type, 'uuid': uuid, } errors_mapping = {} errors_mapping[('INVALID_CONFIG', None)] = InvalidConfig('The configuration is invalid') errors_mapping[('NOT_FOUND', None)] = NotFound('The filter can not be found') errors_mapping[('NOT_PERMITTED', None)] = NotPermitted('You are not the owner of the filter') query_data = { 'api': self._api, 'url': '/filter/set', 'request_data': request_data, 'errors_mapping': errors_mapping, 'required_sid': True, } return QueryO(**query_data)
[docs] def delete( self, uuid, ): """Delete. :param uuid: The filter uuid """ request_data = { 'uuid': uuid, } errors_mapping = {} errors_mapping[('NOT_FOUND', None)] = NotFound('The filter can not be found') errors_mapping[('NOT_PERMITTED', None)] = NotPermitted('You are not the owner of the filter') query_data = { 'api': self._api, 'url': '/filter/delete', 'request_data': request_data, 'errors_mapping': errors_mapping, 'required_sid': True, } return QueryO(**query_data)
[docs] def share( self, uuid, account_id=None, group_id=None, location_id=None, role_id=None, user_id=None, ): """Share. :param uuid: The filter uuid :param account_id: account_id :param group_id: group_id :param location_id: location_id :param role_id: role_id :param user_id: user_id """ request_data = { 'account_id': account_id, 'group_id': group_id, 'location_id': location_id, 'role_id': role_id, 'user_id': user_id, 'uuid': uuid, } errors_mapping = {} errors_mapping[('INVALID_PARAMETERS', None)] = InvalidParameters('Only pass a account_id or a location_id or a group_id or a user_id') errors_mapping[('NOT_FOUND', None)] = NotFound('The filter or share object can not be found. The error_subtype holds a the name of the key that can not be found') errors_mapping[('NOT_PERMITTED', None)] = NotPermitted('You are not the owner of the filter or are not permitted to share a filter with the destination') query_data = { 'api': self._api, 'url': '/filter/share', 'request_data': request_data, 'errors_mapping': errors_mapping, 'required_sid': True, } return QueryO(**query_data)
[docs] def share_stop( self, uuid, account_id=None, group_id=None, location_id=None, role_id=None, user_id=None, ): """Share stop. :param uuid: The filter uuid :param account_id: account_id :param group_id: group_id :param location_id: location_id :param role_id: role_id :param user_id: user_id """ request_data = { 'account_id': account_id, 'group_id': group_id, 'location_id': location_id, 'role_id': role_id, 'user_id': user_id, 'uuid': uuid, } errors_mapping = {} errors_mapping[('NOT_FOUND', None)] = NotFound('The filter can not be found') errors_mapping[('NOT_PERMITTED', None)] = NotPermitted('You are not the owner of the filter') query_data = { 'api': self._api, 'url': '/filter/share/stop', 'request_data': request_data, 'errors_mapping': errors_mapping, 'required_sid': True, } return QueryO(**query_data)
[docs] def share_list( self, uuid, ): """Share list. :param uuid: The filter uuid """ request_data = { 'uuid': uuid, } errors_mapping = {} errors_mapping[('NOT_FOUND', None)] = NotFound('The filter can not be found') query_data = { 'api': self._api, 'url': '/filter/share/list', 'request_data': request_data, 'errors_mapping': errors_mapping, 'required_sid': True, } return QueryO(**query_data)
class AsyncFilter: """AsyncFilter.""" def __init__(self, api): self._api = api
[docs] def list( self, account_id, type, ): """List. :param account_id: Limit to global filters and filters within the account namespaces :param type: The type of filter to list (repeat this to get multiple types) """ request_data = { 'account_id': account_id, 'type': type, } errors_mapping = {} errors_mapping[('FILTER_NOT_FOUND', None)] = FilterNotFound('The filter can not be found. The error_subtype will hold the filter UUID') errors_mapping[('INVALID_CONDITION', None)] = InvalidCondition('The condition is not support. The error_subtype will hold the filter expression this applies to') errors_mapping[('INVALID_FIELD', None)] = InvalidField('The field is not valid for this object. The error_subtype will hold the filter expression this applies to') errors_mapping[('INVALID_SORT_FIELD', None)] = InvalidSortField('The field is not valid for this object. The error_subtype will hold the field name this applies to') errors_mapping[('INVALID_SORT_ORDER', None)] = InvalidSortOrder('The sort order for the field is invalid. The error_subtype will hold the field name this applies to') query_data = { 'api': self._api, 'url': '/filter/list', 'request_data': request_data, 'errors_mapping': errors_mapping, 'required_sid': True, } query_data['paginated_field'] = 'filters' return AsyncQueryOPSF(**query_data)
[docs] def add( self, configuration, name, type, account_id=None, tier_parent_id=None, ): """Add. :param configuration: The configuration as a JSON data structure :param name: The name of the filter :param type: The type of the filter :param account_id: The account id to link this filter with (optional) :param tier_parent_id: The uuid of the filter that this filter should be a child of (optional, for tiered filters) """ request_data = { 'account_id': account_id, 'configuration': configuration, 'name': name, 'tier_parent_id': tier_parent_id, 'type': type, } errors_mapping = {} errors_mapping[('INVALID_CONFIG', None)] = InvalidConfig('The configuration is invalid') query_data = { 'api': self._api, 'url': '/filter/add', 'request_data': request_data, 'errors_mapping': errors_mapping, 'required_sid': True, } return AsyncQueryO(**query_data)
[docs] def get( self, uuid, ): """Get. :param uuid: The filter uuid """ request_data = { 'uuid': uuid, } errors_mapping = {} errors_mapping[('NOT_FOUND', None)] = NotFound('The filter can not be found') query_data = { 'api': self._api, 'url': '/filter/get', 'request_data': request_data, 'errors_mapping': errors_mapping, 'required_sid': True, } return AsyncQueryO(**query_data)
[docs] def set( self, uuid, account_id=None, configuration=None, name=None, type=None, ): """Set. :param uuid: The filter uuid :param account_id: The account id to link this filter with (optional) :param configuration: The configuration as a JSON data structure (optional) :param name: The name of the filter (optional) :param type: The type of the filter (optional) """ request_data = { 'account_id': account_id, 'configuration': configuration, 'name': name, 'type': type, 'uuid': uuid, } errors_mapping = {} errors_mapping[('INVALID_CONFIG', None)] = InvalidConfig('The configuration is invalid') errors_mapping[('NOT_FOUND', None)] = NotFound('The filter can not be found') errors_mapping[('NOT_PERMITTED', None)] = NotPermitted('You are not the owner of the filter') query_data = { 'api': self._api, 'url': '/filter/set', 'request_data': request_data, 'errors_mapping': errors_mapping, 'required_sid': True, } return AsyncQueryO(**query_data)
[docs] def delete( self, uuid, ): """Delete. :param uuid: The filter uuid """ request_data = { 'uuid': uuid, } errors_mapping = {} errors_mapping[('NOT_FOUND', None)] = NotFound('The filter can not be found') errors_mapping[('NOT_PERMITTED', None)] = NotPermitted('You are not the owner of the filter') query_data = { 'api': self._api, 'url': '/filter/delete', 'request_data': request_data, 'errors_mapping': errors_mapping, 'required_sid': True, } return AsyncQueryO(**query_data)
[docs] def share( self, uuid, account_id=None, group_id=None, location_id=None, role_id=None, user_id=None, ): """Share. :param uuid: The filter uuid :param account_id: account_id :param group_id: group_id :param location_id: location_id :param role_id: role_id :param user_id: user_id """ request_data = { 'account_id': account_id, 'group_id': group_id, 'location_id': location_id, 'role_id': role_id, 'user_id': user_id, 'uuid': uuid, } errors_mapping = {} errors_mapping[('INVALID_PARAMETERS', None)] = InvalidParameters('Only pass a account_id or a location_id or a group_id or a user_id') errors_mapping[('NOT_FOUND', None)] = NotFound('The filter or share object can not be found. The error_subtype holds a the name of the key that can not be found') errors_mapping[('NOT_PERMITTED', None)] = NotPermitted('You are not the owner of the filter or are not permitted to share a filter with the destination') query_data = { 'api': self._api, 'url': '/filter/share', 'request_data': request_data, 'errors_mapping': errors_mapping, 'required_sid': True, } return AsyncQueryO(**query_data)
[docs] def share_stop( self, uuid, account_id=None, group_id=None, location_id=None, role_id=None, user_id=None, ): """Share stop. :param uuid: The filter uuid :param account_id: account_id :param group_id: group_id :param location_id: location_id :param role_id: role_id :param user_id: user_id """ request_data = { 'account_id': account_id, 'group_id': group_id, 'location_id': location_id, 'role_id': role_id, 'user_id': user_id, 'uuid': uuid, } errors_mapping = {} errors_mapping[('NOT_FOUND', None)] = NotFound('The filter can not be found') errors_mapping[('NOT_PERMITTED', None)] = NotPermitted('You are not the owner of the filter') query_data = { 'api': self._api, 'url': '/filter/share/stop', 'request_data': request_data, 'errors_mapping': errors_mapping, 'required_sid': True, } return AsyncQueryO(**query_data)
[docs] def share_list( self, uuid, ): """Share list. :param uuid: The filter uuid """ request_data = { 'uuid': uuid, } errors_mapping = {} errors_mapping[('NOT_FOUND', None)] = NotFound('The filter can not be found') query_data = { 'api': self._api, 'url': '/filter/share/list', 'request_data': request_data, 'errors_mapping': errors_mapping, 'required_sid': True, } return AsyncQueryO(**query_data)