types-boto3 1.39.5__py3-none-any.whl → 1.39.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 +40 -0
- boto3-stubs/session.pyi +42 -0
- {types_boto3-1.39.5.dist-info → types_boto3-1.39.7.dist-info}/METADATA +19 -7
- {types_boto3-1.39.5.dist-info → types_boto3-1.39.7.dist-info}/RECORD +7 -7
- {types_boto3-1.39.5.dist-info → types_boto3-1.39.7.dist-info}/WHEEL +0 -0
- {types_boto3-1.39.5.dist-info → types_boto3-1.39.7.dist-info}/licenses/LICENSE +0 -0
- {types_boto3-1.39.5.dist-info → types_boto3-1.39.7.dist-info}/top_level.txt +0 -0
boto3-stubs/__init__.pyi
CHANGED
@@ -56,6 +56,10 @@ from types_boto3_bcm_pricing_calculator.client import (
|
|
56
56
|
from types_boto3_bedrock.client import BedrockClient
|
57
57
|
from types_boto3_bedrock_agent.client import AgentsforBedrockClient
|
58
58
|
from types_boto3_bedrock_agent_runtime.client import AgentsforBedrockRuntimeClient
|
59
|
+
from types_boto3_bedrock_agentcore.client import BedrockAgentCoreDataPlaneFrontingLayerClient
|
60
|
+
from types_boto3_bedrock_agentcore_control.client import (
|
61
|
+
BedrockAgentCoreControlPlaneFrontingLayerClient,
|
62
|
+
)
|
59
63
|
from types_boto3_bedrock_data_automation.client import DataAutomationforBedrockClient
|
60
64
|
from types_boto3_bedrock_data_automation_runtime.client import RuntimeforBedrockDataAutomationClient
|
61
65
|
from types_boto3_bedrock_runtime.client import BedrockRuntimeClient
|
@@ -1224,6 +1228,42 @@ def client(
|
|
1224
1228
|
Create client for AgentsforBedrockRuntime service.
|
1225
1229
|
"""
|
1226
1230
|
|
1231
|
+
@overload
|
1232
|
+
def client(
|
1233
|
+
service_name: Literal["bedrock-agentcore"],
|
1234
|
+
region_name: str | None = ...,
|
1235
|
+
api_version: str | None = ...,
|
1236
|
+
use_ssl: bool | None = ...,
|
1237
|
+
verify: bool | str | None = ...,
|
1238
|
+
endpoint_url: str | None = ...,
|
1239
|
+
aws_access_key_id: str | None = ...,
|
1240
|
+
aws_secret_access_key: str | None = ...,
|
1241
|
+
aws_session_token: str | None = ...,
|
1242
|
+
config: Config | None = ...,
|
1243
|
+
aws_account_id: str | None = ...,
|
1244
|
+
) -> BedrockAgentCoreDataPlaneFrontingLayerClient:
|
1245
|
+
"""
|
1246
|
+
Create client for BedrockAgentCoreDataPlaneFrontingLayer service.
|
1247
|
+
"""
|
1248
|
+
|
1249
|
+
@overload
|
1250
|
+
def client(
|
1251
|
+
service_name: Literal["bedrock-agentcore-control"],
|
1252
|
+
region_name: str | None = ...,
|
1253
|
+
api_version: str | None = ...,
|
1254
|
+
use_ssl: bool | None = ...,
|
1255
|
+
verify: bool | str | None = ...,
|
1256
|
+
endpoint_url: str | None = ...,
|
1257
|
+
aws_access_key_id: str | None = ...,
|
1258
|
+
aws_secret_access_key: str | None = ...,
|
1259
|
+
aws_session_token: str | None = ...,
|
1260
|
+
config: Config | None = ...,
|
1261
|
+
aws_account_id: str | None = ...,
|
1262
|
+
) -> BedrockAgentCoreControlPlaneFrontingLayerClient:
|
1263
|
+
"""
|
1264
|
+
Create client for BedrockAgentCoreControlPlaneFrontingLayer service.
|
1265
|
+
"""
|
1266
|
+
|
1227
1267
|
@overload
|
1228
1268
|
def client(
|
1229
1269
|
service_name: Literal["bedrock-data-automation"],
|
boto3-stubs/session.pyi
CHANGED
@@ -62,6 +62,10 @@ from types_boto3_bcm_pricing_calculator.client import (
|
|
62
62
|
from types_boto3_bedrock.client import BedrockClient
|
63
63
|
from types_boto3_bedrock_agent.client import AgentsforBedrockClient
|
64
64
|
from types_boto3_bedrock_agent_runtime.client import AgentsforBedrockRuntimeClient
|
65
|
+
from types_boto3_bedrock_agentcore.client import BedrockAgentCoreDataPlaneFrontingLayerClient
|
66
|
+
from types_boto3_bedrock_agentcore_control.client import (
|
67
|
+
BedrockAgentCoreControlPlaneFrontingLayerClient,
|
68
|
+
)
|
65
69
|
from types_boto3_bedrock_data_automation.client import DataAutomationforBedrockClient
|
66
70
|
from types_boto3_bedrock_data_automation_runtime.client import RuntimeforBedrockDataAutomationClient
|
67
71
|
from types_boto3_bedrock_runtime.client import BedrockRuntimeClient
|
@@ -1286,6 +1290,44 @@ class Session:
|
|
1286
1290
|
Create client for AgentsforBedrockRuntime service.
|
1287
1291
|
"""
|
1288
1292
|
|
1293
|
+
@overload
|
1294
|
+
def client(
|
1295
|
+
self,
|
1296
|
+
service_name: Literal["bedrock-agentcore"],
|
1297
|
+
region_name: str | None = ...,
|
1298
|
+
api_version: str | None = ...,
|
1299
|
+
use_ssl: bool | None = ...,
|
1300
|
+
verify: bool | str | None = ...,
|
1301
|
+
endpoint_url: str | None = ...,
|
1302
|
+
aws_access_key_id: str | None = ...,
|
1303
|
+
aws_secret_access_key: str | None = ...,
|
1304
|
+
aws_session_token: str | None = ...,
|
1305
|
+
config: Config | None = ...,
|
1306
|
+
aws_account_id: str | None = ...,
|
1307
|
+
) -> BedrockAgentCoreDataPlaneFrontingLayerClient:
|
1308
|
+
"""
|
1309
|
+
Create client for BedrockAgentCoreDataPlaneFrontingLayer service.
|
1310
|
+
"""
|
1311
|
+
|
1312
|
+
@overload
|
1313
|
+
def client(
|
1314
|
+
self,
|
1315
|
+
service_name: Literal["bedrock-agentcore-control"],
|
1316
|
+
region_name: str | None = ...,
|
1317
|
+
api_version: str | None = ...,
|
1318
|
+
use_ssl: bool | None = ...,
|
1319
|
+
verify: bool | str | None = ...,
|
1320
|
+
endpoint_url: str | None = ...,
|
1321
|
+
aws_access_key_id: str | None = ...,
|
1322
|
+
aws_secret_access_key: str | None = ...,
|
1323
|
+
aws_session_token: str | None = ...,
|
1324
|
+
config: Config | None = ...,
|
1325
|
+
aws_account_id: str | None = ...,
|
1326
|
+
) -> BedrockAgentCoreControlPlaneFrontingLayerClient:
|
1327
|
+
"""
|
1328
|
+
Create client for BedrockAgentCoreControlPlaneFrontingLayer service.
|
1329
|
+
"""
|
1330
|
+
|
1289
1331
|
@overload
|
1290
1332
|
def client(
|
1291
1333
|
self,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: types-boto3
|
3
|
-
Version: 1.39.
|
4
|
-
Summary: Type annotations for boto3 1.39.
|
3
|
+
Version: 1.39.7
|
4
|
+
Summary: Type annotations for boto3 1.39.7 generated with mypy-boto3-builder 8.11.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.40.0,>=1.39.0; extra == "full"
|
38
38
|
Provides-Extra: boto3
|
39
|
-
Requires-Dist: boto3==1.39.
|
39
|
+
Requires-Dist: boto3==1.39.7; extra == "boto3"
|
40
40
|
Provides-Extra: all
|
41
41
|
Requires-Dist: types-boto3-accessanalyzer<1.40.0,>=1.39.0; extra == "all"
|
42
42
|
Requires-Dist: types-boto3-account<1.40.0,>=1.39.0; extra == "all"
|
@@ -80,6 +80,8 @@ Requires-Dist: types-boto3-bcm-pricing-calculator<1.40.0,>=1.39.0; extra == "all
|
|
80
80
|
Requires-Dist: types-boto3-bedrock<1.40.0,>=1.39.0; extra == "all"
|
81
81
|
Requires-Dist: types-boto3-bedrock-agent<1.40.0,>=1.39.0; extra == "all"
|
82
82
|
Requires-Dist: types-boto3-bedrock-agent-runtime<1.40.0,>=1.39.0; extra == "all"
|
83
|
+
Requires-Dist: types-boto3-bedrock-agentcore<1.40.0,>=1.39.0; extra == "all"
|
84
|
+
Requires-Dist: types-boto3-bedrock-agentcore-control<1.40.0,>=1.39.0; extra == "all"
|
83
85
|
Requires-Dist: types-boto3-bedrock-data-automation<1.40.0,>=1.39.0; extra == "all"
|
84
86
|
Requires-Dist: types-boto3-bedrock-data-automation-runtime<1.40.0,>=1.39.0; extra == "all"
|
85
87
|
Requires-Dist: types-boto3-bedrock-runtime<1.40.0,>=1.39.0; extra == "all"
|
@@ -540,6 +542,10 @@ Provides-Extra: bedrock-agent
|
|
540
542
|
Requires-Dist: types-boto3-bedrock-agent<1.40.0,>=1.39.0; extra == "bedrock-agent"
|
541
543
|
Provides-Extra: bedrock-agent-runtime
|
542
544
|
Requires-Dist: types-boto3-bedrock-agent-runtime<1.40.0,>=1.39.0; extra == "bedrock-agent-runtime"
|
545
|
+
Provides-Extra: bedrock-agentcore
|
546
|
+
Requires-Dist: types-boto3-bedrock-agentcore<1.40.0,>=1.39.0; extra == "bedrock-agentcore"
|
547
|
+
Provides-Extra: bedrock-agentcore-control
|
548
|
+
Requires-Dist: types-boto3-bedrock-agentcore-control<1.40.0,>=1.39.0; extra == "bedrock-agentcore-control"
|
543
549
|
Provides-Extra: bedrock-data-automation
|
544
550
|
Requires-Dist: types-boto3-bedrock-data-automation<1.40.0,>=1.39.0; extra == "bedrock-data-automation"
|
545
551
|
Provides-Extra: bedrock-data-automation-runtime
|
@@ -1302,7 +1308,7 @@ Dynamic: summary
|
|
1302
1308
|
|
1303
1309
|

|
1304
1310
|
|
1305
|
-
Type annotations for [boto3 1.39.
|
1311
|
+
Type annotations for [boto3 1.39.7](https://pypi.org/project/boto3/) compatible
|
1306
1312
|
with [VSCode](https://code.visualstudio.com/),
|
1307
1313
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
1308
1314
|
[Emacs](https://www.gnu.org/software/emacs/),
|
@@ -1360,7 +1366,7 @@ You can generate type annotations for `boto3` package locally with
|
|
1360
1366
|
isolation.
|
1361
1367
|
|
1362
1368
|
1. Run mypy-boto3-builder in your package root directory:
|
1363
|
-
`uvx --with 'boto3==1.39.
|
1369
|
+
`uvx --with 'boto3==1.39.7' mypy-boto3-builder`
|
1364
1370
|
2. Select `boto3` AWS SDK.
|
1365
1371
|
3. Select services you use in the current project.
|
1366
1372
|
4. Use provided commands to install generated packages.
|
@@ -1688,9 +1694,9 @@ repository.
|
|
1688
1694
|
|
1689
1695
|
## Submodules
|
1690
1696
|
|
1691
|
-
- `types-boto3[full]` - Type annotations for all
|
1697
|
+
- `types-boto3[full]` - Type annotations for all 412 services in one package
|
1692
1698
|
(recommended).
|
1693
|
-
- `types-boto3[all]` - Type annotations for all
|
1699
|
+
- `types-boto3[all]` - Type annotations for all 412 services in separate
|
1694
1700
|
packages.
|
1695
1701
|
- `types-boto3[essential]` - Type annotations for
|
1696
1702
|
[CloudFormation](https://youtype.github.io/types_boto3_docs/types_boto3_cloudformation/),
|
@@ -1825,6 +1831,12 @@ repository.
|
|
1825
1831
|
- `types-boto3[bedrock-agent-runtime]` - Type annotations for
|
1826
1832
|
[AgentsforBedrockRuntime](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agent_runtime/)
|
1827
1833
|
service.
|
1834
|
+
- `types-boto3[bedrock-agentcore]` - Type annotations for
|
1835
|
+
[BedrockAgentCoreDataPlaneFrontingLayer](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore/)
|
1836
|
+
service.
|
1837
|
+
- `types-boto3[bedrock-agentcore-control]` - Type annotations for
|
1838
|
+
[BedrockAgentCoreControlPlaneFrontingLayer](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_agentcore_control/)
|
1839
|
+
service.
|
1828
1840
|
- `types-boto3[bedrock-data-automation]` - Type annotations for
|
1829
1841
|
[DataAutomationforBedrock](https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_data_automation/)
|
1830
1842
|
service.
|
@@ -1,9 +1,9 @@
|
|
1
|
-
boto3-stubs/__init__.pyi,sha256=
|
1
|
+
boto3-stubs/__init__.pyi,sha256=WMKl83FTGV6yridDtsDEjmU0vL-tl8YbMx8S4J8-h_s,250602
|
2
2
|
boto3-stubs/compat.pyi,sha256=PWrZhB_PeAhGJaNV3a5OXYy1k5QRa-Jm2Qt3SsVutWY,278
|
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=CWSRJFREyjQIZFEXJaiGZ4Tv8kr0tqHuL5qp9p5Ypac,286313
|
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=iSD34EWV7eyBwCNgAyVC2BZ24i_DXmFF6XhlNbZ6boA,4639
|
40
40
|
boto3-stubs/s3/transfer.pyi,sha256=7A4hY7nziEaFM6fFhhneQYgB8aPa_on4i3DhOxh1_7s,2536
|
41
|
-
types_boto3-1.39.
|
42
|
-
types_boto3-1.39.
|
43
|
-
types_boto3-1.39.
|
44
|
-
types_boto3-1.39.
|
45
|
-
types_boto3-1.39.
|
41
|
+
types_boto3-1.39.7.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
42
|
+
types_boto3-1.39.7.dist-info/METADATA,sha256=UPuUqrj6uKu_BAs1uNzG3Av64HmgxB0bDi_xtHoHD7Q,152668
|
43
|
+
types_boto3-1.39.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
44
|
+
types_boto3-1.39.7.dist-info/top_level.txt,sha256=uB_lQ39lkJ_VYZ_88DxH_zFptJtIwQ_SzeMpW8tRmT4,12
|
45
|
+
types_boto3-1.39.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|