aws-sdk-forecastservice 1.2.0 → 1.7.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
- SHA1:
3
- metadata.gz: f8da3863f5e0e4eddab57cafa0590b3bd3b51c3b
4
- data.tar.gz: dbc0c9c5fd292007b5981d4b854c27e71db0f6f5
2
+ SHA256:
3
+ metadata.gz: 0b33b2df043658be3452db69e5c2ff2872f96f80a08a22a311d6542049761143
4
+ data.tar.gz: 21f8d3f82ddddd9e0ea8b00a2a6ab062aa3cd31a641683e58a6668e7fa0a00c7
5
5
  SHA512:
6
- metadata.gz: 136524ae3798ea7e801475212f522b5c7653d428069adc92e8a7fb05e5d4ffb9857edee2f39872812c2e2254a13d8f7e4098e15c269b6b2df1ac1ebd8d1c7385
7
- data.tar.gz: 7288da9ef119948f62b2e8463cd1cab996c03ea1af6d05ba2b317a01d6ab95d71775c60d6ba03f2aea8cae180820fda5b08546a8df09be671a5c2e59bc05a0bb
6
+ metadata.gz: d75c1b68aa5ee56c5331b93c915f2af0a521a36b84e7aac5cfd3c76978df29cf8db2c2cc3917f98f437f5a367a8ae779f15bc6e970e980a7225c2ed899679d63
7
+ data.tar.gz: 3a731b75771270636d14b0106da450567b7cb0978f675b0c602b7c2c6d7efd261cabb90362a8cf489a1981a33b27ce2e9eea9c309f98824fdf4dc01bc9604239
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -24,17 +26,20 @@ require_relative 'aws-sdk-forecastservice/customizations'
24
26
  # methods each accept a hash of request parameters and return a response
25
27
  # structure.
26
28
  #
29
+ # forecast_service = Aws::ForecastService::Client.new
30
+ # resp = forecast_service.create_dataset(params)
31
+ #
27
32
  # See {Client} for more information.
28
33
  #
29
34
  # # Errors
30
35
  #
31
- # Errors returned from Amazon Forecast Service all
32
- # extend {Errors::ServiceError}.
36
+ # Errors returned from Amazon Forecast Service are defined in the
37
+ # {Errors} module and all extend {Errors::ServiceError}.
33
38
  #
34
39
  # begin
35
40
  # # do stuff
36
41
  # rescue Aws::ForecastService::Errors::ServiceError
37
- # # rescues all service API errors
42
+ # # rescues all Amazon Forecast Service API errors
38
43
  # end
39
44
  #
40
45
  # See {Errors} for more information.
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-forecastservice/customizations'
42
47
  # @service
43
48
  module Aws::ForecastService
44
49
 
45
- GEM_VERSION = '1.2.0'
50
+ GEM_VERSION = '1.7.0'
46
51
 
47
52
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -24,12 +26,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
26
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
30
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
31
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
29
32
 
30
33
  Aws::Plugins::GlobalConfiguration.add_identifier(:forecastservice)
31
34
 
32
35
  module Aws::ForecastService
36
+ # An API client for ForecastService. To construct a client, you need to configure a `:region` and `:credentials`.
37
+ #
38
+ # client = Aws::ForecastService::Client.new(
39
+ # region: region_name,
40
+ # credentials: credentials,
41
+ # # ...
42
+ # )
43
+ #
44
+ # For details on configuring region and credentials see
45
+ # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
46
+ #
47
+ # See {#initialize} for a full list of supported configuration options.
33
48
  class Client < Seahorse::Client::Base
34
49
 
35
50
  include Aws::ClientStubs
@@ -57,6 +72,7 @@ module Aws::ForecastService
57
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
58
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
59
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
60
76
  add_plugin(Aws::Plugins::SignatureV4)
61
77
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
62
78
 
@@ -93,7 +109,7 @@ module Aws::ForecastService
93
109
  # @option options [required, String] :region
94
110
  # The AWS region to connect to. The configured `:region` is
95
111
  # used to determine the service `:endpoint`. When not passed,
96
- # a default `:region` is search for in the following locations:
112
+ # a default `:region` is searched for in the following locations:
97
113
  #
98
114
  # * `Aws.config[:region]`
99
115
  # * `ENV['AWS_REGION']`
@@ -108,6 +124,12 @@ module Aws::ForecastService
108
124
  # When set to `true`, a thread polling for endpoints will be running in
109
125
  # the background every 60 secs (default). Defaults to `false`.
110
126
  #
127
+ # @option options [Boolean] :adaptive_retry_wait_to_fill (true)
128
+ # Used only in `adaptive` retry mode. When true, the request will sleep
129
+ # until there is sufficent client side capacity to retry the request.
130
+ # When false, the request will raise a `RetryCapacityNotAvailableError` and will
131
+ # not retry instead of sleeping.
132
+ #
111
133
  # @option options [Boolean] :client_side_monitoring (false)
112
134
  # When `true`, client-side metrics will be collected for all API requests from
113
135
  # this client.
@@ -132,6 +154,10 @@ module Aws::ForecastService
132
154
  # When `true`, an attempt is made to coerce request parameters into
133
155
  # the required types.
134
156
  #
157
+ # @option options [Boolean] :correct_clock_skew (true)
158
+ # Used only in `standard` and adaptive retry modes. Specifies whether to apply
159
+ # a clock skew correction and retry requests with skewed client clocks.
160
+ #
135
161
  # @option options [Boolean] :disable_host_prefix_injection (false)
