botocore-stubs 1.38.12__py3-none-any.whl → 1.40.66__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.
Potentially problematic release.
This version of botocore-stubs might be problematic. Click here for more details.
- botocore-stubs/__init__.pyi +2 -1
- botocore-stubs/args.pyi +9 -1
- botocore-stubs/auth.pyi +6 -1
- botocore-stubs/awsrequest.pyi +2 -2
- botocore-stubs/client.pyi +6 -1
- botocore-stubs/compat.pyi +4 -1
- botocore-stubs/compress.pyi +2 -1
- botocore-stubs/config.pyi +2 -1
- botocore-stubs/configprovider.pyi +2 -1
- botocore-stubs/credentials.pyi +5 -2
- botocore-stubs/discovery.pyi +2 -1
- botocore-stubs/docs/bcdoc/restdoc.pyi +2 -1
- botocore-stubs/docs/method.pyi +2 -1
- botocore-stubs/docs/params.pyi +2 -1
- botocore-stubs/docs/shape.pyi +2 -1
- botocore-stubs/docs/sharedexample.pyi +2 -1
- botocore-stubs/endpoint.pyi +2 -1
- botocore-stubs/endpoint_provider.pyi +5 -6
- botocore-stubs/errorfactory.pyi +1 -1
- botocore-stubs/eventstream.pyi +2 -1
- botocore-stubs/exceptions.pyi +2 -1
- botocore-stubs/handlers.pyi +7 -4
- botocore-stubs/hooks.pyi +2 -1
- botocore-stubs/httpchecksum.pyi +3 -1
- botocore-stubs/httpsession.pyi +2 -1
- botocore-stubs/loaders.pyi +2 -1
- botocore-stubs/model.pyi +4 -1
- botocore-stubs/monitoring.pyi +2 -1
- botocore-stubs/paginate.pyi +2 -1
- botocore-stubs/parsers.pyi +3 -1
- botocore-stubs/plugin.pyi +24 -0
- botocore-stubs/regions.pyi +2 -2
- botocore-stubs/response.pyi +3 -1
- botocore-stubs/retries/standard.pyi +2 -1
- botocore-stubs/retryhandler.pyi +2 -1
- botocore-stubs/serialize.pyi +17 -6
- botocore-stubs/session.pyi +2 -2
- botocore-stubs/signers.pyi +3 -1
- botocore-stubs/stub.pyi +2 -1
- botocore-stubs/tokens.pyi +9 -1
- botocore-stubs/useragent.pyi +2 -0
- botocore-stubs/utils.pyi +23 -9
- botocore-stubs/validate.pyi +2 -1
- botocore-stubs/waiter.pyi +2 -1
- {botocore_stubs-1.38.12.dist-info → botocore_stubs-1.40.66.dist-info}/METADATA +3 -26
- botocore_stubs-1.40.66.dist-info/RECORD +75 -0
- {botocore_stubs-1.38.12.dist-info → botocore_stubs-1.40.66.dist-info}/WHEEL +1 -1
- botocore_stubs-1.38.12.dist-info/RECORD +0 -74
- {botocore_stubs-1.38.12.dist-info → botocore_stubs-1.40.66.dist-info}/licenses/LICENSE +0 -0
- {botocore_stubs-1.38.12.dist-info → botocore_stubs-1.40.66.dist-info}/top_level.txt +0 -0
botocore-stubs/__init__.pyi
CHANGED
botocore-stubs/args.pyi
CHANGED
|
@@ -4,8 +4,9 @@ Type annotations for botocore.args module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Mapping
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from typing import Any, Literal,
|
|
9
|
+
from typing import Any, Literal, TypedDict, TypeVar
|
|
9
10
|
|
|
10
11
|
from botocore.client import ClientEndpointBridge
|
|
11
12
|
from botocore.config import Config as Config
|
|
@@ -22,6 +23,8 @@ from botocore.serialize import BaseRestSerializer
|
|
|
22
23
|
from botocore.signers import RequestSigner as RequestSigner
|
|
23
24
|
from botocore.useragent import UserAgentString
|
|
24
25
|
|
|
26
|
+
_R = TypeVar("_R")
|
|
27
|
+
|
|
25
28
|
logger: Logger = ...
|
|
26
29
|
|
|
27
30
|
VALID_REGIONAL_ENDPOINTS_CONFIG: list[str] = ...
|
|
@@ -92,3 +95,8 @@ class ClientArgsCreator:
|
|
|
92
95
|
credentials: Credentials | None,
|
|
93
96
|
account_id_endpoint_mode: Literal["preferred", "disabled", "required"] | None,
|
|
94
97
|
) -> dict[str, Any]: ...
|
|
98
|
+
|
|
99
|
+
class ConfigObjectWrapper: ...
|
|
100
|
+
|
|
101
|
+
class ClientConfigString(str, ConfigObjectWrapper):
|
|
102
|
+
def __new__(cls: type[_R], value: Any = ...) -> _R: ...
|
botocore-stubs/auth.pyi
CHANGED
|
@@ -4,9 +4,10 @@ Type annotations for botocore.auth module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Iterable, Mapping
|
|
7
8
|
from http.client import HTTPMessage
|
|
8
9
|
from logging import Logger
|
|
9
|
-
from typing import Any
|
|
10
|
+
from typing import Any
|
|
10
11
|
from urllib.parse import SplitResult
|
|
11
12
|
|
|
12
13
|
from botocore.awsrequest import AWSRequest
|
|
@@ -156,6 +157,10 @@ class BearerAuth(TokenSigner):
|
|
|
156
157
|
def add_auth(self, request: AWSRequest) -> None: ...
|
|
157
158
|
|
|
158
159
|
def resolve_auth_type(auth_trait: Iterable[str]) -> str: ...
|
|
160
|
+
def resolve_auth_scheme_preference(
|
|
161
|
+
preference_list: Iterable[str], auth_options: Iterable[str]
|
|
162
|
+
) -> str: ...
|
|
159
163
|
|
|
160
164
|
AUTH_TYPE_MAPS: dict[str, type[BaseSigner]]
|
|
161
165
|
AUTH_TYPE_TO_SIGNATURE_VERSION: dict[str, str]
|
|
166
|
+
AUTH_PREF_TO_SIGNATURE_VERSION: dict[str, str]
|
botocore-stubs/awsrequest.pyi
CHANGED
|
@@ -4,9 +4,9 @@ Type annotations for botocore.awsrequest module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from collections.abc import MutableMapping
|
|
7
|
+
from collections.abc import Iterator, Mapping, MutableMapping
|
|
8
8
|
from logging import Logger
|
|
9
|
-
from typing import IO, Any,
|
|
9
|
+
from typing import IO, Any, TypeVar
|
|
10
10
|
|
|
11
11
|
from botocore.compat import HTTPHeaders as HTTPHeaders
|
|
12
12
|
from botocore.compat import HTTPResponse as HTTPResponse
|
botocore-stubs/client.pyi
CHANGED
|
@@ -4,8 +4,9 @@ Type annotations for botocore.client module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Mapping
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from typing import Any,
|
|
9
|
+
from typing import Any, Protocol
|
|
9
10
|
|
|
10
11
|
from botocore.args import ClientArgsCreator as ClientArgsCreator
|
|
11
12
|
from botocore.auth import AUTH_TYPE_MAPS as AUTH_TYPE_MAPS
|
|
@@ -52,6 +53,9 @@ from botocore.waiter import Waiter
|
|
|
52
53
|
logger: Logger = ...
|
|
53
54
|
history_recorder: HistoryRecorder = ...
|
|
54
55
|
|
|
56
|
+
class _AuthTokenResolver(Protocol):
|
|
57
|
+
def __call__(self, *, signing_name: str) -> str: ...
|
|
58
|
+
|
|
55
59
|
class ClientCreator:
|
|
56
60
|
def __init__(
|
|
57
61
|
self,
|
|
@@ -65,6 +69,7 @@ class ClientCreator:
|
|
|
65
69
|
exceptions_factory: ClientExceptionsFactory | None = ...,
|
|
66
70
|
config_store: ConfigValueStore | None = ...,
|
|
67
71
|
user_agent_creator: UserAgentString | None = ...,
|
|
72
|
+
auth_token_resolver: _AuthTokenResolver | None = None,
|
|
68
73
|
) -> None: ...
|
|
69
74
|
def create_client(
|
|
70
75
|
self,
|
botocore-stubs/compat.pyi
CHANGED
|
@@ -7,6 +7,7 @@ Copyright 2025 Vlad Emelianov
|
|
|
7
7
|
import datetime
|
|
8
8
|
from base64 import encodebytes as encodebytes
|
|
9
9
|
from collections import OrderedDict as OrderedDict
|
|
10
|
+
from collections.abc import Iterable, Mapping
|
|
10
11
|
from email.utils import formatdate as formatdate
|
|
11
12
|
from hashlib import _Hash
|
|
12
13
|
from http.client import HTTPMessage
|
|
@@ -14,7 +15,8 @@ from http.client import HTTPResponse as HTTPResponse
|
|
|
14
15
|
from inspect import FullArgSpec
|
|
15
16
|
from itertools import zip_longest as zip_longest
|
|
16
17
|
from logging import Logger
|
|
17
|
-
from
|
|
18
|
+
from re import Pattern
|
|
19
|
+
from typing import Any, Callable, TypeVar
|
|
18
20
|
from urllib.parse import parse_qs as parse_qs
|
|
19
21
|
from urllib.parse import parse_qsl as parse_qsl
|
|
20
22
|
from urllib.parse import quote as quote
|
|
@@ -72,6 +74,7 @@ HAS_CRT: bool
|
|
|
72
74
|
disabled: str
|
|
73
75
|
|
|
74
76
|
def has_minimum_crt_version(minimum_version: tuple[int, ...]) -> bool: ...
|
|
77
|
+
def get_current_datetime(remove_tzinfo: bool = ...) -> datetime.datetime: ...
|
|
75
78
|
|
|
76
79
|
IPV4_PAT: str
|
|
77
80
|
IPV4_RE: Pattern[str]
|
botocore-stubs/compress.pyi
CHANGED
|
@@ -5,9 +5,10 @@ Copyright 2025 Vlad Emelianov
|
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import io
|
|
8
|
+
from collections.abc import Mapping
|
|
8
9
|
from gzip import GzipFile as GzipFile
|
|
9
10
|
from logging import Logger
|
|
10
|
-
from typing import Any, Callable
|
|
11
|
+
from typing import Any, Callable
|
|
11
12
|
|
|
12
13
|
from botocore.compat import urlencode as urlencode
|
|
13
14
|
from botocore.config import Config
|
botocore-stubs/config.pyi
CHANGED
|
@@ -4,7 +4,8 @@ Type annotations for botocore.config module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from collections.abc import Mapping
|
|
8
|
+
from typing import Any, Literal, TypedDict, TypeVar
|
|
8
9
|
|
|
9
10
|
from botocore.compat import OrderedDict as OrderedDict
|
|
10
11
|
from botocore.endpoint import DEFAULT_TIMEOUT as DEFAULT_TIMEOUT
|
|
@@ -4,8 +4,9 @@ Type annotations for botocore.configprovider module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Mapping, Sequence
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from typing import Any, Callable,
|
|
9
|
+
from typing import Any, Callable, TypeVar
|
|
9
10
|
|
|
10
11
|
from botocore.session import Session
|
|
11
12
|
from botocore.utils import IMDSRegionProvider
|
botocore-stubs/credentials.pyi
CHANGED
|
@@ -5,8 +5,9 @@ Copyright 2025 Vlad Emelianov
|
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import datetime
|
|
8
|
+
from collections.abc import Mapping
|
|
8
9
|
from logging import Logger
|
|
9
|
-
from typing import Any, Callable,
|
|
10
|
+
from typing import Any, Callable, NamedTuple, TypeVar
|
|
10
11
|
|
|
11
12
|
from botocore.client import BaseClient
|
|
12
13
|
from botocore.compat import compat_shell_split as compat_shell_split
|
|
@@ -263,10 +264,11 @@ class BotoProvider(CredentialProvider):
|
|
|
263
264
|
|
|
264
265
|
class AssumeRoleProvider(CredentialProvider):
|
|
265
266
|
METHOD: str = ...
|
|
266
|
-
CANONICAL_NAME: None = ...
|
|
267
|
+
CANONICAL_NAME: str | None = ...
|
|
267
268
|
ROLE_CONFIG_VAR: str = ...
|
|
268
269
|
WEB_IDENTITY_TOKE_FILE_VAR: str = ...
|
|
269
270
|
EXPIRY_WINDOW_SECONDS: int = ...
|
|
271
|
+
NAMED_PROVIDER_FEATURE_MAP: dict[str, str] = ...
|
|
270
272
|
def __init__(
|
|
271
273
|
self,
|
|
272
274
|
load_config: Callable[[], Mapping[str, Any]],
|
|
@@ -336,6 +338,7 @@ class SSOCredentialFetcher(CachedCredentialFetcher):
|
|
|
336
338
|
expiry_window_seconds: float | None = ...,
|
|
337
339
|
token_provider: SSOTokenProvider | None = ...,
|
|
338
340
|
sso_session_name: str | None = ...,
|
|
341
|
+
time_fetcher: Callable[[], datetime.datetime] = ...,
|
|
339
342
|
) -> None: ...
|
|
340
343
|
|
|
341
344
|
class SSOProvider(CredentialProvider):
|
botocore-stubs/discovery.pyi
CHANGED
|
@@ -4,8 +4,9 @@ Type annotations for botocore.discovery module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Mapping
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from typing import Any, Callable
|
|
9
|
+
from typing import Any, Callable
|
|
9
10
|
|
|
10
11
|
from botocore.client import BaseClient
|
|
11
12
|
from botocore.exceptions import BotoCoreError as BotoCoreError
|
|
@@ -5,8 +5,9 @@ Copyright 2025 Vlad Emelianov
|
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import re
|
|
8
|
+
from collections.abc import Iterable, Mapping
|
|
8
9
|
from logging import Logger
|
|
9
|
-
from typing import Any
|
|
10
|
+
from typing import Any
|
|
10
11
|
|
|
11
12
|
DEFAULT_AWS_DOCS_LINK: str = ...
|
|
12
13
|
DOCUMENTATION_LINK_REGEX: re.Pattern[str] = ...
|
botocore-stubs/docs/method.pyi
CHANGED
|
@@ -4,7 +4,8 @@ Type annotations for botocore.docs.method module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from collections.abc import Sequence
|
|
8
|
+
from typing import Any
|
|
8
9
|
|
|
9
10
|
from botocore.docs.bcdoc.restdoc import DocumentStructure
|
|
10
11
|
from botocore.hooks import BaseEventHooks
|
botocore-stubs/docs/params.pyi
CHANGED
|
@@ -4,7 +4,8 @@ Type annotations for botocore.docs.params module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from collections.abc import Sequence
|
|
8
|
+
from typing import Any
|
|
8
9
|
|
|
9
10
|
from botocore.docs.bcdoc.restdoc import DocumentStructure
|
|
10
11
|
from botocore.docs.shape import ShapeDocumenter
|
botocore-stubs/docs/shape.pyi
CHANGED
|
@@ -4,7 +4,8 @@ Type annotations for botocore.docs.shape module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from collections.abc import Mapping
|
|
8
|
+
from typing import Any
|
|
8
9
|
|
|
9
10
|
from botocore.docs.bcdoc.restdoc import DocumentStructure
|
|
10
11
|
from botocore.hooks import BaseEventHooks
|
|
@@ -4,7 +4,8 @@ Type annotations for botocore.docs.sharedexample module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from collections.abc import Iterable, Mapping
|
|
8
|
+
from typing import Any
|
|
8
9
|
|
|
9
10
|
from botocore.docs.bcdoc.restdoc import DocumentStructure
|
|
10
11
|
from botocore.model import OperationModel, Shape
|
botocore-stubs/endpoint.pyi
CHANGED
|
@@ -4,8 +4,9 @@ Type annotations for botocore.endpoint module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Mapping, Sequence
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from typing import Any
|
|
9
|
+
from typing import Any
|
|
9
10
|
|
|
10
11
|
from botocore.awsrequest import AWSPreparedRequest
|
|
11
12
|
from botocore.awsrequest import create_request_object as create_request_object
|
|
@@ -5,15 +5,14 @@ Copyright 2025 Vlad Emelianov
|
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import logging
|
|
8
|
+
from collections.abc import Iterable, Mapping
|
|
8
9
|
from enum import Enum
|
|
10
|
+
from re import Pattern
|
|
9
11
|
from string import Formatter
|
|
10
12
|
from typing import (
|
|
11
13
|
Any,
|
|
12
14
|
Callable,
|
|
13
|
-
Iterable,
|
|
14
|
-
Mapping,
|
|
15
15
|
NamedTuple,
|
|
16
|
-
Pattern,
|
|
17
16
|
)
|
|
18
17
|
|
|
19
18
|
from botocore.compat import quote as quote
|
|
@@ -120,9 +119,9 @@ class RuleCreator:
|
|
|
120
119
|
def create(cls, **kwargs: Any) -> BaseRule: ...
|
|
121
120
|
|
|
122
121
|
class ParameterType(Enum):
|
|
123
|
-
string =
|
|
124
|
-
boolean =
|
|
125
|
-
stringarray =
|
|
122
|
+
string = ...
|
|
123
|
+
boolean = ...
|
|
124
|
+
stringarray = ...
|
|
126
125
|
|
|
127
126
|
class ParameterDefinition:
|
|
128
127
|
def __init__(
|
botocore-stubs/errorfactory.pyi
CHANGED
|
@@ -4,7 +4,7 @@ Type annotations for botocore.errorfactory module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from collections.abc import Mapping
|
|
8
8
|
|
|
9
9
|
from botocore.exceptions import ClientError as ClientError
|
|
10
10
|
from botocore.exceptions import ClientError as _ClientError
|
botocore-stubs/eventstream.pyi
CHANGED
|
@@ -4,7 +4,8 @@ Type annotations for botocore.eventstream module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from collections.abc import Iterator
|
|
8
|
+
from typing import Any, Generic, TypeVar
|
|
8
9
|
|
|
9
10
|
from botocore.exceptions import EventStreamError as EventStreamError
|
|
10
11
|
from botocore.model import StructureShape
|
botocore-stubs/exceptions.pyi
CHANGED
|
@@ -4,7 +4,8 @@ Type annotations for botocore.exceptions module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from collections.abc import Iterable, Mapping
|
|
8
|
+
from typing import IO, Any, TypedDict
|
|
8
9
|
|
|
9
10
|
import requests
|
|
10
11
|
from urllib3.exceptions import ReadTimeoutError as _ReadTimeoutError
|
botocore-stubs/handlers.pyi
CHANGED
|
@@ -4,8 +4,10 @@ Type annotations for botocore.handlers module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Mapping
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from
|
|
9
|
+
from re import Pattern
|
|
10
|
+
from typing import Any
|
|
9
11
|
from urllib.request import Request
|
|
10
12
|
|
|
11
13
|
from botocore.client import BaseClient
|
|
@@ -133,6 +135,9 @@ def remove_qbusiness_chat(class_attributes: Mapping[str, Any], **kwargs: Any) ->
|
|
|
133
135
|
def remove_bedrock_runtime_invoke_model_with_bidirectional_stream(
|
|
134
136
|
class_attributes: Mapping[str, Any], **kwargs: Any
|
|
135
137
|
) -> None: ...
|
|
138
|
+
def enable_millisecond_timestamp_precision(
|
|
139
|
+
serializer_kwargs: Mapping[str, Any], **kwargs: Any
|
|
140
|
+
) -> None: ...
|
|
136
141
|
def add_retry_headers(request: Request, **kwargs: Any) -> None: ...
|
|
137
142
|
def remove_bucket_from_url_paths_from_model(
|
|
138
143
|
params: Mapping[str, Any], model: OperationModel, context: Mapping[str, Any], **kwargs: Any
|
|
@@ -156,8 +161,6 @@ def handle_expires_header(
|
|
|
156
161
|
**kwargs: Any,
|
|
157
162
|
) -> None: ...
|
|
158
163
|
def document_expires_shape(section: DocumentStructure, event_name: str, **kwargs: Any) -> None: ...
|
|
159
|
-
def
|
|
160
|
-
model: OperationModel, params: dict[str, Any], **kwargs: Any
|
|
161
|
-
) -> None: ...
|
|
164
|
+
def get_bearer_auth_supported_services() -> set[str]: ...
|
|
162
165
|
|
|
163
166
|
BUILTIN_HANDLERS: list[tuple[Any, ...]] = ...
|
botocore-stubs/hooks.pyi
CHANGED
|
@@ -4,8 +4,9 @@ Type annotations for botocore.hooks module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Mapping
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from typing import Any, Callable,
|
|
9
|
+
from typing import Any, Callable, NamedTuple, TypeVar
|
|
9
10
|
|
|
10
11
|
from botocore.compat import accepts_kwargs as accepts_kwargs
|
|
11
12
|
from botocore.utils import EVENT_ALIASES as EVENT_ALIASES
|
botocore-stubs/httpchecksum.pyi
CHANGED
|
@@ -5,7 +5,8 @@ Copyright 2025 Vlad Emelianov
|
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import logging
|
|
8
|
-
from
|
|
8
|
+
from collections.abc import Iterator, Mapping, Sequence
|
|
9
|
+
from typing import IO, Any
|
|
9
10
|
|
|
10
11
|
from botocore.awsrequest import AWSHTTPResponse
|
|
11
12
|
from botocore.compat import HAS_CRT as HAS_CRT
|
|
@@ -59,6 +60,7 @@ class StreamingChecksumBody(StreamingBody):
|
|
|
59
60
|
self, raw_stream: IO[Any], content_length: int, checksum: BaseChecksum, expected: str
|
|
60
61
|
) -> None: ...
|
|
61
62
|
def read(self, amt: int | None = ...) -> bytes: ...
|
|
63
|
+
def readinto(self, b: IO[bytes]) -> int: ...
|
|
62
64
|
|
|
63
65
|
def resolve_checksum_context(
|
|
64
66
|
request: Mapping[str, Any], operation_model: OperationModel, params: Mapping[str, Any]
|
botocore-stubs/httpsession.pyi
CHANGED
|
@@ -4,8 +4,9 @@ Type annotations for botocore.httpsession module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Mapping
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from typing import Any
|
|
9
|
+
from typing import Any
|
|
9
10
|
|
|
10
11
|
from botocore.awsrequest import AWSPreparedRequest, AWSRequest, AWSResponse
|
|
11
12
|
from botocore.compat import IPV6_ADDRZ_RE as IPV6_ADDRZ_RE
|
botocore-stubs/loaders.pyi
CHANGED
|
@@ -4,8 +4,9 @@ Type annotations for botocore.loaders module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Iterable, Mapping
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from typing import Any, Callable
|
|
9
|
+
from typing import Any, Callable
|
|
9
10
|
|
|
10
11
|
from botocore.compat import OrderedDict as OrderedDict
|
|
11
12
|
from botocore.exceptions import DataNotFoundError as DataNotFoundError
|
botocore-stubs/model.pyi
CHANGED
|
@@ -4,7 +4,8 @@ Type annotations for botocore.model module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from collections.abc import Mapping
|
|
8
|
+
from typing import Any, NamedTuple, TypeVar
|
|
8
9
|
|
|
9
10
|
from botocore.utils import CachedProperty
|
|
10
11
|
|
|
@@ -113,6 +114,8 @@ class ServiceModel:
|
|
|
113
114
|
@CachedProperty
|
|
114
115
|
def protocols(self) -> list[str]: ...
|
|
115
116
|
@CachedProperty
|
|
117
|
+
def resolved_protocol(self) -> str: ...
|
|
118
|
+
@CachedProperty
|
|
116
119
|
def endpoint_prefix(self) -> str: ...
|
|
117
120
|
@CachedProperty
|
|
118
121
|
def endpoint_discovery_operation(self) -> OperationModel: ...
|
botocore-stubs/monitoring.pyi
CHANGED
|
@@ -5,8 +5,9 @@ Copyright 2025 Vlad Emelianov
|
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import socket
|
|
8
|
+
from collections.abc import Sequence
|
|
8
9
|
from logging import Logger
|
|
9
|
-
from typing import Any, Callable
|
|
10
|
+
from typing import Any, Callable
|
|
10
11
|
|
|
11
12
|
from botocore.compat import ensure_bytes as ensure_bytes
|
|
12
13
|
from botocore.compat import ensure_unicode as ensure_unicode
|
botocore-stubs/paginate.pyi
CHANGED
|
@@ -4,8 +4,9 @@ Type annotations for botocore.paginate module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Iterator
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from typing import Any, Generic,
|
|
9
|
+
from typing import Any, Generic, TypeVar
|
|
9
10
|
|
|
10
11
|
from botocore.exceptions import PaginationError as PaginationError
|
|
11
12
|
from botocore.model import OperationModel
|
botocore-stubs/parsers.pyi
CHANGED
|
@@ -4,9 +4,10 @@ Type annotations for botocore.parsers module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Mapping
|
|
7
8
|
from io import BufferedReader
|
|
8
9
|
from logging import Logger
|
|
9
|
-
from typing import IO, Any, Callable
|
|
10
|
+
from typing import IO, Any, Callable
|
|
10
11
|
|
|
11
12
|
from botocore.compat import XMLParseError as XMLParseError
|
|
12
13
|
from botocore.eventstream import EventStream as EventStream
|
|
@@ -33,6 +34,7 @@ class ResponseParserError(Exception): ...
|
|
|
33
34
|
class ResponseParser:
|
|
34
35
|
DEFAULT_ENCODING: str = ...
|
|
35
36
|
EVENT_STREAM_PARSER_CLS: type[ResponseParser] | None = ...
|
|
37
|
+
KNOWN_LOCATIONS: tuple[str, ...] = ...
|
|
36
38
|
def __init__(
|
|
37
39
|
self,
|
|
38
40
|
timestamp_parser: Callable[[str], Any] | None = ...,
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type annotations for botocore.plugin module.
|
|
3
|
+
|
|
4
|
+
Copyright 2025 Vlad Emelianov
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from collections.abc import Mapping
|
|
8
|
+
from contextvars import Token
|
|
9
|
+
from dataclasses import dataclass
|
|
10
|
+
from logging import Logger
|
|
11
|
+
|
|
12
|
+
from botocore.client import BaseClient
|
|
13
|
+
|
|
14
|
+
log: Logger = ...
|
|
15
|
+
|
|
16
|
+
@dataclass
|
|
17
|
+
class PluginContext:
|
|
18
|
+
plugins: str | None = ...
|
|
19
|
+
|
|
20
|
+
def get_plugin_context() -> PluginContext | None: ...
|
|
21
|
+
def set_plugin_context(ctx: PluginContext) -> Token[PluginContext]: ...
|
|
22
|
+
def reset_plugin_context(token: Token[PluginContext]) -> None: ...
|
|
23
|
+
def get_botocore_plugins() -> str | None: ...
|
|
24
|
+
def load_client_plugins(client: BaseClient, plugins: Mapping[str, str]) -> None: ...
|
botocore-stubs/regions.pyi
CHANGED
|
@@ -4,10 +4,10 @@ Type annotations for botocore.regions module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from collections.abc import Iterable
|
|
7
|
+
from collections.abc import Iterable, Mapping
|
|
8
8
|
from enum import Enum
|
|
9
9
|
from logging import Logger
|
|
10
|
-
from typing import Any
|
|
10
|
+
from typing import Any
|
|
11
11
|
|
|
12
12
|
from botocore.auth import AUTH_TYPE_MAPS as AUTH_TYPE_MAPS
|
|
13
13
|
from botocore.compat import HAS_CRT as HAS_CRT
|
botocore-stubs/response.pyi
CHANGED
|
@@ -5,8 +5,9 @@ Copyright 2025 Vlad Emelianov
|
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import logging
|
|
8
|
+
from collections.abc import Iterator
|
|
8
9
|
from io import IOBase
|
|
9
|
-
from typing import IO, Any
|
|
10
|
+
from typing import IO, Any
|
|
10
11
|
|
|
11
12
|
import requests
|
|
12
13
|
from botocore.model import OperationModel
|
|
@@ -18,6 +19,7 @@ class StreamingBody(IOBase):
|
|
|
18
19
|
def set_socket_timeout(self, timeout: float) -> None: ...
|
|
19
20
|
def readable(self) -> bool: ...
|
|
20
21
|
def read(self, amt: int | None = ...) -> bytes: ...
|
|
22
|
+
def readinto(self, b: IO[bytes]) -> int: ...
|
|
21
23
|
# FIXME: Signature of "readlines" incompatible with supertype "IOBase"
|
|
22
24
|
def readlines(self) -> list[bytes]: ... # type: ignore [override]
|
|
23
25
|
def __iter__(self) -> Iterator[bytes]: ...
|
|
@@ -4,8 +4,9 @@ Type annotations for botocore.retries.standard module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Sequence
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from typing import Any, Callable
|
|
9
|
+
from typing import Any, Callable
|
|
9
10
|
|
|
10
11
|
from botocore.client import BaseClient
|
|
11
12
|
from botocore.exceptions import BotoCoreError
|
botocore-stubs/retryhandler.pyi
CHANGED
|
@@ -4,8 +4,9 @@ Type annotations for botocore.retryhandler module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Iterable, Mapping
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from typing import Any, Callable
|
|
9
|
+
from typing import Any, Callable
|
|
9
10
|
|
|
10
11
|
from botocore.config import Config
|
|
11
12
|
from botocore.exceptions import BotoCoreError
|
botocore-stubs/serialize.pyi
CHANGED
|
@@ -4,25 +4,36 @@ Type annotations for botocore.serialize module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from collections.abc import Mapping
|
|
8
|
+
from re import Pattern
|
|
9
|
+
from typing import Any
|
|
8
10
|
|
|
9
11
|
from botocore.compat import formatdate as formatdate
|
|
10
12
|
from botocore.model import OperationModel
|
|
11
13
|
from botocore.utils import is_json_value_header as is_json_value_header
|
|
12
14
|
from botocore.utils import parse_to_aware_datetime as parse_to_aware_datetime
|
|
13
15
|
from botocore.utils import percent_encode as percent_encode
|
|
16
|
+
from botocore.validate import ParamValidationDecorator
|
|
14
17
|
|
|
15
|
-
DEFAULT_TIMESTAMP_FORMAT: str
|
|
16
|
-
ISO8601: str
|
|
17
|
-
ISO8601_MICRO: str
|
|
18
|
-
HOST_PREFIX_RE: Pattern[str]
|
|
18
|
+
DEFAULT_TIMESTAMP_FORMAT: str = ...
|
|
19
|
+
ISO8601: str = ...
|
|
20
|
+
ISO8601_MICRO: str = ...
|
|
21
|
+
HOST_PREFIX_RE: Pattern[str] = ...
|
|
19
22
|
|
|
20
|
-
|
|
23
|
+
TIMESTAMP_PRECISION_DEFAULT: str = ...
|
|
24
|
+
TIMESTAMP_PRECISION_MILLISECOND: str = ...
|
|
25
|
+
TIMESTAMP_PRECISION_OPTIONS: tuple[str, ...] = ...
|
|
26
|
+
|
|
27
|
+
def create_serializer(
|
|
28
|
+
protocol_name: str, include_validation: bool = ..., timestamp_precision: str = ...
|
|
29
|
+
) -> ParamValidationDecorator: ...
|
|
21
30
|
|
|
22
31
|
class Serializer:
|
|
23
32
|
DEFAULT_METHOD: str = ...
|
|
24
33
|
MAP_TYPE: type[dict[str, Any]] = ...
|
|
25
34
|
DEFAULT_ENCODING: str = ...
|
|
35
|
+
|
|
36
|
+
def __init__(self, timestamp_precision: str = ...) -> None: ...
|
|
26
37
|
def serialize_to_request(
|
|
27
38
|
self, parameters: Mapping[str, Any], operation_model: OperationModel
|
|
28
39
|
) -> dict[str, Any]: ...
|
botocore-stubs/session.pyi
CHANGED
|
@@ -4,9 +4,9 @@ Type annotations for botocore.session module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from collections.abc import Callable, MutableMapping
|
|
7
|
+
from collections.abc import Callable, Iterator, Mapping, MutableMapping, Sequence
|
|
8
8
|
from logging import Logger
|
|
9
|
-
from typing import IO, Any,
|
|
9
|
+
from typing import IO, Any, Protocol
|
|
10
10
|
|
|
11
11
|
from botocore.client import BaseClient, Config
|
|
12
12
|
from botocore.compat import HAS_CRT as HAS_CRT
|
botocore-stubs/signers.pyi
CHANGED
|
@@ -4,7 +4,8 @@ Type annotations for botocore.signers module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from collections.abc import Mapping
|
|
8
|
+
from typing import Any
|
|
8
9
|
|
|
9
10
|
from botocore.awsrequest import create_request_object as create_request_object
|
|
10
11
|
from botocore.awsrequest import prepare_request_dict as prepare_request_dict
|
|
@@ -18,6 +19,7 @@ from botocore.model import ServiceId
|
|
|
18
19
|
from botocore.utils import datetime2timestamp as datetime2timestamp
|
|
19
20
|
|
|
20
21
|
class RequestSigner:
|
|
22
|
+
METHOD_FEATURE_MAP: Mapping[str, str] = ...
|
|
21
23
|
def __init__(
|
|
22
24
|
self,
|
|
23
25
|
service_id: ServiceId,
|
botocore-stubs/stub.pyi
CHANGED
|
@@ -4,8 +4,9 @@ Type annotations for botocore.stub module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Mapping
|
|
7
8
|
from types import TracebackType
|
|
8
|
-
from typing import Any, Literal,
|
|
9
|
+
from typing import Any, Literal, TypeVar
|
|
9
10
|
|
|
10
11
|
from botocore.awsrequest import AWSResponse as AWSResponse
|
|
11
12
|
from botocore.client import BaseClient
|
botocore-stubs/tokens.pyi
CHANGED
|
@@ -6,7 +6,8 @@ Copyright 2025 Vlad Emelianov
|
|
|
6
6
|
|
|
7
7
|
import datetime
|
|
8
8
|
import logging
|
|
9
|
-
from
|
|
9
|
+
from collections.abc import Iterable, Mapping
|
|
10
|
+
from typing import Any, Callable, NamedTuple
|
|
10
11
|
|
|
11
12
|
from botocore.session import Session
|
|
12
13
|
from botocore.utils import JSONFileCache
|
|
@@ -44,3 +45,10 @@ class SSOTokenProvider:
|
|
|
44
45
|
profile_name: str | None = ...,
|
|
45
46
|
) -> None: ...
|
|
46
47
|
def load_token(self) -> DeferredRefreshableToken: ...
|
|
48
|
+
|
|
49
|
+
class ScopedEnvTokenProvider:
|
|
50
|
+
METHOD: str = ...
|
|
51
|
+
def __init__(self, session: Session, environ: Mapping[str, Any] | None = ...) -> None: ...
|
|
52
|
+
def load_token(
|
|
53
|
+
self, *, signing_name: str | None = ..., **kwargs: Any
|
|
54
|
+
) -> FrozenAuthToken | None: ...
|
botocore-stubs/useragent.pyi
CHANGED
|
@@ -5,6 +5,7 @@ Copyright 2025 Vlad Emelianov
|
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import logging
|
|
8
|
+
from collections.abc import Iterable
|
|
8
9
|
from typing import Any, NamedTuple, TypeVar
|
|
9
10
|
|
|
10
11
|
from botocore.awsrequest import AWSRequest
|
|
@@ -15,6 +16,7 @@ _R = TypeVar("_R")
|
|
|
15
16
|
logger: logging.Logger = ...
|
|
16
17
|
|
|
17
18
|
def register_feature_id(feature_id: str) -> None: ...
|
|
19
|
+
def register_feature_ids(feature_ids: Iterable[str]) -> None: ...
|
|
18
20
|
def sanitize_user_agent_string_component(raw_str: str, allow_hash: bool) -> str: ...
|
|
19
21
|
|
|
20
22
|
class UserAgentComponentSizeConfig:
|
botocore-stubs/utils.pyi
CHANGED
|
@@ -5,16 +5,10 @@ Copyright 2025 Vlad Emelianov
|
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import datetime
|
|
8
|
+
from collections.abc import Iterable, Mapping
|
|
8
9
|
from logging import Logger
|
|
9
|
-
from
|
|
10
|
-
|
|
11
|
-
Callable,
|
|
12
|
-
Generic,
|
|
13
|
-
Iterable,
|
|
14
|
-
Mapping,
|
|
15
|
-
Pattern,
|
|
16
|
-
TypeVar,
|
|
17
|
-
)
|
|
10
|
+
from re import Pattern
|
|
11
|
+
from typing import Any, Callable, Generic, TypeVar
|
|
18
12
|
|
|
19
13
|
from botocore.client import BaseClient
|
|
20
14
|
from botocore.compat import HAS_CRT as HAS_CRT
|
|
@@ -27,6 +21,7 @@ from botocore.compat import urlparse as urlparse
|
|
|
27
21
|
from botocore.compat import urlsplit as urlsplit
|
|
28
22
|
from botocore.compat import urlunsplit as urlunsplit
|
|
29
23
|
from botocore.compat import zip_longest as zip_longest
|
|
24
|
+
from botocore.config import Config
|
|
30
25
|
from botocore.credentials import Credentials
|
|
31
26
|
from botocore.exceptions import ClientError as ClientError
|
|
32
27
|
from botocore.exceptions import ConfigNotFound as ConfigNotFound
|
|
@@ -71,6 +66,7 @@ RETRYABLE_HTTP_ERRORS: tuple[Any, ...]
|
|
|
71
66
|
S3_ACCELERATE_WHITELIST: list[str]
|
|
72
67
|
EVENT_ALIASES: dict[str, str]
|
|
73
68
|
CHECKSUM_HEADER_PATTERN: Pattern[str]
|
|
69
|
+
PRIORITY_ORDERED_SUPPORTED_PROTOCOLS: tuple[str, ...]
|
|
74
70
|
IPV4_PAT: str
|
|
75
71
|
HEX_PAT: str
|
|
76
72
|
LS32_PAT: str
|
|
@@ -94,6 +90,21 @@ def set_value_from_jmespath(
|
|
|
94
90
|
source: dict[str, Any], expression: str, value: Any, is_first: bool = ...
|
|
95
91
|
) -> None: ...
|
|
96
92
|
def is_global_accesspoint(context: Any) -> bool: ...
|
|
93
|
+
def create_nested_client(
|
|
94
|
+
session: Session,
|
|
95
|
+
service_name: str,
|
|
96
|
+
*,
|
|
97
|
+
region_name: str | None = ...,
|
|
98
|
+
api_version: str | None = ...,
|
|
99
|
+
use_ssl: bool | None = ...,
|
|
100
|
+
verify: bool | str | None = ...,
|
|
101
|
+
endpoint_url: str | None = ...,
|
|
102
|
+
aws_access_key_id: str | None = ...,
|
|
103
|
+
aws_secret_access_key: str | None = ...,
|
|
104
|
+
aws_session_token: str | None = ...,
|
|
105
|
+
config: Config | None = ...,
|
|
106
|
+
aws_account_id: str | None = ...,
|
|
107
|
+
) -> BaseClient: ...
|
|
97
108
|
|
|
98
109
|
class _RetriesExceededError(Exception): ...
|
|
99
110
|
|
|
@@ -354,6 +365,9 @@ class JSONFileCache:
|
|
|
354
365
|
def __setitem__(self, cache_key: str, value: Any) -> None: ...
|
|
355
366
|
|
|
356
367
|
def is_s3express_bucket(bucket: str) -> bool: ...
|
|
368
|
+
def get_token_from_environment(
|
|
369
|
+
signing_name: str, environ: Mapping[str, Any] | None = ...
|
|
370
|
+
) -> str | None: ...
|
|
357
371
|
|
|
358
372
|
SERVICE_NAME_ALIASES: dict[str, str] = ...
|
|
359
373
|
CLIENT_NAME_TO_HYPHENIZED_SERVICE_ID_OVERRIDES: dict[str, str] = ...
|
botocore-stubs/validate.pyi
CHANGED
|
@@ -4,7 +4,8 @@ Type annotations for botocore.validate module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
from
|
|
7
|
+
from collections.abc import Iterable, Mapping
|
|
8
|
+
from typing import Any
|
|
8
9
|
|
|
9
10
|
from botocore.exceptions import ParamValidationError as ParamValidationError
|
|
10
11
|
from botocore.model import OperationModel, Shape
|
botocore-stubs/waiter.pyi
CHANGED
|
@@ -4,8 +4,9 @@ Type annotations for botocore.waiter module.
|
|
|
4
4
|
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
+
from collections.abc import Mapping
|
|
7
8
|
from logging import Logger
|
|
8
|
-
from typing import Any, Callable
|
|
9
|
+
from typing import Any, Callable
|
|
9
10
|
|
|
10
11
|
from botocore.client import BaseClient
|
|
11
12
|
|
|
@@ -1,30 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: botocore-stubs
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.40.66
|
|
4
4
|
Summary: Type annotations and code completion for botocore
|
|
5
5
|
Author-email: Vlad Emelianov <vlad.emelianov.nz@gmail.com>
|
|
6
|
-
License: MIT
|
|
7
|
-
|
|
8
|
-
Copyright (c) 2022 Vlad Emelianov
|
|
9
|
-
|
|
10
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
-
in the Software without restriction, including without limitation the rights
|
|
13
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
-
furnished to do so, subject to the following conditions:
|
|
16
|
-
|
|
17
|
-
The above copyright notice and this permission notice shall be included in all
|
|
18
|
-
copies or substantial portions of the Software.
|
|
19
|
-
|
|
20
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
-
SOFTWARE.
|
|
27
|
-
|
|
6
|
+
License-Expression: MIT
|
|
28
7
|
Project-URL: Homepage, https://github.com/youtype/botocore-stubs
|
|
29
8
|
Project-URL: Documentation, https://youtype.github.io/mypy_boto3_builder/
|
|
30
9
|
Project-URL: Repository, https://github.com/youtype/botocore-stubs
|
|
@@ -33,11 +12,9 @@ Project-URL: Issues, https://github.com/youtype/botocore-stubs/issues
|
|
|
33
12
|
Keywords: botocore,type-annotations,pyright,mypy,boto3
|
|
34
13
|
Classifier: Development Status :: 5 - Production/Stable
|
|
35
14
|
Classifier: Environment :: Console
|
|
36
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
37
15
|
Classifier: Natural Language :: English
|
|
38
16
|
Classifier: Operating System :: OS Independent
|
|
39
17
|
Classifier: Programming Language :: Python :: 3
|
|
40
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
41
18
|
Classifier: Programming Language :: Python :: 3.9
|
|
42
19
|
Classifier: Programming Language :: Python :: 3.10
|
|
43
20
|
Classifier: Programming Language :: Python :: 3.11
|
|
@@ -48,7 +25,7 @@ Classifier: Programming Language :: Python :: 3 :: Only
|
|
|
48
25
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
49
26
|
Classifier: Typing :: Stubs Only
|
|
50
27
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
51
|
-
Requires-Python: >=3.
|
|
28
|
+
Requires-Python: >=3.9
|
|
52
29
|
Description-Content-Type: text/markdown
|
|
53
30
|
License-File: LICENSE
|
|
54
31
|
Requires-Dist: types-awscrt
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
botocore-stubs/__init__.pyi,sha256=XwYGr47sSGlobSDgt5vYmjnDZ1GZjPSPAOFQHTlPUGo,684
|
|
2
|
+
botocore-stubs/args.pyi,sha256=qeF-Kzp-6C0eRGsJmC_ajTvML5-LQM-Vq4obvhpeDLk,3567
|
|
3
|
+
botocore-stubs/auth.pyi,sha256=4zkWbymfpzYTtkNg3Wr-5joTGx9lS3yJoha4M7e_zcw,5591
|
|
4
|
+
botocore-stubs/awsrequest.pyi,sha256=iCCPx5AWEO_GpSROadB1Iud1Td9v__eSo7oZDmZi-I8,4164
|
|
5
|
+
botocore-stubs/client.pyi,sha256=DPukbH3ingErY5P6JFwQ1XZ8S67ia71BLcdzio1ZRHo,6594
|
|
6
|
+
botocore-stubs/compat.pyi,sha256=0qbzwzP25Shx3qqg4iNMLoAA5-wKf3qK-VVLNgtVB8M,2701
|
|
7
|
+
botocore-stubs/compress.pyi,sha256=oY4mKCZfoUPbAhzxYjzQQdh7PMKYrzsLanVz9SRC60s,665
|
|
8
|
+
botocore-stubs/config.pyi,sha256=-g8MSC_w8fk_lQ9EZiRJB8D2IGVZ0kBqnJTWdugW7nY,3098
|
|
9
|
+
botocore-stubs/configloader.pyi,sha256=5sUsnqeN2TDL22KSMSCZOfzircr9xHGQxSB9-lFghDk,420
|
|
10
|
+
botocore-stubs/configprovider.pyi,sha256=ZDstAepWaKR0zrbqpNDoNuMSMO4L5tsGHNnvG4aDIQ8,4125
|
|
11
|
+
botocore-stubs/context.pyi,sha256=Qo3WqgcasKya9xhUbQ6D9e0nSMaLYoNzxu_DXc6YIl0,904
|
|
12
|
+
botocore-stubs/credentials.pyi,sha256=iC0tyMQkEp5G4q96of0g58qBDn-9QhemP_ygZpRqIh8,12539
|
|
13
|
+
botocore-stubs/discovery.pyi,sha256=sxs2vcjXoUlOxRl4cdsaMd18rz46s--XlcGspLx44mE,2626
|
|
14
|
+
botocore-stubs/endpoint.pyi,sha256=Fk5d27-EJbd5oIH9NpZfIpmydrck-awzW5dV6VD7jsw,2518
|
|
15
|
+
botocore-stubs/endpoint_provider.pyi,sha256=H16Bun6uPiRsyx6xuvwVPl5pFUt9WK6iY51xy5SeqrU,6212
|
|
16
|
+
botocore-stubs/errorfactory.pyi,sha256=aP6HK_mtXyH3gU10Q7VBYRsmEVQFmWdegDuG-iuMnEc,816
|
|
17
|
+
botocore-stubs/eventstream.pyi,sha256=zzQsEDUmS6JP2zDDxOm9x3qIFRSxINflAY72HmoCz-w,3568
|
|
18
|
+
botocore-stubs/exceptions.pyi,sha256=lEmuUmf4Nuvxw7ak_8DCqIeRchJ88W-qdPZGasa_ViY,21646
|
|
19
|
+
botocore-stubs/handlers.pyi,sha256=YGyqTNMWvFz_Ac_YV-T7CGoYxI1xYwk9O_CTOmnm1WY,7912
|
|
20
|
+
botocore-stubs/history.pyi,sha256=dwdRDn3XSr3i4lZP1nKEekyJG1homWE35E-ooTShYRk,643
|
|
21
|
+
botocore-stubs/hooks.pyi,sha256=-mqYP_nlEjpbOx23T5PIg0BlIlHvsVVKEZt7R4CHkIE,3077
|
|
22
|
+
botocore-stubs/httpchecksum.pyi,sha256=K_qQHik82WWPY3VtgmU8NyGECUW20hBlr56mlspQc4Y,2841
|
|
23
|
+
botocore-stubs/httpsession.pyi,sha256=UEpqJqDuw7dRWkkEg5ftx09N4W9PKsdj4o6IErFsPPE,2373
|
|
24
|
+
botocore-stubs/loaders.pyi,sha256=jPZlFO_5qOUs8DS3REdUlYSCQ1nxct6-VY8os32eFZ4,2068
|
|
25
|
+
botocore-stubs/model.pyi,sha256=WuDKt0gmq_fApmllWf_JwQn9bTFf3Bm6SEpylc7FN64,6931
|
|
26
|
+
botocore-stubs/monitoring.pyi,sha256=N_3pWVtt1KMAq52UWFrCtaVIW7Z4Rdub_Ji8jjpjyLg,2920
|
|
27
|
+
botocore-stubs/paginate.pyi,sha256=K4rLydRaj9U4kQyD5pHBC_cfbGZNVNGdYidqAH7cWYw,2314
|
|
28
|
+
botocore-stubs/parsers.pyi,sha256=xC6qZHI9hIIMCcXnNEnDyxFjI0cUM9wQWdLGPcpBYV4,2843
|
|
29
|
+
botocore-stubs/plugin.pyi,sha256=9m-ieJCJZbdRZc4OjF64hdbiKGJbEKpqLdY04yg05Ok,659
|
|
30
|
+
botocore-stubs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
|
+
botocore-stubs/regions.pyi,sha256=_4F2Z9WHtQrys2OanQASK_HGDEJMlChajffvbhtWdUA,3732
|
|
32
|
+
botocore-stubs/response.pyi,sha256=BfotsuLLNwi8HG_sS8vsLDImWvUTxCm5wftqiSMh728,1170
|
|
33
|
+
botocore-stubs/retryhandler.pyi,sha256=KSdUIFnTc0exhqw1AoH41nYin2k1VUUC-yWnf74xhmw,2600
|
|
34
|
+
botocore-stubs/serialize.pyi,sha256=c5oXBDGbSM8wrjA6vhZvHYL6tZqLTXRSUA9na9If6hk,2632
|
|
35
|
+
botocore-stubs/session.pyi,sha256=ZBeaJl-ZhqbREdnIw__bo6ooeWWTzLzA09T5dSI9txI,7005
|
|
36
|
+
botocore-stubs/signers.pyi,sha256=4XPAHoPP0BFnyHC8v0bsVNZRJRDRsq9d5uLPj9S1C9k,4176
|
|
37
|
+
botocore-stubs/stub.pyi,sha256=aY60rHM5EhvH-MbUqL8Q0IMrd9ERHUIY0oGxrQZ1Zs8,1891
|
|
38
|
+
botocore-stubs/tokens.pyi,sha256=X8w2jEX5dBoHHwEXBJlNhtqkgryuO-IFRp8TBD6nLXI,1559
|
|
39
|
+
botocore-stubs/translate.pyi,sha256=H-HiVmWZZEPdD9xc49sS-QLhXoPeOGWhASwJbuxcUhU,491
|
|
40
|
+
botocore-stubs/useragent.pyi,sha256=7jl0M3yTl4H2J0eh1APowiiFRsvGWBjjg6JO0Prhelw,1866
|
|
41
|
+
botocore-stubs/utils.pyi,sha256=-dZ7Di310U8NjCUBWuKT8eBRbf62U58uV_DRncAmqxo,14959
|
|
42
|
+
botocore-stubs/validate.pyi,sha256=MU0Kov9nrH1FMG2XTEpcvQhcKJIWB5SXNG8Y2O_0GOo,1284
|
|
43
|
+
botocore-stubs/waiter.pyi,sha256=6KipYNT-vx-Vg3h2zKq1eVU_LrOVxAt_qn86IreC0vQ,1687
|
|
44
|
+
botocore-stubs/crt/__init__.pyi,sha256=37HBtXm11YTFxQAu5exKmHiq1t0WHC3fmC2O9DgIFD0,130
|
|
45
|
+
botocore-stubs/crt/auth.pyi,sha256=hiJus8X2LRWbDRHOwQWlYsbDb3UJuzNz7icwEael8DE,2253
|
|
46
|
+
botocore-stubs/docs/__init__.pyi,sha256=DUxzLOOLAd7e46jbG5RB7p01IYST9BoHF-MCmpnSCL4,227
|
|
47
|
+
botocore-stubs/docs/client.pyi,sha256=KFBdqtZ6omERwfBC7s4pQ5Ulx7WC5T2wGq94dikL8MY,1143
|
|
48
|
+
botocore-stubs/docs/docstring.pyi,sha256=msqvDF4HEChnh3YfpYmvD4GuJ_4W6xHXZnx0F2FkL98,483
|
|
49
|
+
botocore-stubs/docs/example.pyi,sha256=2v2qupn0y4MXjFQIK5XacMm9LoSVVjAKrj_gaFubdpo,2521
|
|
50
|
+
botocore-stubs/docs/method.pyi,sha256=vUohR1E0HtfpgXxSNBXq7bRZXYbxr_SaXQN9_7FX0gE,1413
|
|
51
|
+
botocore-stubs/docs/paginator.pyi,sha256=OW7oZBvxhm7M8NXbEbzbB0nyS6OXbwRkGHfPmGxymkI,762
|
|
52
|
+
botocore-stubs/docs/params.pyi,sha256=73I8lLvd0NMBSl_OIsF1ofyF4XppIMYj3bmWH08yiNs,2369
|
|
53
|
+
botocore-stubs/docs/service.pyi,sha256=D8BhY8UtZb90ejkxg_P8tqZHoc7BM7Aaaa-kMav6y-0,931
|
|
54
|
+
botocore-stubs/docs/shape.pyi,sha256=PJwj9gdbVxucmOb3jRLacX2z-nxGxTE91HWdwIi5R0Q,798
|
|
55
|
+
botocore-stubs/docs/sharedexample.pyi,sha256=bEfwhF4kCLyccu4aele0I8Z2SnZBjboL7YHMBt5KtTk,915
|
|
56
|
+
botocore-stubs/docs/translator.pyi,sha256=4HIkO1W5cgN31ZJNT4rdm1XmpCydfB_BwcqFm0bgFsk,489
|
|
57
|
+
botocore-stubs/docs/utils.pyi,sha256=JoveZ8yVgfNStQJsutHcnGg9994EskM_8kgqhrArv2U,1419
|
|
58
|
+
botocore-stubs/docs/waiter.pyi,sha256=JBz6apW8OvYuigM5_kPxQ_1JKvdRJrF6MN_5R5ltnrQ,770
|
|
59
|
+
botocore-stubs/docs/bcdoc/__init__.pyi,sha256=ieCUaCV4XgYBx-aHYTIVLmhokqQN81K4_8OB_VHSAMc,112
|
|
60
|
+
botocore-stubs/docs/bcdoc/docstringparser.pyi,sha256=axs8JYBpAVo6XBPBq1K-K0cBq_JAZH1U3IRg4qjghZ4,2211
|
|
61
|
+
botocore-stubs/docs/bcdoc/restdoc.pyi,sha256=umm6aecBY1zvf0rKmL4cz8UQvLem99oce3gpnZo_fpY,2147
|
|
62
|
+
botocore-stubs/docs/bcdoc/style.pyi,sha256=xJ18P7--y3NzJWf7Ln9FNbJAlniLHZt6ZEdn83OxaOQ,4220
|
|
63
|
+
botocore-stubs/retries/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
+
botocore-stubs/retries/adaptive.pyi,sha256=WzwSBG_fC0poWWWXVVIjg2iR9mXPOj0oGVgeXYY3rYs,1009
|
|
65
|
+
botocore-stubs/retries/base.pyi,sha256=tXY8_TiX_U8DrZVY9u4JPnwGoUZMZbmIUNfxrYuNMEs,323
|
|
66
|
+
botocore-stubs/retries/bucket.pyi,sha256=rdq8wfbQ1p3iJ_hJWWcz6_obwRX_vkcL0V5sRkmhlV4,736
|
|
67
|
+
botocore-stubs/retries/quota.pyi,sha256=Z4sBLvnNBtnNE0JV_cHbhLDWGjQYdRyLR0bDG5dRo0I,433
|
|
68
|
+
botocore-stubs/retries/special.pyi,sha256=mEmYwXUqdWtpKoxOO0-DZ-lrc91le_WmdO8X4j_UQ1A,530
|
|
69
|
+
botocore-stubs/retries/standard.pyi,sha256=GzEKonxr8ircu3ZNKA1fNuC2VP4BFYwlDj8QGx7bmww,4478
|
|
70
|
+
botocore-stubs/retries/throttling.pyi,sha256=mpd__xuiUjY4Uc8ocquxgD_D2azuXOtBs1J-XoObvwE,582
|
|
71
|
+
botocore_stubs-1.40.66.dist-info/licenses/LICENSE,sha256=YIdUJ_cFRZScLZQFyRT_O8yCCxXFhFKmXaqgDpe3rpM,1071
|
|
72
|
+
botocore_stubs-1.40.66.dist-info/METADATA,sha256=kFo0BKCqBcytQMvaWgkQdsdtmr4fZ-ensXvvB5LJp0A,3354
|
|
73
|
+
botocore_stubs-1.40.66.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
74
|
+
botocore_stubs-1.40.66.dist-info/top_level.txt,sha256=hB4vH6fIntn8CrZExgrgxRrlukQb06YRGFcOvWZ2th8,15
|
|
75
|
+
botocore_stubs-1.40.66.dist-info/RECORD,,
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
botocore-stubs/__init__.pyi,sha256=jI0asMgIMYYFngWKCInfwa2GbX6TzXL2FhU9S6j-tIo,657
|
|
2
|
-
botocore-stubs/args.pyi,sha256=BMlJLqQpCayPO0MyhjOzgLrlOx5QN1oYVpqHlk8uuL8,3366
|
|
3
|
-
botocore-stubs/auth.pyi,sha256=5ppwiiwAAcG6p_Elv6dfnBIIU_fpFjdFUf2kIiNmDv4,5403
|
|
4
|
-
botocore-stubs/awsrequest.pyi,sha256=FK47c-6DyEde-1bS6Yw7TO5A6chLr4IJitQKtnQQSAM,4164
|
|
5
|
-
botocore-stubs/client.pyi,sha256=0gx6AVs03z0zChrqJrH5hRz1I8OvZ2WrVbDtDqhDLX4,6400
|
|
6
|
-
botocore-stubs/compat.pyi,sha256=UOEfXGqOqJS0KWLtl6W0zjNDHERqZ5ECSAvxjZqOGDA,2582
|
|
7
|
-
botocore-stubs/compress.pyi,sha256=UVTu6kMbNgEvkoMxQOh5Evvs02chZRWEUIRf9yiX4-8,638
|
|
8
|
-
botocore-stubs/config.pyi,sha256=_jUEOyLfMN_VbDeLkiIfbOsOOZRLIKcWcmsuomKZfaE,3071
|
|
9
|
-
botocore-stubs/configloader.pyi,sha256=5sUsnqeN2TDL22KSMSCZOfzircr9xHGQxSB9-lFghDk,420
|
|
10
|
-
botocore-stubs/configprovider.pyi,sha256=EBOOazu-XW8L2va5jQgtU0p4ka7WZysBOKHGYr-bVV4,4098
|
|
11
|
-
botocore-stubs/context.pyi,sha256=Qo3WqgcasKya9xhUbQ6D9e0nSMaLYoNzxu_DXc6YIl0,904
|
|
12
|
-
botocore-stubs/credentials.pyi,sha256=4OcHot3ruTBtlddLJIDo3TBHbSFyH8Fd4zUSi1wJdZk,12392
|
|
13
|
-
botocore-stubs/discovery.pyi,sha256=DX-fiohqycVU0N_d7D3uj3dkrvQfMDt50-ebS_49HsY,2599
|
|
14
|
-
botocore-stubs/endpoint.pyi,sha256=tNCOVKobczeE01fSxVDQGJ15IhS1BYPNycXXGu7dULE,2491
|
|
15
|
-
botocore-stubs/endpoint_provider.pyi,sha256=YSY3zNAhhiG2ZJP6UmCr9lSkM1hsqmg6CUquHICcgWg,6204
|
|
16
|
-
botocore-stubs/errorfactory.pyi,sha256=nC8mJFbx2n2II382iUXSdtxOzddaXGQNDpXSJSfSLPg,807
|
|
17
|
-
botocore-stubs/eventstream.pyi,sha256=kKdJjDPd31AFWPN-s-jiYG0vS1Ek-OWmsb2Np2wEQqY,3541
|
|
18
|
-
botocore-stubs/exceptions.pyi,sha256=Mliw3-y9aSxx9wz8qylMcQQaiD21A2zpw_u8F3JQA9Y,21619
|
|
19
|
-
botocore-stubs/handlers.pyi,sha256=NtnfpM8lQSlrauE04bX_Z8vBywasxOmrAmJ1Wmt1UHY,7814
|
|
20
|
-
botocore-stubs/history.pyi,sha256=dwdRDn3XSr3i4lZP1nKEekyJG1homWE35E-ooTShYRk,643
|
|
21
|
-
botocore-stubs/hooks.pyi,sha256=-OHS7tNodCAWijs4qy9ccZJZtaEvptxTZVBlsH2DlXo,3050
|
|
22
|
-
botocore-stubs/httpchecksum.pyi,sha256=N93TmvaPgHyYg_NsRiluiaPdsW_CYGVrMGgnrnxMsN8,2765
|
|
23
|
-
botocore-stubs/httpsession.pyi,sha256=Bv9wTqeHqE8mgJwVoaUEYUno76Yz691v_qyzv1farn4,2346
|
|
24
|
-
botocore-stubs/loaders.pyi,sha256=Z19fMqnT3XQKZCJI2NVeqL-ZrGwfwqxT9gGS0x8bHWI,2041
|
|
25
|
-
botocore-stubs/model.pyi,sha256=T7D5yua2xdT3_yoAdckipQSeahKb2HHvO_yF0hCuefU,6840
|
|
26
|
-
botocore-stubs/monitoring.pyi,sha256=7habxP-7VxtHG74-a9lAHQHNq6nyHClwJXhtclNmblQ,2893
|
|
27
|
-
botocore-stubs/paginate.pyi,sha256=211X3_j_Q-FYXWSVyv53fkPxh8rAX1i7iYFCMRNO5TY,2287
|
|
28
|
-
botocore-stubs/parsers.pyi,sha256=WYk3daPxhBMCrNx6xc5dCb3qyViCBtrH0ebzI9GAhyo,2773
|
|
29
|
-
botocore-stubs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
|
-
botocore-stubs/regions.pyi,sha256=NK4SXXHcLXHyXCxfS4hPltzczgp4r04CBX3M-Ub26Pk,3732
|
|
31
|
-
botocore-stubs/response.pyi,sha256=_c3q3au_j8qS5U8IhWoUBij1GN9MTHaO5ruVFyh-aKI,1094
|
|
32
|
-
botocore-stubs/retryhandler.pyi,sha256=Cs-o_YAClhO5OjjXdnFIkdSJ0e1QEj_eV3Un14E5uJg,2573
|
|
33
|
-
botocore-stubs/serialize.pyi,sha256=ztSd1imWTCbuE-yHnXnNJQj0sCMQJwoMn-C5CPwXtK4,2250
|
|
34
|
-
botocore-stubs/session.pyi,sha256=45eCtM3IglBH6VNwVMgMNb2BnNC0naoh29cEJJ0Tyx0,7005
|
|
35
|
-
botocore-stubs/signers.pyi,sha256=VYVOFRUgawzQMNsIgH5qS326ij4ME0gd8k2Sm83tglM,4101
|
|
36
|
-
botocore-stubs/stub.pyi,sha256=Hfqwm-GVB9B5EjVN6rOF32JL853o-VgQmZAJ4u_4B4M,1864
|
|
37
|
-
botocore-stubs/tokens.pyi,sha256=ZAThKjVxhzUcDWGgoFextnmIlEWSO9Y27h8XpUjHNr8,1255
|
|
38
|
-
botocore-stubs/translate.pyi,sha256=H-HiVmWZZEPdD9xc49sS-QLhXoPeOGWhASwJbuxcUhU,491
|
|
39
|
-
botocore-stubs/useragent.pyi,sha256=jaeTQfWy9nmUERrQjXCRmRAH90WOViDdYeLCvg8JGL8,1763
|
|
40
|
-
botocore-stubs/utils.pyi,sha256=3GZyq-4FAXWvg7ETJKg3AN4CiTDWjJkM9XQ24hFlFho,14274
|
|
41
|
-
botocore-stubs/validate.pyi,sha256=JWCI0vMGnwGNmtu77xgqtURrydBgSVrCcMOHObDgha4,1257
|
|
42
|
-
botocore-stubs/waiter.pyi,sha256=WFU70JRI9it4_n0NNvzliJsArsirimybUoW9pN1FoJo,1660
|
|
43
|
-
botocore-stubs/crt/__init__.pyi,sha256=37HBtXm11YTFxQAu5exKmHiq1t0WHC3fmC2O9DgIFD0,130
|
|
44
|
-
botocore-stubs/crt/auth.pyi,sha256=hiJus8X2LRWbDRHOwQWlYsbDb3UJuzNz7icwEael8DE,2253
|
|
45
|
-
botocore-stubs/docs/__init__.pyi,sha256=DUxzLOOLAd7e46jbG5RB7p01IYST9BoHF-MCmpnSCL4,227
|
|
46
|
-
botocore-stubs/docs/client.pyi,sha256=KFBdqtZ6omERwfBC7s4pQ5Ulx7WC5T2wGq94dikL8MY,1143
|
|
47
|
-
botocore-stubs/docs/docstring.pyi,sha256=msqvDF4HEChnh3YfpYmvD4GuJ_4W6xHXZnx0F2FkL98,483
|
|
48
|
-
botocore-stubs/docs/example.pyi,sha256=2v2qupn0y4MXjFQIK5XacMm9LoSVVjAKrj_gaFubdpo,2521
|
|
49
|
-
botocore-stubs/docs/method.pyi,sha256=EUzP4NqYu40I9kuHTwqR6TcMX9eruJvCdyiNzpT1UbY,1386
|
|
50
|
-
botocore-stubs/docs/paginator.pyi,sha256=OW7oZBvxhm7M8NXbEbzbB0nyS6OXbwRkGHfPmGxymkI,762
|
|
51
|
-
botocore-stubs/docs/params.pyi,sha256=MIWZrBcfQzKUNo0HADrzcptFZB4X6J9lb9zlXeZGyvE,2342
|
|
52
|
-
botocore-stubs/docs/service.pyi,sha256=D8BhY8UtZb90ejkxg_P8tqZHoc7BM7Aaaa-kMav6y-0,931
|
|
53
|
-
botocore-stubs/docs/shape.pyi,sha256=hO0mPRcOZag4w2rTrLJzYH3rVjtiQHmz3LSutdsSlo8,771
|
|
54
|
-
botocore-stubs/docs/sharedexample.pyi,sha256=aqZ8xvnYz7o0tKA_I65ZKcQvoDYTNpjgmWNbT9FbzMw,888
|
|
55
|
-
botocore-stubs/docs/translator.pyi,sha256=4HIkO1W5cgN31ZJNT4rdm1XmpCydfB_BwcqFm0bgFsk,489
|
|
56
|
-
botocore-stubs/docs/utils.pyi,sha256=JoveZ8yVgfNStQJsutHcnGg9994EskM_8kgqhrArv2U,1419
|
|
57
|
-
botocore-stubs/docs/waiter.pyi,sha256=JBz6apW8OvYuigM5_kPxQ_1JKvdRJrF6MN_5R5ltnrQ,770
|
|
58
|
-
botocore-stubs/docs/bcdoc/__init__.pyi,sha256=ieCUaCV4XgYBx-aHYTIVLmhokqQN81K4_8OB_VHSAMc,112
|
|
59
|
-
botocore-stubs/docs/bcdoc/docstringparser.pyi,sha256=axs8JYBpAVo6XBPBq1K-K0cBq_JAZH1U3IRg4qjghZ4,2211
|
|
60
|
-
botocore-stubs/docs/bcdoc/restdoc.pyi,sha256=Q3UDGshhDIK2g0AkujOJXqEHPBNQtcyudmC0q9Z_fCs,2120
|
|
61
|
-
botocore-stubs/docs/bcdoc/style.pyi,sha256=xJ18P7--y3NzJWf7Ln9FNbJAlniLHZt6ZEdn83OxaOQ,4220
|
|
62
|
-
botocore-stubs/retries/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
|
-
botocore-stubs/retries/adaptive.pyi,sha256=WzwSBG_fC0poWWWXVVIjg2iR9mXPOj0oGVgeXYY3rYs,1009
|
|
64
|
-
botocore-stubs/retries/base.pyi,sha256=tXY8_TiX_U8DrZVY9u4JPnwGoUZMZbmIUNfxrYuNMEs,323
|
|
65
|
-
botocore-stubs/retries/bucket.pyi,sha256=rdq8wfbQ1p3iJ_hJWWcz6_obwRX_vkcL0V5sRkmhlV4,736
|
|
66
|
-
botocore-stubs/retries/quota.pyi,sha256=Z4sBLvnNBtnNE0JV_cHbhLDWGjQYdRyLR0bDG5dRo0I,433
|
|
67
|
-
botocore-stubs/retries/special.pyi,sha256=mEmYwXUqdWtpKoxOO0-DZ-lrc91le_WmdO8X4j_UQ1A,530
|
|
68
|
-
botocore-stubs/retries/standard.pyi,sha256=lpCPzzpy-PwwnPJhHi7BdBKODVTSnv4nxTsDZPtlAS8,4451
|
|
69
|
-
botocore-stubs/retries/throttling.pyi,sha256=mpd__xuiUjY4Uc8ocquxgD_D2azuXOtBs1J-XoObvwE,582
|
|
70
|
-
botocore_stubs-1.38.12.dist-info/licenses/LICENSE,sha256=YIdUJ_cFRZScLZQFyRT_O8yCCxXFhFKmXaqgDpe3rpM,1071
|
|
71
|
-
botocore_stubs-1.38.12.dist-info/METADATA,sha256=TyD4aFx9xC4Rrbqd71I90I7cdL9p5DGu1a4MN3rim1Y,4680
|
|
72
|
-
botocore_stubs-1.38.12.dist-info/WHEEL,sha256=0CuiUZ_p9E4cD6NyLD6UG80LBXYyiSYZOKDm5lp32xk,91
|
|
73
|
-
botocore_stubs-1.38.12.dist-info/top_level.txt,sha256=hB4vH6fIntn8CrZExgrgxRrlukQb06YRGFcOvWZ2th8,15
|
|
74
|
-
botocore_stubs-1.38.12.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|