botocore-stubs 1.35.69__py3-none-any.whl → 1.35.70__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 +6 -2
- botocore-stubs/args.pyi +22 -24
- botocore-stubs/auth.pyi +34 -30
- botocore-stubs/awsrequest.pyi +25 -21
- botocore-stubs/client.pyi +31 -27
- botocore-stubs/compat.pyi +14 -9
- botocore-stubs/compress.pyi +6 -3
- botocore-stubs/config.pyi +27 -29
- botocore-stubs/configloader.pyi +9 -5
- botocore-stubs/configprovider.pyi +27 -25
- botocore-stubs/credentials.pyi +73 -69
- botocore-stubs/crt/__init__.pyi +1 -3
- botocore-stubs/crt/auth.pyi +4 -2
- botocore-stubs/discovery.pyi +11 -8
- botocore-stubs/docs/__init__.pyi +1 -3
- botocore-stubs/docs/bcdoc/docstringparser.pyi +11 -7
- botocore-stubs/docs/bcdoc/restdoc.pyi +10 -6
- botocore-stubs/docs/bcdoc/style.pyi +11 -7
- botocore-stubs/docs/client.pyi +8 -4
- botocore-stubs/docs/docstring.pyi +4 -2
- botocore-stubs/docs/example.pyi +20 -16
- botocore-stubs/docs/method.pyi +16 -12
- botocore-stubs/docs/paginator.pyi +4 -0
- botocore-stubs/docs/params.pyi +18 -14
- botocore-stubs/docs/service.pyi +6 -2
- botocore-stubs/docs/shape.pyi +6 -2
- botocore-stubs/docs/sharedexample.pyi +4 -0
- botocore-stubs/docs/translator.pyi +6 -2
- botocore-stubs/docs/utils.pyi +8 -4
- botocore-stubs/docs/waiter.pyi +4 -0
- botocore-stubs/endpoint.pyi +15 -11
- botocore-stubs/endpoint_provider.pyi +38 -39
- botocore-stubs/errorfactory.pyi +7 -3
- botocore-stubs/eventstream.pyi +20 -16
- botocore-stubs/exceptions.pyi +8 -10
- botocore-stubs/handlers.pyi +10 -6
- botocore-stubs/history.pyi +6 -2
- botocore-stubs/hooks.pyi +19 -17
- botocore-stubs/httpchecksum.pyi +13 -10
- botocore-stubs/httpsession.pyi +21 -17
- botocore-stubs/loaders.pyi +17 -13
- botocore-stubs/model.pyi +50 -46
- botocore-stubs/monitoring.pyi +23 -20
- botocore-stubs/paginate.pyi +7 -3
- botocore-stubs/parsers.pyi +11 -7
- botocore-stubs/regions.pyi +18 -14
- botocore-stubs/response.pyi +8 -4
- botocore-stubs/retries/adaptive.pyi +5 -1
- botocore-stubs/retries/bucket.pyi +4 -0
- botocore-stubs/retries/quota.pyi +6 -2
- botocore-stubs/retries/special.pyi +4 -0
- botocore-stubs/retries/standard.pyi +16 -12
- botocore-stubs/retries/throttling.pyi +4 -0
- botocore-stubs/retryhandler.pyi +10 -6
- botocore-stubs/serialize.pyi +11 -7
- botocore-stubs/session.pyi +43 -49
- botocore-stubs/signers.pyi +26 -24
- botocore-stubs/stub.pyi +13 -15
- botocore-stubs/tokens.pyi +10 -6
- botocore-stubs/translate.pyi +6 -2
- botocore-stubs/useragent.pyi +9 -5
- botocore-stubs/utils.pyi +57 -58
- botocore-stubs/validate.pyi +5 -1
- botocore-stubs/waiter.pyi +9 -5
- {botocore_stubs-1.35.69.dist-info → botocore_stubs-1.35.70.dist-info}/METADATA +1 -2
- botocore_stubs-1.35.70.dist-info/RECORD +73 -0
- botocore_stubs-1.35.69.dist-info/RECORD +0 -73
- {botocore_stubs-1.35.69.dist-info → botocore_stubs-1.35.70.dist-info}/LICENSE +0 -0
- {botocore_stubs-1.35.69.dist-info → botocore_stubs-1.35.70.dist-info}/WHEEL +0 -0
- {botocore_stubs-1.35.69.dist-info → botocore_stubs-1.35.70.dist-info}/top_level.txt +0 -0
botocore-stubs/utils.pyi
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Copyright 2024 Vlad Emelianov
|
|
3
|
+
"""
|
|
4
|
+
|
|
1
5
|
import datetime
|
|
2
6
|
from logging import Logger
|
|
3
7
|
from typing import (
|
|
4
8
|
Any,
|
|
5
9
|
Callable,
|
|
6
|
-
Dict,
|
|
7
10
|
Generic,
|
|
8
11
|
Iterable,
|
|
9
|
-
List,
|
|
10
12
|
Mapping,
|
|
11
|
-
Optional,
|
|
12
13
|
Pattern,
|
|
13
|
-
Tuple,
|
|
14
|
-
Type,
|
|
15
14
|
TypeVar,
|
|
16
15
|
)
|
|
17
16
|
|
|
@@ -63,12 +62,12 @@ _V = TypeVar("_V")
|
|
|
63
62
|
DEFAULT_METADATA_SERVICE_TIMEOUT: int
|
|
64
63
|
METADATA_BASE_URL: str
|
|
65
64
|
METADATA_BASE_URL_IPv6: str
|
|
66
|
-
METADATA_ENDPOINT_MODES:
|
|
65
|
+
METADATA_ENDPOINT_MODES: tuple[str, ...]
|
|
67
66
|
SAFE_CHARS: str
|
|
68
67
|
LABEL_RE: Pattern[str]
|
|
69
|
-
RETRYABLE_HTTP_ERRORS:
|
|
70
|
-
S3_ACCELERATE_WHITELIST:
|
|
71
|
-
EVENT_ALIASES:
|
|
68
|
+
RETRYABLE_HTTP_ERRORS: tuple[Any, ...]
|
|
69
|
+
S3_ACCELERATE_WHITELIST: list[str]
|
|
70
|
+
EVENT_ALIASES: dict[str, str]
|
|
72
71
|
CHECKSUM_HEADER_PATTERN: Pattern[str]
|
|
73
72
|
IPV4_PAT: str
|
|
74
73
|
HEX_PAT: str
|
|
@@ -83,14 +82,14 @@ UNSAFE_URL_CHARS: frozenset[Any]
|
|
|
83
82
|
def ensure_boolean(val: Any) -> bool: ...
|
|
84
83
|
def resolve_imds_endpoint_mode(session: Session) -> str: ...
|
|
85
84
|
def is_json_value_header(shape: Shape) -> bool: ...
|
|
86
|
-
def has_header(header_name:
|
|
85
|
+
def has_header(header_name: str | None, headers: Mapping[str, Any]) -> bool: ...
|
|
87
86
|
def get_service_module_name(service_model: ServiceModel) -> str: ...
|
|
88
87
|
def normalize_url_path(path: str) -> str: ...
|
|
89
|
-
def normalize_boolean(val: Any) ->
|
|
88
|
+
def normalize_boolean(val: Any) -> bool | None: ...
|
|
90
89
|
def remove_dot_segments(url: str) -> str: ...
|
|
91
|
-
def validate_jmespath_for_set(expression:
|
|
90
|
+
def validate_jmespath_for_set(expression: str | None) -> None: ...
|
|
92
91
|
def set_value_from_jmespath(
|
|
93
|
-
source:
|
|
92
|
+
source: dict[str, Any], expression: str, value: Any, is_first: bool = ...
|
|
94
93
|
) -> None: ...
|
|
95
94
|
def is_global_accesspoint(context: Any) -> bool: ...
|
|
96
95
|
|
|
@@ -106,9 +105,9 @@ class IMDSFetcher:
|
|
|
106
105
|
timeout: int = ...,
|
|
107
106
|
num_attempts: int = ...,
|
|
108
107
|
base_url: str = ...,
|
|
109
|
-
env:
|
|
110
|
-
user_agent:
|
|
111
|
-
config:
|
|
108
|
+
env: Any | None = ...,
|
|
109
|
+
user_agent: str | None = ...,
|
|
110
|
+
config: Any | None = ...,
|
|
112
111
|
) -> None: ...
|
|
113
112
|
def get_base_url(self) -> str: ...
|
|
114
113
|
|
|
@@ -120,24 +119,24 @@ class IMDSRegionProvider:
|
|
|
120
119
|
self,
|
|
121
120
|
session: Session,
|
|
122
121
|
environ: Any = ...,
|
|
123
|
-
fetcher:
|
|
122
|
+
fetcher: IMDSFetcher | None = ...,
|
|
124
123
|
) -> None: ...
|
|
125
124
|
def provide(self) -> Any: ...
|
|
126
125
|
|
|
127
126
|
class InstanceMetadataRegionFetcher(IMDSFetcher):
|
|
128
|
-
def retrieve_region(self) ->
|
|
127
|
+
def retrieve_region(self) -> str | None: ...
|
|
129
128
|
|
|
130
129
|
def merge_dicts(
|
|
131
130
|
dict1: Mapping[str, Any], dict2: Mapping[str, Any], append_lists: bool = ...
|
|
132
131
|
) -> None: ...
|
|
133
|
-
def lowercase_dict(original: Mapping[str, Any]) ->
|
|
134
|
-
def parse_key_val_file(filename: str, _open: Callable[..., Any] = ...) ->
|
|
135
|
-
def parse_key_val_file_contents(contents: str) ->
|
|
132
|
+
def lowercase_dict(original: Mapping[str, Any]) -> dict[str, Any]: ...
|
|
133
|
+
def parse_key_val_file(filename: str, _open: Callable[..., Any] = ...) -> dict[str, str]: ...
|
|
134
|
+
def parse_key_val_file_contents(contents: str) -> dict[str, str]: ...
|
|
136
135
|
def percent_encode_sequence(mapping: Mapping[str, Any], safe: Iterable[str] = ...) -> Any: ...
|
|
137
136
|
def percent_encode(input_str: str, safe: Iterable[str] = ...) -> Any: ...
|
|
138
137
|
def parse_timestamp(value: str) -> datetime.datetime: ...
|
|
139
138
|
def parse_to_aware_datetime(value: str) -> datetime.datetime: ...
|
|
140
|
-
def datetime2timestamp(dt: datetime.datetime, default_timezone:
|
|
139
|
+
def datetime2timestamp(dt: datetime.datetime, default_timezone: Any | None = ...) -> int: ...
|
|
141
140
|
def calculate_sha256(body: str, as_hex: bool = ...) -> str: ...
|
|
142
141
|
def calculate_tree_hash(body: str) -> str: ...
|
|
143
142
|
|
|
@@ -159,11 +158,11 @@ def fix_s3_host(
|
|
|
159
158
|
request: Any,
|
|
160
159
|
signature_version: Any,
|
|
161
160
|
region_name: Any,
|
|
162
|
-
default_endpoint_url:
|
|
161
|
+
default_endpoint_url: str | None = ...,
|
|
163
162
|
**kwargs: Any,
|
|
164
163
|
) -> None: ...
|
|
165
164
|
def switch_to_virtual_host_style(
|
|
166
|
-
request: Any, signature_version: Any, default_endpoint_url:
|
|
165
|
+
request: Any, signature_version: Any, default_endpoint_url: str | None = ..., **kwargs: Any
|
|
167
166
|
) -> None: ...
|
|
168
167
|
def instance_cache(func: Any) -> Any: ...
|
|
169
168
|
def lru_cache_weakref(*cache_args: Any, **cache_kwargs: Any) -> Any: ...
|
|
@@ -174,7 +173,7 @@ def hyphenize_service_id(service_id: Any) -> Any: ...
|
|
|
174
173
|
|
|
175
174
|
class IdentityCache:
|
|
176
175
|
METHOD: str = ...
|
|
177
|
-
def __init__(self, client: BaseClient, credential_cls:
|
|
176
|
+
def __init__(self, client: BaseClient, credential_cls: type[Credentials]) -> None: ...
|
|
178
177
|
def get_credentials(self, **kwargs: Any) -> Credentials: ...
|
|
179
178
|
def build_refresh_callback(**kwargs: Any) -> Callable[..., Any]: ...
|
|
180
179
|
|
|
@@ -186,10 +185,10 @@ class S3ExpressIdentityResolver:
|
|
|
186
185
|
def __init__(
|
|
187
186
|
self,
|
|
188
187
|
client: BaseClient,
|
|
189
|
-
credential_cls:
|
|
190
|
-
cache:
|
|
188
|
+
credential_cls: type[Credentials],
|
|
189
|
+
cache: S3ExpressIdentityCache | None = ...,
|
|
191
190
|
) -> None: ...
|
|
192
|
-
def register(self, event_emitter:
|
|
191
|
+
def register(self, event_emitter: BaseEventHooks | None = ...) -> None: ...
|
|
193
192
|
def apply_signing_cache_key(
|
|
194
193
|
self, params: Mapping[str, Any], context: Mapping[str, Any], **kwargs: Any
|
|
195
194
|
) -> None: ...
|
|
@@ -206,9 +205,9 @@ class S3ExpressIdentityResolver:
|
|
|
206
205
|
|
|
207
206
|
class S3RegionRedirectorv2:
|
|
208
207
|
def __init__(
|
|
209
|
-
self, endpoint_bridge: Any, client: BaseClient, cache:
|
|
208
|
+
self, endpoint_bridge: Any, client: BaseClient, cache: Any | None = ...
|
|
210
209
|
) -> None: ...
|
|
211
|
-
def register(self, event_emitter:
|
|
210
|
+
def register(self, event_emitter: BaseEventHooks | None = ...) -> None: ...
|
|
212
211
|
def redirect_from_error(
|
|
213
212
|
self,
|
|
214
213
|
request_dict: Mapping[str, Any],
|
|
@@ -223,9 +222,9 @@ class S3RegionRedirectorv2:
|
|
|
223
222
|
|
|
224
223
|
class S3RegionRedirector:
|
|
225
224
|
def __init__(
|
|
226
|
-
self, endpoint_bridge: Any, client: BaseClient, cache:
|
|
225
|
+
self, endpoint_bridge: Any, client: BaseClient, cache: Any | None = ...
|
|
227
226
|
) -> None: ...
|
|
228
|
-
def register(self, event_emitter:
|
|
227
|
+
def register(self, event_emitter: BaseEventHooks | None = ...) -> None: ...
|
|
229
228
|
def redirect_from_error(
|
|
230
229
|
self,
|
|
231
230
|
request_dict: Mapping[str, Any],
|
|
@@ -240,12 +239,12 @@ class S3RegionRedirector:
|
|
|
240
239
|
class InvalidArnException(ValueError): ...
|
|
241
240
|
|
|
242
241
|
class ArnParser:
|
|
243
|
-
def parse_arn(self, arn: str) ->
|
|
242
|
+
def parse_arn(self, arn: str) -> dict[str, Any]: ...
|
|
244
243
|
@staticmethod
|
|
245
244
|
def is_arn(value: str) -> bool: ...
|
|
246
245
|
|
|
247
246
|
class S3ArnParamHandler:
|
|
248
|
-
def __init__(self, arn_parser:
|
|
247
|
+
def __init__(self, arn_parser: Any | None = ...) -> None: ...
|
|
249
248
|
def register(self, event_emitter: BaseEventHooks) -> None: ...
|
|
250
249
|
def handle_arn(self, params: Any, model: Any, context: Any, **kwargs: Any) -> None: ...
|
|
251
250
|
|
|
@@ -253,11 +252,11 @@ class S3EndpointSetter:
|
|
|
253
252
|
def __init__(
|
|
254
253
|
self,
|
|
255
254
|
endpoint_resolver: BaseEndpointResolver,
|
|
256
|
-
region:
|
|
257
|
-
s3_config:
|
|
258
|
-
endpoint_url:
|
|
259
|
-
partition:
|
|
260
|
-
use_fips_endpoint:
|
|
255
|
+
region: str | None = ...,
|
|
256
|
+
s3_config: Any | None = ...,
|
|
257
|
+
endpoint_url: str | None = ...,
|
|
258
|
+
partition: Any | None = ...,
|
|
259
|
+
use_fips_endpoint: bool | None = ...,
|
|
261
260
|
) -> None: ...
|
|
262
261
|
def register(self, event_emitter: BaseEventHooks) -> None: ...
|
|
263
262
|
def set_endpoint(self, request: Any, **kwargs: Any) -> None: ...
|
|
@@ -270,17 +269,17 @@ class S3ControlEndpointSetter:
|
|
|
270
269
|
def __init__(
|
|
271
270
|
self,
|
|
272
271
|
endpoint_resolver: BaseEndpointResolver,
|
|
273
|
-
region:
|
|
274
|
-
s3_config:
|
|
275
|
-
endpoint_url:
|
|
276
|
-
partition:
|
|
277
|
-
use_fips_endpoint:
|
|
272
|
+
region: str | None = ...,
|
|
273
|
+
s3_config: Any | None = ...,
|
|
274
|
+
endpoint_url: str | None = ...,
|
|
275
|
+
partition: Any | None = ...,
|
|
276
|
+
use_fips_endpoint: bool | None = ...,
|
|
278
277
|
) -> None: ...
|
|
279
278
|
def register(self, event_emitter: BaseEventHooks) -> None: ...
|
|
280
279
|
def set_endpoint(self, request: Any, **kwargs: Any) -> None: ...
|
|
281
280
|
|
|
282
281
|
class S3ControlArnParamHandler:
|
|
283
|
-
def __init__(self, arn_parser:
|
|
282
|
+
def __init__(self, arn_parser: Any | None = ...) -> None: ...
|
|
284
283
|
def register(self, event_emitter: BaseEventHooks) -> None: ...
|
|
285
284
|
def handle_arn(self, params: Any, model: Any, context: Any, **kwargs: Any) -> None: ...
|
|
286
285
|
|
|
@@ -291,14 +290,14 @@ class ContainerMetadataFetcher:
|
|
|
291
290
|
RETRY_ATTEMPTS: int
|
|
292
291
|
SLEEP_TIME: int
|
|
293
292
|
IP_ADDRESS: str
|
|
294
|
-
def __init__(self, session:
|
|
295
|
-
def retrieve_full_uri(self, full_url: str, headers:
|
|
293
|
+
def __init__(self, session: Any | None = ..., sleep: Any = ...) -> None: ...
|
|
294
|
+
def retrieve_full_uri(self, full_url: str, headers: Any | None = ...) -> Any: ...
|
|
296
295
|
def retrieve_uri(self, relative_uri: str) -> Any: ...
|
|
297
296
|
def full_url(self, relative_uri: str) -> Any: ...
|
|
298
297
|
|
|
299
|
-
def get_environ_proxies(url: str) ->
|
|
298
|
+
def get_environ_proxies(url: str) -> dict[str, Any]: ...
|
|
300
299
|
def should_bypass_proxies(url: str) -> bool: ...
|
|
301
|
-
def determine_content_length(body: Any) ->
|
|
300
|
+
def determine_content_length(body: Any) -> int | None: ...
|
|
302
301
|
def get_encoding_from_headers(headers: Mapping[str, Any], default: str = ...) -> str: ...
|
|
303
302
|
def calculate_md5(body: Any, **kwargs: Any) -> str: ...
|
|
304
303
|
def conditionally_calculate_checksum(params: Mapping[str, Any], **kwargs: Any) -> str: ...
|
|
@@ -310,16 +309,16 @@ class FileWebIdentityTokenLoader:
|
|
|
310
309
|
def __call__(self) -> Any: ...
|
|
311
310
|
|
|
312
311
|
class SSOTokenLoader:
|
|
313
|
-
def __init__(self, cache:
|
|
314
|
-
def save_token(self, start_url: str, token: str, session_name:
|
|
315
|
-
def __call__(self, start_url: str, session_name:
|
|
312
|
+
def __init__(self, cache: Any | None = ...) -> None: ...
|
|
313
|
+
def save_token(self, start_url: str, token: str, session_name: str | None = ...) -> None: ...
|
|
314
|
+
def __call__(self, start_url: str, session_name: str | None = ...) -> Any: ...
|
|
316
315
|
|
|
317
316
|
class EventbridgeSignerSetter:
|
|
318
317
|
def __init__(
|
|
319
318
|
self,
|
|
320
319
|
endpoint_resolver: BaseEndpointResolver,
|
|
321
|
-
region:
|
|
322
|
-
endpoint_url:
|
|
320
|
+
region: str | None = None,
|
|
321
|
+
endpoint_url: str | None = None,
|
|
323
322
|
) -> None: ...
|
|
324
323
|
def register(self, event_emitter: BaseEventHooks) -> None: ...
|
|
325
324
|
def set_endpoint_url(
|
|
@@ -329,11 +328,11 @@ class EventbridgeSignerSetter:
|
|
|
329
328
|
self, params: Mapping[str, Any], context: Mapping[str, Any], **kwargs: Any
|
|
330
329
|
) -> None: ...
|
|
331
330
|
|
|
332
|
-
def is_s3_accelerate_url(url:
|
|
331
|
+
def is_s3_accelerate_url(url: str | None) -> bool: ...
|
|
333
332
|
|
|
334
333
|
class JSONFileCache:
|
|
335
334
|
CACHE_DIR: Any = ...
|
|
336
|
-
def __init__(self, working_dir: Any = ..., dumps_func:
|
|
335
|
+
def __init__(self, working_dir: Any = ..., dumps_func: Any | None = ...) -> None: ...
|
|
337
336
|
def __contains__(self, cache_key: str) -> bool: ...
|
|
338
337
|
def __getitem__(self, cache_key: str) -> Any: ...
|
|
339
338
|
def __delitem__(self, cache_key: str) -> None: ...
|
|
@@ -341,5 +340,5 @@ class JSONFileCache:
|
|
|
341
340
|
|
|
342
341
|
def is_s3express_bucket(bucket: str) -> bool: ...
|
|
343
342
|
|
|
344
|
-
SERVICE_NAME_ALIASES:
|
|
345
|
-
CLIENT_NAME_TO_HYPHENIZED_SERVICE_ID_OVERRIDES:
|
|
343
|
+
SERVICE_NAME_ALIASES: dict[str, str] = ...
|
|
344
|
+
CLIENT_NAME_TO_HYPHENIZED_SERVICE_ID_OVERRIDES: dict[str, str] = ...
|
botocore-stubs/validate.pyi
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Copyright 2024 Vlad Emelianov
|
|
3
|
+
"""
|
|
4
|
+
|
|
1
5
|
from typing import Any, Iterable, Mapping
|
|
2
6
|
|
|
3
7
|
from botocore.exceptions import ParamValidationError as ParamValidationError
|
|
@@ -9,7 +13,7 @@ from botocore.utils import parse_to_aware_datetime as parse_to_aware_datetime
|
|
|
9
13
|
def validate_parameters(params: Mapping[str, Any], shape: Shape) -> None: ...
|
|
10
14
|
def type_check(valid_types: Iterable[Any]) -> Any: ...
|
|
11
15
|
def range_check(
|
|
12
|
-
name: str, value: Any, shape: Shape, error_type: Any, errors:
|
|
16
|
+
name: str, value: Any, shape: Shape, error_type: Any, errors: ValidationErrors
|
|
13
17
|
) -> None: ...
|
|
14
18
|
|
|
15
19
|
class ValidationErrors:
|
botocore-stubs/waiter.pyi
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Copyright 2024 Vlad Emelianov
|
|
3
|
+
"""
|
|
4
|
+
|
|
1
5
|
from logging import Logger
|
|
2
|
-
from typing import Any, Callable,
|
|
6
|
+
from typing import Any, Callable, Mapping
|
|
3
7
|
|
|
4
8
|
from botocore.client import BaseClient
|
|
5
9
|
|
|
@@ -20,9 +24,9 @@ class WaiterModel:
|
|
|
20
24
|
SUPPORTED_VERSION: int = ...
|
|
21
25
|
def __init__(self, waiter_config: Mapping[str, Any]) -> None:
|
|
22
26
|
self.version: str
|
|
23
|
-
self.waiter_names:
|
|
27
|
+
self.waiter_names: list[str]
|
|
24
28
|
|
|
25
|
-
def get_waiter(self, waiter_name: str) ->
|
|
29
|
+
def get_waiter(self, waiter_name: str) -> SingleWaiterConfig: ...
|
|
26
30
|
|
|
27
31
|
class SingleWaiterConfig:
|
|
28
32
|
def __init__(self, single_waiter_config: Mapping[str, Any]) -> None:
|
|
@@ -32,7 +36,7 @@ class SingleWaiterConfig:
|
|
|
32
36
|
self.max_attempts: int
|
|
33
37
|
|
|
34
38
|
@property
|
|
35
|
-
def acceptors(self) ->
|
|
39
|
+
def acceptors(self) -> list[AcceptorConfig]: ...
|
|
36
40
|
|
|
37
41
|
class AcceptorConfig:
|
|
38
42
|
def __init__(self, config: Mapping[str, Any]) -> None:
|
|
@@ -50,6 +54,6 @@ class Waiter:
|
|
|
50
54
|
self, name: str, config: Mapping[str, Any], operation_method: Callable[..., Any]
|
|
51
55
|
) -> None:
|
|
52
56
|
self.name: str
|
|
53
|
-
self.config:
|
|
57
|
+
self.config: dict[str, Any]
|
|
54
58
|
|
|
55
59
|
def wait(self, **kwargs: Any) -> None: ...
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: botocore-stubs
|
|
3
|
-
Version: 1.35.
|
|
3
|
+
Version: 1.35.70
|
|
4
4
|
Summary: Type annotations and code completion for botocore
|
|
5
5
|
Author-email: Vlad Emelianov <vlad.emelianov.nz@gmail.com>
|
|
6
6
|
License: MIT License
|
|
@@ -52,7 +52,6 @@ Requires-Python: >=3.8
|
|
|
52
52
|
Description-Content-Type: text/markdown
|
|
53
53
|
License-File: LICENSE
|
|
54
54
|
Requires-Dist: types-awscrt
|
|
55
|
-
Requires-Dist: typing-extensions>=4.1.0; python_version < "3.9"
|
|
56
55
|
Provides-Extra: botocore
|
|
57
56
|
Requires-Dist: botocore; extra == "botocore"
|
|
58
57
|
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
botocore-stubs/__init__.pyi,sha256=iSVJMp0jz73-elMb1e8eij1iEfwmzfosEgfbnpH2CFk,618
|
|
2
|
+
botocore-stubs/args.pyi,sha256=xqaUbLJ4JWgEYwOmTjZ7KM1czu_VCSPmlp6PBsLd0Gw,2871
|
|
3
|
+
botocore-stubs/auth.pyi,sha256=tbmqwJejnXrWITcvKiWg5sj8NkTD_FBZZR2JTKDZZpw,5359
|
|
4
|
+
botocore-stubs/awsrequest.pyi,sha256=pS96O3R9nlDu9nZCHSPUCOHqjYttoEUvxGVn4MKV4nU,4033
|
|
5
|
+
botocore-stubs/client.pyi,sha256=OcCNzKef-gtSwT4Eliz_eifeSLMZ3sbQxQmfk0zrj2g,6151
|
|
6
|
+
botocore-stubs/compat.pyi,sha256=GEdD4VOkFWkfN7TPiKdulQ5W45D_d6Obip2vk-F7NsE,2382
|
|
7
|
+
botocore-stubs/compress.pyi,sha256=gyVv_0KqQr4FDTG8LoUa_UCbkqjdFzc5NMUAV9qMuLM,590
|
|
8
|
+
botocore-stubs/config.pyi,sha256=vWn4RSP4C_s1KksK08UEUrumHFBwMH2ithf3odTw7r8,2346
|
|
9
|
+
botocore-stubs/configloader.pyi,sha256=lCm-MwVsABLYXP95wefx-iKImM96QbpIc9f9KFqA5v8,368
|
|
10
|
+
botocore-stubs/configprovider.pyi,sha256=1H_nryxglfcOWbK_7eDGOkpL3oJmUgxVVN-87XxdKG8,3785
|
|
11
|
+
botocore-stubs/credentials.pyi,sha256=zUp0atlNn9ywajO98H2PBa5ncR1_dTEPoixd00zm6hI,11440
|
|
12
|
+
botocore-stubs/discovery.pyi,sha256=MgiVqJ2ZrcQyDtyc_Ey6pPeP-0HtYoCxPMn9L9O-_ys,2292
|
|
13
|
+
botocore-stubs/endpoint.pyi,sha256=U5gzOUHzDWgY8QmkEbsKEDU6c4x_xUQmoYB3fecjRPI,2201
|
|
14
|
+
botocore-stubs/endpoint_provider.pyi,sha256=XODzvRORfS51hQTBUQ6O74NaukEuUzmfj65BQembQlA,6115
|
|
15
|
+
botocore-stubs/errorfactory.pyi,sha256=Y1CRJHxxq9oztMwMTYOIsEIfhFca5-VkAK2XiZxFBuY,755
|
|
16
|
+
botocore-stubs/eventstream.pyi,sha256=tofX3yyZ7VH-KFb2SQZO7DOR2Prxp9HHSy52NgWFkEg,3490
|
|
17
|
+
botocore-stubs/exceptions.pyi,sha256=GPeoSiaSDfAkZYTj4l_4w4rE0_wfTasRuIor_Nb19iU,21457
|
|
18
|
+
botocore-stubs/handlers.pyi,sha256=rrwvd0UUuFImOPN5tg5NVOdABYomnDjmofOm_ttiFEw,7580
|
|
19
|
+
botocore-stubs/history.pyi,sha256=VIKILIRHYsCGbA8PcZw05GkTICBU0y1SGWCJR8CC6I4,596
|
|
20
|
+
botocore-stubs/hooks.pyi,sha256=qgor6y-IueSTk1g2Jjzwdv8kigm9sLjWzwDiVX9KlzI,2814
|
|
21
|
+
botocore-stubs/httpchecksum.pyi,sha256=Qug6bG9kwJCM2OgRI1NtIi7VeSq_vVP-Ho0f0apxpM4,2676
|
|
22
|
+
botocore-stubs/httpsession.pyi,sha256=PjlqHy9xXDuq5_mcLIg5IqTP7uuik3ae-AiQ5LRBd8E,2295
|
|
23
|
+
botocore-stubs/loaders.pyi,sha256=03CZWtwZ_z3qmu99NNBQ-5BP1TX4qBTwDacrs7nnC3Y,1994
|
|
24
|
+
botocore-stubs/model.pyi,sha256=Bm0-v1B3EcA2JUuH8IFpgH37i0QLJSpSKY92ko0vdPg,6640
|
|
25
|
+
botocore-stubs/monitoring.pyi,sha256=31sdzYJm43eZxzWuujj7HgHGZQCFfHFf3EKxmde3dGU,2791
|
|
26
|
+
botocore-stubs/paginate.pyi,sha256=Zyh1qrvjG7d_KDugQNVvYXoxex1QvQ-zGTxdAacWExE,1810
|
|
27
|
+
botocore-stubs/parsers.pyi,sha256=hzm2MbdeUz6w3ZBP5pjnEMA08wq94nuQovFFU1eGfpk,2101
|
|
28
|
+
botocore-stubs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
+
botocore-stubs/regions.pyi,sha256=gdptUhLjfM5L8vPewwPIjHoC2XnfeWNWhQkdgIjM3MA,3298
|
|
30
|
+
botocore-stubs/response.pyi,sha256=qA7ltD0Nk29gnMNbZ1Cd9_DfHxgNJ8qZK7tlCPhzqLw,1046
|
|
31
|
+
botocore-stubs/retryhandler.pyi,sha256=QG9DkXv2t7VHeXQvoSRRHv9kFZDq-5pwrrFtAyTt5xw,2521
|
|
32
|
+
botocore-stubs/serialize.pyi,sha256=wkICWi7yC6k0gEqdqigyd213IhNUoVj75mXf8gXOJhA,1744
|
|
33
|
+
botocore-stubs/session.pyi,sha256=TdH4eJHPXZU8JDwzyuZhOXko7D0OdjvMrBswSk_5Bbc,6770
|
|
34
|
+
botocore-stubs/signers.pyi,sha256=3OiO_JX5xeAfIhB6eL8Q9L5xxJhnxDwoeAgZcVHAYao,3672
|
|
35
|
+
botocore-stubs/stub.pyi,sha256=12hYNE7GxVUhiwTYD38k3xUKVs-DFoY-cgKkTBvLkBg,1820
|
|
36
|
+
botocore-stubs/tokens.pyi,sha256=eUJ45TugowbMSCPvUurQfgWnnSrATWF1GCzHaOlOerM,1209
|
|
37
|
+
botocore-stubs/translate.pyi,sha256=3i1QzyjdTE3jpYGR5NEroJFIO6rYOVtN1NgM-IXlI30,336
|
|
38
|
+
botocore-stubs/useragent.pyi,sha256=BKDtLoDPR4iD3-836LxhBdKlx-s8cyoQKldiiPMffso,1196
|
|
39
|
+
botocore-stubs/utils.pyi,sha256=Ix5iJ7Zb5Wji7-EPNvw1VMky_i3VqndLjL16X-2-kso,13879
|
|
40
|
+
botocore-stubs/validate.pyi,sha256=TZuriQmao8Pu_WT9TELhi61a4eZR2vYf5IuZiyJvgxQ,1209
|
|
41
|
+
botocore-stubs/waiter.pyi,sha256=IaCzv5Z4lUy4NVGed1_mzi6cjrGvE72C630_mYAhbzE,1614
|
|
42
|
+
botocore-stubs/crt/__init__.pyi,sha256=w4E6y7tfhMc4tZlTgGpCn1XUFymzar3tnBEUn0v61Yk,48
|
|
43
|
+
botocore-stubs/crt/auth.pyi,sha256=BQ5IIqXutdBLhaZH_3R7jNTUN6y2Bg7BHHpXuk30do8,2134
|
|
44
|
+
botocore-stubs/docs/__init__.pyi,sha256=E1VRt4aJ0-Hksu2U1hjJQUTF4Kp_3JH89IXHN0ifMPI,144
|
|
45
|
+
botocore-stubs/docs/client.pyi,sha256=_gvyf0apLXj8o6yLt0vlqvaP69oS90F32DBWLEJP1gw,1092
|
|
46
|
+
botocore-stubs/docs/docstring.pyi,sha256=MMv6nfCeR5R8JfRekyqnPHeqNa3CHed4FvW_G7_Gtmw,429
|
|
47
|
+
botocore-stubs/docs/example.pyi,sha256=52sO_wcUzbsBAKTPQONK5kZmEa8A4eg1p_GGJQvNcME,2271
|
|
48
|
+
botocore-stubs/docs/method.pyi,sha256=sYsyEfWNOyoFFTfQ0oFpIGLrZNXVoSS9GtlCQoJCSSs,1221
|
|
49
|
+
botocore-stubs/docs/paginator.pyi,sha256=ALU9Ck74cr75XbQQDROFCUNAKwss_0exX8TW0QIj8a8,622
|
|
50
|
+
botocore-stubs/docs/params.pyi,sha256=Q8qIfZmIhpX2X2q0pMegYWeLpRiU6trdZmvOVyXWu38,2107
|
|
51
|
+
botocore-stubs/docs/service.pyi,sha256=Br-rXtFXIvudVe4s92goQXQfsb7p082BRtuHR289jY0,747
|
|
52
|
+
botocore-stubs/docs/shape.pyi,sha256=dpUXDl28xkO-b9ar9_ZbstPYX4riz8Hstf-AmXa2zTw,619
|
|
53
|
+
botocore-stubs/docs/sharedexample.pyi,sha256=UKnfnYuQ3d0AJXmHCBrxmSlnqs8sPL_uMDwfNb4a0X0,604
|
|
54
|
+
botocore-stubs/docs/translator.pyi,sha256=7bsNcPBm0VE3s-30tJrcDSrY0tvq2nNTxPzNM-gcv2A,434
|
|
55
|
+
botocore-stubs/docs/utils.pyi,sha256=A5o5f94YSnUdvAwWA5AAJGzFiDzGNdPoLwfMPNIFJFA,1379
|
|
56
|
+
botocore-stubs/docs/waiter.pyi,sha256=i27riKd8bs_bQeZndH3h0FXtxCibmg0TykIqHdquQHg,657
|
|
57
|
+
botocore-stubs/docs/bcdoc/__init__.pyi,sha256=0GyZC5T8JbNLi4sOLVd1EJfsENhy4uFyQTmVEoOVwio,23
|
|
58
|
+
botocore-stubs/docs/bcdoc/docstringparser.pyi,sha256=Y4EoOP2aOM1MZ3VUHbDP5c2VQoaTfeu0W_OA6hBngYc,2145
|
|
59
|
+
botocore-stubs/docs/bcdoc/restdoc.pyi,sha256=lYL_q3mCH8Nky6MlOK4TwkwuLzq0dPdHy2XQu195DRA,1900
|
|
60
|
+
botocore-stubs/docs/bcdoc/style.pyi,sha256=oe-WXDtXuWnkQSrJr63EXgHbiCO6OvsOmqca32UuS6U,4164
|
|
61
|
+
botocore-stubs/retries/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
|
+
botocore-stubs/retries/adaptive.pyi,sha256=qZ5OJEumjsdDcvSI4bw4Ufh6t87GUZ3UvBO39ixdHS4,953
|
|
63
|
+
botocore-stubs/retries/base.pyi,sha256=bpAceLnCfqBMNpE1N6bFo4ibs0gUECvn5tkcgbeU7Pg,186
|
|
64
|
+
botocore-stubs/retries/bucket.pyi,sha256=8VDUtoVdpnD5farEV8pn82DDB7MtPJMsSkokyxqWCvA,691
|
|
65
|
+
botocore-stubs/retries/quota.pyi,sha256=NyKxzcBDc3q8GT7jr2DWQtqgwWLPRObwpURQIRT1-Ac,374
|
|
66
|
+
botocore-stubs/retries/special.pyi,sha256=fLbHteI0rP1o8U9I9kK-wWwT7pnLSZFY9X-vJ6lljko,406
|
|
67
|
+
botocore-stubs/retries/standard.pyi,sha256=i81J4-_j_bHaKqv7IfHn8iPFTQq3p16A5ixAboPOmYU,4273
|
|
68
|
+
botocore-stubs/retries/throttling.pyi,sha256=8EEjt-odtGnxnaSHhIqtVk8dQ5b_hTaDv9T4NSgIY0g,524
|
|
69
|
+
botocore_stubs-1.35.70.dist-info/LICENSE,sha256=YIdUJ_cFRZScLZQFyRT_O8yCCxXFhFKmXaqgDpe3rpM,1071
|
|
70
|
+
botocore_stubs-1.35.70.dist-info/METADATA,sha256=zK7HA9dpcMpyK1CMiCw4g6JeqZ7MA_eivstxkYg0g4w,4600
|
|
71
|
+
botocore_stubs-1.35.70.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
72
|
+
botocore_stubs-1.35.70.dist-info/top_level.txt,sha256=hB4vH6fIntn8CrZExgrgxRrlukQb06YRGFcOvWZ2th8,15
|
|
73
|
+
botocore_stubs-1.35.70.dist-info/RECORD,,
|
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
botocore-stubs/__init__.pyi,sha256=KwFA19P5TNiNKq_nQjiqDz4-umtoaug7PNWY3VjVY8Y,586
|
|
2
|
-
botocore-stubs/args.pyi,sha256=9-ym3t9fAN9wfFAIKMyCv07HymnlMuNWLLER9hG2BkA,3021
|
|
3
|
-
botocore-stubs/auth.pyi,sha256=nJ3mF1liXwWLsv7p6i6CDvwM8-qk9I4ESLNYVBepP-c,5231
|
|
4
|
-
botocore-stubs/awsrequest.pyi,sha256=g9-_6WJYSs3va-BLvUPcTFVmkcobExdbgnpSO_J5kBg,4063
|
|
5
|
-
botocore-stubs/client.pyi,sha256=vwsly8rcvAvDDlred0TG8a9pvDeMDMKjYPON8EHkoFo,6213
|
|
6
|
-
botocore-stubs/compat.pyi,sha256=iVtMghzNTPffVMvlCtKDI82lHW9KrFM9jfUcDgltTrU,2300
|
|
7
|
-
botocore-stubs/compress.pyi,sha256=ruaxxZH6jXGB05RHe81k9Rx3hewTcAhrzdwrlS6iYaU,600
|
|
8
|
-
botocore-stubs/config.pyi,sha256=iR2yySZX_F9KxY0cM5DjhcJ4GwtSTtioezi_im9CleA,2556
|
|
9
|
-
botocore-stubs/configloader.pyi,sha256=TB85uH9wTztmO1EQnLvvQ2UYYXHYUTAQ63y0zwjQJbE,335
|
|
10
|
-
botocore-stubs/configprovider.pyi,sha256=6f-tw5ASxGyqklVdg9zDL61Skgc-8VauKejouKzd-BY,3824
|
|
11
|
-
botocore-stubs/credentials.pyi,sha256=moVmZnghx48NwqmWjGOiHvuGsQcgNN5_CXtxxPTwMC4,11621
|
|
12
|
-
botocore-stubs/discovery.pyi,sha256=yrg9MOUXDSA3MQ9gheKYdmzEW2dozOxHqV-b91PQqhY,2307
|
|
13
|
-
botocore-stubs/endpoint.pyi,sha256=JrnO1yw5c36YdAzUTSjGzKi---8zfJrQoBYRuWo_S3A,2205
|
|
14
|
-
botocore-stubs/endpoint_provider.pyi,sha256=TsXP2DZJK0LwbJUrsk7Qycj0MNuYao2VQxLxUmDkBBI,6181
|
|
15
|
-
botocore-stubs/errorfactory.pyi,sha256=hm3sTAznyj_iY5xy7_KCxPzZV3GnWUacqfDctvHgYDs,708
|
|
16
|
-
botocore-stubs/eventstream.pyi,sha256=hg0tOkbNBOXRBUP1sqLQExhPF7CX628c6LYtMrUjyAY,3464
|
|
17
|
-
botocore-stubs/exceptions.pyi,sha256=YeC53BaXhaS886Yn4bqO72lOel3L7Bxx76KSC0GDXbc,21546
|
|
18
|
-
botocore-stubs/handlers.pyi,sha256=i2SpLVgkKtG5D-gOAkehqTGhvOUq3rKiERXvniLAhVo,7560
|
|
19
|
-
botocore-stubs/history.pyi,sha256=NMhK1CDY1wna-0byOqZzaAWhhuaGw66YDv4Lz_FvvLE,570
|
|
20
|
-
botocore-stubs/hooks.pyi,sha256=tYUWY1bJQ9PI-VWYQu9FiMAAuNuOFBlHoGBinkmWjkk,2841
|
|
21
|
-
botocore-stubs/httpchecksum.pyi,sha256=QrUqoQQqkI7HNHX-F74bW6bryNvSOaQLza3H0oYPc9E,2741
|
|
22
|
-
botocore-stubs/httpsession.pyi,sha256=9FqhZ_pulehZj9qjC3evAEM1wSHHSGVPS12bEhcmicE,2343
|
|
23
|
-
botocore-stubs/loaders.pyi,sha256=iMzxhDtNbk-CncJb9toKMj2d86mg7Ro34bBft_o5t0c,2007
|
|
24
|
-
botocore-stubs/model.pyi,sha256=nlYxiXDYTlXr4ukSuaSdwwgmDfAkTj6Ld8yQkoz3mUU,6714
|
|
25
|
-
botocore-stubs/monitoring.pyi,sha256=7u4CrUCYRE_Cc5hgXbD-FI--OcfNk4AmZ-bAph7yX0w,2885
|
|
26
|
-
botocore-stubs/paginate.pyi,sha256=ZkbNI0a8P4r40jl5JfRr7nJPukrSYNUeiWECrmRSPvo,1777
|
|
27
|
-
botocore-stubs/parsers.pyi,sha256=jKaNPfMOsWAkV7G1uu2VbVO5CKi-Tp45E1lTJVCy4V0,2099
|
|
28
|
-
botocore-stubs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
-
botocore-stubs/regions.pyi,sha256=ZTPFC5RcmKv1a7puS7vjEr6SZ92w1yFpYUlI_uSKp-c,3306
|
|
30
|
-
botocore-stubs/response.pyi,sha256=Uq3kSBI8SO5AJNq5NwVYaxEup20ZbSuYzUs5rJjqCJU,1033
|
|
31
|
-
botocore-stubs/retryhandler.pyi,sha256=ntaX5StOw10g5oiCetNkE4F8d0DYlMPfziOyAEbm9lY,2522
|
|
32
|
-
botocore-stubs/serialize.pyi,sha256=Qbdq8GADYRkv5KaOS1p6C3WAh0rGuW8MiT9OL5wKNwk,1717
|
|
33
|
-
botocore-stubs/session.pyi,sha256=-y17Wwrw3vdAGGiQWvswMVFCmsVvH2iN3CFlczq2gIU,6959
|
|
34
|
-
botocore-stubs/signers.pyi,sha256=b_lCO5c5EZNkPUJmJ5ZPqU7T_5rkagHIbunEMRguH0w,3745
|
|
35
|
-
botocore-stubs/stub.pyi,sha256=dQwDokOAEb2hLCQPyQ5Bq_BD0QFyyyRCKAl73Kbshso,1934
|
|
36
|
-
botocore-stubs/tokens.pyi,sha256=dnv93uN3lIyyWkmTbvW05R0T9Tb40pYXlKyro-v8z64,1198
|
|
37
|
-
botocore-stubs/translate.pyi,sha256=0VD5IQFJ-BHD8VIN9A-VdnzDCtMR82DqZal_xSAPjX4,310
|
|
38
|
-
botocore-stubs/useragent.pyi,sha256=todcxeNhOXoYwx7lhVDCWXJxAx-c4NyM0k9_zItFzOI,1185
|
|
39
|
-
botocore-stubs/utils.pyi,sha256=hmMyVkWuWJ507KjAMaiSfwCdysmYX7ENLvbLyeTg_eY,14012
|
|
40
|
-
botocore-stubs/validate.pyi,sha256=HTvAiEdyqyNXhyuDEHUhtQsPOOHACvbA-m7sUE3Ef4Q,1172
|
|
41
|
-
botocore-stubs/waiter.pyi,sha256=-imMz_PRyCWtVzwp8wBpP2T1gT6XbWGmLhQ4oiUFtYA,1591
|
|
42
|
-
botocore-stubs/crt/__init__.pyi,sha256=ld7WjrC97qu1EHKIt8Ywq6yEQmUd43L474mBVDMtzZk,74
|
|
43
|
-
botocore-stubs/crt/auth.pyi,sha256=mH5XkYrECyl4Q2NStD1ISv9WFUTW0o4AA-d0Zq_GgWw,2126
|
|
44
|
-
botocore-stubs/docs/__init__.pyi,sha256=cwcuDVMgWPztmqaiKiAgV4tddB1e4haCifGGH8TPdw0,168
|
|
45
|
-
botocore-stubs/docs/client.pyi,sha256=d6JM41Q7e3jV3Tg-Tj0VMEpBBeE7GHWDQp8cShGNGH4,1085
|
|
46
|
-
botocore-stubs/docs/docstring.pyi,sha256=TBbme417zzQtIoCcwONc_eurgS6W4_cYixiVksK5UbM,459
|
|
47
|
-
botocore-stubs/docs/example.pyi,sha256=5HhzK4DNE6ePpBr0cY9eoSSxMMUGLx37MnsmPdXk5ZY,2293
|
|
48
|
-
botocore-stubs/docs/method.pyi,sha256=WOGhi8BlpcEhlNG_mqkiNCJ2J1b4uyvcZ6z9U18M1Ns,1228
|
|
49
|
-
botocore-stubs/docs/paginator.pyi,sha256=Q1uW8asq2zALv79QB4NvHYZ83Ee4F7KCUnbE_v6GCq0,583
|
|
50
|
-
botocore-stubs/docs/params.pyi,sha256=fPY-6ZURcdzM_SYVbdPDNsfOtlL4YLgTmPnDc6Z_49I,2117
|
|
51
|
-
botocore-stubs/docs/service.pyi,sha256=uJmR4F_fPGWTYS6wJXsX181uzO6yc81_HC5sgCJ2NU8,727
|
|
52
|
-
botocore-stubs/docs/shape.pyi,sha256=e7hWmOdJUe8wQIfGx2ajDVIm5jBhH-61KRP0ZXuZHkk,593
|
|
53
|
-
botocore-stubs/docs/sharedexample.pyi,sha256=MoxV88jq8lVwT51Gfj_3ozs_5dpXTU_Zw15mqSWwhsU,565
|
|
54
|
-
botocore-stubs/docs/translator.pyi,sha256=rOm9WYW8zPsiOxlNQB41BBmtWqpEwQ9GrTEpP-UhHek,401
|
|
55
|
-
botocore-stubs/docs/utils.pyi,sha256=UaQv6CgQDATKKaEXebIayNl-OVwVjgcotk3QAz7mgzg,1383
|
|
56
|
-
botocore-stubs/docs/waiter.pyi,sha256=Ow2LvaTFCYKQZP2fB_FhkHVnWacbZbycwgphb-MjD5g,618
|
|
57
|
-
botocore-stubs/docs/bcdoc/__init__.pyi,sha256=0GyZC5T8JbNLi4sOLVd1EJfsENhy4uFyQTmVEoOVwio,23
|
|
58
|
-
botocore-stubs/docs/bcdoc/docstringparser.pyi,sha256=Aw_8g6Z21nAGTgUsg-rbpusQpw0gxwwAcEreM0tNs0k,2119
|
|
59
|
-
botocore-stubs/docs/bcdoc/restdoc.pyi,sha256=Lr_S7QIsvu96-ply-6mmT-nUUbzedcsVPpXuflJcQrc,1889
|
|
60
|
-
botocore-stubs/docs/bcdoc/style.pyi,sha256=1qe5RNUxTF5ttnvSN1ih1lDjbrLI2TjrLu2GTIWAjvs,4163
|
|
61
|
-
botocore-stubs/retries/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
|
-
botocore-stubs/retries/adaptive.pyi,sha256=ky-5U8PwK6sJK9MyXvtP4nmgptvFksr4XTthZ_aAQDY,916
|
|
63
|
-
botocore-stubs/retries/base.pyi,sha256=bpAceLnCfqBMNpE1N6bFo4ibs0gUECvn5tkcgbeU7Pg,186
|
|
64
|
-
botocore-stubs/retries/bucket.pyi,sha256=duw9XL9XJIW2JOw4pKCdcx0XrBftA7kSq8srx7npK_Y,652
|
|
65
|
-
botocore-stubs/retries/quota.pyi,sha256=L3mH_JKJBKtRqTF6aBXnAo6ZfC5CgO3Got1MVnvAI4o,348
|
|
66
|
-
botocore-stubs/retries/special.pyi,sha256=CNzWVCfUjWXmiMH-s9w6UDF0qDHniIQ-IdzAlbPq5hQ,367
|
|
67
|
-
botocore-stubs/retries/standard.pyi,sha256=QQGtCbC8TSbAorWXmjwUp1OSQ3Pf3NYgb19FQlD4UI0,4266
|
|
68
|
-
botocore-stubs/retries/throttling.pyi,sha256=9CjqK2oro8ddPB-vW0_X-LK7O9gosJjY66hoFdJRIwo,485
|
|
69
|
-
botocore_stubs-1.35.69.dist-info/LICENSE,sha256=YIdUJ_cFRZScLZQFyRT_O8yCCxXFhFKmXaqgDpe3rpM,1071
|
|
70
|
-
botocore_stubs-1.35.69.dist-info/METADATA,sha256=hz8-ZU6_Q-S297MRc0OlHCqYYTyrzje75IfV9oDwtnA,4664
|
|
71
|
-
botocore_stubs-1.35.69.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
72
|
-
botocore_stubs-1.35.69.dist-info/top_level.txt,sha256=hB4vH6fIntn8CrZExgrgxRrlukQb06YRGFcOvWZ2th8,15
|
|
73
|
-
botocore_stubs-1.35.69.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|