136
162
  # Set to true to disable SDK automatically adding host prefix
137
163
  # to default service endpoint when available.
@@ -139,7 +165,7 @@ module Aws::ForecastService
139
165
  # @option options [String] :endpoint
140
166
  # The client endpoint is normally constructed from the `:region`
141
167
  # option. You should only configure an `:endpoint` when connecting
142
- # to test endpoints. This should be avalid HTTP(S) URI.
168
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
143
169
  #
144
170
  # @option options [Integer] :endpoint_cache_max_entries (1000)
145
171
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -154,7 +180,7 @@ module Aws::ForecastService
154
180
  # requests fetching endpoints information. Defaults to 60 sec.
155
181
  #
156
182
  # @option options [Boolean] :endpoint_discovery (false)
157
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
183
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
158
184
  #
159
185
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
160
186
  # The log formatter.
@@ -166,15 +192,29 @@ module Aws::ForecastService
166
192
  # The Logger instance to send log messages to. If this option
167
193
  # is not set, logging will be disabled.
168
194
  #
195
+ # @option options [Integer] :max_attempts (3)
196
+ # An integer representing the maximum number attempts that will be made for
197
+ # a single request, including the initial attempt. For example,
198
+ # setting this value to 5 will result in a request being retried up to
199
+ # 4 times. Used in `standard` and `adaptive` retry modes.
200
+ #
169
201
  # @option options [String] :profile ("default")
170
202
  # Used when loading credentials from the shared credentials file
171
203
  # at HOME/.aws/credentials. When not specified, 'default' is used.
172
204
  #
205
+ # @option options [Proc] :retry_backoff
206
+ # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
207
+ # This option is only used in the `legacy` retry mode.
208
+ #
173
209
  # @option options [Float] :retry_base_delay (0.3)
174
- # The base delay in seconds used by the default backoff function.
210
+ # The base delay in seconds used by the default backoff function. This option
211
+ # is only used in the `legacy` retry mode.
175
212
  #
176
213
  # @option options [Symbol] :retry_jitter (:none)
177
- # A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
214
+ # A delay randomiser function used by the default backoff function.
215
+ # Some predefined functions can be referenced by name - :none, :equal, :full,
216
+ # otherwise a Proc that takes and returns a number. This option is only used
217
+ # in the `legacy` retry mode.
178
218
  #
179
219
  # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
180
220
  #
@@ -182,11 +222,30 @@ module Aws::ForecastService
182
222
  # The maximum number of times to retry failed requests. Only
183
223
  # ~ 500 level server errors and certain ~ 400 level client errors
184
224
  # are retried. Generally, these are throttling errors, data
185
- # checksum errors, networking errors, timeout errors and auth
186
- # errors from expired credentials.
225
+ # checksum errors, networking errors, timeout errors, auth errors,
226
+ # endpoint discovery, and errors from expired credentials.
227
+ # This option is only used in the `legacy` retry mode.
187
228
  #
188
229
  # @option options [Integer] :retry_max_delay (0)
189
- # The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
230
+ # The maximum number of seconds to delay between retries (0 for no limit)
231
+ # used by the default backoff function. This option is only used in the
232
+ # `legacy` retry mode.
233
+ #
234
+ # @option options [String] :retry_mode ("legacy")
235
+ # Specifies which retry algorithm to use. Values are:
236
+ #
237
+ # * `legacy` - The pre-existing retry behavior. This is default value if
238
+ # no retry mode is provided.
239
+ #
240
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
241
+ # This includes support for retry quotas, which limit the number of
242
+ # unsuccessful retries a client can make.
243
+ #
244
+ # * `adaptive` - An experimental retry mode that includes all the
245
+ # functionality of `standard` mode along with automatic client side
246
+ # throttling. This is a provisional mode that may change behavior
247
+ # in the future.
248
+ #
190
249
  #
191
250
  # @option options [String] :secret_access_key
192
251
  #
@@ -219,16 +278,15 @@ module Aws::ForecastService
219
278
  # requests through. Formatted like 'http://proxy.com:123'.
220
279
  #
221
280
  # @option options [Float] :http_open_timeout (15) The number of
222
- # seconds to wait when opening a HTTP session before rasing a
281
+ # seconds to wait when opening a HTTP session before raising a
223
282
  # `Timeout::Error`.
224
283
  #
225
284
  # @option options [Integer] :http_read_timeout (60) The default
226
285
  # number of seconds to wait for response data. This value can
227
- # safely be set
228
- # per-request on the session yeidled by {#session_for}.
286
+ # safely be set per-request on the session.
229
287
  #
230
288
  # @option options [Float] :http_idle_timeout (5) The number of
231
- # seconds a connection is allowed to sit idble before it is
289
+ # seconds a connection is allowed to sit idle before it is
232
290
  # considered stale. Stale connections are closed and removed
233
291
  # from the pool before making a request.
234
292
  #
@@ -237,7 +295,7 @@ module Aws::ForecastService
237
295
  # request body. This option has no effect unless the request has
238
296
  # "Expect" header set to "100-continue". Defaults to `nil` which
239
297
  # disables this behaviour. This value can safely be set per
240
- # request on the session yeidled by {#session_for}.
298
+ # request on the session.
241
299
  #
