-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path__init__.py
More file actions
147 lines (146 loc) · 4.31 KB
/
__init__.py
File metadata and controls
147 lines (146 loc) · 4.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
from .annotated import SCIMSerializer
from .annotated import SCIMValidator
from .annotations import CaseExact
from .annotations import Mutability
from .annotations import Required
from .annotations import Returned
from .annotations import Uniqueness
from .attributes import ComplexAttribute
from .attributes import MultiValuedComplexAttribute
from .base import BaseModel
from .context import Context
from .exceptions import InvalidFilterException
from .exceptions import InvalidPathException
from .exceptions import InvalidSyntaxException
from .exceptions import InvalidValueException
from .exceptions import InvalidVersionException
from .exceptions import MutabilityException
from .exceptions import NoTargetException
from .exceptions import PathNotFoundException
from .exceptions import SCIMException
from .exceptions import SensitiveException
from .exceptions import TooManyException
from .exceptions import UniquenessException
from .messages.bulk import BulkOperation
from .messages.bulk import BulkRequest
from .messages.bulk import BulkResponse
from .messages.error import Error
from .messages.list_response import ListResponse
from .messages.message import Message
from .messages.patch_op import PatchOp
from .messages.patch_op import PatchOperation
from .messages.response_parameters import ResponseParameters
from .messages.search_request import SearchRequest
from .path import URN
from .path import Path
from .reference import URI
from .reference import External
from .reference import ExternalReference
from .reference import Reference
from .reference import URIReference
from .resources.enterprise_user import EnterpriseUser
from .resources.enterprise_user import Manager
from .resources.group import Group
from .resources.group import GroupMember
from .resources.resource import AnyExtension
from .resources.resource import AnyResource
from .resources.resource import Extension
from .resources.resource import Meta
from .resources.resource import Resource
from .resources.resource_type import ResourceType
from .resources.resource_type import SchemaExtension
from .resources.schema import Attribute
from .resources.schema import Schema
from .resources.service_provider_config import AuthenticationScheme
from .resources.service_provider_config import Bulk
from .resources.service_provider_config import ChangePassword
from .resources.service_provider_config import ETag
from .resources.service_provider_config import Filter
from .resources.service_provider_config import Patch
from .resources.service_provider_config import ServiceProviderConfig
from .resources.service_provider_config import Sort
from .resources.user import Address
from .resources.user import Email
from .resources.user import Entitlement
from .resources.user import GroupMembership
from .resources.user import Im
from .resources.user import Name
from .resources.user import PhoneNumber
from .resources.user import Photo
from .resources.user import Role
from .resources.user import User
from .resources.user import X509Certificate
__all__ = [
"Address",
"AnyResource",
"SCIMSerializer",
"SCIMValidator",
"AnyExtension",
"Attribute",
"AuthenticationScheme",
"BaseModel",
"Bulk",
"BulkOperation",
"BulkRequest",
"BulkResponse",
"CaseExact",
"ChangePassword",
"ComplexAttribute",
"Context",
"ETag",
"Email",
"EnterpriseUser",
"Entitlement",
"Error",
"External",
"ExternalReference",
"Extension",
"Filter",
"Group",
"GroupMember",
"GroupMembership",
"Im",
"InvalidFilterException",
"InvalidPathException",
"InvalidSyntaxException",
"InvalidValueException",
"InvalidVersionException",
"ListResponse",
"Manager",
"Message",
"Meta",
"Mutability",
"MutabilityException",
"MultiValuedComplexAttribute",
"Name",
"NoTargetException",
"Path",
"PathNotFoundException",
"Patch",
"PatchOp",
"PatchOperation",
"PhoneNumber",
"Photo",
"Reference",
"Required",
"Resource",
"ResourceType",
"ResponseParameters",
"Returned",
"Role",
"SCIMException",
"Schema",
"SchemaExtension",
"SearchRequest",
"SensitiveException",
"ServiceProviderConfig",
"Sort",
"TooManyException",
"Uniqueness",
"UniquenessException",
"URI",
"URIReference",
"URN",
"User",
"X509Certificate",
]