botocore-stubs 1.34.66__py3-none-any.whl → 1.35.99__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.

Files changed (72) hide show
  1. botocore-stubs/__init__.pyi +8 -2
  2. botocore-stubs/args.pyi +27 -26
  3. botocore-stubs/auth.pyi +38 -29
  4. botocore-stubs/awsrequest.pyi +29 -23
  5. botocore-stubs/client.pyi +44 -35
  6. botocore-stubs/compat.pyi +23 -13
  7. botocore-stubs/compress.pyi +8 -3
  8. botocore-stubs/config.pyi +29 -29
  9. botocore-stubs/configloader.pyi +11 -5
  10. botocore-stubs/configprovider.pyi +40 -28
  11. botocore-stubs/credentials.pyi +105 -93
  12. botocore-stubs/crt/__init__.pyi +6 -2
  13. botocore-stubs/crt/auth.pyi +6 -2
  14. botocore-stubs/discovery.pyi +30 -14
  15. botocore-stubs/docs/__init__.pyi +6 -2
  16. botocore-stubs/docs/bcdoc/__init__.pyi +6 -0
  17. botocore-stubs/docs/bcdoc/docstringparser.pyi +13 -7
  18. botocore-stubs/docs/bcdoc/restdoc.pyi +27 -17
  19. botocore-stubs/docs/bcdoc/style.pyi +13 -7
  20. botocore-stubs/docs/client.pyi +10 -4
  21. botocore-stubs/docs/docstring.pyi +6 -2
  22. botocore-stubs/docs/example.pyi +34 -25
  23. botocore-stubs/docs/method.pyi +23 -16
  24. botocore-stubs/docs/paginator.pyi +9 -2
  25. botocore-stubs/docs/params.pyi +31 -22
  26. botocore-stubs/docs/service.pyi +14 -9
  27. botocore-stubs/docs/shape.pyi +11 -4
  28. botocore-stubs/docs/sharedexample.pyi +19 -5
  29. botocore-stubs/docs/translator.pyi +8 -2
  30. botocore-stubs/docs/utils.pyi +15 -10
  31. botocore-stubs/docs/waiter.pyi +8 -3
  32. botocore-stubs/endpoint.pyi +24 -14
  33. botocore-stubs/endpoint_provider.pyi +41 -40
  34. botocore-stubs/errorfactory.pyi +9 -3
  35. botocore-stubs/eventstream.pyi +22 -16
  36. botocore-stubs/exceptions.pyi +10 -10
  37. botocore-stubs/handlers.pyi +36 -14
  38. botocore-stubs/history.pyi +8 -2
  39. botocore-stubs/hooks.pyi +28 -22
  40. botocore-stubs/httpchecksum.pyi +15 -10
  41. botocore-stubs/httpsession.pyi +23 -17
  42. botocore-stubs/loaders.pyi +19 -13
  43. botocore-stubs/model.pyi +60 -44
  44. botocore-stubs/monitoring.pyi +29 -22
  45. botocore-stubs/paginate.pyi +38 -24
  46. botocore-stubs/parsers.pyi +13 -7
  47. botocore-stubs/regions.pyi +38 -29
  48. botocore-stubs/response.pyi +10 -4
  49. botocore-stubs/retries/adaptive.pyi +7 -1
  50. botocore-stubs/retries/base.pyi +9 -3
  51. botocore-stubs/retries/bucket.pyi +13 -9
  52. botocore-stubs/retries/quota.pyi +11 -5
  53. botocore-stubs/retries/special.pyi +9 -2
  54. botocore-stubs/retries/standard.pyi +32 -24
  55. botocore-stubs/retries/throttling.pyi +6 -0
  56. botocore-stubs/retryhandler.pyi +12 -6
  57. botocore-stubs/serialize.pyi +14 -8
  58. botocore-stubs/session.pyi +53 -55
  59. botocore-stubs/signers.pyi +40 -23
  60. botocore-stubs/stub.pyi +15 -15
  61. botocore-stubs/tokens.pyi +12 -6
  62. botocore-stubs/translate.pyi +12 -5
  63. botocore-stubs/useragent.pyi +11 -5
  64. botocore-stubs/utils.pyi +86 -76
  65. botocore-stubs/validate.pyi +7 -1
  66. botocore-stubs/waiter.pyi +11 -5
  67. {botocore_stubs-1.34.66.dist-info → botocore_stubs-1.35.99.dist-info}/METADATA +39 -20
  68. botocore_stubs-1.35.99.dist-info/RECORD +73 -0
  69. {botocore_stubs-1.34.66.dist-info → botocore_stubs-1.35.99.dist-info}/WHEEL +2 -1
  70. botocore_stubs-1.35.99.dist-info/top_level.txt +1 -0
  71. botocore_stubs-1.34.66.dist-info/RECORD +0 -72
  72. {botocore_stubs-1.34.66.dist-info → botocore_stubs-1.35.99.dist-info}/LICENSE +0 -0
botocore-stubs/utils.pyi CHANGED
@@ -1,17 +1,18 @@
1
+ """
2
+ Type annotations for botocore.utils module.
3
+
4
+ Copyright 2024 Vlad Emelianov
5
+ """
6
+
1
7
  import datetime
2
8
  from logging import Logger
3
9
  from typing import (
4
10
  Any,
5
11
  Callable,
6
- Dict,
7
12
  Generic,
8
13
  Iterable,
9
- List,
10
14
  Mapping,
11
- Optional,
12
15
  Pattern,
13
- Tuple,
14
- Type,
15
16
  TypeVar,
16
17
  )
17
18
 
@@ -63,12 +64,12 @@ _V = TypeVar("_V")
63
64
  DEFAULT_METADATA_SERVICE_TIMEOUT: int
64
65
  METADATA_BASE_URL: str
65
66
  METADATA_BASE_URL_IPv6: str
66
- METADATA_ENDPOINT_MODES: Tuple[str, ...]
67
+ METADATA_ENDPOINT_MODES: tuple[str, ...]
67
68
  SAFE_CHARS: str
68
69
  LABEL_RE: Pattern[str]
69
- RETRYABLE_HTTP_ERRORS: Tuple[Any, ...]
70
- S3_ACCELERATE_WHITELIST: List[str]
71
- EVENT_ALIASES: Dict[str, str]
70
+ RETRYABLE_HTTP_ERRORS: tuple[Any, ...]
71
+ S3_ACCELERATE_WHITELIST: list[str]
72
+ EVENT_ALIASES: dict[str, str]
72
73
  CHECKSUM_HEADER_PATTERN: Pattern[str]
73
74
  IPV4_PAT: str
74
75
  HEX_PAT: str
@@ -83,14 +84,14 @@ UNSAFE_URL_CHARS: frozenset[Any]
83
84
  def ensure_boolean(val: Any) -> bool: ...
84
85
  def resolve_imds_endpoint_mode(session: Session) -> str: ...
85
86
  def is_json_value_header(shape: Shape) -> bool: ...
