types-boto3 1.37.5__py3-none-any.whl → 1.37.7__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.
- boto3-stubs/__init__.pyi +38 -0
- boto3-stubs/session.pyi +40 -0
- {types_boto3-1.37.5.dist-info → types_boto3-1.37.7.dist-info}/METADATA +19 -7
- {types_boto3-1.37.5.dist-info → types_boto3-1.37.7.dist-info}/RECORD +7 -7
- {types_boto3-1.37.5.dist-info → types_boto3-1.37.7.dist-info}/LICENSE +0 -0
- {types_boto3-1.37.5.dist-info → types_boto3-1.37.7.dist-info}/WHEEL +0 -0
- {types_boto3-1.37.5.dist-info → types_boto3-1.37.7.dist-info}/top_level.txt +0 -0
boto3-stubs/__init__.pyi
CHANGED
@@ -173,6 +173,7 @@ from types_boto3_frauddetector.client import FraudDetectorClient
|
|
173
173
|
from types_boto3_freetier.client import FreeTierClient
|
174
174
|
from types_boto3_fsx.client import FSxClient
|
175
175
|
from types_boto3_gamelift.client import GameLiftClient
|
176
|
+
from types_boto3_gameliftstreams.client import GameLiftStreamsClient
|
176
177
|
from types_boto3_geo_maps.client import LocationServiceMapsV2Client
|
177
178
|
from types_boto3_geo_places.client import LocationServicePlacesV2Client
|
178
179
|
from types_boto3_geo_routes.client import LocationServiceRoutesV2Client
|
@@ -200,6 +201,9 @@ from types_boto3_invoicing.client import InvoicingClient
|
|
200
201
|
from types_boto3_iot.client import IoTClient
|
201
202
|
from types_boto3_iot_data.client import IoTDataPlaneClient
|
202
203
|
from types_boto3_iot_jobs_data.client import IoTJobsDataPlaneClient
|
204
|
+
from types_boto3_iot_managed_integrations.client import (
|
205
|
+
ManagedintegrationsforIoTDeviceManagementClient,
|
206
|
+
)
|
203
207
|
from types_boto3_iotanalytics.client import IoTAnalyticsClient
|
204
208
|
from types_boto3_iotdeviceadvisor.client import IoTDeviceAdvisorClient
|
205
209
|
from types_boto3_iotevents.client import IoTEventsClient
|
@@ -3093,6 +3097,23 @@ def client(
|
|
3093
3097
|
Create client for GameLift service.
|
3094
3098
|
"""
|
3095
3099
|
|
3100
|
+
@overload
|
3101
|
+
def client(
|
3102
|
+
service_name: Literal["gameliftstreams"],
|
3103
|
+
region_name: str | None = ...,
|
3104
|
+
api_version: str | None = ...,
|
3105
|
+
use_ssl: bool | None = ...,
|
3106
|
+
verify: bool | str | None = ...,
|
3107
|
+
endpoint_url: str | None = ...,
|
3108
|
+
aws_access_key_id: str | None = ...,
|
3109
|
+
aws_secret_access_key: str | None = ...,
|
3110
|
+
aws_session_token: str | None = ...,
|
3111
|
+
config: Config | None = ...,
|
3112
|
+
) -> GameLiftStreamsClient:
|
3113
|
+
"""
|
3114
|
+
Create client for GameLiftStreams service.
|
3115
|
+
"""
|
3116
|
+
|
3096
3117
|
@overload
|
3097
3118
|
def client(
|
3098
3119
|
service_name: Literal["geo-maps"],
|
@@ -3518,6 +3539,23 @@ def client(
|
|
3518
3539
|
Create client for IoTJobsDataPlane service.
|
3519
3540
|
"""
|
3520
3541
|
|
3542
|
+
@overload
|
3543
|
+
def client(
|
3544
|
+
service_name: Literal["iot-managed-integrations"],
|
3545
|
+
region_name: str | None = ...,
|
3546
|
+
api_version: str | None = ...,
|
3547
|
+
use_ssl: bool | None = ...,
|
3548
|
+
verify: bool | str | None = ...,
|
3549
|
+
endpoint_url: str | None = ...,
|
3550
|
+
aws_access_key_id: str | None = ...,
|
3551
|
+
aws_secret_access_key: str | None = ...,
|
3552
|
+
aws_session_token: str | None = ...,
|
3553
|
+
config: Config | None = ...,
|
3554
|
+
) -> ManagedintegrationsforIoTDeviceManagementClient:
|
3555
|
+
"""
|
3556
|
+
Create client for ManagedintegrationsforIoTDeviceManagement service.
|
3557
|
+
"""
|
3558
|
+
|
3521
3559
|
@overload
|
3522
3560
|
def client(
|
3523
3561
|
service_name: Literal["iotanalytics"],
|
boto3-stubs/session.pyi
CHANGED
@@ -179,6 +179,7 @@ from types_boto3_frauddetector.client import FraudDetectorClient
|
|
179
179
|
from types_boto3_freetier.client import FreeTierClient
|
180
180
|
from types_boto3_fsx.client import FSxClient
|
181
181
|
from types_boto3_gamelift.client import GameLiftClient
|
182
|
+
from types_boto3_gameliftstreams.client import GameLiftStreamsClient
|
182
183
|
from types_boto3_geo_maps.client import LocationServiceMapsV2Client
|
183
184
|
from types_boto3_geo_places.client import LocationServicePlacesV2Client
|
184
185
|
from types_boto3_geo_routes.client import LocationServiceRoutesV2Client
|
@@ -206,6 +207,9 @@ from types_boto3_invoicing.client import InvoicingClient
|
|
206
207
|
from types_boto3_iot.client import IoTClient
|
207
208
|
from types_boto3_iot_data.client import IoTDataPlaneClient
|
208
209
|
from types_boto3_iot_jobs_data.client import IoTJobsDataPlaneClient
|
210
|
+
from types_boto3_iot_managed_integrations.client import (
|
211
|
+
ManagedintegrationsforIoTDeviceManagementClient,
|
212
|
+
)
|
209
213
|
from types_boto3_iotanalytics.client import IoTAnalyticsClient
|
210
214
|
from types_boto3_iotdeviceadvisor.client import IoTDeviceAdvisorClient
|
211
215
|
from types_boto3_iotevents.client import IoTEventsClient
|
@@ -3267,6 +3271,24 @@ class Session:
|
|
3267
3271
|
Create client for GameLift service.
|
3268
3272
|
"""
|
3269
3273
|
|
3274
|
+
@overload
|
3275
|
+
def client(
|
3276
|
+
self,
|
3277
|
+
service_name: Literal["gameliftstreams"],
|
3278
|
+
region_name: str | None = ...,
|
3279
|
+
api_version: str | None = ...,
|
3280
|
+
use_ssl: bool | None = ...,
|
3281
|
+
verify: bool | str | None = ...,
|
3282
|
+
endpoint_url: str | None = ...,
|
3283
|
+
aws_access_key_id: str | None = ...,
|
3284
|
+
aws_secret_access_key: str | None = ...,
|
3285
|
+
aws_session_token: str | None = ...,
|
3286
|
+
config: Config | None = ...,
|
3287
|
+
) -> GameLiftStreamsClient:
|
3288
|
+
"""
|
3289
|
+
Create client for GameLiftStreams service.
|
3290
|
+
"""
|
3291
|
+
|
3270
3292
|
@overload
|
3271
3293
|
def client(
|
3272
3294
|
self,
|
@@ -3717,6 +3739,24 @@ class Session:
|
|
3717
3739
|
Create client for IoTJobsDataPlane service.
|
3718
3740
|
"""
|
3719
3741
|
|
3742
|
+
@overload
|
3743
|
+
def client(
|
3744
|
+
self,
|
3745
|
+
service_name: Literal["iot-managed-integrations"],
|
3746
|
+
region_name: str | None = ...,
|
3747
|
+
api_version: str | None = ...,
|
3748
|
+
use_ssl: bool | None = ...,
|
3749
|
+
verify: bool | str | None = ...,
|
3750
|
+
endpoint_url: str | None = ...,
|
3751
|
+
aws_access_key_id: str | None = ...,
|
3752
|
+
aws_secret_access_key: str | None = ...,
|
3753
|
+
aws_session_token: str | None = ...,
|
3754
|
+
config: Config | None = ...,
|
3755
|
+
) -> ManagedintegrationsforIoTDeviceManagementClient:
|
3756
|
+
"""
|
3757
|
+
Create client for ManagedintegrationsforIoTDeviceManagement service.
|
3758
|
+
"""
|
3759
|
+
|
3720
3760
|
@overload
|
3721
3761
|
def client(
|
3722
3762
|
self,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: types-boto3
|
3
|
-
Version: 1.37.
|
4
|
-
Summary: Type annotations for boto3 1.37.
|
3
|
+
Version: 1.37.7
|
4
|
+
Summary: Type annotations for boto3 1.37.7 generated with mypy-boto3-builder 8.10.0
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
6
6
|
Author: Vlad Emelianov
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
@@ -36,7 +36,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
|
|
36
36
|
Provides-Extra: full
|
37
37
|
Requires-Dist: types-boto3-full<1.38.0,>=1.37.0; extra == "full"
|
38
38
|
Provides-Extra: boto3
|
39
|
-
Requires-Dist: boto3==1.37.
|
39
|
+
Requires-Dist: boto3==1.37.7; extra == "boto3"
|
40
40
|
Provides-Extra: all
|
41
41
|
Requires-Dist: types-boto3-accessanalyzer<1.38.0,>=1.37.0; extra == "all"
|
42
42
|
Requires-Dist: types-boto3-account<1.38.0,>=1.37.0; extra == "all"
|
@@ -193,6 +193,7 @@ Requires-Dist: types-boto3-frauddetector<1.38.0,>=1.37.0; extra == "all"
|
|
193
193
|
Requires-Dist: types-boto3-freetier<1.38.0,>=1.37.0; extra == "all"
|
194
194
|
Requires-Dist: types-boto3-fsx<1.38.0,>=1.37.0; extra == "all"
|
195
195
|
Requires-Dist: types-boto3-gamelift<1.38.0,>=1.37.0; extra == "all"
|
196
|
+
Requires-Dist: types-boto3-gameliftstreams<1.38.0,>=1.37.0; extra == "all"
|
196
197
|
Requires-Dist: types-boto3-geo-maps<1.38.0,>=1.37.0; extra == "all"
|
197
198
|
Requires-Dist: types-boto3-geo-places<1.38.0,>=1.37.0; extra == "all"
|
198
199
|
Requires-Dist: types-boto3-geo-routes<1.38.0,>=1.37.0; extra == "all"
|
@@ -218,6 +219,7 @@ Requires-Dist: types-boto3-invoicing<1.38.0,>=1.37.0; extra == "all"
|
|
218
219
|
Requires-Dist: types-boto3-iot<1.38.0,>=1.37.0; extra == "all"
|
219
220
|
Requires-Dist: types-boto3-iot-data<1.38.0,>=1.37.0; extra == "all"
|
220
221
|
Requires-Dist: types-boto3-iot-jobs-data<1.38.0,>=1.37.0; extra == "all"
|
222
|
+
Requires-Dist: types-boto3-iot-managed-integrations<1.38.0,>=1.37.0; extra == "all"
|
221
223
|
Requires-Dist: types-boto3-iotanalytics<1.38.0,>=1.37.0; extra == "all"
|
222
224
|
Requires-Dist: types-boto3-iotdeviceadvisor<1.38.0,>=1.37.0; extra == "all"
|
223
225
|
Requires-Dist: types-boto3-iotevents<1.38.0,>=1.37.0; extra == "all"
|
@@ -758,6 +760,8 @@ Provides-Extra: fsx
|
|
758
760
|
Requires-Dist: types-boto3-fsx<1.38.0,>=1.37.0; extra == "fsx"
|
759
761
|
Provides-Extra: gamelift
|
760
762
|
Requires-Dist: types-boto3-gamelift<1.38.0,>=1.37.0; extra == "gamelift"
|
763
|
+
Provides-Extra: gameliftstreams
|
764
|
+
Requires-Dist: types-boto3-gameliftstreams<1.38.0,>=1.37.0; extra == "gameliftstreams"
|
761
765
|
Provides-Extra: geo-maps
|
762
766
|
Requires-Dist: types-boto3-geo-maps<1.38.0,>=1.37.0; extra == "geo-maps"
|
763
767
|
Provides-Extra: geo-places
|
@@ -808,6 +812,8 @@ Provides-Extra: iot-data
|
|
808
812
|
Requires-Dist: types-boto3-iot-data<1.38.0,>=1.37.0; extra == "iot-data"
|
809
813
|
Provides-Extra: iot-jobs-data
|
810
814
|
Requires-Dist: types-boto3-iot-jobs-data<1.38.0,>=1.37.0; extra == "iot-jobs-data"
|
815
|
+
Provides-Extra: iot-managed-integrations
|
816
|
+
Requires-Dist: types-boto3-iot-managed-integrations<1.38.0,>=1.37.0; extra == "iot-managed-integrations"
|
811
817
|
Provides-Extra: iotanalytics
|
812
818
|
Requires-Dist: types-boto3-iotanalytics<1.38.0,>=1.37.0; extra == "iotanalytics"
|
813
819
|
Provides-Extra: iotdeviceadvisor
|
@@ -1277,7 +1283,7 @@ Dynamic: summary
|
|
1277
1283
|
|
1278
1284
|

|
1279
1285
|
|
1280
|
-
Type annotations for [boto3 1.37.
|
1286
|
+
Type annotations for [boto3 1.37.7](https://pypi.org/project/boto3/) compatible
|
1281
1287
|
with [VSCode](https://code.visualstudio.com/),
|
1282
1288
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
1283
1289
|
[Emacs](https://www.gnu.org/software/emacs/),
|
@@ -1335,7 +1341,7 @@ You can generate type annotations for `boto3` package locally with
|
|
1335
1341
|
isolation.
|
1336
1342
|
|
1337
1343
|
1. Run mypy-boto3-builder in your package root directory:
|
1338
|
-
`uvx --with 'boto3==1.37.
|
1344
|
+
`uvx --with 'boto3==1.37.7' mypy-boto3-builder`
|
1339
1345
|
2. Select `boto3` AWS SDK.
|
1340
1346
|
3. Select services you use in the current project.
|
1341
1347
|
4. Use provided commands to install generated packages.
|
@@ -1663,9 +1669,9 @@ repository.
|
|
1663
1669
|
|
1664
1670
|
## Submodules
|
1665
1671
|
|
1666
|
-
- `types-boto3[full]` - Type annotations for all
|
1672
|
+
- `types-boto3[full]` - Type annotations for all 404 services in one package
|
1667
1673
|
(recommended).
|
1668
|
-
- `types-boto3[all]` - Type annotations for all
|
1674
|
+
- `types-boto3[all]` - Type annotations for all 404 services in separate
|
1669
1675
|
packages.
|
1670
1676
|
- `types-boto3[essential]` - Type annotations for
|
1671
1677
|
[CloudFormation](https://youtype.github.io/types_boto3_docs/types_boto3_cloudformation/),
|
@@ -2126,6 +2132,9 @@ repository.
|
|
2126
2132
|
- `types-boto3[gamelift]` - Type annotations for
|
2127
2133
|
[GameLift](https://youtype.github.io/types_boto3_docs/types_boto3_gamelift/)
|
2128
2134
|
service.
|
2135
|
+
- `types-boto3[gameliftstreams]` - Type annotations for
|
2136
|
+
[GameLiftStreams](https://youtype.github.io/types_boto3_docs/types_boto3_gameliftstreams/)
|
2137
|
+
service.
|
2129
2138
|
- `types-boto3[geo-maps]` - Type annotations for
|
2130
2139
|
[LocationServiceMapsV2](https://youtype.github.io/types_boto3_docs/types_boto3_geo_maps/)
|
2131
2140
|
service.
|
@@ -2198,6 +2207,9 @@ repository.
|
|
2198
2207
|
- `types-boto3[iot-jobs-data]` - Type annotations for
|
2199
2208
|
[IoTJobsDataPlane](https://youtype.github.io/types_boto3_docs/types_boto3_iot_jobs_data/)
|
2200
2209
|
service.
|
2210
|
+
- `types-boto3[iot-managed-integrations]` - Type annotations for
|
2211
|
+
[ManagedintegrationsforIoTDeviceManagement](https://youtype.github.io/types_boto3_docs/types_boto3_iot_managed_integrations/)
|
2212
|
+
service.
|
2201
2213
|
- `types-boto3[iotanalytics]` - Type annotations for
|
2202
2214
|
[IoTAnalytics](https://youtype.github.io/types_boto3_docs/types_boto3_iotanalytics/)
|
2203
2215
|
service.
|
@@ -1,9 +1,9 @@
|
|
1
|
-
boto3-stubs/__init__.pyi,sha256=
|
1
|
+
boto3-stubs/__init__.pyi,sha256=ZgJUf1S5tued9A-_4RznQ2pAgKH7mxHzIS8SV4XEbjc,230019
|
2
2
|
boto3-stubs/compat.pyi,sha256=j3-SBZqCGaoZoXzN6e7fkEQQvUmQ-MpIpcF9FuuUHH0,209
|
3
3
|
boto3-stubs/crt.pyi,sha256=OAjGbtBlQJIDRctWkMpr7UwRKxiH_lQt9OdSrHPL3QI,893
|
4
4
|
boto3-stubs/exceptions.pyi,sha256=cjOrbR2BIOcaHRmIQvGL0y-XEJdicpzRl2dQNfx6GVk,1339
|
5
5
|
boto3-stubs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
-
boto3-stubs/session.pyi,sha256=
|
6
|
+
boto3-stubs/session.pyi,sha256=Zt4vUa1GdgWl5nT68yRwXnTvewErbI_W-9JdhhtsFU4,263376
|
7
7
|
boto3-stubs/utils.pyi,sha256=2vtGuLR-fnfzUNoeNvcEbb0Lb-DGEZ-BQ5BV9xF8vSg,841
|
8
8
|
boto3-stubs/docs/__init__.pyi,sha256=uDkzwRXE_Bb65mlFvnPSySeRYnhK9Cpk4fUyK6gpBd0,179
|
9
9
|
boto3-stubs/docs/action.pyi,sha256=_vWYnBVkwK6kU3xTdr5tPGxL-s3ULaAFBnxuFLHsmsE,1016
|
@@ -38,8 +38,8 @@ boto3-stubs/s3/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
38
|
boto3-stubs/s3/constants.pyi,sha256=U9MRV6GXbxTyEfKLsp3fVKzLR85KSSSP5FbcIWVHX54,163
|
39
39
|
boto3-stubs/s3/inject.pyi,sha256=z72QArriCVYH-O15Z5yDGnMX0zo7nCmYhSB2tiIRTeo,4502
|
40
40
|
boto3-stubs/s3/transfer.pyi,sha256=7A4hY7nziEaFM6fFhhneQYgB8aPa_on4i3DhOxh1_7s,2536
|
41
|
-
types_boto3-1.37.
|
42
|
-
types_boto3-1.37.
|
43
|
-
types_boto3-1.37.
|
44
|
-
types_boto3-1.37.
|
45
|
-
types_boto3-1.37.
|
41
|
+
types_boto3-1.37.7.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
42
|
+
types_boto3-1.37.7.dist-info/METADATA,sha256=oBR6SLJqMGcQpu2hxQa4cRCWCInEUhJR6HapgmQBxB4,149964
|
43
|
+
types_boto3-1.37.7.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
44
|
+
types_boto3-1.37.7.dist-info/top_level.txt,sha256=uB_lQ39lkJ_VYZ_88DxH_zFptJtIwQ_SzeMpW8tRmT4,12
|
45
|
+
types_boto3-1.37.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|