242
300
  # @option options [Boolean] :http_wire_trace (false) When `true`,
243
301
  # HTTP debug output will be sent to the `:logger`.
@@ -1569,6 +1627,8 @@ module Aws::ForecastService
1569
1627
  # * {Types::ListDatasetGroupsResponse#dataset_groups #dataset_groups} => Array&lt;Types::DatasetGroupSummary&gt;
1570
1628
  # * {Types::ListDatasetGroupsResponse#next_token #next_token} => String
1571
1629
  #
1630
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1631
+ #
1572
1632
  # @example Request syntax with placeholder values
1573
1633
  #
1574
1634
  # resp = client.list_dataset_groups({
@@ -1638,6 +1698,8 @@ module Aws::ForecastService
1638
1698
  # * {Types::ListDatasetImportJobsResponse#dataset_import_jobs #dataset_import_jobs} => Array&lt;Types::DatasetImportJobSummary&gt;
1639
1699
  # * {Types::ListDatasetImportJobsResponse#next_token #next_token} => String
1640
1700
  #
1701
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1702
+ #
1641
1703
  # @example Request syntax with placeholder values
1642
1704
  #
1643
1705
  # resp = client.list_dataset_import_jobs({
@@ -1693,6 +1755,8 @@ module Aws::ForecastService
1693
1755
  # * {Types::ListDatasetsResponse#datasets #datasets} => Array&lt;Types::DatasetSummary&gt;
1694
1756
  # * {Types::ListDatasetsResponse#next_token #next_token} => String
1695
1757
  #
1758
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1759
+ #
1696
1760
  # @example Request syntax with placeholder values
1697
1761
  #
1698
1762
  # resp = client.list_datasets({
@@ -1766,6 +1830,8 @@ module Aws::ForecastService
1766
1830
  # * {Types::ListForecastExportJobsResponse#forecast_export_jobs #forecast_export_jobs} => Array&lt;Types::ForecastExportJobSummary&gt;
1767
1831
  # * {Types::ListForecastExportJobsResponse#next_token #next_token} => String
1768
1832
  #
1833
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1834
+ #
1769
1835
  # @example Request syntax with placeholder values
1770
1836
  #
1771
1837
  # resp = client.list_forecast_export_jobs({
@@ -1846,6 +1912,8 @@ module Aws::ForecastService
1846
1912
  # * {Types::ListForecastsResponse#forecasts #forecasts} => Array&lt;Types::ForecastSummary&gt;
1847
1913
  # * {Types::ListForecastsResponse#next_token #next_token} => String
1848
1914
  #
1915
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1916
+ #
1849
1917
  # @example Request syntax with placeholder values
1850
1918
  #
1851
1919
  # resp = client.list_forecasts({
@@ -1926,6 +1994,8 @@ module Aws::ForecastService
1926
1994
  # * {Types::ListPredictorsResponse#predictors #predictors} => Array&lt;Types::PredictorSummary&gt;
1927
1995
  # * {Types::ListPredictorsResponse#next_token #next_token} => String
1928
1996
  #
1997
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1998
+ #
1929
1999
  # @example Request syntax with placeholder values
1930
2000
  #
1931
2001
  # resp = client.list_predictors({
@@ -2007,7 +2077,7 @@ module Aws::ForecastService
2007
2077
  params: params,
2008
2078
  config: config)
2009
2079
  context[:gem_name] = 'aws-sdk-forecastservice'
2010
- context[:gem_version] = '1.2.0'
2080
+ context[:gem_version] = '1.7.0'
2011
2081
  Seahorse::Client::Request.new(handlers, context)
2012
2082
  end
2013
2083
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -6,6 +8,34 @@
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
8
10
  module Aws::ForecastService
11
+
12
+ # When ForecastService returns an error response, the Ruby SDK constructs and raises an error.
13
+ # These errors all extend Aws::ForecastService::Errors::ServiceError < {Aws::Errors::ServiceError}
14
+ #
15
+ # You can rescue all ForecastService errors using ServiceError:
16
+ #
17
+ # begin
18
+ # # do stuff
19
+ # rescue Aws::ForecastService::Errors::ServiceError
20
+ # # rescues all ForecastService API errors
21
+ # end
22
+ #
23
+ #
24
+ # ## Request Context
25
+ # ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
26
+ # information about the request that generated the error.
27
+ # See {Seahorse::Client::RequestContext} for more information.
28
+ #
29
+ # ## Error Classes
30
+ # * {InvalidInputException}
31
+ # * {InvalidNextTokenException}
32
+ # * {LimitExceededException}
33
+ # * {ResourceAlreadyExistsException}
34
+ # * {ResourceInUseException}
35
+ # * {ResourceNotFoundException}
36
+ #
37
+ # Additionally, error classes are dynamically generated for service errors based on the error code
38
+ # if they are not defined above.
9
39
  module Errors
10
40
 
11
41
  extend Aws::Errors::DynamicErrors
@@ -23,7 +53,6 @@ module Aws::ForecastService
23
53
  def message
24
54
  @message || @data[:message]
25
55
  end
26
-
27
56
  end
28
57
 
29
58
  class InvalidNextTokenException < ServiceError
@@ -39,7 +68,6 @@ module Aws::ForecastService
39
68
  def message
40
69
  @message || @data[:message]
41
70
  end
42
-
43
71
  end
44
72
 
45
73
  class LimitExceededException < ServiceError
