types-boto3-bedrock-runtime 1.41.0__py3-none-any.whl → 1.41.5__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.
@@ -12,8 +12,8 @@ def print_info() -> None:
12
12
  Print package info to stdout.
13
13
  """
14
14
  sys.stdout.write(
15
- "Type annotations for boto3 BedrockRuntime 1.41.0\n"
16
- "Version: 1.41.0\n"
15
+ "Type annotations for boto3 BedrockRuntime 1.41.5\n"
16
+ "Version: 1.41.5\n"
17
17
  "Builder version: 8.12.0\n"
18
18
  "Docs: https://youtype.github.io/types_boto3_docs/types_boto3_bedrock_runtime//\n"
19
19
  "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/bedrock-runtime.html#bedrockruntime\n"
@@ -26,7 +26,7 @@ def print_version() -> None:
26
26
  """
27
27
  Print package version to stdout.
28
28
  """
29
- sys.stdout.write("1.41.0\n")
29
+ sys.stdout.write("1.41.5\n")
30
30
 
31
31
 
32
32
  def main() -> None:
@@ -42,7 +42,9 @@ __all__ = (
42
42
  "GuardrailConverseImageFormatType",
43
43
  "GuardrailImageFormatType",
44
44
  "GuardrailManagedWordTypeType",
45
+ "GuardrailOriginType",
45
46
  "GuardrailOutputScopeType",
47
+ "GuardrailOwnershipType",
46
48
  "GuardrailPiiEntityTypeType",
47
49
  "GuardrailSensitiveInformationPolicyActionType",
48
50
  "GuardrailStreamProcessingModeType",
@@ -87,7 +89,9 @@ GuardrailConverseContentQualifierType = Literal["grounding_source", "guard_conte
87
89
  GuardrailConverseImageFormatType = Literal["jpeg", "png"]
88
90
  GuardrailImageFormatType = Literal["jpeg", "png"]
89
91
  GuardrailManagedWordTypeType = Literal["PROFANITY"]
92
+ GuardrailOriginType = Literal["ACCOUNT_ENFORCED", "ORGANIZATION_ENFORCED", "REQUEST"]
90
93
  GuardrailOutputScopeType = Literal["FULL", "INTERVENTIONS"]
94
+ GuardrailOwnershipType = Literal["CROSS_ACCOUNT", "SELF"]
91
95
  GuardrailPiiEntityTypeType = Literal[
92
96
  "ADDRESS",
93
97
  "AGE",
@@ -130,7 +134,7 @@ GuardrailWordPolicyActionType = Literal["BLOCKED", "NONE"]
130
134
  ImageFormatType = Literal["gif", "jpeg", "png", "webp"]
131
135
  ListAsyncInvokesPaginatorName = Literal["list_async_invokes"]
132
136
  PerformanceConfigLatencyType = Literal["optimized", "standard"]
133
- ServiceTierTypeType = Literal["default", "flex", "priority"]
137
+ ServiceTierTypeType = Literal["default", "flex", "priority", "reserved"]
134
138
  SortAsyncInvocationByType = Literal["SubmissionTime"]
135
139
  SortOrderType = Literal["Ascending", "Descending"]
136
140
  StopReasonType = Literal[
@@ -242,6 +246,7 @@ ServiceName = Literal[
242
246
  "comprehend",
243
247
  "comprehendmedical",
244
248
  "compute-optimizer",
249
+ "compute-optimizer-automation",
245
250
  "config",
246
251
  "connect",
247
252
  "connect-contact-lens",
@@ -41,7 +41,9 @@ __all__ = (
41
41
  "GuardrailConverseImageFormatType",
42
42
  "GuardrailImageFormatType",
43
43
  "GuardrailManagedWordTypeType",
44
+ "GuardrailOriginType",
44
45
  "GuardrailOutputScopeType",
46
+ "GuardrailOwnershipType",
45
47
  "GuardrailPiiEntityTypeType",
46
48
  "GuardrailSensitiveInformationPolicyActionType",
47
49
  "GuardrailStreamProcessingModeType",
@@ -85,7 +87,9 @@ GuardrailConverseContentQualifierType = Literal["grounding_source", "guard_conte
85
87
  GuardrailConverseImageFormatType = Literal["jpeg", "png"]
86
88
  GuardrailImageFormatType = Literal["jpeg", "png"]
87
89
  GuardrailManagedWordTypeType = Literal["PROFANITY"]
90
+ GuardrailOriginType = Literal["ACCOUNT_ENFORCED", "ORGANIZATION_ENFORCED", "REQUEST"]
88
91
  GuardrailOutputScopeType = Literal["FULL", "INTERVENTIONS"]
92
+ GuardrailOwnershipType = Literal["CROSS_ACCOUNT", "SELF"]
89
93
  GuardrailPiiEntityTypeType = Literal[
90
94
  "ADDRESS",
91
95
  "AGE",
@@ -128,7 +132,7 @@ GuardrailWordPolicyActionType = Literal["BLOCKED", "NONE"]
128
132
  ImageFormatType = Literal["gif", "jpeg", "png", "webp"]
129
133
  ListAsyncInvokesPaginatorName = Literal["list_async_invokes"]
130
134
  PerformanceConfigLatencyType = Literal["optimized", "standard"]
131
- ServiceTierTypeType = Literal["default", "flex", "priority"]
135
+ ServiceTierTypeType = Literal["default", "flex", "priority", "reserved"]
132
136
  SortAsyncInvocationByType = Literal["SubmissionTime"]
133
137
  SortOrderType = Literal["Ascending", "Descending"]
134
138
  StopReasonType = Literal[
@@ -240,6 +244,7 @@ ServiceName = Literal[
240
244
  "comprehend",
241
245
  "comprehendmedical",
242
246
  "compute-optimizer",
247
+ "compute-optimizer-automation",
243
248
  "config",
244
249
  "connect",
245
250
  "connect-contact-lens",
@@ -8,9 +8,9 @@ Copyright 2025 Vlad Emelianov
8
8
  Usage::
9
9
 
10
10
  ```python
11
- from types_boto3_bedrock_runtime.type_defs import GuardrailOutputContentTypeDef
11
+ from types_boto3_bedrock_runtime.type_defs import AppliedGuardrailDetailsTypeDef
12
12
 
13
- data: GuardrailOutputContentTypeDef = ...
13
+ data: AppliedGuardrailDetailsTypeDef = ...
14
14
  ```
15
15
  """
