File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66__all__ = [
77 "Vaas" ,
88 "VaasTracing" ,
9+ "VaasOptions" ,
910 "VaasAuthenticationError" ,
11+ "VaasClientError" ,
12+ "VaasServerError" ,
13+ "FromStreamOptions" ,
14+ "ForFileOptions" ,
15+ "ForSha256Options" ,
16+ "ForUrlOptions" ,
1017 "ClientCredentialsGrantAuthenticator" ,
1118 "ResourceOwnerPasswordGrantAuthenticator" ,
1219]
1320
1421__author__ = "G DATA CyberDefense AG <oem@gdata.de>"
1522
16- from .vaas import Vaas , VaasTracing
23+ from .vaas import Vaas , VaasTracing , VaasOptions
24+ from .options .for_stream_options import ForStreamOptions
25+ from .options .for_file_options import ForFileOptions
26+ from .options .for_sha256_options import ForSha256Options
27+ from .options .for_url_options import ForUrlOptions
1728from .vaas_errors import (
1829 VaasAuthenticationError ,
30+ VaasClientError ,
31+ VaasServerError
1932)
2033from .authentication .client_credentials_grant_authenticator import ClientCredentialsGrantAuthenticator
2134from .authentication .resource_owner_password_grant_authenticator import ResourceOwnerPasswordGrantAuthenticator
You can’t perform that action at this time.
0 commit comments