superposition-sdk 0.94.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- superposition_sdk/__init__.py +3 -0
- superposition_sdk/_private/__init__.py +1 -0
- superposition_sdk/_private/schemas.py +14909 -0
- superposition_sdk/auth.py +16 -0
- superposition_sdk/client.py +2744 -0
- superposition_sdk/config.py +240 -0
- superposition_sdk/deserialize.py +2006 -0
- superposition_sdk/models.py +14739 -0
- superposition_sdk/serialize.py +2705 -0
- superposition_sdk-0.94.1.dist-info/METADATA +64 -0
- superposition_sdk-0.94.1.dist-info/RECORD +12 -0
- superposition_sdk-0.94.1.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Code generated by smithy-python-codegen DO NOT EDIT.
|
|
2
|
+
|
|
3
|
+
from dataclasses import dataclass
|
|
4
|
+
|
|
5
|
+
from smithy_http.aio.interfaces.auth import HTTPAuthOption
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
@dataclass
|
|
9
|
+
class HTTPAuthParams:
|
|
10
|
+
operation: str
|
|
11
|
+
|
|
12
|
+
class HTTPAuthSchemeResolver:
|
|
13
|
+
def resolve_auth_scheme(self, auth_parameters: HTTPAuthParams) -> list[HTTPAuthOption]:
|
|
14
|
+
auth_options: list[HTTPAuthOption] = []
|
|
15
|
+
|
|
16
|
+
return auth_options
|