86
- def has_header(header_name: Optional[str], headers: Mapping[str, Any]) -> bool: ...
87
+ def has_header(header_name: str | None, headers: Mapping[str, Any]) -> bool: ...
87
88
  def get_service_module_name(service_model: ServiceModel) -> str: ...
88
89
  def normalize_url_path(path: str) -> str: ...
89
- def normalize_boolean(val: Any) -> Optional[bool]: ...
90
+ def normalize_boolean(val: Any) -> bool | None: ...
90
91
  def remove_dot_segments(url: str) -> str: ...
91
- def validate_jmespath_for_set(expression: Optional[str]) -> None: ...
92
+ def validate_jmespath_for_set(expression: str | None) -> None: ...
92
93
  def set_value_from_jmespath(
93
- source: Dict[str, Any], expression: str, value: Any, is_first: bool = ...
94
+ source: dict[str, Any], expression: str, value: Any, is_first: bool = ...
94
95
  ) -> None: ...
95
96
  def is_global_accesspoint(context: Any) -> bool: ...
96
97
 
@@ -106,38 +107,38 @@ class IMDSFetcher:
106
107
  timeout: int = ...,
107
108
  num_attempts: int = ...,
108
109
  base_url: str = ...,
109
- env: Optional[Any] = ...,
110
- user_agent: Optional[Any] = ...,
111
- config: Optional[Any] = ...,
110
+ env: Any | None = ...,
111
+ user_agent: str | None = ...,
112
+ config: Any | None = ...,
112
113
  ) -> None: ...
113
114
  def get_base_url(self) -> str: ...
114
115
 
115
116
  class InstanceMetadataFetcher(IMDSFetcher):
116
- def retrieve_iam_role_credentials(self) -> Any: ...
117
+ def retrieve_iam_role_credentials(self) -> dict[str, Any]: ...
117
118
 
118
119
  class IMDSRegionProvider:
119
120
  def __init__(
120
121
  self,
121
122
  session: Session,
122
123
  environ: Any = ...,
123
- fetcher: Optional[IMDSFetcher] = ...,
124
+ fetcher: IMDSFetcher | None = ...,
124
125
  ) -> None: ...
125
126
  def provide(self) -> Any: ...
126
127
 
127
128
  class InstanceMetadataRegionFetcher(IMDSFetcher):
128
- def retrieve_region(self) -> Optional[str]: ...
129
+ def retrieve_region(self) -> str | None: ...
129
130
 
130
131
  def merge_dicts(
131
132
  dict1: Mapping[str, Any], dict2: Mapping[str, Any], append_lists: bool = ...
132
133
  ) -> None: ...
133
- def lowercase_dict(original: Mapping[str, Any]) -> Dict[str, Any]: ...
134
- def parse_key_val_file(filename: str, _open: Callable[..., Any] = ...) -> Dict[str, str]: ...
135
- def parse_key_val_file_contents(contents: str) -> Dict[str, str]: ...
134
+ def lowercase_dict(original: Mapping[str, Any]) -> dict[str, Any]: ...
135
+ def parse_key_val_file(filename: str, _open: Callable[..., Any] = ...) -> dict[str, str]: ...
136
+ def parse_key_val_file_contents(contents: str) -> dict[str, str]: ...
136
137
  def percent_encode_sequence(mapping: Mapping[str, Any], safe: Iterable[str] = ...) -> Any: ...
137
138
  def percent_encode(input_str: str, safe: Iterable[str] = ...) -> Any: ...
138
139
  def parse_timestamp(value: str) -> datetime.datetime: ...
139
140
  def parse_to_aware_datetime(value: str) -> datetime.datetime: ...
140
- def datetime2timestamp(dt: datetime.datetime, default_timezone: Optional[Any] = ...) -> int: ...
141
+ def datetime2timestamp(dt: datetime.datetime, default_timezone: Any | None = ...) -> int: ...
141
142
  def calculate_sha256(body: str, as_hex: bool = ...) -> str: ...
142
143
  def calculate_tree_hash(body: str) -> str: ...
143
144
 
@@ -157,24 +158,24 @@ def validate_region_name(region_name: str) -> None: ...
157
158
  def check_dns_name(bucket_name: str) -> bool: ...
158
159
  def fix_s3_host(
159
160
  request: Any,
160
- signature_version: Any,
161
- region_name: Any,
162
- default_endpoint_url: Optional[str] = ...,
161
+ signature_version: str,
162
+ region_name: str,
163
+ default_endpoint_url: str | None = ...,
163
164
  **kwargs: Any,
164
165
  ) -> None: ...
165
166
  def switch_to_virtual_host_style(
166
- request: Any, signature_version: Any, default_endpoint_url: Optional[str] = ..., **kwargs: Any
167
+ request: Any, signature_version: str, default_endpoint_url: str | None = ..., **kwargs: Any
167
168
  ) -> None: ...
168
169
  def instance_cache(func: Any) -> Any: ...
169
170
  def lru_cache_weakref(*cache_args: Any, **cache_kwargs: Any) -> Any: ...
170
- def switch_host_s3_accelerate(request: Any, operation_name: Any, **kwargs: Any) -> None: ...
171
- def switch_host_with_param(request: Any, param_name: Any) -> None: ...
172
- def deep_merge(base: Any, extra: Any) -> None: ...
173
- def hyphenize_service_id(service_id: Any) -> Any: ...
171
+ def switch_host_s3_accelerate(request: Any, operation_name: str, **kwargs: Any) -> None: ...
172
+ def switch_host_with_param(request: Any, param_name: str) -> None: ...
173
+ def deep_merge(base: dict[str, Any], extra: Mapping[str, Any]) -> None: ...
174
+ def hyphenize_service_id(service_id: str) -> Any: ...
174
175
 
175
176
  class IdentityCache:
176
177
  METHOD: str = ...
177
- def __init__(self, client: BaseClient, credential_cls: Type[Credentials]) -> None: ...
178
+ def __init__(self, client: BaseClient, credential_cls: type[Credentials]) -> None: ...
178
179
  def get_credentials(self, **kwargs: Any) -> Credentials: ...
179
180
  def build_refresh_callback(**kwargs: Any) -> Callable[..., Any]: ...
180
181
 
@@ -186,13 +187,10 @@ class S3ExpressIdentityResolver:
186
187
  def __init__(
187
188
  self,
188
189
  client: BaseClient,
189
- credential_cls: Type[Credentials],
190
- cache: Optional[S3ExpressIdentityCache] = ...,
191
- ) -> None: ...
192
- def register(self, event_emitter: Optional[BaseEventHooks] = ...) -> None: ...
193
- def inject_signing_cache_key(
194
- self, params: Mapping[str, Any], context: Mapping[str, Any], **kwargs: Any
190
+ credential_cls: type[Credentials],
191
+ cache: S3ExpressIdentityCache | None = ...,
195
192
  ) -> None: ...