@@ -55,7 +83,6 @@ module Aws::ForecastService
55
83
  def message
56
84
  @message || @data[:message]
57
85
  end
58
-
59
86
  end
60
87
 
61
88
  class ResourceAlreadyExistsException < ServiceError
@@ -71,7 +98,6 @@ module Aws::ForecastService
71
98
  def message
72
99
  @message || @data[:message]
73
100
  end
74
-
75
101
  end
76
102
 
77
103
  class ResourceInUseException < ServiceError
@@ -87,7 +113,6 @@ module Aws::ForecastService
87
113
  def message
88
114
  @message || @data[:message]
89
115
  end
90
-
91
116
  end
92
117
 
93
118
  class ResourceNotFoundException < ServiceError
@@ -103,7 +128,6 @@ module Aws::ForecastService
103
128
  def message
104
129
  @message || @data[:message]
105
130
  end
106
-
107
131
  end
108
132
 
109
133
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -6,6 +8,7 @@
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
8
10
  module Aws::ForecastService
11
+
9
12
  class Resource
10
13
 
11
14
  # @param options ({})
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -32,6 +34,7 @@ module Aws::ForecastService
32
34
  class CategoricalParameterRange < Struct.new(
33
35
  :name,
34
36
  :values)
37
+ SENSITIVE = []
35
38
  include Aws::Structure
36
39
  end
37
40
 
@@ -105,6 +108,7 @@ module Aws::ForecastService
105
108
  :max_value,
106
109
  :min_value,
107
110
  :scaling_type)
111
+ SENSITIVE = []
108
112
  include Aws::Structure
109
113
  end
110
114
 
@@ -145,6 +149,7 @@ module Aws::ForecastService
145
149
  :dataset_group_name,
146
150
  :domain,
147
151
  :dataset_arns)
152
+ SENSITIVE = []
148
153
  include Aws::Structure
149
154
  end
150
155
 
@@ -156,6 +161,7 @@ module Aws::ForecastService
156
161
  #
157
162
  class CreateDatasetGroupResponse < Struct.new(
158
163
  :dataset_group_arn)
164
+ SENSITIVE = []
159
165
  include Aws::Structure
160
166
  end
161
167
 
@@ -225,6 +231,7 @@ module Aws::ForecastService
225
231
  :dataset_arn,
226
232
  :data_source,
227
233
  :timestamp_format)
234
+ SENSITIVE = []
228
235
  include Aws::Structure
229
236
  end
230
237
 
@@ -236,6 +243,7 @@ module Aws::ForecastService
236
243
  #
237
244
  class CreateDatasetImportJobResponse < Struct.new(
238
245
  :dataset_import_job_arn)
246
+ SENSITIVE = []
239
247
  include Aws::Structure
240
248
  end
241
249
 
@@ -315,6 +323,7 @@ module Aws::ForecastService
315
323
  :data_frequency,
316
324
  :schema,
317
325
  :encryption_config)
326
+ SENSITIVE = []
318
327
  include Aws::Structure
319
328
  end
320
329
 
@@ -326,6 +335,7 @@ module Aws::ForecastService
326
335
  #
327
336
  class CreateDatasetResponse < Struct.new(
328
337
  :dataset_arn)
338
+ SENSITIVE = []
329
339
  include Aws::Structure
330
340
  end
331
341
 
@@ -370,6 +380,7 @@ module Aws::ForecastService
370
380
  :forecast_export_job_name,
371
381
  :forecast_arn,
372
382
  :destination)
383
+ SENSITIVE = []
373
384
  include Aws::Structure
374
385
  end
375
386
 
@@ -381,6 +392,7 @@ module Aws::ForecastService
381
392
  #
382
393
  class CreateForecastExportJobResponse < Struct.new(
383
394
  :forecast_export_job_arn)
395
+ SENSITIVE = []
384
396
  include Aws::Structure
385
397
  end
386
398
 
@@ -417,6 +429,7 @@ module Aws::ForecastService
417
429
  :forecast_name,
418
430
  :predictor_arn,
419
431
  :forecast_types)
432
+ SENSITIVE = []
420
433
  include Aws::Structure
421
434
  end
422
435
 
@@ -428,6 +441,7 @@ module Aws::ForecastService
428
441
  #
429
442
  class CreateForecastResponse < Struct.new(
430
443
  :forecast_arn)
444
+ SENSITIVE = []
431
445
  include Aws::Structure
432
446
  end
433
447
 
@@ -632,6 +646,7 @@ module Aws::ForecastService
632
646
  :input_data_config,
633
647
  :featurization_config,
634
648
  :encryption_config)
649
+ SENSITIVE = []
635
650
  include Aws::Structure
636
651
  end
637
652
 
@@ -643,6 +658,7 @@ module Aws::ForecastService
643
658
  #
644
659
  class CreatePredictorResponse < Struct.new(
645
660
  :predictor_arn)
661
+ SENSITIVE = []
646
662
  include Aws::Structure
647
663
  end
648
664
 
@@ -671,6 +687,7 @@ module Aws::ForecastService
671
687
  #
672
688
  class DataDestination < Struct.new(
673
689
  :s3_config)
690
+ SENSITIVE = []
674
691
  include Aws::Structure
675
692
  end
676
693
 
@@ -700,6 +717,7 @@ module Aws::ForecastService
700
717
  #
