types-aiobotocore-signin 2.26.0__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.
- types_aiobotocore_signin/__init__.py +30 -0
- types_aiobotocore_signin/__init__.pyi +29 -0
- types_aiobotocore_signin/__main__.py +43 -0
- types_aiobotocore_signin/client.py +111 -0
- types_aiobotocore_signin/client.pyi +108 -0
- types_aiobotocore_signin/literals.py +443 -0
- types_aiobotocore_signin/literals.pyi +441 -0
- types_aiobotocore_signin/py.typed +0 -0
- types_aiobotocore_signin/type_defs.py +74 -0
- types_aiobotocore_signin/type_defs.pyi +67 -0
- types_aiobotocore_signin/version.py +7 -0
- types_aiobotocore_signin-2.26.0.dist-info/METADATA +445 -0
- types_aiobotocore_signin-2.26.0.dist-info/RECORD +16 -0
- types_aiobotocore_signin-2.26.0.dist-info/WHEEL +5 -0
- types_aiobotocore_signin-2.26.0.dist-info/licenses/LICENSE +21 -0
- types_aiobotocore_signin-2.26.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Main interface for signin service.
|
|
3
|
+
|
|
4
|
+
[Documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_signin/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
8
|
+
Usage::
|
|
9
|
+
|
|
10
|
+
```python
|
|
11
|
+
from aiobotocore.session import get_session
|
|
12
|
+
from types_aiobotocore_signin import (
|
|
13
|
+
Client,
|
|
14
|
+
SignInServiceClient,
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
session = get_session()
|
|
18
|
+
async with session.create_client("signin") as client:
|
|
19
|
+
client: SignInServiceClient
|
|
20
|
+
...
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
from .client import SignInServiceClient
|
|
26
|
+
|
|
27
|
+
Client = SignInServiceClient
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
__all__ = ("Client", "SignInServiceClient")
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Main interface for signin service.
|
|
3
|
+
|
|
4
|
+
[Documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_signin/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
8
|
+
Usage::
|
|
9
|
+
|
|
10
|
+
```python
|
|
11
|
+
from aiobotocore.session import get_session
|
|
12
|
+
from types_aiobotocore_signin import (
|
|
13
|
+
Client,
|
|
14
|
+
SignInServiceClient,
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
session = get_session()
|
|
18
|
+
async with session.create_client("signin") as client:
|
|
19
|
+
client: SignInServiceClient
|
|
20
|
+
...
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
from .client import SignInServiceClient
|
|
26
|
+
|
|
27
|
+
Client = SignInServiceClient
|
|
28
|
+
|
|
29
|
+
__all__ = ("Client", "SignInServiceClient")
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Main CLI entrypoint.
|
|
3
|
+
|
|
4
|
+
Copyright 2025 Vlad Emelianov
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
import sys
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
def print_info() -> None:
|
|
11
|
+
"""
|
|
12
|
+
Print package info to stdout.
|
|
13
|
+
"""
|
|
14
|
+
sys.stdout.write(
|
|
15
|
+
"Type annotations for aiobotocore SignInService 2.26.0\n"
|
|
16
|
+
"Version: 2.26.0\n"
|
|
17
|
+
"Builder version: 8.12.0\n"
|
|
18
|
+
"Docs: https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_signin//\n"
|
|
19
|
+
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/signin.html#signinservice\n"
|
|
20
|
+
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
21
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
|
|
22
|
+
)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
def print_version() -> None:
|
|
26
|
+
"""
|
|
27
|
+
Print package version to stdout.
|
|
28
|
+
"""
|
|
29
|
+
sys.stdout.write("2.26.0\n")
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
def main() -> None:
|
|
33
|
+
"""
|
|
34
|
+
Main CLI entrypoint.
|
|
35
|
+
"""
|
|
36
|
+
if "--version" in sys.argv:
|
|
37
|
+
print_version()
|
|
38
|
+
return
|
|
39
|
+
print_info()
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
if __name__ == "__main__":
|
|
43
|
+
main()
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type annotations for signin service Client.
|
|
3
|
+
|
|
4
|
+
[Documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_signin/client/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
8
|
+
Usage::
|
|
9
|
+
|
|
10
|
+
```python
|
|
11
|
+
from aiobotocore.session import get_session
|
|
12
|
+
from types_aiobotocore_signin.client import SignInServiceClient
|
|
13
|
+
|
|
14
|
+
session = get_session()
|
|
15
|
+
async with session.create_client("signin") as client:
|
|
16
|
+
client: SignInServiceClient
|
|
17
|
+
```
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
from __future__ import annotations
|
|
21
|
+
|
|
22
|
+
import sys
|
|
23
|
+
from collections.abc import Mapping
|
|
24
|
+
from types import TracebackType
|
|
25
|
+
from typing import Any
|
|
26
|
+
|
|
27
|
+
from aiobotocore.client import AioBaseClient
|
|
28
|
+
from botocore.client import ClientMeta
|
|
29
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
30
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
31
|
+
|
|
32
|
+
from .type_defs import CreateOAuth2TokenRequestTypeDef, CreateOAuth2TokenResponseTypeDef
|
|
33
|
+
|
|
34
|
+
if sys.version_info >= (3, 12):
|
|
35
|
+
from typing import Self, Unpack
|
|
36
|
+
else:
|
|
37
|
+
from typing_extensions import Self, Unpack
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
__all__ = ("SignInServiceClient",)
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
class Exceptions(BaseClientExceptions):
|
|
44
|
+
AccessDeniedException: type[BotocoreClientError]
|
|
45
|
+
ClientError: type[BotocoreClientError]
|
|
46
|
+
InternalServerException: type[BotocoreClientError]
|
|
47
|
+
TooManyRequestsError: type[BotocoreClientError]
|
|
48
|
+
ValidationException: type[BotocoreClientError]
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
class SignInServiceClient(AioBaseClient):
|
|
52
|
+
"""
|
|
53
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/signin.html#SignInService.Client)
|
|
54
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_signin/client/)
|
|
55
|
+
"""
|
|
56
|
+
|
|
57
|
+
meta: ClientMeta
|
|
58
|
+
|
|
59
|
+
@property
|
|
60
|
+
def exceptions(self) -> Exceptions:
|
|
61
|
+
"""
|
|
62
|
+
SignInServiceClient exceptions.
|
|
63
|
+
|
|
64
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/signin.html#SignInService.Client)
|
|
65
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_signin/client/#exceptions)
|
|
66
|
+
"""
|
|
67
|
+
|
|
68
|
+
def can_paginate(self, operation_name: str) -> bool:
|
|
69
|
+
"""
|
|
70
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/signin/client/can_paginate.html)
|
|
71
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_signin/client/#can_paginate)
|
|
72
|
+
"""
|
|
73
|
+
|
|
74
|
+
async def generate_presigned_url(
|
|
75
|
+
self,
|
|
76
|
+
ClientMethod: str,
|
|
77
|
+
Params: Mapping[str, Any] = ...,
|
|
78
|
+
ExpiresIn: int = 3600,
|
|
79
|
+
HttpMethod: str = ...,
|
|
80
|
+
) -> str:
|
|
81
|
+
"""
|
|
82
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/signin/client/generate_presigned_url.html)
|
|
83
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_signin/client/#generate_presigned_url)
|
|
84
|
+
"""
|
|
85
|
+
|
|
86
|
+
async def create_o_auth2_token(
|
|
87
|
+
self, **kwargs: Unpack[CreateOAuth2TokenRequestTypeDef]
|
|
88
|
+
) -> CreateOAuth2TokenResponseTypeDef:
|
|
89
|
+
"""
|
|
90
|
+
CreateOAuth2Token API.
|
|
91
|
+
|
|
92
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/signin/client/create_o_auth2_token.html)
|
|
93
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_signin/client/#create_o_auth2_token)
|
|
94
|
+
"""
|
|
95
|
+
|
|
96
|
+
async def __aenter__(self) -> Self:
|
|
97
|
+
"""
|
|
98
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/signin.html#SignInService.Client)
|
|
99
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_signin/client/)
|
|
100
|
+
"""
|
|
101
|
+
|
|
102
|
+
async def __aexit__(
|
|
103
|
+
self,
|
|
104
|
+
exc_type: type[BaseException] | None,
|
|
105
|
+
exc_val: BaseException | None,
|
|
106
|
+
exc_tb: TracebackType | None,
|
|
107
|
+
) -> None:
|
|
108
|
+
"""
|
|
109
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/signin.html#SignInService.Client)
|
|
110
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_signin/client/)
|
|
111
|
+
"""
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type annotations for signin service Client.
|
|
3
|
+
|
|
4
|
+
[Documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_signin/client/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
8
|
+
Usage::
|
|
9
|
+
|
|
10
|
+
```python
|
|
11
|
+
from aiobotocore.session import get_session
|
|
12
|
+
from types_aiobotocore_signin.client import SignInServiceClient
|
|
13
|
+
|
|
14
|
+
session = get_session()
|
|
15
|
+
async with session.create_client("signin") as client:
|
|
16
|
+
client: SignInServiceClient
|
|
17
|
+
```
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
from __future__ import annotations
|
|
21
|
+
|
|
22
|
+
import sys
|
|
23
|
+
from collections.abc import Mapping
|
|
24
|
+
from types import TracebackType
|
|
25
|
+
from typing import Any
|
|
26
|
+
|
|
27
|
+
from aiobotocore.client import AioBaseClient
|
|
28
|
+
from botocore.client import ClientMeta
|
|
29
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
30
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
31
|
+
|
|
32
|
+
from .type_defs import CreateOAuth2TokenRequestTypeDef, CreateOAuth2TokenResponseTypeDef
|
|
33
|
+
|
|
34
|
+
if sys.version_info >= (3, 12):
|
|
35
|
+
from typing import Self, Unpack
|
|
36
|
+
else:
|
|
37
|
+
from typing_extensions import Self, Unpack
|
|
38
|
+
|
|
39
|
+
__all__ = ("SignInServiceClient",)
|
|
40
|
+
|
|
41
|
+
class Exceptions(BaseClientExceptions):
|
|
42
|
+
AccessDeniedException: type[BotocoreClientError]
|
|
43
|
+
ClientError: type[BotocoreClientError]
|
|
44
|
+
InternalServerException: type[BotocoreClientError]
|
|
45
|
+
TooManyRequestsError: type[BotocoreClientError]
|
|
46
|
+
ValidationException: type[BotocoreClientError]
|
|
47
|
+
|
|
48
|
+
class SignInServiceClient(AioBaseClient):
|
|
49
|
+
"""
|
|
50
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/signin.html#SignInService.Client)
|
|
51
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_signin/client/)
|
|
52
|
+
"""
|
|
53
|
+
|
|
54
|
+
meta: ClientMeta
|
|
55
|
+
|
|
56
|
+
@property
|
|
57
|
+
def exceptions(self) -> Exceptions:
|
|
58
|
+
"""
|
|
59
|
+
SignInServiceClient exceptions.
|
|
60
|
+
|
|
61
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/signin.html#SignInService.Client)
|
|
62
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_signin/client/#exceptions)
|
|
63
|
+
"""
|
|
64
|
+
|
|
65
|
+
def can_paginate(self, operation_name: str) -> bool:
|
|
66
|
+
"""
|
|
67
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/signin/client/can_paginate.html)
|
|
68
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_signin/client/#can_paginate)
|
|
69
|
+
"""
|
|
70
|
+
|
|
71
|
+
async def generate_presigned_url(
|
|
72
|
+
self,
|
|
73
|
+
ClientMethod: str,
|
|
74
|
+
Params: Mapping[str, Any] = ...,
|
|
75
|
+
ExpiresIn: int = 3600,
|
|
76
|
+
HttpMethod: str = ...,
|
|
77
|
+
) -> str:
|
|
78
|
+
"""
|
|
79
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/signin/client/generate_presigned_url.html)
|
|
80
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_signin/client/#generate_presigned_url)
|
|
81
|
+
"""
|
|
82
|
+
|
|
83
|
+
async def create_o_auth2_token(
|
|
84
|
+
self, **kwargs: Unpack[CreateOAuth2TokenRequestTypeDef]
|
|
85
|
+
) -> CreateOAuth2TokenResponseTypeDef:
|
|
86
|
+
"""
|
|
87
|
+
CreateOAuth2Token API.
|
|
88
|
+
|
|
89
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/signin/client/create_o_auth2_token.html)
|
|
90
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_signin/client/#create_o_auth2_token)
|
|
91
|
+
"""
|
|
92
|
+
|
|
93
|
+
async def __aenter__(self) -> Self:
|
|
94
|
+
"""
|
|
95
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/signin.html#SignInService.Client)
|
|
96
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_signin/client/)
|
|
97
|
+
"""
|
|
98
|
+
|
|
99
|
+
async def __aexit__(
|
|
100
|
+
self,
|
|
101
|
+
exc_type: type[BaseException] | None,
|
|
102
|
+
exc_val: BaseException | None,
|
|
103
|
+
exc_tb: TracebackType | None,
|
|
104
|
+
) -> None:
|
|
105
|
+
"""
|
|
106
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/signin.html#SignInService.Client)
|
|
107
|
+
[Show types-aiobotocore documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_signin/client/)
|
|
108
|
+
"""
|