193
+ def register(self, event_emitter: BaseEventHooks | None = ...) -> None: ...
196
194
  def apply_signing_cache_key(
197
195
  self, params: Mapping[str, Any], context: Mapping[str, Any], **kwargs: Any
198
196
  ) -> None: ...
@@ -209,9 +207,9 @@ class S3ExpressIdentityResolver:
209
207
 
210
208
  class S3RegionRedirectorv2:
211
209
  def __init__(
212
- self, endpoint_bridge: Any, client: BaseClient, cache: Optional[Any] = ...
210
+ self, endpoint_bridge: Any, client: BaseClient, cache: Any | None = ...
213
211
  ) -> None: ...
214
- def register(self, event_emitter: Optional[BaseEventHooks] = ...) -> None: ...
212
+ def register(self, event_emitter: BaseEventHooks | None = ...) -> None: ...
215
213
  def redirect_from_error(
216
214
  self,
217
215
  request_dict: Mapping[str, Any],
@@ -221,14 +219,18 @@ class S3RegionRedirectorv2:
221
219
  ) -> Any: ...
222
220
  def get_bucket_region(self, bucket: Any, response: Response) -> Any: ...
223
221
  def set_request_url(self, old_url: str, new_endpoint: str, **kwargs: Any) -> None: ...
224
- def redirect_from_cache(self, builtins: Any, params: Any, **kwargs: Any) -> None: ...
225
- def annotate_request_context(self, params: Any, context: Any, **kwargs: Any) -> None: ...
222
+ def redirect_from_cache(
223
+ self, builtins: dict[str, Any], params: Mapping[str, Any], **kwargs: Any
224
+ ) -> None: ...
225
+ def annotate_request_context(
226
+ self, params: Mapping[str, Any], context: Any, **kwargs: Any
227
+ ) -> None: ...
226
228
 
227
229
  class S3RegionRedirector:
228
230
  def __init__(
229
- self, endpoint_bridge: Any, client: BaseClient, cache: Optional[Any] = ...
231
+ self, endpoint_bridge: Any, client: BaseClient, cache: Any | None = ...
230
232
  ) -> None: ...
231
- def register(self, event_emitter: Optional[BaseEventHooks] = ...) -> None: ...
233
+ def register(self, event_emitter: BaseEventHooks | None = ...) -> None: ...
232
234
  def redirect_from_error(
233
235
  self,
234
236
  request_dict: Mapping[str, Any],
@@ -237,55 +239,61 @@ class S3RegionRedirector:
237
239
  **kwargs: Any,
238
240
  ) -> Any: ...
239
241
  def get_bucket_region(self, bucket: Any, response: Response) -> Any: ...
240
- def set_request_url(self, params: Any, context: Any, **kwargs: Any) -> None: ...
241
- def redirect_from_cache(self, params: Any, context: Any, **kwargs: Any) -> None: ...
242
+ def set_request_url(self, params: Any, context: Mapping[str, Any], **kwargs: Any) -> None: ...
243
+ def redirect_from_cache(
244
+ self, params: Any, context: Mapping[str, Any], **kwargs: Any
245
+ ) -> None: ...
242
246
 
243
247
  class InvalidArnException(ValueError): ...
244
248
 
245
249
  class ArnParser:
246
- def parse_arn(self, arn: str) -> Dict[str, Any]: ...
250
+ def parse_arn(self, arn: str) -> dict[str, Any]: ...
247
251
  @staticmethod
248
252
  def is_arn(value: str) -> bool: ...
249
253
 
250
254
  class S3ArnParamHandler:
251
- def __init__(self, arn_parser: Optional[Any] = ...) -> None: ...
255
+ def __init__(self, arn_parser: Any | None = ...) -> None: ...
252
256
  def register(self, event_emitter: BaseEventHooks) -> None: ...
253
- def handle_arn(self, params: Any, model: Any, context: Any, **kwargs: Any) -> None: ...
257
+ def handle_arn(
258
+ self, params: Mapping[str, Any], model: Any, context: Mapping[str, Any], **kwargs: Any
259
+ ) -> None: ...
254
260
 
255
261
  class S3EndpointSetter:
256
262
  def __init__(
257
263
  self,
258
264
  endpoint_resolver: BaseEndpointResolver,
259
- region: Optional[str] = ...,
260
- s3_config: Optional[Any] = ...,
261
- endpoint_url: Optional[str] = ...,
262
- partition: Optional[Any] = ...,
263
- use_fips_endpoint: Optional[bool] = ...,
265
+ region: str | None = ...,
266
+ s3_config: Any | None = ...,
267
+ endpoint_url: str | None = ...,
268
+ partition: Any | None = ...,
269
+ use_fips_endpoint: bool | None = ...,
264
270
  ) -> None: ...
265
271
  def register(self, event_emitter: BaseEventHooks) -> None: ...
266
272
  def set_endpoint(self, request: Any, **kwargs: Any) -> None: ...
267
273
  def update_endpoint_to_s3_object_lambda(
268
- self, params: Mapping[str, Any], context: Any, **kwargs: Any
274
+ self, params: Mapping[str, Any], context: Mapping[str, Any], **kwargs: Any
269
275
  ) -> None: ...
270
- def set_signer(self, context: Any, **kwargs: Any) -> str: ...
276
+ def set_signer(self, context: Mapping[str, Any], **kwargs: Any) -> str: ...
271
277
 
272
278
  class S3ControlEndpointSetter:
273
279
  def __init__(
274
280
  self,
275
281
  endpoint_resolver: BaseEndpointResolver,
276
- region: Optional[str] = ...,
277
- s3_config: Optional[Any] = ...,
278
- endpoint_url: Optional[str] = ...,
279
- partition: Optional[Any] = ...,
280
- use_fips_endpoint: Optional[bool] = ...,
282
+ region: str | None = ...,
283
+ s3_config: Any | None = ...,
284
+ endpoint_url: str | None = ...,
285
+ partition: Any | None = ...,
286
+ use_fips_endpoint: bool | None = ...,
281
287
  ) -> None: ...
282
288
  def register(self, event_emitter: BaseEventHooks) -> None: ...
283
289
  def set_endpoint(self, request: Any, **kwargs: Any) -> None: ...
284
290
 
285
291
  class S3ControlArnParamHandler:
286
- def __init__(self, arn_parser: Optional[Any] = ...) -> None: ...
292
+ def __init__(self, arn_parser: Any | None = ...) -> None: ...
287
293
  def register(self, event_emitter: BaseEventHooks) -> None: ...
288
- def handle_arn(self, params: Any, model: Any, context: Any, **kwargs: Any) -> None: ...
294
+ def handle_arn(
295
+ self, params: Mapping[str, Any], model: Any, context: Mapping[str, Any], **kwargs: Any
296
+ ) -> None: ...
289
297
 
290
298
  class S3ControlArnParamHandlerv2(S3ControlArnParamHandler): ...
291
299
 
