boto3-pydantic-lookoutmetrics 1.0.1__py3-none-any.whl → 1.0.2__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_pydantic_lookoutmetrics/lookoutmetrics_classes.py +44 -0
- {boto3_pydantic_lookoutmetrics-1.0.1.dist-info → boto3_pydantic_lookoutmetrics-1.0.2.dist-info}/METADATA +1 -1
- {boto3_pydantic_lookoutmetrics-1.0.1.dist-info → boto3_pydantic_lookoutmetrics-1.0.2.dist-info}/RECORD +4 -4
- {boto3_pydantic_lookoutmetrics-1.0.1.dist-info → boto3_pydantic_lookoutmetrics-1.0.2.dist-info}/WHEEL +0 -0
@@ -170,10 +170,12 @@ class DeleteAnomalyDetectorRequest(BaseValidatorModel):
|
|
170
170
|
AnomalyDetectorArn: str
|
171
171
|
|
172
172
|
|
173
|
+
# This class is the input for the 'describe_alert' function.
|
173
174
|
class DescribeAlertRequest(BaseValidatorModel):
|
174
175
|
AlertArn: str
|
175
176
|
|
176
177
|
|
178
|
+
# This class is the input for the 'describe_anomaly_detection_executions' function.
|
177
179
|
class DescribeAnomalyDetectionExecutionsRequest(BaseValidatorModel):
|
178
180
|
AnomalyDetectorArn: str
|
179
181
|
Timestamp: Optional[str] = None
|
@@ -187,10 +189,12 @@ class ExecutionStatus(BaseValidatorModel):
|
|
187
189
|
FailureReason: Optional[str] = None
|
188
190
|
|
189
191
|
|
192
|
+
# This class is the input for the 'describe_anomaly_detector' function.
|
190
193
|
class DescribeAnomalyDetectorRequest(BaseValidatorModel):
|
191
194
|
AnomalyDetectorArn: str
|
192
195
|
|
193
196
|
|
197
|
+
# This class is the input for the 'describe_metric_set' function.
|
194
198
|
class DescribeMetricSetRequest(BaseValidatorModel):
|
195
199
|
MetricSetArn: str
|
196
200
|
|
@@ -215,11 +219,13 @@ class Filter(BaseValidatorModel):
|
|
215
219
|
FilterOperation: Optional[Literal['EQUALS']] = None
|
216
220
|
|
217
221
|
|
222
|
+
# This class is the input for the 'get_anomaly_group' function.
|
218
223
|
class GetAnomalyGroupRequest(BaseValidatorModel):
|
219
224
|
AnomalyGroupId: str
|
220
225
|
AnomalyDetectorArn: str
|
221
226
|
|
222
227
|
|
228
|
+
# This class is the input for the 'get_data_quality_metrics' function.
|
223
229
|
class GetDataQualityMetricsRequest(BaseValidatorModel):
|
224
230
|
AnomalyDetectorArn: str
|
225
231
|
MetricSetArn: Optional[str] = None
|
@@ -237,17 +243,20 @@ class InterMetricImpactDetails(BaseValidatorModel):
|
|
237
243
|
ContributionPercentage: Optional[float] = None
|
238
244
|
|
239
245
|
|
246
|
+
# This class is the input for the 'list_alerts' function.
|
240
247
|
class ListAlertsRequest(BaseValidatorModel):
|
241
248
|
AnomalyDetectorArn: Optional[str] = None
|
242
249
|
NextToken: Optional[str] = None
|
243
250
|
MaxResults: Optional[int] = None
|
244
251
|
|
245
252
|
|
253
|
+
# This class is the input for the 'list_anomaly_detectors' function.
|
246
254
|
class ListAnomalyDetectorsRequest(BaseValidatorModel):
|
247
255
|
MaxResults: Optional[int] = None
|
248
256
|
NextToken: Optional[str] = None
|
249
257
|
|
250
258
|
|
259
|
+
# This class is the input for the 'list_anomaly_group_related_metrics' function.
|
251
260
|
class ListAnomalyGroupRelatedMetricsRequest(BaseValidatorModel):
|
252
261
|
AnomalyDetectorArn: str
|
253
262
|
AnomalyGroupId: str
|
@@ -256,6 +265,7 @@ class ListAnomalyGroupRelatedMetricsRequest(BaseValidatorModel):
|
|
256
265
|
NextToken: Optional[str] = None
|
257
266
|
|
258
267
|
|
268
|
+
# This class is the input for the 'list_anomaly_group_summaries' function.
|
259
269
|
class ListAnomalyGroupSummariesRequest(BaseValidatorModel):
|
260
270
|
AnomalyDetectorArn: str
|
261
271
|
SensitivityThreshold: int
|
@@ -263,6 +273,7 @@ class ListAnomalyGroupSummariesRequest(BaseValidatorModel):
|
|
263
273
|
NextToken: Optional[str] = None
|
264
274
|
|
265
275
|
|
276
|
+
# This class is the input for the 'list_anomaly_group_time_series' function.
|
266
277
|
class ListAnomalyGroupTimeSeriesRequest(BaseValidatorModel):
|
267
278
|
AnomalyDetectorArn: str
|
268
279
|
AnomalyGroupId: str
|
@@ -271,6 +282,7 @@ class ListAnomalyGroupTimeSeriesRequest(BaseValidatorModel):
|
|
271
282
|
NextToken: Optional[str] = None
|
272
283
|
|
273
284
|
|
285
|
+
# This class is the input for the 'list_metric_sets' function.
|
274
286
|
class ListMetricSetsRequest(BaseValidatorModel):
|
275
287
|
AnomalyDetectorArn: Optional[str] = None
|
276
288
|
MaxResults: Optional[int] = None
|
@@ -287,6 +299,7 @@ class MetricSetSummary(BaseValidatorModel):
|
|
287
299
|
Tags: Optional[Dict[str, str]] = None
|
288
300
|
|
289
301
|
|
302
|
+
# This class is the input for the 'list_tags_for_resource' function.
|
290
303
|
class ListTagsForResourceRequest(BaseValidatorModel):
|
291
304
|
ResourceArn: str
|
292
305
|
|
@@ -326,6 +339,7 @@ class AlertFilters(BaseValidatorModel):
|
|
326
339
|
DimensionFilterList: Optional[List[DimensionFilter]] = None
|
327
340
|
|
328
341
|
|
342
|
+
# This class is the input for the 'create_anomaly_detector' function.
|
329
343
|
class CreateAnomalyDetectorRequest(BaseValidatorModel):
|
330
344
|
AnomalyDetectorName: str
|
331
345
|
AnomalyDetectorConfig: AnomalyDetectorConfig
|
@@ -334,6 +348,7 @@ class CreateAnomalyDetectorRequest(BaseValidatorModel):
|
|
334
348
|
Tags: Optional[Dict[str, str]] = None
|
335
349
|
|
336
350
|
|
351
|
+
# This class is the input for the 'update_anomaly_detector' function.
|
337
352
|
class UpdateAnomalyDetectorRequest(BaseValidatorModel):
|
338
353
|
AnomalyDetectorArn: str
|
339
354
|
KmsKeyArn: Optional[str] = None
|
@@ -352,6 +367,7 @@ class PutFeedbackRequest(BaseValidatorModel):
|
|
352
367
|
AnomalyGroupTimeSeriesFeedback: AnomalyGroupTimeSeriesFeedback
|
353
368
|
|
354
369
|
|
370
|
+
# This class is the input for the 'get_feedback' function.
|
355
371
|
class GetFeedbackRequest(BaseValidatorModel):
|
356
372
|
AnomalyDetectorArn: str
|
357
373
|
AnomalyGroupTimeSeriesFeedback: AnomalyGroupTimeSeries
|
@@ -384,21 +400,25 @@ class AutoDetectionMetricSource(BaseValidatorModel):
|
|
384
400
|
S3SourceConfig: Optional[AutoDetectionS3SourceConfig] = None
|
385
401
|
|
386
402
|
|
403
|
+
# This class is the output for the 'create_alert' function.
|
387
404
|
class CreateAlertResponse(BaseValidatorModel):
|
388
405
|
AlertArn: str
|
389
406
|
ResponseMetadata: ResponseMetadata
|
390
407
|
|
391
408
|
|
409
|
+
# This class is the output for the 'create_anomaly_detector' function.
|
392
410
|
class CreateAnomalyDetectorResponse(BaseValidatorModel):
|
393
411
|
AnomalyDetectorArn: str
|
394
412
|
ResponseMetadata: ResponseMetadata
|
395
413
|
|
396
414
|
|
415
|
+
# This class is the output for the 'create_metric_set' function.
|
397
416
|
class CreateMetricSetResponse(BaseValidatorModel):
|
398
417
|
MetricSetArn: str
|
399
418
|
ResponseMetadata: ResponseMetadata
|
400
419
|
|
401
420
|
|
421
|
+
# This class is the output for the 'describe_anomaly_detector' function.
|
402
422
|
class DescribeAnomalyDetectorResponse(BaseValidatorModel):
|
403
423
|
AnomalyDetectorArn: str
|
404
424
|
AnomalyDetectorName: str
|
@@ -413,39 +433,46 @@ class DescribeAnomalyDetectorResponse(BaseValidatorModel):
|
|
413
433
|
ResponseMetadata: ResponseMetadata
|
414
434
|
|
415
435
|
|
436
|
+
# This class is the output for the 'get_sample_data' function.
|
416
437
|
class GetSampleDataResponse(BaseValidatorModel):
|
417
438
|
HeaderValues: List[str]
|
418
439
|
SampleRows: List[List[str]]
|
419
440
|
ResponseMetadata: ResponseMetadata
|
420
441
|
|
421
442
|
|
443
|
+
# This class is the output for the 'list_alerts' function.
|
422
444
|
class ListAlertsResponse(BaseValidatorModel):
|
423
445
|
AlertSummaryList: List[AlertSummary]
|
424
446
|
ResponseMetadata: ResponseMetadata
|
425
447
|
NextToken: Optional[str] = None
|
426
448
|
|
427
449
|
|
450
|
+
# This class is the output for the 'list_anomaly_detectors' function.
|
428
451
|
class ListAnomalyDetectorsResponse(BaseValidatorModel):
|
429
452
|
AnomalyDetectorSummaryList: List[AnomalyDetectorSummary]
|
430
453
|
ResponseMetadata: ResponseMetadata
|
431
454
|
NextToken: Optional[str] = None
|
432
455
|
|
433
456
|
|
457
|
+
# This class is the output for the 'list_tags_for_resource' function.
|
434
458
|
class ListTagsForResourceResponse(BaseValidatorModel):
|
435
459
|
Tags: Dict[str, str]
|
436
460
|
ResponseMetadata: ResponseMetadata
|
437
461
|
|
438
462
|
|
463
|
+
# This class is the output for the 'update_alert' function.
|
439
464
|
class UpdateAlertResponse(BaseValidatorModel):
|
440
465
|
AlertArn: str
|
441
466
|
ResponseMetadata: ResponseMetadata
|
442
467
|
|
443
468
|
|
469
|
+
# This class is the output for the 'update_anomaly_detector' function.
|
444
470
|
class UpdateAnomalyDetectorResponse(BaseValidatorModel):
|
445
471
|
AnomalyDetectorArn: str
|
446
472
|
ResponseMetadata: ResponseMetadata
|
447
473
|
|
448
474
|
|
475
|
+
# This class is the output for the 'update_metric_set' function.
|
449
476
|
class UpdateMetricSetResponse(BaseValidatorModel):
|
450
477
|
MetricSetArn: str
|
451
478
|
ResponseMetadata: ResponseMetadata
|
@@ -458,6 +485,7 @@ class MetricSetDataQualityMetric(BaseValidatorModel):
|
|
458
485
|
DataQualityMetricList: Optional[List[DataQualityMetric]] = None
|
459
486
|
|
460
487
|
|
488
|
+
# This class is the output for the 'describe_anomaly_detection_executions' function.
|
461
489
|
class DescribeAnomalyDetectionExecutionsResponse(BaseValidatorModel):
|
462
490
|
ExecutionList: List[ExecutionStatus]
|
463
491
|
ResponseMetadata: ResponseMetadata
|
@@ -490,18 +518,21 @@ class MetricSetDimensionFilter(BaseValidatorModel):
|
|
490
518
|
FilterList: Optional[List[Filter]] = None
|
491
519
|
|
492
520
|
|
521
|
+
# This class is the output for the 'get_feedback' function.
|
493
522
|
class GetFeedbackResponse(BaseValidatorModel):
|
494
523
|
AnomalyGroupTimeSeriesFeedback: List[TimeSeriesFeedback]
|
495
524
|
ResponseMetadata: ResponseMetadata
|
496
525
|
NextToken: Optional[str] = None
|
497
526
|
|
498
527
|
|
528
|
+
# This class is the output for the 'list_anomaly_group_related_metrics' function.
|
499
529
|
class ListAnomalyGroupRelatedMetricsResponse(BaseValidatorModel):
|
500
530
|
InterMetricImpactList: List[InterMetricImpactDetails]
|
501
531
|
ResponseMetadata: ResponseMetadata
|
502
532
|
NextToken: Optional[str] = None
|
503
533
|
|
504
534
|
|
535
|
+
# This class is the output for the 'list_metric_sets' function.
|
505
536
|
class ListMetricSetsResponse(BaseValidatorModel):
|
506
537
|
MetricSetSummaryList: List[MetricSetSummary]
|
507
538
|
ResponseMetadata: ResponseMetadata
|
@@ -568,6 +599,7 @@ class Alert(BaseValidatorModel):
|
|
568
599
|
AlertFiltersUnion = Union[AlertFilters, AlertFiltersOutput]
|
569
600
|
|
570
601
|
|
602
|
+
# This class is the output for the 'list_anomaly_group_summaries' function.
|
571
603
|
class ListAnomalyGroupSummariesResponse(BaseValidatorModel):
|
572
604
|
AnomalyGroupSummaryList: List[AnomalyGroupSummary]
|
573
605
|
AnomalyGroupStatistics: AnomalyGroupStatistics
|
@@ -589,6 +621,7 @@ class DetectedJsonFormatDescriptor(BaseValidatorModel):
|
|
589
621
|
Charset: Optional[DetectedField] = None
|
590
622
|
|
591
623
|
|
624
|
+
# This class is the input for the 'detect_metric_set_config' function.
|
592
625
|
class DetectMetricSetConfigRequest(BaseValidatorModel):
|
593
626
|
AnomalyDetectorArn: str
|
594
627
|
AutoDetectionMetricSource: AutoDetectionMetricSource
|
@@ -608,6 +641,7 @@ class ContributionMatrix(BaseValidatorModel):
|
|
608
641
|
DimensionContributionList: Optional[List[DimensionContribution]] = None
|
609
642
|
|
610
643
|
|
644
|
+
# This class is the output for the 'list_anomaly_group_time_series' function.
|
611
645
|
class ListAnomalyGroupTimeSeriesResponse(BaseValidatorModel):
|
612
646
|
AnomalyGroupId: str
|
613
647
|
MetricName: str
|
@@ -626,11 +660,13 @@ class S3SourceConfigOutput(BaseValidatorModel):
|
|
626
660
|
MetricSetDimensionFilterUnion = Union[MetricSetDimensionFilter, MetricSetDimensionFilterOutput]
|
627
661
|
|
628
662
|
|
663
|
+
# This class is the output for the 'describe_alert' function.
|
629
664
|
class DescribeAlertResponse(BaseValidatorModel):
|
630
665
|
Alert: Alert
|
631
666
|
ResponseMetadata: ResponseMetadata
|
632
667
|
|
633
668
|
|
669
|
+
# This class is the input for the 'create_alert' function.
|
634
670
|
class CreateAlertRequest(BaseValidatorModel):
|
635
671
|
AlertName: str
|
636
672
|
AnomalyDetectorArn: str
|
@@ -641,6 +677,7 @@ class CreateAlertRequest(BaseValidatorModel):
|
|
641
677
|
AlertFilters: Optional[AlertFiltersUnion] = None
|
642
678
|
|
643
679
|
|
680
|
+
# This class is the input for the 'update_alert' function.
|
644
681
|
class UpdateAlertRequest(BaseValidatorModel):
|
645
682
|
AlertArn: str
|
646
683
|
AlertDescription: Optional[str] = None
|
@@ -663,6 +700,7 @@ class S3SourceConfig(BaseValidatorModel):
|
|
663
700
|
FileFormatDescriptor: Optional[FileFormatDescriptor] = None
|
664
701
|
|
665
702
|
|
703
|
+
# This class is the output for the 'get_data_quality_metrics' function.
|
666
704
|
class GetDataQualityMetricsResponse(BaseValidatorModel):
|
667
705
|
AnomalyDetectorDataQualityMetricList: List[AnomalyDetectorDataQualityMetric]
|
668
706
|
ResponseMetadata: ResponseMetadata
|
@@ -712,6 +750,7 @@ class AnomalyGroup(BaseValidatorModel):
|
|
712
750
|
MetricLevelImpactList: Optional[List[MetricLevelImpact]] = None
|
713
751
|
|
714
752
|
|
753
|
+
# This class is the output for the 'describe_metric_set' function.
|
715
754
|
class DescribeMetricSetResponse(BaseValidatorModel):
|
716
755
|
MetricSetArn: str
|
717
756
|
AnomalyDetectorArn: str
|
@@ -734,12 +773,14 @@ class DetectedMetricSource(BaseValidatorModel):
|
|
734
773
|
S3SourceConfig: Optional[DetectedS3SourceConfig] = None
|
735
774
|
|
736
775
|
|
776
|
+
# This class is the input for the 'get_sample_data' function.
|
737
777
|
class GetSampleDataRequest(BaseValidatorModel):
|
738
778
|
S3SourceConfig: Optional[SampleDataS3SourceConfig] = None
|
739
779
|
|
740
780
|
MetricSourceUnion = Union[MetricSource, MetricSourceOutput]
|
741
781
|
|
742
782
|
|
783
|
+
# This class is the output for the 'get_anomaly_group' function.
|
743
784
|
class GetAnomalyGroupResponse(BaseValidatorModel):
|
744
785
|
AnomalyGroup: AnomalyGroup
|
745
786
|
ResponseMetadata: ResponseMetadata
|
@@ -751,6 +792,7 @@ class DetectedMetricSetConfig(BaseValidatorModel):
|
|
751
792
|
MetricSource: Optional[DetectedMetricSource] = None
|
752
793
|
|
753
794
|
|
795
|
+
# This class is the input for the 'create_metric_set' function.
|
754
796
|
class CreateMetricSetRequest(BaseValidatorModel):
|
755
797
|
AnomalyDetectorArn: str
|
756
798
|
MetricSetName: str
|
@@ -766,6 +808,7 @@ class CreateMetricSetRequest(BaseValidatorModel):
|
|
766
808
|
DimensionFilterList: Optional[List[MetricSetDimensionFilterUnion]] = None
|
767
809
|
|
768
810
|
|
811
|
+
# This class is the input for the 'update_metric_set' function.
|
769
812
|
class UpdateMetricSetRequest(BaseValidatorModel):
|
770
813
|
MetricSetArn: str
|
771
814
|
MetricSetDescription: Optional[str] = None
|
@@ -778,6 +821,7 @@ class UpdateMetricSetRequest(BaseValidatorModel):
|
|
778
821
|
DimensionFilterList: Optional[List[MetricSetDimensionFilterUnion]] = None
|
779
822
|
|
780
823
|
|
824
|
+
# This class is the output for the 'detect_metric_set_config' function.
|
781
825
|
class DetectMetricSetConfigResponse(BaseValidatorModel):
|
782
826
|
DetectedMetricSetConfig: DetectedMetricSetConfig
|
783
827
|
ResponseMetadata: ResponseMetadata
|
@@ -1,7 +1,7 @@
|
|
1
1
|
boto3_pydantic_lookoutmetrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
2
|
boto3_pydantic_lookoutmetrics/base_validator_model.py,sha256=C3teURdLR9HMNOC5LMFGGgdsm6Ks6OF0p5RnKw54er4,463
|
3
|
-
boto3_pydantic_lookoutmetrics/lookoutmetrics_classes.py,sha256=
|
3
|
+
boto3_pydantic_lookoutmetrics/lookoutmetrics_classes.py,sha256=BkixQwqNQ3hJZJLEOqu1RQ90XDq2NRjuFh104tAIrZM,26802
|
4
4
|
boto3_pydantic_lookoutmetrics/lookoutmetrics_constants.py,sha256=9HGodwCbKmidchzYwSMvtVcYCzJwWoFg4ElUJMufHp0,8078
|
5
|
-
boto3_pydantic_lookoutmetrics-1.0.
|
6
|
-
boto3_pydantic_lookoutmetrics-1.0.
|
7
|
-
boto3_pydantic_lookoutmetrics-1.0.
|
5
|
+
boto3_pydantic_lookoutmetrics-1.0.2.dist-info/METADATA,sha256=-nxCd3IDhCOmnP5OIjJom2qUbQ3tMx2PGtCB8kttIrs,1437
|
6
|
+
boto3_pydantic_lookoutmetrics-1.0.2.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
7
|
+
boto3_pydantic_lookoutmetrics-1.0.2.dist-info/RECORD,,
|
File without changes
|