701
718
  class DataSource < Struct.new(
702
719
  :s3_config)
720
+ SENSITIVE = []
703
721
  include Aws::Structure
704
722
  end
705
723
 
@@ -734,6 +752,7 @@ module Aws::ForecastService
734
752
  :dataset_group_name,
735
753
  :creation_time,
736
754
  :last_modification_time)
755
+ SENSITIVE = []
737
756
  include Aws::Structure
738
757
  end
739
758
 
@@ -802,6 +821,7 @@ module Aws::ForecastService
802
821
  :message,
803
822
  :creation_time,
804
823
  :last_modification_time)
824
+ SENSITIVE = []
805
825
  include Aws::Structure
806
826
  end
807
827
 
@@ -846,6 +866,7 @@ module Aws::ForecastService
846
866
  :domain,
847
867
  :creation_time,
848
868
  :last_modification_time)
869
+ SENSITIVE = []
849
870
  include Aws::Structure
850
871
  end
851
872
 
@@ -864,6 +885,7 @@ module Aws::ForecastService
864
885
  #
865
886
  class DeleteDatasetGroupRequest < Struct.new(
866
887
  :dataset_group_arn)
888
+ SENSITIVE = []
867
889
  include Aws::Structure
868
890
  end
869
891
 
@@ -882,6 +904,7 @@ module Aws::ForecastService
882
904
  #
883
905
  class DeleteDatasetImportJobRequest < Struct.new(
884
906
  :dataset_import_job_arn)
907
+ SENSITIVE = []
885
908
  include Aws::Structure
886
909
  end
887
910
 
@@ -900,6 +923,7 @@ module Aws::ForecastService
900
923
  #
901
924
  class DeleteDatasetRequest < Struct.new(
902
925
  :dataset_arn)
926
+ SENSITIVE = []
903
927
  include Aws::Structure
904
928
  end
905
929
 
@@ -918,6 +942,7 @@ module Aws::ForecastService
918
942
  #
919
943
  class DeleteForecastExportJobRequest < Struct.new(
920
944
  :forecast_export_job_arn)
945
+ SENSITIVE = []
921
946
  include Aws::Structure
922
947
  end
923
948
 
@@ -936,6 +961,7 @@ module Aws::ForecastService
936
961
  #
937
962
  class DeleteForecastRequest < Struct.new(
938
963
  :forecast_arn)
964
+ SENSITIVE = []
939
965
  include Aws::Structure
940
966
  end
941
967
 
@@ -954,6 +980,7 @@ module Aws::ForecastService
954
980
  #
955
981
  class DeletePredictorRequest < Struct.new(
956
982
  :predictor_arn)
983
+ SENSITIVE = []
957
984
  include Aws::Structure
958
985
  end
959
986
 
@@ -972,6 +999,7 @@ module Aws::ForecastService
972
999
  #
973
1000
  class DescribeDatasetGroupRequest < Struct.new(
974
1001
  :dataset_group_arn)
1002
+ SENSITIVE = []
975
1003
  include Aws::Structure
976
1004
  end
977
1005
 
@@ -1033,6 +1061,7 @@ module Aws::ForecastService
1033
1061
  :status,
1034
1062
  :creation_time,
1035
1063
  :last_modification_time)
1064
+ SENSITIVE = []
1036
1065
  include Aws::Structure
1037
1066
  end
1038
1067
 
@@ -1051,6 +1080,7 @@ module Aws::ForecastService
1051
1080
  #
1052
1081
  class DescribeDatasetImportJobRequest < Struct.new(
1053
1082
  :dataset_import_job_arn)
1083
+ SENSITIVE = []
1054
1084
  include Aws::Structure
1055
1085
  end
1056
1086
 
@@ -1146,6 +1176,7 @@ module Aws::ForecastService
1146
1176
  :message,
1147
1177
  :creation_time,
1148
1178
  :last_modification_time)
1179
+ SENSITIVE = []
1149
1180
  include Aws::Structure
1150
1181
  end
1151
1182
 
@@ -1164,6 +1195,7 @@ module Aws::ForecastService
1164
1195
  #
1165
1196
  class DescribeDatasetRequest < Struct.new(
1166
1197
  :dataset_arn)
1198
+ SENSITIVE = []
1167
1199
  include Aws::Structure
1168
1200
  end
1169
1201
 
@@ -1252,6 +1284,7 @@ module Aws::ForecastService
1252
1284
  :status,
1253
1285
  :creation_time,
1254
1286
  :last_modification_time)
1287
+ SENSITIVE = []
1255
1288
  include Aws::Structure
1256
1289
  end
1257
1290
 
@@ -1270,6 +1303,7 @@ module Aws::ForecastService
1270
1303
  #
1271
1304
  class DescribeForecastExportJobRequest < Struct.new(
1272
1305
  :forecast_export_job_arn)
1306
+ SENSITIVE = []
1273
1307
  include Aws::Structure
1274
1308
  end
1275
1309
 
@@ -1328,6 +1362,7 @@ module Aws::ForecastService
1328
1362
  :status,
1329
1363
  :creation_time,
1330
1364
  :last_modification_time)
1365
+ SENSITIVE = []
1331
1366
  include Aws::Structure
1332
1367
  end
1333
1368
 
@@ -1346,6 +1381,7 @@ module Aws::ForecastService
1346
1381
  #
1347
1382
  class DescribeForecastRequest < Struct.new(
1348
1383
  :forecast_arn)