@@ -294,14 +302,14 @@ class ContainerMetadataFetcher:
294
302
  RETRY_ATTEMPTS: int
295
303
  SLEEP_TIME: int
296
304
  IP_ADDRESS: str
297
- def __init__(self, session: Optional[Any] = ..., sleep: Any = ...) -> None: ...
298
- def retrieve_full_uri(self, full_url: str, headers: Optional[Any] = ...) -> Any: ...
305
+ def __init__(self, session: Any | None = ..., sleep: Any = ...) -> None: ...
306
+ def retrieve_full_uri(self, full_url: str, headers: Any | None = ...) -> Any: ...
299
307
  def retrieve_uri(self, relative_uri: str) -> Any: ...
300
308
  def full_url(self, relative_uri: str) -> Any: ...
301
309
 
302
- def get_environ_proxies(url: str) -> Dict[str, Any]: ...
310
+ def get_environ_proxies(url: str) -> dict[str, Any]: ...
303
311
  def should_bypass_proxies(url: str) -> bool: ...
304
- def determine_content_length(body: Any) -> Optional[int]: ...
312
+ def determine_content_length(body: Any) -> int | None: ...
305
313
  def get_encoding_from_headers(headers: Mapping[str, Any], default: str = ...) -> str: ...
306
314
  def calculate_md5(body: Any, **kwargs: Any) -> str: ...
307
315
  def conditionally_calculate_checksum(params: Mapping[str, Any], **kwargs: Any) -> str: ...
@@ -313,16 +321,16 @@ class FileWebIdentityTokenLoader:
313
321
  def __call__(self) -> Any: ...
314
322
 
315
323
  class SSOTokenLoader:
316
- def __init__(self, cache: Optional[Any] = ...) -> None: ...
317
- def save_token(self, start_url: str, token: str, session_name: Optional[str] = ...) -> None: ...
318
- def __call__(self, start_url: str, session_name: Optional[str] = ...) -> Any: ...
324
+ def __init__(self, cache: Any | None = ...) -> None: ...
325
+ def save_token(self, start_url: str, token: str, session_name: str | None = ...) -> None: ...
326
+ def __call__(self, start_url: str, session_name: str | None = ...) -> Any: ...
319
327
 
320
328
  class EventbridgeSignerSetter:
321
329
  def __init__(
322
330
  self,
323
331
  endpoint_resolver: BaseEndpointResolver,
324
- region: Optional[str] = None,
325
- endpoint_url: Optional[str] = None,
332
+ region: str | None = ...,
333
+ endpoint_url: str | None = ...,
326
334
  ) -> None: ...
327
335
  def register(self, event_emitter: BaseEventHooks) -> None: ...
328
336
  def set_endpoint_url(
@@ -332,11 +340,13 @@ class EventbridgeSignerSetter:
332
340
  self, params: Mapping[str, Any], context: Mapping[str, Any], **kwargs: Any
333
341
  ) -> None: ...
334
342
 
335
- def is_s3_accelerate_url(url: Optional[str]) -> bool: ...
343
+ def is_s3_accelerate_url(url: str | None) -> bool: ...
336
344
 
337
345
  class JSONFileCache:
338
346
  CACHE_DIR: Any = ...
339
- def __init__(self, working_dir: Any = ..., dumps_func: Optional[Any] = ...) -> None: ...
347
+ def __init__(
348
+ self, working_dir: Any = ..., dumps_func: Callable[[Any], str] | None = ...
349
+ ) -> None: ...
340
350
  def __contains__(self, cache_key: str) -> bool: ...
341
351
  def __getitem__(self, cache_key: str) -> Any: ...
342
352
  def __delitem__(self, cache_key: str) -> None: ...
@@ -344,5 +354,5 @@ class JSONFileCache:
344
354
 
345
355
  def is_s3express_bucket(bucket: str) -> bool: ...
346
356
 
347
- SERVICE_NAME_ALIASES: Dict[str, str] = ...
348
- CLIENT_NAME_TO_HYPHENIZED_SERVICE_ID_OVERRIDES: Dict[str, str] = ...
357
+ SERVICE_NAME_ALIASES: dict[str, str] = ...
358
+ CLIENT_NAME_TO_HYPHENIZED_SERVICE_ID_OVERRIDES: dict[str, str] = ...
@@ -1,3 +1,9 @@
1
+ """
2
+ Type annotations for botocore.validate module.
3
+
4
+ Copyright 2024 Vlad Emelianov
5
+ """
6
+
1
7
  from typing import Any, Iterable, Mapping
2
8
 
3
9
  from botocore.exceptions import ParamValidationError as ParamValidationError
@@ -9,7 +15,7 @@ from botocore.utils import parse_to_aware_datetime as parse_to_aware_datetime
9
15
  def validate_parameters(params: Mapping[str, Any], shape: Shape) -> None: ...
10
16
  def type_check(valid_types: Iterable[Any]) -> Any: ...
11
17
  def range_check(
12
- name: str, value: Any, shape: Shape, error_type: Any, errors: "ValidationErrors"
18
+ name: str, value: Any, shape: Shape, error_type: Any, errors: ValidationErrors
13
19
  ) -> None: ...
14
20
 
15
21
  class ValidationErrors:
botocore-stubs/waiter.pyi CHANGED
@@ -1,5 +1,11 @@
1
+ """
2
+ Type annotations for botocore.waiter module.
3
+
4
+ Copyright 2024 Vlad Emelianov
5
+ """
6
+
1
7
  from logging import Logger
2
- from typing import Any, Callable, Dict, List, Mapping
8
+ from typing import Any, Callable, Mapping
3
9
 
4
10
  from botocore.client import BaseClient
5
11
 
@@ -20,9 +26,9 @@ class WaiterModel:
20
26
  SUPPORTED_VERSION: int = ...
21
27
  def __init__(self, waiter_config: Mapping[str, Any]) -> None:
22
28
  self.version: str
23
- self.waiter_names: List[str]
29
+ self.waiter_names: list[str]
24
30
 
25
- def get_waiter(self, waiter_name: str) -> "SingleWaiterConfig": ...
31
+ def get_waiter(self, waiter_name: str) -> SingleWaiterConfig: ...
26
32
 
27
33
  class SingleWaiterConfig:
28
34
  def __init__(self, single_waiter_config: Mapping[str, Any]) -> None:
@@ -32,7 +38,7 @@ class SingleWaiterConfig:
32
38
  self.max_attempts: int
33
39
 
34
40
  @property
35
- def acceptors(self) -> List["AcceptorConfig"]: ...
41
+ def acceptors(self) -> list[AcceptorConfig]: ...
36
42
 
37
43
  class AcceptorConfig:
38
44
  def __init__(self, config: Mapping[str, Any]) -> None:
@@ -50,6 +56,6 @@ class Waiter:
50
56
  self, name: str, config: Mapping[str, Any], operation_method: Callable[..., Any]
51
57
  ) -> None:
52
58
  self.name: str
