aws-sdk-forecastservice 1.19.0 → 1.20.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d79d633707c8953bd8cc89f0952a823d24fbd7a917cd3561427e1c60349a127c
4
- data.tar.gz: 466a77106df21a9f4b2381dc97131c6511cc7003c49cad4a4666d2dcbcffbf9a
3
+ metadata.gz: 697d13456570bd791ef364242e9342183ce9e0fdc58035f6113b12557f9bf7a4
4
+ data.tar.gz: 544c6abba89f7ad18f8130d70db89d5b2caa527a1fe628c24853abf6360dc3b7
5
5
  SHA512:
6
- metadata.gz: 76fe9b76a782ea4d470dcc9dc274e3dfc729ee0d8b24685ce1cec8e98c94ca05ca26bfcf2ed8a6ea9df99af701a94dff94e879027c1bce01dd7319bc10537cc4
7
- data.tar.gz: 8bbe22ac35094a7c86dafb2c3855279d8fec90449b13049ea8bb9c2ade6f1b9cc63aaeb4688350b03c48dd39c28e0a89f40d1f35d3e1845cee1dfe3e3fcc74a6
6
+ metadata.gz: b0aca3a9390d06310b672ad60aa5e3ec913b2022e480ecd3f1a2f276f5790f63f7bbce5ba3290d588501f61dab0c616eb8ccc51954b52c3abc5ea302625833b1
7
+ data.tar.gz: '013864157c95dcae1627f12bdcc3e38313814f7cfa8705c92967ab1a905bfe7bf875ed12a3404d1fc11ffa004edc421b918cea84bf021772e9cba3ead5eea556'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.20.0 (2021-05-21)
5
+ ------------------
6
+
7
+ * Feature - Updated attribute statistics in DescribeDatasetImportJob response to support Long values
8
+
4
9
  1.19.0 (2021-04-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.19.0
1
+ 1.20.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-forecastservice/customizations'
48
48
  # @!group service
49
49
  module Aws::ForecastService
50
50
 
51
- GEM_VERSION = '1.19.0'
51
+ GEM_VERSION = '1.20.0'
52
52
 
53
53
  end
@@ -1556,11 +1556,11 @@ module Aws::ForecastService
1556
1556
  # Amazon Forecast resources possess the following parent-child resource
1557
1557
  # hierarchies:
1558
1558
  #
1559
+ # * **Dataset**\: dataset import jobs
1560
+ #
1559
1561
  # * **Dataset Group**\: predictors, predictor backtest export jobs,
1560
1562
  # forecasts, forecast export jobs
1561
1563
  #
1562
- # * **Dataset**\: dataset import jobs
1563
- #
1564
1564
  # * **Predictor**\: predictor backtest export jobs, forecasts, forecast
1565
1565
  # export jobs
1566
1566
  #
@@ -1773,6 +1773,10 @@ module Aws::ForecastService
1773
1773
  # resp.field_statistics["String"].max #=> String
1774
1774
  # resp.field_statistics["String"].avg #=> Float
1775
1775
  # resp.field_statistics["String"].stddev #=> Float
1776
+ # resp.field_statistics["String"].count_long #=> Integer
1777
+ # resp.field_statistics["String"].count_distinct_long #=> Integer
1778
+ # resp.field_statistics["String"].count_null_long #=> Integer
1779
+ # resp.field_statistics["String"].count_nan_long #=> Integer
1776
1780
  # resp.data_size #=> Float
1777
1781
  # resp.status #=> String
1778
1782
  # resp.message #=> String
@@ -2871,7 +2875,7 @@ module Aws::ForecastService
2871
2875
  params: params,
2872
2876
  config: config)
2873
2877
  context[:gem_name] = 'aws-sdk-forecastservice'
2874
- context[:gem_version] = '1.19.0'
2878
+ context[:gem_version] = '1.20.0'
2875
2879
  Seahorse::Client::Request.new(handlers, context)
2876
2880
  end
2877
2881
 
@@ -694,6 +694,10 @@ module Aws::ForecastService
694
694
  Statistics.add_member(:max, Shapes::ShapeRef.new(shape: String, location_name: "Max"))
695
695
  Statistics.add_member(:avg, Shapes::ShapeRef.new(shape: Double, location_name: "Avg"))
