pulumi-aws-native 1.38.0a1761803003__py3-none-any.whl → 1.38.0a1762272920__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 pulumi-aws-native might be problematic. Click here for more details.
- pulumi_aws_native/__init__.py +17 -1
- pulumi_aws_native/appstream/get_image_builder.py +0 -4
- pulumi_aws_native/appstream/image_builder.py +0 -16
- pulumi_aws_native/aps/_inputs.py +58 -0
- pulumi_aws_native/aps/outputs.py +36 -0
- pulumi_aws_native/arcregionswitch/get_plan.py +0 -3
- pulumi_aws_native/arcregionswitch/plan.py +0 -3
- pulumi_aws_native/batch/_inputs.py +9 -0
- pulumi_aws_native/batch/job_definition.py +8 -0
- pulumi_aws_native/batch/outputs.py +6 -0
- pulumi_aws_native/bedrock/automated_reasoning_policy.py +51 -0
- pulumi_aws_native/bedrock/get_automated_reasoning_policy.py +12 -1
- pulumi_aws_native/bedrockagentcore/__init__.py +2 -0
- pulumi_aws_native/bedrockagentcore/get_workload_identity.py +134 -0
- pulumi_aws_native/bedrockagentcore/workload_identity.py +217 -0
- pulumi_aws_native/ce/_enums.py +3 -0
- pulumi_aws_native/cleanrooms/configured_table.py +4 -4
- pulumi_aws_native/cleanrooms/get_configured_table.py +1 -1
- pulumi_aws_native/cognito/__init__.py +2 -0
- pulumi_aws_native/cognito/_enums.py +12 -0
- pulumi_aws_native/cognito/get_terms.py +117 -0
- pulumi_aws_native/cognito/terms.py +236 -0
- pulumi_aws_native/connectcampaignsv2/_inputs.py +28 -0
- pulumi_aws_native/connectcampaignsv2/outputs.py +16 -0
- pulumi_aws_native/datazone/connection.py +30 -1
- pulumi_aws_native/ec2/get_volume.py +37 -15
- pulumi_aws_native/ec2/volume.py +115 -74
- pulumi_aws_native/ecs/_enums.py +9 -0
- pulumi_aws_native/ecs/_inputs.py +96 -15
- pulumi_aws_native/ecs/outputs.py +60 -10
- pulumi_aws_native/eks/_enums.py +11 -0
- pulumi_aws_native/eks/_inputs.py +199 -1
- pulumi_aws_native/eks/get_nodegroup.py +1 -0
- pulumi_aws_native/eks/nodegroup.py +1 -0
- pulumi_aws_native/eks/outputs.py +169 -1
- pulumi_aws_native/glue/__init__.py +2 -0
- pulumi_aws_native/glue/_inputs.py +134 -0
- pulumi_aws_native/glue/get_integration_resource_property.py +127 -0
- pulumi_aws_native/glue/integration_resource_property.py +229 -0
- pulumi_aws_native/glue/outputs.py +122 -0
- pulumi_aws_native/kendra/_inputs.py +21 -21
- pulumi_aws_native/kendra/outputs.py +14 -14
- pulumi_aws_native/networkfirewall/_inputs.py +7 -0
- pulumi_aws_native/networkfirewall/firewall.py +3 -0
- pulumi_aws_native/networkfirewall/get_firewall.py +3 -0
- pulumi_aws_native/networkfirewall/outputs.py +4 -0
- pulumi_aws_native/pulumi-plugin.json +1 -1
- pulumi_aws_native/qbusiness/_inputs.py +3 -3
- pulumi_aws_native/qbusiness/application.py +4 -4
- pulumi_aws_native/qbusiness/outputs.py +2 -2
- pulumi_aws_native/quicksight/_inputs.py +9 -9
- pulumi_aws_native/quicksight/outputs.py +6 -6
- pulumi_aws_native/rtbfabric/_enums.py +3 -0
- pulumi_aws_native/rtbfabric/_inputs.py +70 -0
- pulumi_aws_native/rtbfabric/get_link.py +18 -0
- pulumi_aws_native/rtbfabric/get_requester_gateway.py +15 -0
- pulumi_aws_native/rtbfabric/get_responder_gateway.py +30 -0
- pulumi_aws_native/rtbfabric/link.py +51 -0
- pulumi_aws_native/rtbfabric/outputs.py +46 -0
- pulumi_aws_native/rtbfabric/requester_gateway.py +40 -0
- pulumi_aws_native/rtbfabric/responder_gateway.py +80 -0
- pulumi_aws_native/s3/_enums.py +1 -1
- pulumi_aws_native/s3/_inputs.py +11 -5
- pulumi_aws_native/s3/outputs.py +10 -4
- pulumi_aws_native/s3vectors/__init__.py +17 -0
- pulumi_aws_native/s3vectors/_enums.py +39 -0
- pulumi_aws_native/s3vectors/_inputs.py +138 -0
- pulumi_aws_native/s3vectors/get_index.py +99 -0
- pulumi_aws_native/s3vectors/get_vector_bucket.py +99 -0
- pulumi_aws_native/s3vectors/get_vector_bucket_policy.py +78 -0
- pulumi_aws_native/s3vectors/index.py +367 -0
- pulumi_aws_native/s3vectors/outputs.py +129 -0
- pulumi_aws_native/s3vectors/vector_bucket.py +199 -0
- pulumi_aws_native/s3vectors/vector_bucket_policy.py +188 -0
- pulumi_aws_native/sso/_enums.py +1 -1
- pulumi_aws_native/sso/assignment.py +8 -8
- pulumi_aws_native/transfer/_inputs.py +9 -0
- pulumi_aws_native/transfer/connector.py +3 -0
- pulumi_aws_native/transfer/get_connector.py +3 -0
- pulumi_aws_native/transfer/outputs.py +6 -0
- pulumi_aws_native/wafv2/_inputs.py +72 -0
- pulumi_aws_native/wafv2/get_web_acl.py +15 -1
- pulumi_aws_native/wafv2/outputs.py +45 -0
- pulumi_aws_native/wafv2/web_acl.py +29 -0
- {pulumi_aws_native-1.38.0a1761803003.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.38.0a1761803003.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/RECORD +88 -72
- {pulumi_aws_native-1.38.0a1761803003.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.38.0a1761803003.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/top_level.txt +0 -0
pulumi_aws_native/__init__.py
CHANGED
|
@@ -421,6 +421,8 @@ if typing.TYPE_CHECKING:
|
|
|
421
421
|
s3outposts = __s3outposts
|
|
422
422
|
import pulumi_aws_native.s3tables as __s3tables
|
|
423
423
|
s3tables = __s3tables
|
|
424
|
+
import pulumi_aws_native.s3vectors as __s3vectors
|
|
425
|
+
s3vectors = __s3vectors
|
|
424
426
|
import pulumi_aws_native.sagemaker as __sagemaker
|
|
425
427
|
sagemaker = __sagemaker
|
|
426
428
|
import pulumi_aws_native.scheduler as __scheduler
|
|
@@ -693,6 +695,7 @@ else:
|
|
|
693
695
|
s3objectlambda = _utilities.lazy_import('pulumi_aws_native.s3objectlambda')
|
|
694
696
|
s3outposts = _utilities.lazy_import('pulumi_aws_native.s3outposts')
|
|
695
697
|
s3tables = _utilities.lazy_import('pulumi_aws_native.s3tables')
|
|
698
|
+
s3vectors = _utilities.lazy_import('pulumi_aws_native.s3vectors')
|
|
696
699
|
sagemaker = _utilities.lazy_import('pulumi_aws_native.sagemaker')
|
|
697
700
|
scheduler = _utilities.lazy_import('pulumi_aws_native.scheduler')
|
|
698
701
|
secretsmanager = _utilities.lazy_import('pulumi_aws_native.secretsmanager')
|
|
@@ -1086,7 +1089,8 @@ _utilities.register(
|
|
|
1086
1089
|
"aws-native:bedrockagentcore:GatewayTarget": "GatewayTarget",
|
|
1087
1090
|
"aws-native:bedrockagentcore:Memory": "Memory",
|
|
1088
1091
|
"aws-native:bedrockagentcore:Runtime": "Runtime",
|
|
1089
|
-
"aws-native:bedrockagentcore:RuntimeEndpoint": "RuntimeEndpoint"
|
|
1092
|
+
"aws-native:bedrockagentcore:RuntimeEndpoint": "RuntimeEndpoint",
|
|
1093
|
+
"aws-native:bedrockagentcore:WorkloadIdentity": "WorkloadIdentity"
|
|
1090
1094
|
}
|
|
1091
1095
|
},
|
|
1092
1096
|
{
|
|
@@ -1323,6 +1327,7 @@ _utilities.register(
|
|
|
1323
1327
|
"aws-native:cognito:IdentityPoolRoleAttachment": "IdentityPoolRoleAttachment",
|
|
1324
1328
|
"aws-native:cognito:LogDeliveryConfiguration": "LogDeliveryConfiguration",
|
|
1325
1329
|
"aws-native:cognito:ManagedLoginBranding": "ManagedLoginBranding",
|
|
1330
|
+
"aws-native:cognito:Terms": "Terms",
|
|
1326
1331
|
"aws-native:cognito:UserPool": "UserPool",
|
|
1327
1332
|
"aws-native:cognito:UserPoolClient": "UserPoolClient",
|
|
1328
1333
|
"aws-native:cognito:UserPoolDomain": "UserPoolDomain",
|
|
@@ -1976,6 +1981,7 @@ _utilities.register(
|
|
|
1976
1981
|
"classes": {
|
|
1977
1982
|
"aws-native:glue:Crawler": "Crawler",
|
|
1978
1983
|
"aws-native:glue:Database": "Database",
|
|
1984
|
+
"aws-native:glue:IntegrationResourceProperty": "IntegrationResourceProperty",
|
|
1979
1985
|
"aws-native:glue:Job": "Job",
|
|
1980
1986
|
"aws-native:glue:Registry": "Registry",
|
|
1981
1987
|
"aws-native:glue:Schema": "Schema",
|
|
@@ -3169,6 +3175,16 @@ _utilities.register(
|
|
|
3169
3175
|
"aws-native:s3tables:TablePolicy": "TablePolicy"
|
|
3170
3176
|
}
|
|
3171
3177
|
},
|
|
3178
|
+
{
|
|
3179
|
+
"pkg": "aws-native",
|
|
3180
|
+
"mod": "s3vectors",
|
|
3181
|
+
"fqn": "pulumi_aws_native.s3vectors",
|
|
3182
|
+
"classes": {
|
|
3183
|
+
"aws-native:s3vectors:Index": "Index",
|
|
3184
|
+
"aws-native:s3vectors:VectorBucket": "VectorBucket",
|
|
3185
|
+
"aws-native:s3vectors:VectorBucketPolicy": "VectorBucketPolicy"
|
|
3186
|
+
}
|
|
3187
|
+
},
|
|
3172
3188
|
{
|
|
3173
3189
|
"pkg": "aws-native",
|
|
3174
3190
|
"mod": "sagemaker",
|
|
@@ -172,16 +172,12 @@ class GetImageBuilderResult:
|
|
|
172
172
|
- stream.graphics-design.xlarge
|
|
173
173
|
- stream.graphics-design.2xlarge
|
|
174
174
|
- stream.graphics-design.4xlarge
|
|
175
|
-
- stream.graphics-desktop.2xlarge
|
|
176
175
|
- stream.graphics.g4dn.xlarge
|
|
177
176
|
- stream.graphics.g4dn.2xlarge
|
|
178
177
|
- stream.graphics.g4dn.4xlarge
|
|
179
178
|
- stream.graphics.g4dn.8xlarge
|
|
180
179
|
- stream.graphics.g4dn.12xlarge
|
|
181
180
|
- stream.graphics.g4dn.16xlarge
|
|
182
|
-
- stream.graphics-pro.4xlarge
|
|
183
|
-
- stream.graphics-pro.8xlarge
|
|
184
|
-
- stream.graphics-pro.16xlarge
|
|
185
181
|
- stream.graphics.g5.xlarge
|
|
186
182
|
- stream.graphics.g5.2xlarge
|
|
187
183
|
- stream.graphics.g5.4xlarge
|
|
@@ -63,16 +63,12 @@ class ImageBuilderArgs:
|
|
|
63
63
|
- stream.graphics-design.xlarge
|
|
64
64
|
- stream.graphics-design.2xlarge
|
|
65
65
|
- stream.graphics-design.4xlarge
|
|
66
|
-
- stream.graphics-desktop.2xlarge
|
|
67
66
|
- stream.graphics.g4dn.xlarge
|
|
68
67
|
- stream.graphics.g4dn.2xlarge
|
|
69
68
|
- stream.graphics.g4dn.4xlarge
|
|
70
69
|
- stream.graphics.g4dn.8xlarge
|
|
71
70
|
- stream.graphics.g4dn.12xlarge
|
|
72
71
|
- stream.graphics.g4dn.16xlarge
|
|
73
|
-
- stream.graphics-pro.4xlarge
|
|
74
|
-
- stream.graphics-pro.8xlarge
|
|
75
|
-
- stream.graphics-pro.16xlarge
|
|
76
72
|
- stream.graphics.g5.xlarge
|
|
77
73
|
- stream.graphics.g5.2xlarge
|
|
78
74
|
- stream.graphics.g5.4xlarge
|
|
@@ -164,16 +160,12 @@ class ImageBuilderArgs:
|
|
|
164
160
|
- stream.graphics-design.xlarge
|
|
165
161
|
- stream.graphics-design.2xlarge
|
|
166
162
|
- stream.graphics-design.4xlarge
|
|
167
|
-
- stream.graphics-desktop.2xlarge
|
|
168
163
|
- stream.graphics.g4dn.xlarge
|
|
169
164
|
- stream.graphics.g4dn.2xlarge
|
|
170
165
|
- stream.graphics.g4dn.4xlarge
|
|
171
166
|
- stream.graphics.g4dn.8xlarge
|
|
172
167
|
- stream.graphics.g4dn.12xlarge
|
|
173
168
|
- stream.graphics.g4dn.16xlarge
|
|
174
|
-
- stream.graphics-pro.4xlarge
|
|
175
|
-
- stream.graphics-pro.8xlarge
|
|
176
|
-
- stream.graphics-pro.16xlarge
|
|
177
169
|
- stream.graphics.g5.xlarge
|
|
178
170
|
- stream.graphics.g5.2xlarge
|
|
179
171
|
- stream.graphics.g5.4xlarge
|
|
@@ -410,16 +402,12 @@ class ImageBuilder(pulumi.CustomResource):
|
|
|
410
402
|
- stream.graphics-design.xlarge
|
|
411
403
|
- stream.graphics-design.2xlarge
|
|
412
404
|
- stream.graphics-design.4xlarge
|
|
413
|
-
- stream.graphics-desktop.2xlarge
|
|
414
405
|
- stream.graphics.g4dn.xlarge
|
|
415
406
|
- stream.graphics.g4dn.2xlarge
|
|
416
407
|
- stream.graphics.g4dn.4xlarge
|
|
417
408
|
- stream.graphics.g4dn.8xlarge
|
|
418
409
|
- stream.graphics.g4dn.12xlarge
|
|
419
410
|
- stream.graphics.g4dn.16xlarge
|
|
420
|
-
- stream.graphics-pro.4xlarge
|
|
421
|
-
- stream.graphics-pro.8xlarge
|
|
422
|
-
- stream.graphics-pro.16xlarge
|
|
423
411
|
- stream.graphics.g5.xlarge
|
|
424
412
|
- stream.graphics.g5.2xlarge
|
|
425
413
|
- stream.graphics.g5.4xlarge
|
|
@@ -648,16 +636,12 @@ class ImageBuilder(pulumi.CustomResource):
|
|
|
648
636
|
- stream.graphics-design.xlarge
|
|
649
637
|
- stream.graphics-design.2xlarge
|
|
650
638
|
- stream.graphics-design.4xlarge
|
|
651
|
-
- stream.graphics-desktop.2xlarge
|
|
652
639
|
- stream.graphics.g4dn.xlarge
|
|
653
640
|
- stream.graphics.g4dn.2xlarge
|
|
654
641
|
- stream.graphics.g4dn.4xlarge
|
|
655
642
|
- stream.graphics.g4dn.8xlarge
|
|
656
643
|
- stream.graphics.g4dn.12xlarge
|
|
657
644
|
- stream.graphics.g4dn.16xlarge
|
|
658
|
-
- stream.graphics-pro.4xlarge
|
|
659
|
-
- stream.graphics-pro.8xlarge
|
|
660
|
-
- stream.graphics-pro.16xlarge
|
|
661
645
|
- stream.graphics.g5.xlarge
|
|
662
646
|
- stream.graphics.g5.2xlarge
|
|
663
647
|
- stream.graphics.g5.4xlarge
|
pulumi_aws_native/aps/_inputs.py
CHANGED
|
@@ -73,6 +73,9 @@ MYPY = False
|
|
|
73
73
|
if not MYPY:
|
|
74
74
|
class AnomalyDetectorConfigurationArgsDict(TypedDict):
|
|
75
75
|
random_cut_forest: pulumi.Input['AnomalyDetectorRandomCutForestConfigurationArgsDict']
|
|
76
|
+
"""
|
|
77
|
+
The Random Cut Forest algorithm configuration for anomaly detection.
|
|
78
|
+
"""
|
|
76
79
|
elif False:
|
|
77
80
|
AnomalyDetectorConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
78
81
|
|
|
@@ -80,11 +83,17 @@ elif False:
|
|
|
80
83
|
class AnomalyDetectorConfigurationArgs:
|
|
81
84
|
def __init__(__self__, *,
|
|
82
85
|
random_cut_forest: pulumi.Input['AnomalyDetectorRandomCutForestConfigurationArgs']):
|
|
86
|
+
"""
|
|
87
|
+
:param pulumi.Input['AnomalyDetectorRandomCutForestConfigurationArgs'] random_cut_forest: The Random Cut Forest algorithm configuration for anomaly detection.
|
|
88
|
+
"""
|
|
83
89
|
pulumi.set(__self__, "random_cut_forest", random_cut_forest)
|
|
84
90
|
|
|
85
91
|
@_builtins.property
|
|
86
92
|
@pulumi.getter(name="randomCutForest")
|
|
87
93
|
def random_cut_forest(self) -> pulumi.Input['AnomalyDetectorRandomCutForestConfigurationArgs']:
|
|
94
|
+
"""
|
|
95
|
+
The Random Cut Forest algorithm configuration for anomaly detection.
|
|
96
|
+
"""
|
|
88
97
|
return pulumi.get(self, "random_cut_forest")
|
|
89
98
|
|
|
90
99
|
@random_cut_forest.setter
|
|
@@ -221,10 +230,29 @@ class AnomalyDetectorMissingDataActionArgs:
|
|
|
221
230
|
if not MYPY:
|
|
222
231
|
class AnomalyDetectorRandomCutForestConfigurationArgsDict(TypedDict):
|
|
223
232
|
query: pulumi.Input[_builtins.str]
|
|
233
|
+
"""
|
|
234
|
+
The Prometheus query used to retrieve the time-series data for anomaly detection.
|
|
235
|
+
|
|
236
|
+
> Random Cut Forest queries must be wrapped by a supported PromQL aggregation operator. For more information, see [Aggregation operators](https://docs.aws.amazon.com/https://prometheus.io/docs/prometheus/latest/querying/operators/#aggregation-operators) on the *Prometheus docs* website.
|
|
237
|
+
>
|
|
238
|
+
> *Supported PromQL aggregation operators* : `avg` , `count` , `group` , `max` , `min` , `quantile` , `stddev` , `stdvar` , and `sum` .
|
|
239
|
+
"""
|
|
224
240
|
ignore_near_expected_from_above: NotRequired[pulumi.Input['AnomalyDetectorIgnoreNearExpectedArgsDict']]
|
|
241
|
+
"""
|
|
242
|
+
Configuration for ignoring values that are near expected values from above during anomaly detection.
|
|
243
|
+
"""
|
|
225
244
|
ignore_near_expected_from_below: NotRequired[pulumi.Input['AnomalyDetectorIgnoreNearExpectedArgsDict']]
|
|
245
|
+
"""
|
|
246
|
+
Configuration for ignoring values that are near expected values from below during anomaly detection.
|
|
247
|
+
"""
|
|
226
248
|
sample_size: NotRequired[pulumi.Input[_builtins.int]]
|
|
249
|
+
"""
|
|
250
|
+
The number of data points sampled from the input stream for the Random Cut Forest algorithm. The default number is 256 consecutive data points.
|
|
251
|
+
"""
|
|
227
252
|
shingle_size: NotRequired[pulumi.Input[_builtins.int]]
|
|
253
|
+
"""
|
|
254
|
+
The number of consecutive data points used to create a shingle for the Random Cut Forest algorithm. The default number is 8 consecutive data points.
|
|
255
|
+
"""
|
|
228
256
|
elif False:
|
|
229
257
|
AnomalyDetectorRandomCutForestConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
230
258
|
|
|
@@ -236,6 +264,17 @@ class AnomalyDetectorRandomCutForestConfigurationArgs:
|
|
|
236
264
|
ignore_near_expected_from_below: Optional[pulumi.Input['AnomalyDetectorIgnoreNearExpectedArgs']] = None,
|
|
237
265
|
sample_size: Optional[pulumi.Input[_builtins.int]] = None,
|
|
238
266
|
shingle_size: Optional[pulumi.Input[_builtins.int]] = None):
|
|
267
|
+
"""
|
|
268
|
+
:param pulumi.Input[_builtins.str] query: The Prometheus query used to retrieve the time-series data for anomaly detection.
|
|
269
|
+
|
|
270
|
+
> Random Cut Forest queries must be wrapped by a supported PromQL aggregation operator. For more information, see [Aggregation operators](https://docs.aws.amazon.com/https://prometheus.io/docs/prometheus/latest/querying/operators/#aggregation-operators) on the *Prometheus docs* website.
|
|
271
|
+
>
|
|
272
|
+
> *Supported PromQL aggregation operators* : `avg` , `count` , `group` , `max` , `min` , `quantile` , `stddev` , `stdvar` , and `sum` .
|
|
273
|
+
:param pulumi.Input['AnomalyDetectorIgnoreNearExpectedArgs'] ignore_near_expected_from_above: Configuration for ignoring values that are near expected values from above during anomaly detection.
|
|
274
|
+
:param pulumi.Input['AnomalyDetectorIgnoreNearExpectedArgs'] ignore_near_expected_from_below: Configuration for ignoring values that are near expected values from below during anomaly detection.
|
|
275
|
+
:param pulumi.Input[_builtins.int] sample_size: The number of data points sampled from the input stream for the Random Cut Forest algorithm. The default number is 256 consecutive data points.
|
|
276
|
+
:param pulumi.Input[_builtins.int] shingle_size: The number of consecutive data points used to create a shingle for the Random Cut Forest algorithm. The default number is 8 consecutive data points.
|
|
277
|
+
"""
|
|
239
278
|
pulumi.set(__self__, "query", query)
|
|
240
279
|
if ignore_near_expected_from_above is not None:
|
|
241
280
|
pulumi.set(__self__, "ignore_near_expected_from_above", ignore_near_expected_from_above)
|
|
@@ -249,6 +288,13 @@ class AnomalyDetectorRandomCutForestConfigurationArgs:
|
|
|
249
288
|
@_builtins.property
|
|
250
289
|
@pulumi.getter
|
|
251
290
|
def query(self) -> pulumi.Input[_builtins.str]:
|
|
291
|
+
"""
|
|
292
|
+
The Prometheus query used to retrieve the time-series data for anomaly detection.
|
|
293
|
+
|
|
294
|
+
> Random Cut Forest queries must be wrapped by a supported PromQL aggregation operator. For more information, see [Aggregation operators](https://docs.aws.amazon.com/https://prometheus.io/docs/prometheus/latest/querying/operators/#aggregation-operators) on the *Prometheus docs* website.
|
|
295
|
+
>
|
|
296
|
+
> *Supported PromQL aggregation operators* : `avg` , `count` , `group` , `max` , `min` , `quantile` , `stddev` , `stdvar` , and `sum` .
|
|
297
|
+
"""
|
|
252
298
|
return pulumi.get(self, "query")
|
|
253
299
|
|
|
254
300
|
@query.setter
|
|
@@ -258,6 +304,9 @@ class AnomalyDetectorRandomCutForestConfigurationArgs:
|
|
|
258
304
|
@_builtins.property
|
|
259
305
|
@pulumi.getter(name="ignoreNearExpectedFromAbove")
|
|
260
306
|
def ignore_near_expected_from_above(self) -> Optional[pulumi.Input['AnomalyDetectorIgnoreNearExpectedArgs']]:
|
|
307
|
+
"""
|
|
308
|
+
Configuration for ignoring values that are near expected values from above during anomaly detection.
|
|
309
|
+
"""
|
|
261
310
|
return pulumi.get(self, "ignore_near_expected_from_above")
|
|
262
311
|
|
|
263
312
|
@ignore_near_expected_from_above.setter
|
|
@@ -267,6 +316,9 @@ class AnomalyDetectorRandomCutForestConfigurationArgs:
|
|
|
267
316
|
@_builtins.property
|
|
268
317
|
@pulumi.getter(name="ignoreNearExpectedFromBelow")
|
|
269
318
|
def ignore_near_expected_from_below(self) -> Optional[pulumi.Input['AnomalyDetectorIgnoreNearExpectedArgs']]:
|
|
319
|
+
"""
|
|
320
|
+
Configuration for ignoring values that are near expected values from below during anomaly detection.
|
|
321
|
+
"""
|
|
270
322
|
return pulumi.get(self, "ignore_near_expected_from_below")
|
|
271
323
|
|
|
272
324
|
@ignore_near_expected_from_below.setter
|
|
@@ -276,6 +328,9 @@ class AnomalyDetectorRandomCutForestConfigurationArgs:
|
|
|
276
328
|
@_builtins.property
|
|
277
329
|
@pulumi.getter(name="sampleSize")
|
|
278
330
|
def sample_size(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
331
|
+
"""
|
|
332
|
+
The number of data points sampled from the input stream for the Random Cut Forest algorithm. The default number is 256 consecutive data points.
|
|
333
|
+
"""
|
|
279
334
|
return pulumi.get(self, "sample_size")
|
|
280
335
|
|
|
281
336
|
@sample_size.setter
|
|
@@ -285,6 +340,9 @@ class AnomalyDetectorRandomCutForestConfigurationArgs:
|
|
|
285
340
|
@_builtins.property
|
|
286
341
|
@pulumi.getter(name="shingleSize")
|
|
287
342
|
def shingle_size(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
343
|
+
"""
|
|
344
|
+
The number of consecutive data points used to create a shingle for the Random Cut Forest algorithm. The default number is 8 consecutive data points.
|
|
345
|
+
"""
|
|
288
346
|
return pulumi.get(self, "shingle_size")
|
|
289
347
|
|
|
290
348
|
@shingle_size.setter
|
pulumi_aws_native/aps/outputs.py
CHANGED
|
@@ -65,11 +65,17 @@ class AnomalyDetectorConfiguration(dict):
|
|
|
65
65
|
|
|
66
66
|
def __init__(__self__, *,
|
|
67
67
|
random_cut_forest: 'outputs.AnomalyDetectorRandomCutForestConfiguration'):
|
|
68
|
+
"""
|
|
69
|
+
:param 'AnomalyDetectorRandomCutForestConfiguration' random_cut_forest: The Random Cut Forest algorithm configuration for anomaly detection.
|
|
70
|
+
"""
|
|
68
71
|
pulumi.set(__self__, "random_cut_forest", random_cut_forest)
|
|
69
72
|
|
|
70
73
|
@_builtins.property
|
|
71
74
|
@pulumi.getter(name="randomCutForest")
|
|
72
75
|
def random_cut_forest(self) -> 'outputs.AnomalyDetectorRandomCutForestConfiguration':
|
|
76
|
+
"""
|
|
77
|
+
The Random Cut Forest algorithm configuration for anomaly detection.
|
|
78
|
+
"""
|
|
73
79
|
return pulumi.get(self, "random_cut_forest")
|
|
74
80
|
|
|
75
81
|
|
|
@@ -196,6 +202,17 @@ class AnomalyDetectorRandomCutForestConfiguration(dict):
|
|
|
196
202
|
ignore_near_expected_from_below: Optional['outputs.AnomalyDetectorIgnoreNearExpected'] = None,
|
|
197
203
|
sample_size: Optional[_builtins.int] = None,
|
|
198
204
|
shingle_size: Optional[_builtins.int] = None):
|
|
205
|
+
"""
|
|
206
|
+
:param _builtins.str query: The Prometheus query used to retrieve the time-series data for anomaly detection.
|
|
207
|
+
|
|
208
|
+
> Random Cut Forest queries must be wrapped by a supported PromQL aggregation operator. For more information, see [Aggregation operators](https://docs.aws.amazon.com/https://prometheus.io/docs/prometheus/latest/querying/operators/#aggregation-operators) on the *Prometheus docs* website.
|
|
209
|
+
>
|
|
210
|
+
> *Supported PromQL aggregation operators* : `avg` , `count` , `group` , `max` , `min` , `quantile` , `stddev` , `stdvar` , and `sum` .
|
|
211
|
+
:param 'AnomalyDetectorIgnoreNearExpected' ignore_near_expected_from_above: Configuration for ignoring values that are near expected values from above during anomaly detection.
|
|
212
|
+
:param 'AnomalyDetectorIgnoreNearExpected' ignore_near_expected_from_below: Configuration for ignoring values that are near expected values from below during anomaly detection.
|
|
213
|
+
:param _builtins.int sample_size: The number of data points sampled from the input stream for the Random Cut Forest algorithm. The default number is 256 consecutive data points.
|
|
214
|
+
:param _builtins.int shingle_size: The number of consecutive data points used to create a shingle for the Random Cut Forest algorithm. The default number is 8 consecutive data points.
|
|
215
|
+
"""
|
|
199
216
|
pulumi.set(__self__, "query", query)
|
|
200
217
|
if ignore_near_expected_from_above is not None:
|
|
201
218
|
pulumi.set(__self__, "ignore_near_expected_from_above", ignore_near_expected_from_above)
|
|
@@ -209,26 +226,45 @@ class AnomalyDetectorRandomCutForestConfiguration(dict):
|
|
|
209
226
|
@_builtins.property
|
|
210
227
|
@pulumi.getter
|
|
211
228
|
def query(self) -> _builtins.str:
|
|
229
|
+
"""
|
|
230
|
+
The Prometheus query used to retrieve the time-series data for anomaly detection.
|
|
231
|
+
|
|
232
|
+
> Random Cut Forest queries must be wrapped by a supported PromQL aggregation operator. For more information, see [Aggregation operators](https://docs.aws.amazon.com/https://prometheus.io/docs/prometheus/latest/querying/operators/#aggregation-operators) on the *Prometheus docs* website.
|
|
233
|
+
>
|
|
234
|
+
> *Supported PromQL aggregation operators* : `avg` , `count` , `group` , `max` , `min` , `quantile` , `stddev` , `stdvar` , and `sum` .
|
|
235
|
+
"""
|
|
212
236
|
return pulumi.get(self, "query")
|
|
213
237
|
|
|
214
238
|
@_builtins.property
|
|
215
239
|
@pulumi.getter(name="ignoreNearExpectedFromAbove")
|
|
216
240
|
def ignore_near_expected_from_above(self) -> Optional['outputs.AnomalyDetectorIgnoreNearExpected']:
|
|
241
|
+
"""
|
|
242
|
+
Configuration for ignoring values that are near expected values from above during anomaly detection.
|
|
243
|
+
"""
|
|
217
244
|
return pulumi.get(self, "ignore_near_expected_from_above")
|
|
218
245
|
|
|
219
246
|
@_builtins.property
|
|
220
247
|
@pulumi.getter(name="ignoreNearExpectedFromBelow")
|
|
221
248
|
def ignore_near_expected_from_below(self) -> Optional['outputs.AnomalyDetectorIgnoreNearExpected']:
|
|
249
|
+
"""
|
|
250
|
+
Configuration for ignoring values that are near expected values from below during anomaly detection.
|
|
251
|
+
"""
|
|
222
252
|
return pulumi.get(self, "ignore_near_expected_from_below")
|
|
223
253
|
|
|
224
254
|
@_builtins.property
|
|
225
255
|
@pulumi.getter(name="sampleSize")
|
|
226
256
|
def sample_size(self) -> Optional[_builtins.int]:
|
|
257
|
+
"""
|
|
258
|
+
The number of data points sampled from the input stream for the Random Cut Forest algorithm. The default number is 256 consecutive data points.
|
|
259
|
+
"""
|
|
227
260
|
return pulumi.get(self, "sample_size")
|
|
228
261
|
|
|
229
262
|
@_builtins.property
|
|
230
263
|
@pulumi.getter(name="shingleSize")
|
|
231
264
|
def shingle_size(self) -> Optional[_builtins.int]:
|
|
265
|
+
"""
|
|
266
|
+
The number of consecutive data points used to create a shingle for the Random Cut Forest algorithm. The default number is 8 consecutive data points.
|
|
267
|
+
"""
|
|
232
268
|
return pulumi.get(self, "shingle_size")
|
|
233
269
|
|
|
234
270
|
|
|
@@ -101,9 +101,6 @@ class GetPlanResult:
|
|
|
101
101
|
@_builtins.property
|
|
102
102
|
@pulumi.getter(name="healthChecksForPlan")
|
|
103
103
|
def health_checks_for_plan(self) -> Optional[Mapping[str, Sequence['outputs.PlanHealthCheckState']]]:
|
|
104
|
-
"""
|
|
105
|
-
Represents a Region switch plan. A plan defines the steps required to shift traffic from one AWS Region to another.
|
|
106
|
-
"""
|
|
107
104
|
return pulumi.get(self, "health_checks_for_plan")
|
|
108
105
|
|
|
109
106
|
@_builtins.property
|
|
@@ -376,9 +376,6 @@ class Plan(pulumi.CustomResource):
|
|
|
376
376
|
@_builtins.property
|
|
377
377
|
@pulumi.getter(name="healthChecksForPlan")
|
|
378
378
|
def health_checks_for_plan(self) -> pulumi.Output[Mapping[str, Sequence['outputs.PlanHealthCheckState']]]:
|
|
379
|
-
"""
|
|
380
|
-
Represents a Region switch plan. A plan defines the steps required to shift traffic from one AWS Region to another.
|
|
381
|
-
"""
|
|
382
379
|
return pulumi.get(self, "health_checks_for_plan")
|
|
383
380
|
|
|
384
381
|
@_builtins.property
|
|
@@ -5687,6 +5687,9 @@ class JobDefinitionResourceRequirementArgs:
|
|
|
5687
5687
|
if not MYPY:
|
|
5688
5688
|
class JobDefinitionResourceRetentionPolicyArgsDict(TypedDict):
|
|
5689
5689
|
skip_deregister_on_update: NotRequired[pulumi.Input[_builtins.bool]]
|
|
5690
|
+
"""
|
|
5691
|
+
Specifies whether the previous revision of the job definition is retained in an active status after UPDATE events for the resource. The default value is `false` . When the property is set to `false` , the previous revision of the job definition is de-registered after a new revision is created. When the property is set to `true` , the previous revision of the job definition is not de-registered.
|
|
5692
|
+
"""
|
|
5690
5693
|
elif False:
|
|
5691
5694
|
JobDefinitionResourceRetentionPolicyArgsDict: TypeAlias = Mapping[str, Any]
|
|
5692
5695
|
|
|
@@ -5694,12 +5697,18 @@ elif False:
|
|
|
5694
5697
|
class JobDefinitionResourceRetentionPolicyArgs:
|
|
5695
5698
|
def __init__(__self__, *,
|
|
5696
5699
|
skip_deregister_on_update: Optional[pulumi.Input[_builtins.bool]] = None):
|
|
5700
|
+
"""
|
|
5701
|
+
:param pulumi.Input[_builtins.bool] skip_deregister_on_update: Specifies whether the previous revision of the job definition is retained in an active status after UPDATE events for the resource. The default value is `false` . When the property is set to `false` , the previous revision of the job definition is de-registered after a new revision is created. When the property is set to `true` , the previous revision of the job definition is not de-registered.
|
|
5702
|
+
"""
|
|
5697
5703
|
if skip_deregister_on_update is not None:
|
|
5698
5704
|
pulumi.set(__self__, "skip_deregister_on_update", skip_deregister_on_update)
|
|
5699
5705
|
|
|
5700
5706
|
@_builtins.property
|
|
5701
5707
|
@pulumi.getter(name="skipDeregisterOnUpdate")
|
|
5702
5708
|
def skip_deregister_on_update(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
5709
|
+
"""
|
|
5710
|
+
Specifies whether the previous revision of the job definition is retained in an active status after UPDATE events for the resource. The default value is `false` . When the property is set to `false` , the previous revision of the job definition is de-registered after a new revision is created. When the property is set to `true` , the previous revision of the job definition is not de-registered.
|
|
5711
|
+
"""
|
|
5703
5712
|
return pulumi.get(self, "skip_deregister_on_update")
|
|
5704
5713
|
|
|
5705
5714
|
@skip_deregister_on_update.setter
|
|
@@ -55,6 +55,7 @@ class JobDefinitionArgs:
|
|
|
55
55
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] parameters: Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a `SubmitJob` request override any corresponding parameter defaults from the job definition. For more information about specifying parameters, see [Job definition parameters](https://docs.aws.amazon.com/batch/latest/userguide/job_definition_parameters.html) in the *AWS Batch User Guide* .
|
|
56
56
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] platform_capabilities: The platform capabilities required by the job definition. If no value is specified, it defaults to `EC2` . Jobs run on Fargate resources specify `FARGATE` .
|
|
57
57
|
:param pulumi.Input[_builtins.bool] propagate_tags: Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If no value is specified, the tags aren't propagated. Tags can only be propagated to the tasks when the tasks are created. For tags with the same name, job tags are given priority over job definitions tags. If the total number of combined tags from the job and job definition is over 50, the job is moved to the `FAILED` state.
|
|
58
|
+
:param pulumi.Input['JobDefinitionResourceRetentionPolicyArgs'] resource_retention_policy: Specifies the resource retention policy settings for the job definition.
|
|
58
59
|
:param pulumi.Input['JobDefinitionRetryStrategyArgs'] retry_strategy: The retry strategy to use for failed jobs that are submitted with this job definition.
|
|
59
60
|
:param pulumi.Input[_builtins.int] scheduling_priority: The scheduling priority of the job definition. This only affects jobs in job queues with a fair-share policy. Jobs with a higher scheduling priority are scheduled before jobs with a lower scheduling priority.
|
|
60
61
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A key-value pair to associate with a resource.
|
|
@@ -220,6 +221,9 @@ class JobDefinitionArgs:
|
|
|
220
221
|
@_builtins.property
|
|
221
222
|
@pulumi.getter(name="resourceRetentionPolicy")
|
|
222
223
|
def resource_retention_policy(self) -> Optional[pulumi.Input['JobDefinitionResourceRetentionPolicyArgs']]:
|
|
224
|
+
"""
|
|
225
|
+
Specifies the resource retention policy settings for the job definition.
|
|
226
|
+
"""
|
|
223
227
|
return pulumi.get(self, "resource_retention_policy")
|
|
224
228
|
|
|
225
229
|
@resource_retention_policy.setter
|
|
@@ -313,6 +317,7 @@ class JobDefinition(pulumi.CustomResource):
|
|
|
313
317
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] parameters: Default parameters or parameter substitution placeholders that are set in the job definition. Parameters are specified as a key-value pair mapping. Parameters in a `SubmitJob` request override any corresponding parameter defaults from the job definition. For more information about specifying parameters, see [Job definition parameters](https://docs.aws.amazon.com/batch/latest/userguide/job_definition_parameters.html) in the *AWS Batch User Guide* .
|
|
314
318
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] platform_capabilities: The platform capabilities required by the job definition. If no value is specified, it defaults to `EC2` . Jobs run on Fargate resources specify `FARGATE` .
|
|
315
319
|
:param pulumi.Input[_builtins.bool] propagate_tags: Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If no value is specified, the tags aren't propagated. Tags can only be propagated to the tasks when the tasks are created. For tags with the same name, job tags are given priority over job definitions tags. If the total number of combined tags from the job and job definition is over 50, the job is moved to the `FAILED` state.
|
|
320
|
+
:param pulumi.Input[Union['JobDefinitionResourceRetentionPolicyArgs', 'JobDefinitionResourceRetentionPolicyArgsDict']] resource_retention_policy: Specifies the resource retention policy settings for the job definition.
|
|
316
321
|
:param pulumi.Input[Union['JobDefinitionRetryStrategyArgs', 'JobDefinitionRetryStrategyArgsDict']] retry_strategy: The retry strategy to use for failed jobs that are submitted with this job definition.
|
|
317
322
|
:param pulumi.Input[_builtins.int] scheduling_priority: The scheduling priority of the job definition. This only affects jobs in job queues with a fair-share policy. Jobs with a higher scheduling priority are scheduled before jobs with a lower scheduling priority.
|
|
318
323
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A key-value pair to associate with a resource.
|
|
@@ -517,6 +522,9 @@ class JobDefinition(pulumi.CustomResource):
|
|
|
517
522
|
@_builtins.property
|
|
518
523
|
@pulumi.getter(name="resourceRetentionPolicy")
|
|
519
524
|
def resource_retention_policy(self) -> pulumi.Output[Optional['outputs.JobDefinitionResourceRetentionPolicy']]:
|
|
525
|
+
"""
|
|
526
|
+
Specifies the resource retention policy settings for the job definition.
|
|
527
|
+
"""
|
|
520
528
|
return pulumi.get(self, "resource_retention_policy")
|
|
521
529
|
|
|
522
530
|
@_builtins.property
|
|
@@ -4311,12 +4311,18 @@ class JobDefinitionResourceRetentionPolicy(dict):
|
|
|
4311
4311
|
|
|
4312
4312
|
def __init__(__self__, *,
|
|
4313
4313
|
skip_deregister_on_update: Optional[_builtins.bool] = None):
|
|
4314
|
+
"""
|
|
4315
|
+
:param _builtins.bool skip_deregister_on_update: Specifies whether the previous revision of the job definition is retained in an active status after UPDATE events for the resource. The default value is `false` . When the property is set to `false` , the previous revision of the job definition is de-registered after a new revision is created. When the property is set to `true` , the previous revision of the job definition is not de-registered.
|
|
4316
|
+
"""
|
|
4314
4317
|
if skip_deregister_on_update is not None:
|
|
4315
4318
|
pulumi.set(__self__, "skip_deregister_on_update", skip_deregister_on_update)
|
|
4316
4319
|
|
|
4317
4320
|
@_builtins.property
|
|
4318
4321
|
@pulumi.getter(name="skipDeregisterOnUpdate")
|
|
4319
4322
|
def skip_deregister_on_update(self) -> Optional[_builtins.bool]:
|
|
4323
|
+
"""
|
|
4324
|
+
Specifies whether the previous revision of the job definition is retained in an active status after UPDATE events for the resource. The default value is `false` . When the property is set to `false` , the previous revision of the job definition is de-registered after a new revision is created. When the property is set to `true` , the previous revision of the job definition is not de-registered.
|
|
4325
|
+
"""
|
|
4320
4326
|
return pulumi.get(self, "skip_deregister_on_update")
|
|
4321
4327
|
|
|
4322
4328
|
|
|
@@ -24,6 +24,8 @@ __all__ = ['AutomatedReasoningPolicyArgs', 'AutomatedReasoningPolicy']
|
|
|
24
24
|
class AutomatedReasoningPolicyArgs:
|
|
25
25
|
def __init__(__self__, *,
|
|
26
26
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
|
27
|
+
force_delete: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
28
|
+
kms_key_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
27
29
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
28
30
|
policy_definition: Optional[pulumi.Input['AutomatedReasoningPolicyPolicyDefinitionArgs']] = None,
|
|
29
31
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]] = None):
|
|
@@ -36,6 +38,10 @@ class AutomatedReasoningPolicyArgs:
|
|
|
36
38
|
"""
|
|
37
39
|
if description is not None:
|
|
38
40
|
pulumi.set(__self__, "description", description)
|
|
41
|
+
if force_delete is not None:
|
|
42
|
+
pulumi.set(__self__, "force_delete", force_delete)
|
|
43
|
+
if kms_key_id is not None:
|
|
44
|
+
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
|
39
45
|
if name is not None:
|
|
40
46
|
pulumi.set(__self__, "name", name)
|
|
41
47
|
if policy_definition is not None:
|
|
@@ -55,6 +61,24 @@ class AutomatedReasoningPolicyArgs:
|
|
|
55
61
|
def description(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
56
62
|
pulumi.set(self, "description", value)
|
|
57
63
|
|
|
64
|
+
@_builtins.property
|
|
65
|
+
@pulumi.getter(name="forceDelete")
|
|
66
|
+
def force_delete(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
67
|
+
return pulumi.get(self, "force_delete")
|
|
68
|
+
|
|
69
|
+
@force_delete.setter
|
|
70
|
+
def force_delete(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
71
|
+
pulumi.set(self, "force_delete", value)
|
|
72
|
+
|
|
73
|
+
@_builtins.property
|
|
74
|
+
@pulumi.getter(name="kmsKeyId")
|
|
75
|
+
def kms_key_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
76
|
+
return pulumi.get(self, "kms_key_id")
|
|
77
|
+
|
|
78
|
+
@kms_key_id.setter
|
|
79
|
+
def kms_key_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
80
|
+
pulumi.set(self, "kms_key_id", value)
|
|
81
|
+
|
|
58
82
|
@_builtins.property
|
|
59
83
|
@pulumi.getter
|
|
60
84
|
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -99,6 +123,8 @@ class AutomatedReasoningPolicy(pulumi.CustomResource):
|
|
|
99
123
|
resource_name: str,
|
|
100
124
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
101
125
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
|
126
|
+
force_delete: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
127
|
+
kms_key_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
102
128
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
103
129
|
policy_definition: Optional[pulumi.Input[Union['AutomatedReasoningPolicyPolicyDefinitionArgs', 'AutomatedReasoningPolicyPolicyDefinitionArgsDict']]] = None,
|
|
104
130
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]]] = None,
|
|
@@ -138,6 +164,8 @@ class AutomatedReasoningPolicy(pulumi.CustomResource):
|
|
|
138
164
|
resource_name: str,
|
|
139
165
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
140
166
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
|
167
|
+
force_delete: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
168
|
+
kms_key_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
141
169
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
142
170
|
policy_definition: Optional[pulumi.Input[Union['AutomatedReasoningPolicyPolicyDefinitionArgs', 'AutomatedReasoningPolicyPolicyDefinitionArgsDict']]] = None,
|
|
143
171
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]]] = None,
|
|
@@ -151,15 +179,20 @@ class AutomatedReasoningPolicy(pulumi.CustomResource):
|
|
|
151
179
|
__props__ = AutomatedReasoningPolicyArgs.__new__(AutomatedReasoningPolicyArgs)
|
|
152
180
|
|
|
153
181
|
__props__.__dict__["description"] = description
|
|
182
|
+
__props__.__dict__["force_delete"] = force_delete
|
|
183
|
+
__props__.__dict__["kms_key_id"] = kms_key_id
|
|
154
184
|
__props__.__dict__["name"] = name
|
|
155
185
|
__props__.__dict__["policy_definition"] = policy_definition
|
|
156
186
|
__props__.__dict__["tags"] = tags
|
|
157
187
|
__props__.__dict__["created_at"] = None
|
|
158
188
|
__props__.__dict__["definition_hash"] = None
|
|
189
|
+
__props__.__dict__["kms_key_arn"] = None
|
|
159
190
|
__props__.__dict__["policy_arn"] = None
|
|
160
191
|
__props__.__dict__["policy_id"] = None
|
|
161
192
|
__props__.__dict__["updated_at"] = None
|
|
162
193
|
__props__.__dict__["version"] = None
|
|
194
|
+
replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["forceDelete", "kmsKeyId"])
|
|
195
|
+
opts = pulumi.ResourceOptions.merge(opts, replace_on_changes)
|
|
163
196
|
super(AutomatedReasoningPolicy, __self__).__init__(
|
|
164
197
|
'aws-native:bedrock:AutomatedReasoningPolicy',
|
|
165
198
|
resource_name,
|
|
@@ -185,6 +218,9 @@ class AutomatedReasoningPolicy(pulumi.CustomResource):
|
|
|
185
218
|
__props__.__dict__["created_at"] = None
|
|
186
219
|
__props__.__dict__["definition_hash"] = None
|
|
187
220
|
__props__.__dict__["description"] = None
|
|
221
|
+
__props__.__dict__["force_delete"] = None
|
|
222
|
+
__props__.__dict__["kms_key_arn"] = None
|
|
223
|
+
__props__.__dict__["kms_key_id"] = None
|
|
188
224
|
__props__.__dict__["name"] = None
|
|
189
225
|
__props__.__dict__["policy_arn"] = None
|
|
190
226
|
__props__.__dict__["policy_definition"] = None
|
|
@@ -218,6 +254,21 @@ class AutomatedReasoningPolicy(pulumi.CustomResource):
|
|
|
218
254
|
"""
|
|
219
255
|
return pulumi.get(self, "description")
|
|
220
256
|
|
|
257
|
+
@_builtins.property
|
|
258
|
+
@pulumi.getter(name="forceDelete")
|
|
259
|
+
def force_delete(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
260
|
+
return pulumi.get(self, "force_delete")
|
|
261
|
+
|
|
262
|
+
@_builtins.property
|
|
263
|
+
@pulumi.getter(name="kmsKeyArn")
|
|
264
|
+
def kms_key_arn(self) -> pulumi.Output[_builtins.str]:
|
|
265
|
+
return pulumi.get(self, "kms_key_arn")
|
|
266
|
+
|
|
267
|
+
@_builtins.property
|
|
268
|
+
@pulumi.getter(name="kmsKeyId")
|
|
269
|
+
def kms_key_id(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
270
|
+
return pulumi.get(self, "kms_key_id")
|
|
271
|
+
|
|
221
272
|
@_builtins.property
|
|
222
273
|
@pulumi.getter
|
|
223
274
|
def name(self) -> pulumi.Output[_builtins.str]:
|
|
@@ -25,7 +25,7 @@ __all__ = [
|
|
|
25
25
|
|
|
26
26
|
@pulumi.output_type
|
|
27
27
|
class GetAutomatedReasoningPolicyResult:
|
|
28
|
-
def __init__(__self__, created_at=None, definition_hash=None, description=None, name=None, policy_arn=None, policy_definition=None, policy_id=None, tags=None, updated_at=None, version=None):
|
|
28
|
+
def __init__(__self__, created_at=None, definition_hash=None, description=None, kms_key_arn=None, name=None, policy_arn=None, policy_definition=None, policy_id=None, tags=None, updated_at=None, version=None):
|
|
29
29
|
if created_at and not isinstance(created_at, str):
|
|
30
30
|
raise TypeError("Expected argument 'created_at' to be a str")
|
|
31
31
|
pulumi.set(__self__, "created_at", created_at)
|
|
@@ -35,6 +35,9 @@ class GetAutomatedReasoningPolicyResult:
|
|
|
35
35
|
if description and not isinstance(description, str):
|
|
36
36
|
raise TypeError("Expected argument 'description' to be a str")
|
|
37
37
|
pulumi.set(__self__, "description", description)
|
|
38
|
+
if kms_key_arn and not isinstance(kms_key_arn, str):
|
|
39
|
+
raise TypeError("Expected argument 'kms_key_arn' to be a str")
|
|
40
|
+
pulumi.set(__self__, "kms_key_arn", kms_key_arn)
|
|
38
41
|
if name and not isinstance(name, str):
|
|
39
42
|
raise TypeError("Expected argument 'name' to be a str")
|
|
40
43
|
pulumi.set(__self__, "name", name)
|
|
@@ -81,6 +84,11 @@ class GetAutomatedReasoningPolicyResult:
|
|
|
81
84
|
"""
|
|
82
85
|
return pulumi.get(self, "description")
|
|
83
86
|
|
|
87
|
+
@_builtins.property
|
|
88
|
+
@pulumi.getter(name="kmsKeyArn")
|
|
89
|
+
def kms_key_arn(self) -> Optional[_builtins.str]:
|
|
90
|
+
return pulumi.get(self, "kms_key_arn")
|
|
91
|
+
|
|
84
92
|
@_builtins.property
|
|
85
93
|
@pulumi.getter
|
|
86
94
|
def name(self) -> Optional[_builtins.str]:
|
|
@@ -147,6 +155,7 @@ class AwaitableGetAutomatedReasoningPolicyResult(GetAutomatedReasoningPolicyResu
|
|
|
147
155
|
created_at=self.created_at,
|
|
148
156
|
definition_hash=self.definition_hash,
|
|
149
157
|
description=self.description,
|
|
158
|
+
kms_key_arn=self.kms_key_arn,
|
|
150
159
|
name=self.name,
|
|
151
160
|
policy_arn=self.policy_arn,
|
|
152
161
|
policy_definition=self.policy_definition,
|
|
@@ -173,6 +182,7 @@ def get_automated_reasoning_policy(policy_arn: Optional[_builtins.str] = None,
|
|
|
173
182
|
created_at=pulumi.get(__ret__, 'created_at'),
|
|
174
183
|
definition_hash=pulumi.get(__ret__, 'definition_hash'),
|
|
175
184
|
description=pulumi.get(__ret__, 'description'),
|
|
185
|
+
kms_key_arn=pulumi.get(__ret__, 'kms_key_arn'),
|
|
176
186
|
name=pulumi.get(__ret__, 'name'),
|
|
177
187
|
policy_arn=pulumi.get(__ret__, 'policy_arn'),
|
|
178
188
|
policy_definition=pulumi.get(__ret__, 'policy_definition'),
|
|
@@ -196,6 +206,7 @@ def get_automated_reasoning_policy_output(policy_arn: Optional[pulumi.Input[_bui
|
|
|
196
206
|
created_at=pulumi.get(__response__, 'created_at'),
|
|
197
207
|
definition_hash=pulumi.get(__response__, 'definition_hash'),
|
|
198
208
|
description=pulumi.get(__response__, 'description'),
|
|
209
|
+
kms_key_arn=pulumi.get(__response__, 'kms_key_arn'),
|
|
199
210
|
name=pulumi.get(__response__, 'name'),
|
|
200
211
|
policy_arn=pulumi.get(__response__, 'policy_arn'),
|
|
201
212
|
policy_definition=pulumi.get(__response__, 'policy_definition'),
|
|
@@ -18,8 +18,10 @@ from .get_gateway_target import *
|
|
|
18
18
|
from .get_memory import *
|
|
19
19
|
from .get_runtime import *
|
|
20
20
|
from .get_runtime_endpoint import *
|
|
21
|
+
from .get_workload_identity import *
|
|
21
22
|
from .memory import *
|
|
22
23
|
from .runtime import *
|
|
23
24
|
from .runtime_endpoint import *
|
|
25
|
+
from .workload_identity import *
|
|
24
26
|
from ._inputs import *
|
|
25
27
|
from . import outputs
|