53
- self.config: Dict[str, Any]
59
+ self.config: dict[str, Any]
54
60
 
55
61
  def wait(self, **kwargs: Any) -> None: ...
@@ -1,13 +1,36 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: botocore-stubs
3
- Version: 1.34.66
3
+ Version: 1.35.99
4
4
  Summary: Type annotations and code completion for botocore
5
- Home-page: https://youtype.github.io/mypy_boto3_builder/
6
- License: MIT
5
+ Author-email: Vlad Emelianov <vlad.emelianov.nz@gmail.com>
6
+ License: MIT License
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
+
28
+ Project-URL: Homepage, https://github.com/youtype/botocore-stubs
29
+ Project-URL: Documentation, https://youtype.github.io/mypy_boto3_builder/
30
+ Project-URL: Repository, https://github.com/youtype/botocore-stubs
31
+ Project-URL: Changelog, https://github.com/youtype/botocore-stubs/releases
32
+ Project-URL: Issues, https://github.com/youtype/botocore-stubs/issues
7
33
  Keywords: botocore,type-annotations,pyright,mypy,boto3
8
- Author: Vlad Emelianov
9
- Author-email: vlad.emelianov.nz@gmail.com
10
- Requires-Python: >=3.8,<4.0
11
34
  Classifier: Development Status :: 5 - Production/Stable
12
35
  Classifier: Environment :: Console
13
36
  Classifier: License :: OSI Approved :: MIT License
@@ -19,28 +42,25 @@ Classifier: Programming Language :: Python :: 3.9
19
42
  Classifier: Programming Language :: Python :: 3.10
20
43
  Classifier: Programming Language :: Python :: 3.11
21
44
  Classifier: Programming Language :: Python :: 3.12
22
- Classifier: Programming Language :: Python :: 3 :: Only
23
45
  Classifier: Programming Language :: Python :: 3.13
24
- Classifier: Programming Language :: Python :: 3.7
46
+ Classifier: Programming Language :: Python :: 3.14
47
+ Classifier: Programming Language :: Python :: 3 :: Only
25
48
  Classifier: Programming Language :: Python :: Implementation :: CPython
26
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
27
49
  Classifier: Typing :: Stubs Only
28
- Provides-Extra: botocore
29
- Requires-Dist: botocore ; extra == "botocore"
30
- Requires-Dist: types-awscrt
31
- Requires-Dist: typing-extensions (>=4.1.0) ; python_version < "3.9"
32
- Project-URL: Bug Tracker, https://github.com/youtype/botocore-stubs/issues
33
- Project-URL: Documentation, https://youtype.github.io/mypy_boto3_builder/
34
- Project-URL: Repository, https://github.com/youtype/botocore-stubs
35
- Project-URL: Source, https://github.com/youtype/botocore-stubs
50
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
51
+ Requires-Python: >=3.8
36
52
  Description-Content-Type: text/markdown
53
+ License-File: LICENSE
54
+ Requires-Dist: types-awscrt
55
+ Provides-Extra: botocore
56
+ Requires-Dist: botocore; extra == "botocore"
37
57
 
38
58
  # botocore-stubs
39
59
 