696
696
  Statistics.add_member(:stddev, Shapes::ShapeRef.new(shape: Double, location_name: "Stddev"))
697
+ Statistics.add_member(:count_long, Shapes::ShapeRef.new(shape: Long, location_name: "CountLong"))
698
+ Statistics.add_member(:count_distinct_long, Shapes::ShapeRef.new(shape: Long, location_name: "CountDistinctLong"))
699
+ Statistics.add_member(:count_null_long, Shapes::ShapeRef.new(shape: Long, location_name: "CountNullLong"))
700
+ Statistics.add_member(:count_nan_long, Shapes::ShapeRef.new(shape: Long, location_name: "CountNanLong"))
697
701
  Statistics.struct_class = Types::Statistics
698
702
 
699
703
  StopResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "ResourceArn"))
@@ -3884,19 +3884,23 @@ module Aws::ForecastService
3884
3884
  # Forecast dataset with the CreateDatasetImportJob operation.
3885
3885
  #
3886
3886
  # @!attribute [rw] count
3887
- # The number of values in the field.
3887
+ # The number of values in the field. If the response value is -1,
3888
+ # refer to `CountLong`.
3888
3889
  # @return [Integer]
3889
3890
  #
3890
3891
  # @!attribute [rw] count_distinct
3891
- # The number of distinct values in the field.
3892
+ # The number of distinct values in the field. If the response value is
3893
+ # -1, refer to `CountDistinctLong`.
3892
3894
  # @return [Integer]
3893
3895
  #
3894
3896
  # @!attribute [rw] count_null
3895
- # The number of null values in the field.
3897
+ # The number of null values in the field. If the response value is -1,
3898
+ # refer to `CountNullLong`.
3896
3899
  # @return [Integer]
3897
3900
  #
3898
3901
  # @!attribute [rw] count_nan
3899
- # The number of NAN (not a number) values in the field.
3902
+ # The number of NAN (not a number) values in the field. If the
3903
+ # response value is -1, refer to `CountNanLong`.
3900
3904
  # @return [Integer]
3901
3905
  #
3902
3906
  # @!attribute [rw] min
@@ -3915,6 +3919,28 @@ module Aws::ForecastService
3915
3919
  # For a numeric field, the standard deviation.
3916
3920
  # @return [Float]
3917
3921
  #
3922
+ # @!attribute [rw] count_long
3923
+ # The number of values in the field. `CountLong` is used instead of
3924
+ # `Count` if the value is greater than 2,147,483,647.
3925
+ # @return [Integer]
3926
+ #
3927
+ # @!attribute [rw] count_distinct_long
3928
+ # The number of distinct values in the field. `CountDistinctLong` is
3929
+ # used instead of `CountDistinct` if the value is greater than
3930
+ # 2,147,483,647.
3931
+ # @return [Integer]
3932
+ #
3933
+ # @!attribute [rw] count_null_long
3934
+ # The number of null values in the field. `CountNullLong` is used
3935
+ # instead of `CountNull` if the value is greater than 2,147,483,647.
3936
+ # @return [Integer]
3937
+ #
3938
+ # @!attribute [rw] count_nan_long
3939
+ # The number of NAN (not a number) values in the field. `CountNanLong`
3940
+ # is used instead of `CountNan` if the value is greater than
3941
+ # 2,147,483,647.
3942
+ # @return [Integer]
3943
+ #
3918
3944
  # @see http://docs.aws.amazon.com/goto/WebAPI/forecast-2018-06-26/Statistics AWS API Documentation
3919
3945
  #
3920
3946
  class Statistics < Struct.new(
@@ -3925,7 +3951,11 @@ module Aws::ForecastService
3925
3951
  :min,
3926
3952
  :max,
3927
3953
  :avg,
3928
- :stddev)
3954
+ :stddev,
3955
+ :count_long,
3956
+ :count_distinct_long,
3957
+ :count_null_long,
3958
+ :count_nan_long)
3929
3959
  SENSITIVE = []
3930
3960
  include Aws::Structure
3931
3961
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-forecastservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.19.0
4
+ version: 1.20.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: 2021-04-30 00:00:00.000000000 Z
11
+ date: 2021-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core