1384
+ SENSITIVE = []
1349
1385
  include Aws::Structure
1350
1386
  end
1351
1387
 
@@ -1413,6 +1449,7 @@ module Aws::ForecastService
1413
1449
  :message,
1414
1450
  :creation_time,
1415
1451
  :last_modification_time)
1452
+ SENSITIVE = []
1416
1453
  include Aws::Structure
1417
1454
  end
1418
1455
 
@@ -1432,6 +1469,7 @@ module Aws::ForecastService
1432
1469
  #
1433
1470
  class DescribePredictorRequest < Struct.new(
1434
1471
  :predictor_arn)
1472
+ SENSITIVE = []
1435
1473
  include Aws::Structure
1436
1474
  end
1437
1475
 
@@ -1567,6 +1605,7 @@ module Aws::ForecastService
1567
1605
  :message,
1568
1606
  :creation_time,
1569
1607
  :last_modification_time)
1608
+ SENSITIVE = []
1570
1609
  include Aws::Structure
1571
1610
  end
1572
1611
 
@@ -1601,6 +1640,7 @@ module Aws::ForecastService
1601
1640
  class EncryptionConfig < Struct.new(
1602
1641
  :role_arn,
1603
1642
  :kms_key_arn)
1643
+ SENSITIVE = []
1604
1644
  include Aws::Structure
1605
1645
  end
1606
1646
 
@@ -1640,6 +1680,7 @@ module Aws::ForecastService
1640
1680
  class EvaluationParameters < Struct.new(
1641
1681
  :number_of_backtest_windows,
1642
1682
  :back_test_window_offset)
1683
+ SENSITIVE = []
1643
1684
  include Aws::Structure
1644
1685
  end
1645
1686
 
@@ -1661,6 +1702,7 @@ module Aws::ForecastService
1661
1702
  class EvaluationResult < Struct.new(
1662
1703
  :algorithm_arn,
1663
1704
  :test_windows)
1705
+ SENSITIVE = []
1664
1706
  include Aws::Structure
1665
1707
  end
1666
1708
 
@@ -1717,6 +1759,7 @@ module Aws::ForecastService
1717
1759
  class Featurization < Struct.new(
1718
1760
  :attribute_name,
1719
1761
  :featurization_pipeline)
1762
+ SENSITIVE = []
1720
1763
  include Aws::Structure
1721
1764
  end
1722
1765
 
@@ -1799,6 +1842,7 @@ module Aws::ForecastService
1799
1842
  :forecast_frequency,
1800
1843
  :forecast_dimensions,
1801
1844
  :featurizations)
1845
+ SENSITIVE = []
1802
1846
  include Aws::Structure
1803
1847
  end
1804
1848
 
@@ -1854,6 +1898,7 @@ module Aws::ForecastService
1854
1898
  class FeaturizationMethod < Struct.new(
1855
1899
  :featurization_method_name,
1856
1900
  :featurization_method_parameters)
1901
+ SENSITIVE = []
1857
1902
  include Aws::Structure
1858
1903
  end
1859
1904
 
@@ -1892,6 +1937,7 @@ module Aws::ForecastService
1892
1937
  :key,
1893
1938
  :value,
1894
1939
  :condition)
1940
+ SENSITIVE = []
1895
1941
  include Aws::Structure
1896
1942
  end
1897
1943
 
@@ -1950,6 +1996,7 @@ module Aws::ForecastService
1950
1996
  :message,
1951
1997
  :creation_time,
1952
1998
  :last_modification_time)
1999
+ SENSITIVE = []
1953
2000
  include Aws::Structure
1954
2001
  end
1955
2002
 
@@ -2017,6 +2064,7 @@ module Aws::ForecastService
2017
2064
  :message,
2018
2065
  :creation_time,
2019
2066
  :last_modification_time)
2067
+ SENSITIVE = []
2020
2068
  include Aws::Structure
2021
2069
  end
2022
2070
 
@@ -2035,6 +2083,7 @@ module Aws::ForecastService
2035
2083
  #
2036
2084
  class GetAccuracyMetricsRequest < Struct.new(
2037
2085
  :predictor_arn)
2086
+ SENSITIVE = []
2038
2087
  include Aws::Structure
2039
2088
  end
2040
2089
 
@@ -2046,6 +2095,7 @@ module Aws::ForecastService
2046
2095
  #
2047
2096
  class GetAccuracyMetricsResponse < Struct.new(
2048
2097
  :predictor_evaluation_results)
2098
+ SENSITIVE = []
2049
2099
  include Aws::Structure
2050
2100
  end
2051
2101
 
@@ -2102,6 +2152,7 @@ module Aws::ForecastService
2102
2152
  #
2103
2153
  class HyperParameterTuningJobConfig < Struct.new(
2104
2154
  :parameter_ranges)
2155
+ SENSITIVE = []
2105
2156
  include Aws::Structure
2106
2157
  end
2107
2158
 
@@ -2136,6 +2187,7 @@ module Aws::ForecastService
2136
2187
  class InputDataConfig < Struct.new(
2137
2188
  :dataset_group_arn,
2138
2189
  :supplementary_features)
2190
+ SENSITIVE = []
2139
2191
  include Aws::Structure
2140
2192
  end
2141
2193
 
@@ -2208,6 +2260,7 @@ module Aws::ForecastService
2208
2260
  :max_value,