40
60
  [![PyPI - botocore-stubs](https://img.shields.io/pypi/v/botocore-stubs.svg?color=blue&label=botocore-stubs)](https://pypi.org/project/botocore-stubs)
41
61
  [![PyPI - botocore](https://img.shields.io/pypi/v/botocore.svg?color=blue&label=botocore)](https://pypi.org/project/botocore)
42
62
  [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/botocore-stubs.svg?color=blue)](https://pypi.org/project/botocore-stubs)
43
- [![PyPI - Downloads](https://static.pepy.tech/badge/botocore-stubs)](https://pepy.tech/project/botocore-stubs)
63
+ [![PyPI - Downloads](https://static.pepy.tech/badge/botocore-stubs)](https://pypistats.org/packages/botocore-stubs)
44
64
 
45
65
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
46
66
 
@@ -74,4 +94,3 @@ Use [mypy](https://github.com/python/mypy) or [pyright](https://github.com/micro
74
94
 
75
95
  Please reports any bugs or request new features in
76
96
  [botocore-stubs](https://github.com/youtype/botocore-stubs/issues/) repository.
77
-
@@ -0,0 +1,73 @@
1
+ botocore-stubs/__init__.pyi,sha256=bq_q1YexziG-wmFw5JtHoY9Twws6zGcxJH3XzOEtA4A,657
2
+ botocore-stubs/args.pyi,sha256=BSQUiOsOQkzyLKd01CrqtbNoc6QQq4a0vE3YgxE4fUg,2915
3
+ botocore-stubs/auth.pyi,sha256=bx9CSI3gqIfcKrRs79NiTtyFR_VL9nJ8x02_s7J9wtc,5403
4
+ botocore-stubs/awsrequest.pyi,sha256=SoNBIFfY3f2K_y5_DbOeRd5tx9dbW517Dw2U4057fWg,4164
5
+ botocore-stubs/client.pyi,sha256=iSaqkgXJ_jxiaESy1fnYh5AJ5ORo9WRwDQBDh6BsvNI,6400
6
+ botocore-stubs/compat.pyi,sha256=8ZTFD4NMCAER9QXM7xnWXAZ39lNnLhUPYK0QCSAe4Zs,2505
7
+ botocore-stubs/compress.pyi,sha256=WnJqbpiKOeIX1GKbu-VzsB_ViGmshAR0l6HSxPHyjNY,638
8
+ botocore-stubs/config.pyi,sha256=jF2oM6ce-E2Tcogu1wtDeG47KvHQq_C2lZeXVVOYSJQ,2392
9
+ botocore-stubs/configloader.pyi,sha256=sIohC4ttDc1PO79oxjoN3h4mZ5idBb4JaCL_K8Ug3so,420
10
+ botocore-stubs/configprovider.pyi,sha256=7Sf-JpAHwlSW-uxV16HuA1GVk_6zGR4vAJujc3inYf0,4098
11
+ botocore-stubs/credentials.pyi,sha256=q6Cb5fx2tBU2pRybZG8yOQ_tvnnUzLib86i_v0_IbAM,11897
12
+ botocore-stubs/discovery.pyi,sha256=Ub4VvxNHAWlR00wk-xOpM7kE-22-sQwtUfODNyh91-4,2599
13
+ botocore-stubs/endpoint.pyi,sha256=a5BcrVSnVsO_3FEsarvu7TlzOFerwm-Kg0FJuQWv7Wc,2491
14
+ botocore-stubs/endpoint_provider.pyi,sha256=YrTX7bz0CkftlWnOvq6jtogA07jXtMd5BTG46I1SfEI,6204
15
+ botocore-stubs/errorfactory.pyi,sha256=vh4ivNosvbfvb0kKrZMy8fLRyW9n0_7uz4qcz2uX2K4,807
16
+ botocore-stubs/eventstream.pyi,sha256=xwoNa8-FY4qsxvBEPveJlSDQxRL-TIpkAaUsC1Z-kW0,3541
17
+ botocore-stubs/exceptions.pyi,sha256=nfNoTH5pcTtM7bEhprz3Fc-hsP7s6Kw0lC7IJ5EpAQI,21507
18
+ botocore-stubs/handlers.pyi,sha256=oiobccFPonnTfVPrENgCUkCefUiuUGCMlSdOYLGUn3M,7763
19
+ botocore-stubs/history.pyi,sha256=f1_gdh1OQR2PAiXAn_ZmE5FGsrDk6TEw2KgzYgOxNeU,643
20
+ botocore-stubs/hooks.pyi,sha256=uoQSGw42m2j_v1G_wCUTkO43NsB0keWkOMI-88FxIPk,3050
21
+ botocore-stubs/httpchecksum.pyi,sha256=kFiWpW8wsOdMuYMFq8jvXXgH-bVdxElemNEZfUi7CYE,2728
22
+ botocore-stubs/httpsession.pyi,sha256=QaXu2NwCdlZcc5vPvzpZTyrQG_2SowD51Wizg2Ag_GY,2346
23
+ botocore-stubs/loaders.pyi,sha256=FrvA9Vf5NJthc9A8JWYcKxHy5iL_H47CvhB19nOs6X0,2041
24
+ botocore-stubs/model.pyi,sha256=zoLLSDZhgY-4f30wrezFqE5eH8-qfYYr0MTafgTNGYM,6778
25
+ botocore-stubs/monitoring.pyi,sha256=RBPAe0RXt_tllJQRbFKsqxOR3jjZNFrpITx4SNCTKSw,2893
26
+ botocore-stubs/paginate.pyi,sha256=3J2Hz5gzxNa17VK3EqCnMq_vGUukk6394x8YtSzb_Ps,2287
27
+ botocore-stubs/parsers.pyi,sha256=CGEoLBmCQ_JNS2B297EevHeqyg-gx3G9v1JLET6ESc0,2148
28
+ botocore-stubs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
+ botocore-stubs/regions.pyi,sha256=ycpcJyCV_FRUpUUuuV69bNjvzoD1cp7fNklBfaDvjNY,3732
30
+ botocore-stubs/response.pyi,sha256=vIKW4YrfSV8rMjAVmOZyaBejmLNEW4E6Ynz1Fvh5aY4,1094
31
+ botocore-stubs/retryhandler.pyi,sha256=1IJY12bsnpsJZCWqohg3Nd7P75i2zilZyysgSMCB4P8,2573
32
+ botocore-stubs/serialize.pyi,sha256=EJDKPeDaVPlydVdcMQ6MHJRCNvv5X2LCuo7HmqN-IRA,1799
33
+ botocore-stubs/session.pyi,sha256=7cEagjpcZitLahn1t_J9aJhsVMfdT5z6au83v5QSukg,6875
34
+ botocore-stubs/signers.pyi,sha256=gmDq0KvpxVvAETiT9TSVPVgvAOUdiGakLiDQlwg2MQ0,4101
35
+ botocore-stubs/stub.pyi,sha256=kaYgZ43jDoduFAcZ46tefbUySr8s3KAV7OgE9kNzJyo,1864
36
+ botocore-stubs/tokens.pyi,sha256=cEh_-2PZtVcOAYy9bYM_E2slTugXE_je9P6pH1XsPHw,1255
37
+ botocore-stubs/translate.pyi,sha256=goxDZSZi9mSk37TzwGcwAK5Rzmezi7igx6iHSlT4f_M,491
38
+ botocore-stubs/useragent.pyi,sha256=zdDuZjvjdw0acGoVg1lrSYYikKRdIa8cmDqTuEiN1sE,1245
39
+ botocore-stubs/utils.pyi,sha256=Zw8iZNYcAhSRZlxTU8ncph6YFHB1EyuVk_yMCicst4s,14210
40
+ botocore-stubs/validate.pyi,sha256=xLNlz6QQQZgjLSeY47HkxWnFMSo7wcqOMVZyzXM5ZGo,1257
41
+ botocore-stubs/waiter.pyi,sha256=ao-XDuw3lfXpqBzEvRaErJyZJVPmBUlnLpZGjxcR8Oc,1660
42
+ botocore-stubs/crt/__init__.pyi,sha256=tg3NAIDKMHZFojFp3rPkAQmYDQ5omzn0-40odlp1RYg,130
43
+ botocore-stubs/crt/auth.pyi,sha256=vog9__iMXIUw4JbqJV6SSV9H_C3B6OAq_c8lP0eHWBU,2182
44
+ botocore-stubs/docs/__init__.pyi,sha256=YFKlw_IzzYY2hc1vRIqrPLqObfaHGaWzre3VbkfK98Y,227
45
+ botocore-stubs/docs/client.pyi,sha256=_CByYmNcfN-rW03wtTf2W4Xli6VVeDTCmE9J20XLgZE,1143
46
+ botocore-stubs/docs/docstring.pyi,sha256=13KTx5QAQg-NEj6Mqu0FjM-n0o9stCfMgSt2X08MpCQ,483
47
+ botocore-stubs/docs/example.pyi,sha256=UG9mCdsWPBzjNpRSvHo2WmcUIOmhXpu2rBp5tcj-tlQ,2521
48
+ botocore-stubs/docs/method.pyi,sha256=8rFyWnjO9iGW0mdoCzyvpi8X1MIB6sD5CcQJsckXhhg,1386
49
+ botocore-stubs/docs/paginator.pyi,sha256=lXKHKLkfZXtnKWvF_4Q2pT3t6caGlitmXBETgjRrHHo,762
50
+ botocore-stubs/docs/params.pyi,sha256=X99eMtG11fwKsdqxFGGsm0XxLzAIOsIMKAnbJ3UWaXg,2342
51
+ botocore-stubs/docs/service.pyi,sha256=gIZkI-g1-1XXA3vHWmV0LVW0tp5qV_M30A1k5x5VlrI,931
52
+ botocore-stubs/docs/shape.pyi,sha256=HWtptdhlSQxg5BIXvQuveYov8HgD_6eFg9nRoQfRmNo,771
53
+ botocore-stubs/docs/sharedexample.pyi,sha256=gXeKh9kpVLe84uzaD3zJVHv_UwISfkB4V9sQfQkA8R4,888
54
+ botocore-stubs/docs/translator.pyi,sha256=GlP_dnHt6DAf9Ipkv0Ac84PmEz0hhvwmI0qYpG8QMdw,489
55
+ botocore-stubs/docs/utils.pyi,sha256=bkLj_i-U37jG8J2hXxlkdGzSBPmcbdnbh2nOpV4Yeq8,1419
56
+ botocore-stubs/docs/waiter.pyi,sha256=zO-tD6Q8NaGBcDYXC4VJFrGycKivV-3HOfcjgmTRsOY,770
57
+ botocore-stubs/docs/bcdoc/__init__.pyi,sha256=ZVUSA2boZypZvDuqIrcHeAjxxjKMYGsFzINkF58pk0M,112
58
+ botocore-stubs/docs/bcdoc/docstringparser.pyi,sha256=p4Bql8_4SZKnTWI48LjeQ-iUDTk1K7yfTu_Fq8ylNgk,2211
59
+ botocore-stubs/docs/bcdoc/restdoc.pyi,sha256=0OSesG5TzSD4idbXY2g9KY0bc_u0KoiaES81AowCrnU,2120
60
+ botocore-stubs/docs/bcdoc/style.pyi,sha256=yl4cPYfuiuk_WXfdfkmRrBpGCVGtzqdba4um3IKRdRw,4220
61
+ botocore-stubs/retries/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
+ botocore-stubs/retries/adaptive.pyi,sha256=7zlZi-2auLAbAVTStKyNzfXwEWgHYzaE-YvZvNsmoQ8,1009
63
+ botocore-stubs/retries/base.pyi,sha256=pD9peZu8qkXGNeVv5hQcsYGQGc5VY_6Vc5vOoySlkks,323
64
+ botocore-stubs/retries/bucket.pyi,sha256=-P-QsBTbKqtqXnGc_5J7ryAKtL_Ro6zVsT_XVXewkho,736
65
+ botocore-stubs/retries/quota.pyi,sha256=qirrw9ROff-26VDXHg8tFpv4tIU9O4njyCBVunfdvVw,433
66
+ botocore-stubs/retries/special.pyi,sha256=WvtxL3La8vMIzHF958Pa8zOeU-aNbW97Ru85UmjBLuE,530
67
+ botocore-stubs/retries/standard.pyi,sha256=LRPCpvxu3HG6597g03Ef_yn6GYZ6hg5et3BsBIGola8,4451
68
+ botocore-stubs/retries/throttling.pyi,sha256=7XppYXEMcIcSd94RacezLzxgm5QFzlkKNkxXPkRBDvc,582
69
+ botocore_stubs-1.35.99.dist-info/LICENSE,sha256=YIdUJ_cFRZScLZQFyRT_O8yCCxXFhFKmXaqgDpe3rpM,1071
70
+ botocore_stubs-1.35.99.dist-info/METADATA,sha256=hWuqvnARnEpXxXAXL7MI1LNobmEyy84XlHwF7nmgC1Q,4605
71
+ botocore_stubs-1.35.99.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
72
+ botocore_stubs-1.35.99.dist-info/top_level.txt,sha256=hB4vH6fIntn8CrZExgrgxRrlukQb06YRGFcOvWZ2th8,15
73
+ botocore_stubs-1.35.99.dist-info/RECORD,,
@@ -1,4 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.9.0
2
+ Generator: setuptools (75.8.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ botocore-stubs
@@ -1,72 +0,0 @@
1
- botocore-stubs/__init__.pyi,sha256=KwFA19P5TNiNKq_nQjiqDz4-umtoaug7PNWY3VjVY8Y,586
2
- botocore-stubs/args.pyi,sha256=e3cUgaHGN-DssT2R0--Xa9jaF2y2z9JSTClRpHPy6eQ,2923
3
- botocore-stubs/auth.pyi,sha256=awtpcETSTucIPYVI61eKSvE-dDVqWbPRPVLkq9at1c4,5122
4
- botocore-stubs/awsrequest.pyi,sha256=S97jiNSn9oUOEGTw2gXWx34KAtoGvKUuWkZ3DP3e2Q4,4063
5
- botocore-stubs/client.pyi,sha256=NS_IoDpOCxdQ4F2_yUxbMp3nE5_kq9CVkyFc_Iy1DQc,6013
6
- botocore-stubs/compat.pyi,sha256=qRCq9VnamOydVPweV89OEBHUSWvWAb1RTZo3zkeAJFI,2291
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/crt/__init__.pyi,sha256=ld7WjrC97qu1EHKIt8Ywq6yEQmUd43L474mBVDMtzZk,74
13
- botocore-stubs/crt/auth.pyi,sha256=mH5XkYrECyl4Q2NStD1ISv9WFUTW0o4AA-d0Zq_GgWw,2126
14
- botocore-stubs/discovery.pyi,sha256=yrg9MOUXDSA3MQ9gheKYdmzEW2dozOxHqV-b91PQqhY,2307
15
- botocore-stubs/docs/__init__.pyi,sha256=cwcuDVMgWPztmqaiKiAgV4tddB1e4haCifGGH8TPdw0,168
16
- botocore-stubs/docs/bcdoc/__init__.pyi,sha256=0GyZC5T8JbNLi4sOLVd1EJfsENhy4uFyQTmVEoOVwio,23
17
- botocore-stubs/docs/bcdoc/docstringparser.pyi,sha256=Aw_8g6Z21nAGTgUsg-rbpusQpw0gxwwAcEreM0tNs0k,2119
18
- botocore-stubs/docs/bcdoc/restdoc.pyi,sha256=OmnPteqKUglOEDSEv8OipHLjYqqkztTI7hH5p9HDqFM,1839
19
- botocore-stubs/docs/bcdoc/style.pyi,sha256=1qe5RNUxTF5ttnvSN1ih1lDjbrLI2TjrLu2GTIWAjvs,4163
20
- botocore-stubs/docs/client.pyi,sha256=d6JM41Q7e3jV3Tg-Tj0VMEpBBeE7GHWDQp8cShGNGH4,1085
21
- botocore-stubs/docs/docstring.pyi,sha256=TBbme417zzQtIoCcwONc_eurgS6W4_cYixiVksK5UbM,459
22
- botocore-stubs/docs/example.pyi,sha256=5HhzK4DNE6ePpBr0cY9eoSSxMMUGLx37MnsmPdXk5ZY,2293
23
- botocore-stubs/docs/method.pyi,sha256=WOGhi8BlpcEhlNG_mqkiNCJ2J1b4uyvcZ6z9U18M1Ns,1228
24
- botocore-stubs/docs/paginator.pyi,sha256=Q1uW8asq2zALv79QB4NvHYZ83Ee4F7KCUnbE_v6GCq0,583
25
- botocore-stubs/docs/params.pyi,sha256=fPY-6ZURcdzM_SYVbdPDNsfOtlL4YLgTmPnDc6Z_49I,2117
26
- botocore-stubs/docs/service.pyi,sha256=uJmR4F_fPGWTYS6wJXsX181uzO6yc81_HC5sgCJ2NU8,727
27
- botocore-stubs/docs/shape.pyi,sha256=e7hWmOdJUe8wQIfGx2ajDVIm5jBhH-61KRP0ZXuZHkk,593
28
- botocore-stubs/docs/sharedexample.pyi,sha256=MoxV88jq8lVwT51Gfj_3ozs_5dpXTU_Zw15mqSWwhsU,565
29
- botocore-stubs/docs/translator.pyi,sha256=rOm9WYW8zPsiOxlNQB41BBmtWqpEwQ9GrTEpP-UhHek,401
30
- botocore-stubs/docs/utils.pyi,sha256=UaQv6CgQDATKKaEXebIayNl-OVwVjgcotk3QAz7mgzg,1383
31
- botocore-stubs/docs/waiter.pyi,sha256=Ow2LvaTFCYKQZP2fB_FhkHVnWacbZbycwgphb-MjD5g,618
32
- botocore-stubs/endpoint.pyi,sha256=JrnO1yw5c36YdAzUTSjGzKi---8zfJrQoBYRuWo_S3A,2205
33
- botocore-stubs/endpoint_provider.pyi,sha256=MfSXa4daZvx40SiwQq9l6KWmuuBtuvuvMbCgbOaATYg,6191
34
- botocore-stubs/errorfactory.pyi,sha256=hm3sTAznyj_iY5xy7_KCxPzZV3GnWUacqfDctvHgYDs,708
35
- botocore-stubs/eventstream.pyi,sha256=hg0tOkbNBOXRBUP1sqLQExhPF7CX628c6LYtMrUjyAY,3464
36
- botocore-stubs/exceptions.pyi,sha256=YeC53BaXhaS886Yn4bqO72lOel3L7Bxx76KSC0GDXbc,21546
37
- botocore-stubs/handlers.pyi,sha256=2BixX3mqB_HBYAZyZ3GMUB_xYbgUV07CI-djkCwPf_4,6983
38
- botocore-stubs/history.pyi,sha256=NMhK1CDY1wna-0byOqZzaAWhhuaGw66YDv4Lz_FvvLE,570
39
- botocore-stubs/hooks.pyi,sha256=tYUWY1bJQ9PI-VWYQu9FiMAAuNuOFBlHoGBinkmWjkk,2841
40
- botocore-stubs/httpchecksum.pyi,sha256=QrUqoQQqkI7HNHX-F74bW6bryNvSOaQLza3H0oYPc9E,2741
41
- botocore-stubs/httpsession.pyi,sha256=9FqhZ_pulehZj9qjC3evAEM1wSHHSGVPS12bEhcmicE,2343
42
- botocore-stubs/loaders.pyi,sha256=iMzxhDtNbk-CncJb9toKMj2d86mg7Ro34bBft_o5t0c,2007
43
- botocore-stubs/model.pyi,sha256=b7vR8f4jeb_Orwp5b8c_ebuxouPvpZvLKHQY6Jhp6-g,6448
44
- botocore-stubs/monitoring.pyi,sha256=7u4CrUCYRE_Cc5hgXbD-FI--OcfNk4AmZ-bAph7yX0w,2885
45
- botocore-stubs/paginate.pyi,sha256=ZkbNI0a8P4r40jl5JfRr7nJPukrSYNUeiWECrmRSPvo,1777
46
- botocore-stubs/parsers.pyi,sha256=jKaNPfMOsWAkV7G1uu2VbVO5CKi-Tp45E1lTJVCy4V0,2099
47
- botocore-stubs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
- botocore-stubs/regions.pyi,sha256=28srq_27BRLGYRv9umUIneO-xLvTBNljrYQgKljTqB4,3252
49
- botocore-stubs/response.pyi,sha256=Uq3kSBI8SO5AJNq5NwVYaxEup20ZbSuYzUs5rJjqCJU,1033
50
- botocore-stubs/retries/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
- botocore-stubs/retries/adaptive.pyi,sha256=ky-5U8PwK6sJK9MyXvtP4nmgptvFksr4XTthZ_aAQDY,916
52
- botocore-stubs/retries/base.pyi,sha256=bpAceLnCfqBMNpE1N6bFo4ibs0gUECvn5tkcgbeU7Pg,186
53
- botocore-stubs/retries/bucket.pyi,sha256=duw9XL9XJIW2JOw4pKCdcx0XrBftA7kSq8srx7npK_Y,652
54
- botocore-stubs/retries/quota.pyi,sha256=L3mH_JKJBKtRqTF6aBXnAo6ZfC5CgO3Got1MVnvAI4o,348
55
- botocore-stubs/retries/special.pyi,sha256=CNzWVCfUjWXmiMH-s9w6UDF0qDHniIQ-IdzAlbPq5hQ,367
56
- botocore-stubs/retries/standard.pyi,sha256=QQGtCbC8TSbAorWXmjwUp1OSQ3Pf3NYgb19FQlD4UI0,4266
57
- botocore-stubs/retries/throttling.pyi,sha256=9CjqK2oro8ddPB-vW0_X-LK7O9gosJjY66hoFdJRIwo,485
58
- botocore-stubs/retryhandler.pyi,sha256=ntaX5StOw10g5oiCetNkE4F8d0DYlMPfziOyAEbm9lY,2522
59
- botocore-stubs/serialize.pyi,sha256=Qbdq8GADYRkv5KaOS1p6C3WAh0rGuW8MiT9OL5wKNwk,1717
60
- botocore-stubs/session.pyi,sha256=-y17Wwrw3vdAGGiQWvswMVFCmsVvH2iN3CFlczq2gIU,6959
61
- botocore-stubs/signers.pyi,sha256=aiHhQsTgoCoT1GGHXROB6jktUs4MSRnv-MVx1Ad5WVM,3533
62
- botocore-stubs/stub.pyi,sha256=dQwDokOAEb2hLCQPyQ5Bq_BD0QFyyyRCKAl73Kbshso,1934
63
- botocore-stubs/tokens.pyi,sha256=dnv93uN3lIyyWkmTbvW05R0T9Tb40pYXlKyro-v8z64,1198
64
- botocore-stubs/translate.pyi,sha256=0VD5IQFJ-BHD8VIN9A-VdnzDCtMR82DqZal_xSAPjX4,310
65
- botocore-stubs/useragent.pyi,sha256=todcxeNhOXoYwx7lhVDCWXJxAx-c4NyM0k9_zItFzOI,1185
66
- botocore-stubs/utils.pyi,sha256=ud0sZG9li1Jhuj37kx9QKncHXwuJuVrwx-Omxa1nxI0,14148
67
- botocore-stubs/validate.pyi,sha256=HTvAiEdyqyNXhyuDEHUhtQsPOOHACvbA-m7sUE3Ef4Q,1172
68
- botocore-stubs/waiter.pyi,sha256=-imMz_PRyCWtVzwp8wBpP2T1gT6XbWGmLhQ4oiUFtYA,1591
69
- botocore_stubs-1.34.66.dist-info/LICENSE,sha256=YIdUJ_cFRZScLZQFyRT_O8yCCxXFhFKmXaqgDpe3rpM,1071
70
- botocore_stubs-1.34.66.dist-info/METADATA,sha256=xaEQEAgvr5ZCbkpEcx16NvtAkd-A6VEhemfI4fDcClk,3407
71
- botocore_stubs-1.34.66.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
72
- botocore_stubs-1.34.66.dist-info/RECORD,,