aws-sdk-lookoutmetrics 1.18.0 → 1.19.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 316b81895fdc3eec74216636bd66d896d0f8560886f4a6c84caa347b59bda274
4
- data.tar.gz: 98db724b218a1e386fc5f4a6b4265b1710d32125703fcdc0093f30fe98694629
3
+ metadata.gz: 59345fbf66785eff41ce5e27028071fd1692386ccf4971410d915ffbc37da532
4
+ data.tar.gz: '0794e1c7b207ce9f080c79d38dbf6e68e281d72661b94686b65e4cd62ee999be'
5
5
  SHA512:
6
- metadata.gz: a4f8c8d40a648ad9678ae0b2873a51d745a670cacd0b50335472e0496c6e6848f126ab13d1ce1fbe67771c76e6edbe176366b9bc98ae717e1ebe73ff30ca9f37
7
- data.tar.gz: 9fdedea54380542ccc52602489d5011cc851ad4fa05d818ed8c1e978e41d00a120e804890de9ed0005f9e790f71b262445fe12727ff47334c8df31f41ae4c2e2
6
+ metadata.gz: d1cca1445efe1da70413424dc0eeaeb9178b96920e8f0b3e7a0a707e050e6489c1a097e28601fddc4213a0c86da4634c2c8a797e78ebcf911fff41a3323e4bc4
7
+ data.tar.gz: b57f73391239f67a394106874fa974cf9a0be128439d9667bdcd91b3ece1e4d910b85979a5296fed44179db304a1a63459659ccb7ed4ea9f6a1c650ce503f597
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.19.0 (2022-05-31)
5
+ ------------------
6
+
7
+ * Feature - Adding backtest mode to detectors using the Cloudwatch data source.
8
+
4
9
  1.18.0 (2022-05-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.18.0
1
+ 1.19.0
@@ -604,6 +604,9 @@ module Aws::LookoutMetrics
604
604
  # },
605
605
  # cloud_watch_config: {
606
606
  # role_arn: "Arn",
607
+ # back_test_configuration: {
608
+ # run_back_test_mode: false, # required
609
+ # },
607
610
  # },
608
611
  # rds_source_config: {
609
612
  # db_instance_identifier: "RDSDatabaseIdentifier",
@@ -944,6 +947,7 @@ module Aws::LookoutMetrics
944
947
  # resp.metric_source.app_flow_config.role_arn #=> String
945
948
  # resp.metric_source.app_flow_config.flow_name #=> String
946
949
  # resp.metric_source.cloud_watch_config.role_arn #=> String
950
+ # resp.metric_source.cloud_watch_config.back_test_configuration.run_back_test_mode #=> Boolean
947
951
  # resp.metric_source.rds_source_config.db_instance_identifier #=> String
948
952
  # resp.metric_source.rds_source_config.database_host #=> String
949
953
  # resp.metric_source.rds_source_config.database_port #=> Integer
@@ -1778,6 +1782,9 @@ module Aws::LookoutMetrics
1778
1782
  # },
1779
1783
  # cloud_watch_config: {
1780
1784
  # role_arn: "Arn",
1785
+ # back_test_configuration: {
1786
+ # run_back_test_mode: false, # required
1787
+ # },
1781
1788
  # },
1782
1789
  # rds_source_config: {
1783
1790
  # db_instance_identifier: "RDSDatabaseIdentifier",
@@ -1845,7 +1852,7 @@ module Aws::LookoutMetrics
1845
1852
  params: params,
1846
1853
  config: config)
1847
1854
  context[:gem_name] = 'aws-sdk-lookoutmetrics'
1848
- context[:gem_version] = '1.18.0'
1855
+ context[:gem_version] = '1.19.0'
1849
1856
  Seahorse::Client::Request.new(handlers, context)
1850
1857
  end
1851
1858
 
@@ -358,6 +358,7 @@ module Aws::LookoutMetrics
358
358
  BinaryListAttributeValue.member = Shapes::ShapeRef.new(shape: BinaryAttributeValue)
359
359
 
360
360
  CloudWatchConfig.add_member(:role_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "RoleArn"))
361
+ CloudWatchConfig.add_member(:back_test_configuration, Shapes::ShapeRef.new(shape: BackTestConfiguration, location_name: "BackTestConfiguration"))
361
362
  CloudWatchConfig.struct_class = Types::CloudWatchConfig
362
363
 
363
364
  ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: Message, required: true, location_name: "Message"))
@@ -667,6 +667,9 @@ module Aws::LookoutMetrics
667
667
  #
668
668
  # {
669
669
  # role_arn: "Arn",
670
+ # back_test_configuration: {
671
+ # run_back_test_mode: false, # required
672
+ # },
670
673
  # }
671
674
  #
672
675
  # @!attribute [rw] role_arn
@@ -674,10 +677,15 @@ module Aws::LookoutMetrics
674
677
  # access data in Amazon CloudWatch.
675
678
  # @return [String]
676
679
  #
680
+ # @!attribute [rw] back_test_configuration
681
+ # Settings for backtest mode.
682
+ # @return [Types::BackTestConfiguration]
683
+ #
677
684
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutmetrics-2017-07-25/CloudWatchConfig AWS API Documentation
678
685
  #
679
686
  class CloudWatchConfig < Struct.new(
680
- :role_arn)
687
+ :role_arn,
688
+ :back_test_configuration)
681
689
  SENSITIVE = []
682
690
  include Aws::Structure
683
691
  end
@@ -907,6 +915,9 @@ module Aws::LookoutMetrics
907
915
  # },
908
916
  # cloud_watch_config: {
909
917
  # role_arn: "Arn",
918
+ # back_test_configuration: {
919
+ # run_back_test_mode: false, # required
920
+ # },
910
921
  # },
911
922
  # rds_source_config: {
912
923
  # db_instance_identifier: "RDSDatabaseIdentifier",
@@ -2515,6 +2526,9 @@ module Aws::LookoutMetrics
2515
2526
  # },
2516
2527
  # cloud_watch_config: {
2517
2528
  # role_arn: "Arn",
2529
+ # back_test_configuration: {
2530
+ # run_back_test_mode: false, # required
2531
+ # },
2518
2532
  # },
2519
2533
  # rds_source_config: {
2520
2534
  # db_instance_identifier: "RDSDatabaseIdentifier",
@@ -3207,6 +3221,9 @@ module Aws::LookoutMetrics
3207
3221
  # },
3208
3222
  # cloud_watch_config: {
3209
3223
  # role_arn: "Arn",
3224
+ # back_test_configuration: {
3225
+ # run_back_test_mode: false, # required
3226
+ # },
3210
3227
  # },
3211
3228
  # rds_source_config: {
3212
3229
  # db_instance_identifier: "RDSDatabaseIdentifier",
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-lookoutmetrics/customizations'
48
48
  # @!group service
49
49
  module Aws::LookoutMetrics
50
50
 
51
- GEM_VERSION = '1.18.0'
51
+ GEM_VERSION = '1.19.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lookoutmetrics
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.18.0
4
+ version: 1.19.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-25 00:00:00.000000000 Z
11
+ date: 2022-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core