16
16
 
@@ -41,7 +41,9 @@ from .literals import (
41
41
  GuardrailConverseContentQualifierType,
42
42
  GuardrailConverseImageFormatType,
43
43
  GuardrailImageFormatType,
44
+ GuardrailOriginType,
44
45
  GuardrailOutputScopeType,
46
+ GuardrailOwnershipType,
45
47
  GuardrailPiiEntityTypeType,
46
48
  GuardrailSensitiveInformationPolicyActionType,
47
49
  GuardrailStreamProcessingModeType,
@@ -66,6 +68,7 @@ else:
66
68
 
67
69
 
68
70
  __all__ = (
71
+ "AppliedGuardrailDetailsTypeDef",
69
72
  "ApplyGuardrailRequestTypeDef",
70
73
  "ApplyGuardrailResponseTypeDef",
71
74
  "AsyncInvokeOutputDataConfigTypeDef",
@@ -259,6 +262,14 @@ __all__ = (
259
262
  )
260
263
 
261
264
 
265
+ class AppliedGuardrailDetailsTypeDef(TypedDict):
266
+ guardrailId: NotRequired[str]
267
+ guardrailVersion: NotRequired[str]
268
+ guardrailArn: NotRequired[str]
269
+ guardrailOrigin: NotRequired[list[GuardrailOriginType]]
270
+ guardrailOwnership: NotRequired[GuardrailOwnershipType]
271
+
272
+
262
273
  class GuardrailOutputContentTypeDef(TypedDict):
263
274
  text: NotRequired[str]
264
275
 
@@ -401,8 +412,8 @@ class ConverseMetricsTypeDef(TypedDict):
401
412
 
402
413
 
403
414
  class GuardrailConfigurationTypeDef(TypedDict):
404
- guardrailIdentifier: str
405
- guardrailVersion: str
415
+ guardrailIdentifier: NotRequired[str]
416
+ guardrailVersion: NotRequired[str]
406
417
  trace: NotRequired[GuardrailTraceType]
407
418
 
408
419
 
@@ -473,8 +484,8 @@ class ValidationExceptionTypeDef(TypedDict):
473
484
 
474
485
 
475
486
  class GuardrailStreamConfigurationTypeDef(TypedDict):
476
- guardrailIdentifier: str
477
- guardrailVersion: str
487
+ guardrailIdentifier: NotRequired[str]
488
+ guardrailVersion: NotRequired[str]
478
489
  trace: NotRequired[GuardrailTraceType]
479
490
  streamProcessingMode: NotRequired[GuardrailStreamProcessingModeType]
480
491
 
@@ -1303,6 +1314,7 @@ class GuardrailAssessmentTypeDef(TypedDict):
1303
1314
  contextualGroundingPolicy: NotRequired[GuardrailContextualGroundingPolicyAssessmentTypeDef]
1304
1315
  automatedReasoningPolicy: NotRequired[GuardrailAutomatedReasoningPolicyAssessmentTypeDef]
1305
1316
  invocationMetrics: NotRequired[GuardrailInvocationMetricsTypeDef]
1317
+ appliedGuardrailDetails: NotRequired[AppliedGuardrailDetailsTypeDef]
1306
1318
 
1307
1319
 
1308
1320
  class SystemContentBlockTypeDef(TypedDict):
@@ -8,9 +8,9 @@ Copyright 2025 Vlad Emelianov
8
8
  Usage::
9
9
 
10
10
  ```python
11
- from types_boto3_bedrock_runtime.type_defs import GuardrailOutputContentTypeDef
11
+ from types_boto3_bedrock_runtime.type_defs import AppliedGuardrailDetailsTypeDef
12
12
 
13
- data: GuardrailOutputContentTypeDef = ...
13
+ data: AppliedGuardrailDetailsTypeDef = ...
14
14
  ```
15
15
  """
16
16
 
@@ -41,7 +41,9 @@ from .literals import (
41
41
  GuardrailConverseContentQualifierType,
42
42
  GuardrailConverseImageFormatType,
43
43
  GuardrailImageFormatType,
44
+ GuardrailOriginType,
44
45
  GuardrailOutputScopeType,
46
+ GuardrailOwnershipType,
45
47
  GuardrailPiiEntityTypeType,
46
48
  GuardrailSensitiveInformationPolicyActionType,
47
49
  GuardrailStreamProcessingModeType,
@@ -65,6 +67,7 @@ else:
65
67
  from typing_extensions import Literal, NotRequired, TypedDict
66
68
 
67
69
  __all__ = (
70
+ "AppliedGuardrailDetailsTypeDef",
68
71
  "ApplyGuardrailRequestTypeDef",
69
72
  "ApplyGuardrailResponseTypeDef",
70
73
  "AsyncInvokeOutputDataConfigTypeDef",
@@ -257,6 +260,13 @@ __all__ = (
257
260
  "WebLocationTypeDef",
258
261
  )
259
262
 
263
+ class AppliedGuardrailDetailsTypeDef(TypedDict):
264
+ guardrailId: NotRequired[str]
265
+ guardrailVersion: NotRequired[str]
266
+ guardrailArn: NotRequired[str]
267
+ guardrailOrigin: NotRequired[list[GuardrailOriginType]]
268
+ guardrailOwnership: NotRequired[GuardrailOwnershipType]
269
+
260
270
  class GuardrailOutputContentTypeDef(TypedDict):
261
271
  text: NotRequired[str]
262
272
 
@@ -380,8 +390,8 @@ class ConverseMetricsTypeDef(TypedDict):
380
390
  latencyMs: int
381
391
 
382
392
  class GuardrailConfigurationTypeDef(TypedDict):
383
- guardrailIdentifier: str
384
- guardrailVersion: str
393
+ guardrailIdentifier: NotRequired[str]
394
+ guardrailVersion: NotRequired[str]
385
395
  trace: NotRequired[GuardrailTraceType]
386
396
 
387
397
  class InferenceConfigurationTypeDef(TypedDict):
@@ -438,8 +448,8 @@ class ValidationExceptionTypeDef(TypedDict):
438
448
  message: NotRequired[str]
439
449
 
440
450
  class GuardrailStreamConfigurationTypeDef(TypedDict):
441
- guardrailIdentifier: str
442
- guardrailVersion: str
451
+ guardrailIdentifier: NotRequired[str]
452
+ guardrailVersion: NotRequired[str]
443
453
  trace: NotRequired[GuardrailTraceType]
444
454
  streamProcessingMode: NotRequired[GuardrailStreamProcessingModeType]
445
455
 
@@ -1161,6 +1171,7 @@ class GuardrailAssessmentTypeDef(TypedDict):
1161
1171
  contextualGroundingPolicy: NotRequired[GuardrailContextualGroundingPolicyAssessmentTypeDef]
1162
1172
  automatedReasoningPolicy: NotRequired[GuardrailAutomatedReasoningPolicyAssessmentTypeDef]
1163
1173
  invocationMetrics: NotRequired[GuardrailInvocationMetricsTypeDef]
1174
+ appliedGuardrailDetails: NotRequired[AppliedGuardrailDetailsTypeDef]
1164
1175
 
1165
1176
  class SystemContentBlockTypeDef(TypedDict):
1166
1177
  text: NotRequired[str]
@@ -4,4 +4,4 @@ Source of truth for version.
4
4
  Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.41.0"
7
+ __version__ = "1.41.5"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: types-boto3-bedrock-runtime
3
- Version: 1.41.0
4
- Summary: Type annotations for boto3 BedrockRuntime 1.41.0 service generated with mypy-boto3-builder 8.12.0
3
+ Version: 1.41.5
4
+ Summary: Type annotations for boto3 BedrockRuntime 1.41.5 service generated with mypy-boto3-builder 8.12.0
5
5
  Author-email: Vlad Emelianov <vlad.emelianov.nz@gmail.com>
6
6
  License-Expression: MIT
7
7
  Project-URL: Homepage, https://github.com/youtype/mypy_boto3_builder
@@ -43,7 +43,7 @@ Dynamic: license-file
43
43
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
44
44
 
45
45
  Type annotations for
46
- [boto3 BedrockRuntime 1.41.0](https://pypi.org/project/boto3/) compatible with
46
+ [boto3 BedrockRuntime 1.41.5](https://pypi.org/project/boto3/) compatible with
47
47
  [VSCode](https://code.visualstudio.com/),
48
48
  [PyCharm](https://www.jetbrains.com/pycharm/),
49
49
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -105,7 +105,7 @@ You can generate type annotations for `boto3` package locally with
105
105
  isolation.
106
106
 
107
107
  1. Run mypy-boto3-builder in your package root directory:
108
- `uvx --with 'boto3==1.41.0' mypy-boto3-builder`
108
+ `uvx --with 'boto3==1.41.5' mypy-boto3-builder`
109
109
  2. Select `boto3` AWS SDK.
110
110
  3. Add `BedrockRuntime` service.
111
111
  4. Use provided commands to install generated packages.
@@ -378,12 +378,12 @@ Full list of `BedrockRuntime` TypeDefs can be found in
378
378
 
379
379
  ```python
380
380
  # TypedDict usage example
381
- from types_boto3_bedrock_runtime.type_defs import GuardrailOutputContentTypeDef
381
+ from types_boto3_bedrock_runtime.type_defs import AppliedGuardrailDetailsTypeDef
382
382
 
383
383
 
384
- def get_value() -> GuardrailOutputContentTypeDef:
384
+ def get_value() -> AppliedGuardrailDetailsTypeDef:
385
385
  return {
386
- "text": ...,
386
+ "guardrailId": ...,
387
387
  }
388
388
  ```
389
389
 
@@ -0,0 +1,18 @@
1
+ types_boto3_bedrock_runtime/__init__.py,sha256=yVTpBudgQiZdF0pSNhAE-1xbRZSFBHRcN9lRoforRqk,774
2
+ types_boto3_bedrock_runtime/__init__.pyi,sha256=FTe8oZW7DRJdbaUR0zeqYoUvSJbUFsNGBllLTCZwU4k,773
3
+ types_boto3_bedrock_runtime/__main__.py,sha256=PvLd8NAxHagZ-AP1IdEX6y0d3XXR5NzR1H3cMHPBeio,1012
4
+ types_boto3_bedrock_runtime/client.py,sha256=gN_nm5GKPuUjmMh_qvJGHuSNHcm5-ui7FPQ3KyWiAxc,9982
5
+ types_boto3_bedrock_runtime/client.pyi,sha256=Ypg7CxQjo36qHy8fF2l6-cT9SIfHDxZNeVzCQNAccyE,9979
6
+ types_boto3_bedrock_runtime/literals.py,sha256=ry16qawKf1KxGEr3DMBI6ubwlgXf4FuCz1kFDJJsoWM,13833
7
+ types_boto3_bedrock_runtime/literals.pyi,sha256=Boxe-6_ayVQ6i70rwbbgqojDO5QlJ5egHhiA8UtM4no,13831
8
+ types_boto3_bedrock_runtime/paginator.py,sha256=5Jxr9RrOJKN9XVbJReCbUJpJopBTa6lkmC2vmFjI2nQ,2194
9
+ types_boto3_bedrock_runtime/paginator.pyi,sha256=63nEmXrjk6YpFdjbM7HiTP4pBDClAUG2z9KGCvvqdpw,2190
10
+ types_boto3_bedrock_runtime/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ types_boto3_bedrock_runtime/type_defs.py,sha256=tFScpqCmGO7LCEaO6Jf7ghI07ppqT5xO7S5HxPuDBsQ,46145
12
+ types_boto3_bedrock_runtime/type_defs.pyi,sha256=GXkRMpBjr6xdr5H_uTZqnbhsqgOUvQwOAlj5-LehVaE,45981
13
+ types_boto3_bedrock_runtime/version.py,sha256=uSWXUazM09rFsqSbYKWAx0mKGYVExnEtGm9hYKyNBFs,92
14
+ types_boto3_bedrock_runtime-1.41.5.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
15
+ types_boto3_bedrock_runtime-1.41.5.dist-info/METADATA,sha256=guiT2jHVUTrP5GiE4e7mHBObKLuuXtUtv7jwI16zElA,15074
16
+ types_boto3_bedrock_runtime-1.41.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
+ types_boto3_bedrock_runtime-1.41.5.dist-info/top_level.txt,sha256=vs95SHzu94rM38mmauihzrtfinMIBV-tKDaYSV0eMww,28
18
+ types_boto3_bedrock_runtime-1.41.5.dist-info/RECORD,,
@@ -1,18 +0,0 @@
1
- types_boto3_bedrock_runtime/__init__.py,sha256=yVTpBudgQiZdF0pSNhAE-1xbRZSFBHRcN9lRoforRqk,774
2
- types_boto3_bedrock_runtime/__init__.pyi,sha256=FTe8oZW7DRJdbaUR0zeqYoUvSJbUFsNGBllLTCZwU4k,773
3
- types_boto3_bedrock_runtime/__main__.py,sha256=o6fRCHahJMnXGGTFbnv6VvVZIsq1K6lGLygsrcIvtBw,1012
4
- types_boto3_bedrock_runtime/client.py,sha256=gN_nm5GKPuUjmMh_qvJGHuSNHcm5-ui7FPQ3KyWiAxc,9982
5
- types_boto3_bedrock_runtime/client.pyi,sha256=Ypg7CxQjo36qHy8fF2l6-cT9SIfHDxZNeVzCQNAccyE,9979
6
- types_boto3_bedrock_runtime/literals.py,sha256=NSeZhnMiQpRwLD27S3ZBs1VREWaoFs9-fdC7dOAhVG0,13584
7
- types_boto3_bedrock_runtime/literals.pyi,sha256=VtuXw_ooM09XsL0oa3brn2tClJElDg3UECmhUoyXHqI,13582
8
- types_boto3_bedrock_runtime/paginator.py,sha256=5Jxr9RrOJKN9XVbJReCbUJpJopBTa6lkmC2vmFjI2nQ,2194
9
- types_boto3_bedrock_runtime/paginator.pyi,sha256=63nEmXrjk6YpFdjbM7HiTP4pBDClAUG2z9KGCvvqdpw,2190
10
- types_boto3_bedrock_runtime/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- types_boto3_bedrock_runtime/type_defs.py,sha256=gt2BmOvu_u_MQBa2nTw7E1qPlNgQRL2mUdxgzsQB49Q,45648
12
- types_boto3_bedrock_runtime/type_defs.pyi,sha256=vd7tTkrNFRqYcOAr_NC_-lPW-Vp1pflf-PrZLJIbzUo,45485
13
- types_boto3_bedrock_runtime/version.py,sha256=ZtEblsbAVbZWuGFYY23SYRu3T8sCoiDNfG49dV1XWUA,92
14
- types_boto3_bedrock_runtime-1.41.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
15
- types_boto3_bedrock_runtime-1.41.0.dist-info/METADATA,sha256=xxH21lk-zJF6yvSLey6gD_GXffReKO1IwHNWXG5U9oI,15065
16
- types_boto3_bedrock_runtime-1.41.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
17
- types_boto3_bedrock_runtime-1.41.0.dist-info/top_level.txt,sha256=vs95SHzu94rM38mmauihzrtfinMIBV-tKDaYSV0eMww,28
18
- types_boto3_bedrock_runtime-1.41.0.dist-info/RECORD,,