2209
2261
  :min_value,
2210
2262
  :scaling_type)
2263
+ SENSITIVE = []
2211
2264
  include Aws::Structure
2212
2265
  end
2213
2266
 
@@ -2221,6 +2274,7 @@ module Aws::ForecastService
2221
2274
  #
2222
2275
  class InvalidInputException < Struct.new(
2223
2276
  :message)
2277
+ SENSITIVE = []
2224
2278
  include Aws::Structure
2225
2279
  end
2226
2280
 
@@ -2233,6 +2287,7 @@ module Aws::ForecastService
2233
2287
  #
2234
2288
  class InvalidNextTokenException < Struct.new(
2235
2289
  :message)
2290
+ SENSITIVE = []
2236
2291
  include Aws::Structure
2237
2292
  end
2238
2293
 
@@ -2245,6 +2300,7 @@ module Aws::ForecastService
2245
2300
  #
2246
2301
  class LimitExceededException < Struct.new(
2247
2302
  :message)
2303
+ SENSITIVE = []
2248
2304
  include Aws::Structure
2249
2305
  end
2250
2306
 
@@ -2271,6 +2327,7 @@ module Aws::ForecastService
2271
2327
  class ListDatasetGroupsRequest < Struct.new(
2272
2328
  :next_token,
2273
2329
  :max_results)
2330
+ SENSITIVE = []
2274
2331
  include Aws::Structure
2275
2332
  end
2276
2333
 
@@ -2288,6 +2345,7 @@ module Aws::ForecastService
2288
2345
  class ListDatasetGroupsResponse < Struct.new(
2289
2346
  :dataset_groups,
2290
2347
  :next_token)
2348
+ SENSITIVE = []
2291
2349
  include Aws::Structure
2292
2350
  end
2293
2351
 
@@ -2347,6 +2405,7 @@ module Aws::ForecastService
2347
2405
  :next_token,
2348
2406
  :max_results,
2349
2407
  :filters)
2408
+ SENSITIVE = []
2350
2409
  include Aws::Structure
2351
2410
  end
2352
2411
 
@@ -2365,6 +2424,7 @@ module Aws::ForecastService
2365
2424
  class ListDatasetImportJobsResponse < Struct.new(
2366
2425
  :dataset_import_jobs,
2367
2426
  :next_token)
2427
+ SENSITIVE = []
2368
2428
  include Aws::Structure
2369
2429
  end
2370
2430
 
@@ -2391,6 +2451,7 @@ module Aws::ForecastService
2391
2451
  class ListDatasetsRequest < Struct.new(
2392
2452
  :next_token,
2393
2453
  :max_results)
2454
+ SENSITIVE = []
2394
2455
  include Aws::Structure
2395
2456
  end
2396
2457
 
@@ -2408,6 +2469,7 @@ module Aws::ForecastService
2408
2469
  class ListDatasetsResponse < Struct.new(
2409
2470
  :datasets,
2410
2471
  :next_token)
2472
+ SENSITIVE = []
2411
2473
  include Aws::Structure
2412
2474
  end
2413
2475
 
@@ -2469,6 +2531,7 @@ module Aws::ForecastService
2469
2531
  :next_token,
2470
2532
  :max_results,
2471
2533
  :filters)
2534
+ SENSITIVE = []
2472
2535
  include Aws::Structure
2473
2536
  end
2474
2537
 
@@ -2486,6 +2549,7 @@ module Aws::ForecastService
2486
2549
  class ListForecastExportJobsResponse < Struct.new(
2487
2550
  :forecast_export_jobs,
2488
2551
  :next_token)
2552
+ SENSITIVE = []
2489
2553
  include Aws::Structure
2490
2554
  end
2491
2555
 
@@ -2545,6 +2609,7 @@ module Aws::ForecastService
2545
2609
  :next_token,
2546
2610
  :max_results,
2547
2611
  :filters)
2612
+ SENSITIVE = []
2548
2613
  include Aws::Structure
2549
2614
  end
2550
2615
 
@@ -2562,6 +2627,7 @@ module Aws::ForecastService
2562
2627
  class ListForecastsResponse < Struct.new(
2563
2628
  :forecasts,
2564
2629
  :next_token)
2630
+ SENSITIVE = []
2565
2631
  include Aws::Structure
2566
2632
  end
2567
2633
 
@@ -2621,6 +2687,7 @@ module Aws::ForecastService
2621
2687
  :next_token,
2622
2688
  :max_results,
2623
2689
  :filters)
2690
+ SENSITIVE = []
2624
2691
  include Aws::Structure
2625
2692
  end
2626
2693
 
@@ -2638,6 +2705,7 @@ module Aws::ForecastService
2638
2705
  class ListPredictorsResponse < Struct.new(
2639
2706
  :predictors,
2640
2707
  :next_token)
2708
+ SENSITIVE = []
2641
2709
  include Aws::Structure
2642
2710
  end
2643
2711
 
@@ -2659,6 +2727,7 @@ module Aws::ForecastService
2659
2727
  class Metrics < Struct.new(
2660
2728
  :rmse,
2661
2729
  :weighted_quantile_losses)
2730
+ SENSITIVE = []
2662
2731
  include Aws::Structure
2663
2732
  end
2664
2733
 
@@ -2714,6 +2783,7 @@ module Aws::ForecastService
2714
2783
  :categorical_parameter_ranges,
2715
2784
  :continuous_parameter_ranges,
2716
2785
  :integer_parameter_ranges)
2786
+ SENSITIVE = []
2717
2787
  include Aws::Structure
2718
2788
  end
2719
2789
 
@@ -2735,6 +2805,7 @@ module Aws::ForecastService
2735
2805
  class PredictorExecution < Struct.new(
2736
2806
  :algorithm_arn,
2737
2807
  :test_windows)
2808
+ SENSITIVE = []
2738
2809
  include Aws::Structure
2739
2810
  end
2740
2811
 
@@ -2754,6 +2825,7 @@ module Aws::ForecastService
2754
2825
  #
2755
2826
  class PredictorExecutionDetails < Struct.new(
2756
2827
  :predictor_executions)
2828
+ SENSITIVE = []
2757
2829
  include Aws::Structure
2758
2830
  end
2759
2831
 
@@ -2817,6 +2889,7 @@ module Aws::ForecastService
2817
2889
  :message,
2818
2890
  :creation_time,
2819
2891
  :last_modification_time)
2892
+ SENSITIVE = []
2820
2893
  include Aws::Structure
2821
2894
  end
2822
2895
 
@@ -2830,6 +2903,7 @@ module Aws::ForecastService
2830
2903
  #
2831
2904
  class ResourceAlreadyExistsException < Struct.new(
2832
2905
  :message)
2906
+ SENSITIVE = []
2833
2907
  include Aws::Structure
2834
2908
  end
2835
2909
 
@@ -2842,6 +2916,7 @@ module Aws::ForecastService
2842
2916
  #
2843
2917
  class ResourceInUseException < Struct.new(
2844
2918
  :message)
2919
+ SENSITIVE = []
2845
2920
  include Aws::Structure
2846
2921
  end
2847
2922
 
@@ -2855,6 +2930,7 @@ module Aws::ForecastService
2855
2930
  #
2856
2931
  class ResourceNotFoundException < Struct.new(
2857
2932
  :message)
2933
+ SENSITIVE = []
2858
2934
  include Aws::Structure
2859
2935
  end
2860
2936
 
@@ -2902,6 +2978,7 @@ module Aws::ForecastService
2902
2978
  :path,
2903
2979
  :role_arn,
2904
2980
  :kms_key_arn)
2981
+ SENSITIVE = []
2905
2982
  include Aws::Structure
2906
2983
  end
2907
2984
 
@@ -2929,6 +3006,7 @@ module Aws::ForecastService
2929
3006
  #
2930
3007
  class Schema < Struct.new(
2931
3008
  :attributes)
3009
+ SENSITIVE = []
2932
3010
  include Aws::Structure
2933
3011
  end
2934
3012
 
@@ -2957,6 +3035,7 @@ module Aws::ForecastService
2957
3035
  class SchemaAttribute < Struct.new(
2958
3036
  :attribute_name,
2959
3037
  :attribute_type)
3038
+ SENSITIVE = []
2960
3039
  include Aws::Structure
2961
3040
  end
2962
3041
 
@@ -3006,6 +3085,7 @@ module Aws::ForecastService
3006
3085
  :max,
3007
3086
  :avg,
3008
3087
  :stddev)
3088
+ SENSITIVE = []
3009
3089
  include Aws::Structure
3010
3090
  end
3011
3091
 
@@ -3052,6 +3132,7 @@ module Aws::ForecastService
3052
3132
  class SupplementaryFeature < Struct.new(
3053
3133
  :name,
3054
3134
  :value)
3135
+ SENSITIVE = []
3055
3136
  include Aws::Structure
3056
3137
  end
3057
3138
 
@@ -3087,6 +3168,7 @@ module Aws::ForecastService
3087
3168
  :test_window_end,
3088
3169
  :status,
3089
3170
  :message)
3171
+ SENSITIVE = []
3090
3172
  include Aws::Structure
3091
3173
  end
3092
3174
 
@@ -3112,6 +3194,7 @@ module Aws::ForecastService
3112
3194
  class UpdateDatasetGroupRequest < Struct.new(
3113
3195
  :dataset_group_arn,
3114
3196
  :dataset_arns)
3197
+ SENSITIVE = []
3115
3198
  include Aws::Structure
3116
3199
  end
3117
3200
 
@@ -3140,6 +3223,7 @@ module Aws::ForecastService
3140
3223
  class WeightedQuantileLoss < Struct.new(
3141
3224
  :quantile,
3142
3225
  :loss_value)
3226
+ SENSITIVE = []
3143
3227
  include Aws::Structure
3144
3228
  end
3145
3229
 
@@ -3182,6 +3266,7 @@ module Aws::ForecastService
3182
3266
  :item_count,
3183
3267
  :evaluation_type,
3184
3268
  :metrics)
3269
+ SENSITIVE = []
3185
3270
  include Aws::Structure
3186
3271
  end
3187
3272
 
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.2.0
4
+ version: 1.7.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: 2019-11-22 00:00:00.000000000 Z
11
+ date: 2020-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.71.0
22
+ version: 3.99.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.71.0
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  version: '0'
82
82
  requirements: []
83
83
  rubyforge_project:
84
- rubygems_version: 2.5.2.3
84
+ rubygems_version: 2.7.6.2
85
85
  signing_key:
86
86
  specification_version: 4
87
87
  summary: AWS SDK for Ruby - Amazon Forecast Service