aws-sdk-kinesisanalyticsv2 1.53.0 → 1.55.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: 63b323e57e81c81f6d160f0ba00a33ff9dc0a4fecff3188df322e7a9ad691786
4
- data.tar.gz: 228d71fcb82a34c8877b8eda7b2838bad753ae3b8656a2659d62b20c714b6324
3
+ metadata.gz: b0449ccbb9063f1d4dc127e68a05d8db095d9751aa683685f6b2daf96bcd3d69
4
+ data.tar.gz: 67ba4b2bc170c54f6abd9fba150eb5df747ecfc567ed0abea682b0ca1cf5bc83
5
5
  SHA512:
6
- metadata.gz: f90738c3585a0714b1f935d6d1146baa9589ed2397bacadf5b27f96c16d002b8294c45c0724cdd4a8c7b24754b23f6c618e75e63ea477c10bf193b93229ce4fd
7
- data.tar.gz: afcf100a10dc5d0bfd226fa48d1ce582ad4325404323c3475898e79de19002a1ea27a84e64b81024d3684fad1bb6176a0a090199bbf0870ca1353976b0f7b5ee
6
+ metadata.gz: d8098a55c7bfb41a16fc5221f322dea45866681382ad8558b76b9ef180839fda91fe807fab3ebf638396addad7c769f18eac628c646fc6126b68fe2dfd283307
7
+ data.tar.gz: fea3e528471548f111446d9d8edc4944c723d53e2d09fdca147a52cd4846426a26802517d13f5e717462538c58c975ccf4f9e29f4837fa795278661c79b9e6be
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.55.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.54.0 (2024-03-15)
10
+ ------------------
11
+
12
+ * Feature - Support for Flink 1.18 in Managed Service for Apache Flink
13
+
4
14
  1.53.0 (2024-03-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.53.0
1
+ 1.55.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::KinesisAnalyticsV2
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::KinesisAnalyticsV2
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -347,50 +356,65 @@ module Aws::KinesisAnalyticsV2
347
356
  # @option options [Aws::KinesisAnalyticsV2::EndpointProvider] :endpoint_provider
348
357
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::KinesisAnalyticsV2::EndpointParameters`
349
358
  #
350
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
351
- # requests through. Formatted like 'http://proxy.com:123'.
352
- #
353
- # @option options [Float] :http_open_timeout (15) The number of
354
- # seconds to wait when opening a HTTP session before raising a
355
- # `Timeout::Error`.
356
- #
357
- # @option options [Float] :http_read_timeout (60) The default
358
- # number of seconds to wait for response data. This value can
359
- # safely be set per-request on the session.
360
- #
361
- # @option options [Float] :http_idle_timeout (5) The number of
362
- # seconds a connection is allowed to sit idle before it is
363
- # considered stale. Stale connections are closed and removed
364
- # from the pool before making a request.
365
- #
366
- # @option options [Float] :http_continue_timeout (1) The number of
367
- # seconds to wait for a 100-continue response before sending the
368
- # request body. This option has no effect unless the request has
369
- # "Expect" header set to "100-continue". Defaults to `nil` which
370
- # disables this behaviour. This value can safely be set per
371
- # request on the session.
372
- #
373
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
374
- # in seconds.
359
+ # @option options [Float] :http_continue_timeout (1)
360
+ # The number of seconds to wait for a 100-continue response before sending the
361
+ # request body. This option has no effect unless the request has "Expect"
362
+ # header set to "100-continue". Defaults to `nil` which disables this
363
+ # behaviour. This value can safely be set per request on the session.
364
+ #
365
+ # @option options [Float] :http_idle_timeout (5)
366
+ # The number of seconds a connection is allowed to sit idle before it
367
+ # is considered stale. Stale connections are closed and removed from the
368
+ # pool before making a request.
369
+ #
370
+ # @option options [Float] :http_open_timeout (15)
371
+ # The default number of seconds to wait for response data.
372
+ # This value can safely be set per-request on the session.
373
+ #
374
+ # @option options [URI::HTTP,String] :http_proxy
375
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
376
+ #
377
+ # @option options [Float] :http_read_timeout (60)
378
+ # The default number of seconds to wait for response data.
379
+ # This value can safely be set per-request on the session.
380
+ #
381
+ # @option options [Boolean] :http_wire_trace (false)
382
+ # When `true`, HTTP debug output will be sent to the `:logger`.
383
+ #
384
+ # @option options [Proc] :on_chunk_received
385
+ # When a Proc object is provided, it will be used as callback when each chunk
386
+ # of the response body is received. It provides three arguments: the chunk,
387
+ # the number of bytes received, and the total number of
388
+ # bytes in the response (or nil if the server did not send a `content-length`).
389
+ #
390
+ # @option options [Proc] :on_chunk_sent
391
+ # When a Proc object is provided, it will be used as callback when each chunk
392
+ # of the request body is sent. It provides three arguments: the chunk,
393
+ # the number of bytes read from the body, and the total number of
394
+ # bytes in the body.
395
+ #
396
+ # @option options [Boolean] :raise_response_errors (true)
397
+ # When `true`, response errors are raised.
398
+ #
399
+ # @option options [String] :ssl_ca_bundle
400
+ # Full path to the SSL certificate authority bundle file that should be used when
401
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
402
+ # `:ssl_ca_directory` the the system default will be used if available.
403
+ #
404
+ # @option options [String] :ssl_ca_directory
405
+ # Full path of the directory that contains the unbundled SSL certificate
406
+ # authority files for verifying peer certificates. If you do
407
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
408
+ # default will be used if available.
375
409
  #
376
- # @option options [Boolean] :http_wire_trace (false) When `true`,
377
- # HTTP debug output will be sent to the `:logger`.
410
+ # @option options [String] :ssl_ca_store
411
+ # Sets the X509::Store to verify peer certificate.
378
412
  #
379
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
380
- # SSL peer certificates are verified when establishing a
381
- # connection.
413
+ # @option options [Float] :ssl_timeout
414
+ # Sets the SSL timeout in seconds
382
415
  #
383
- # @option options [String] :ssl_ca_bundle Full path to the SSL
384
- # certificate authority bundle file that should be used when
385
- # verifying peer certificates. If you do not pass
386
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
387
- # will be used if available.
388
- #
389
- # @option options [String] :ssl_ca_directory Full path of the
390
- # directory that contains the unbundled SSL certificate
391
- # authority files for verifying peer certificates. If you do
392
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
393
- # system default will be used if available.
416
+ # @option options [Boolean] :ssl_verify_peer (true)
417
+ # When `true`, SSL peer certificates are verified when establishing a connection.
394
418
  #
395
419
  def initialize(*args)
396
420
  super
@@ -948,7 +972,7 @@ module Aws::KinesisAnalyticsV2
948
972
  # resp = client.create_application({
949
973
  # application_name: "ApplicationName", # required
950
974
  # application_description: "ApplicationDescription",
951
- # runtime_environment: "SQL-1_0", # required, accepts SQL-1_0, FLINK-1_6, FLINK-1_8, ZEPPELIN-FLINK-1_0, FLINK-1_11, FLINK-1_13, ZEPPELIN-FLINK-2_0, FLINK-1_15, ZEPPELIN-FLINK-3_0
975
+ # runtime_environment: "SQL-1_0", # required, accepts SQL-1_0, FLINK-1_6, FLINK-1_8, ZEPPELIN-FLINK-1_0, FLINK-1_11, FLINK-1_13, ZEPPELIN-FLINK-2_0, FLINK-1_15, ZEPPELIN-FLINK-3_0, FLINK-1_18
952
976
  # service_execution_role: "RoleARN", # required
953
977
  # application_configuration: {
954
978
  # sql_application_configuration: {
@@ -1143,7 +1167,7 @@ module Aws::KinesisAnalyticsV2
1143
1167
  # resp.application_detail.application_arn #=> String
1144
1168
  # resp.application_detail.application_description #=> String
1145
1169
  # resp.application_detail.application_name #=> String
1146
- # resp.application_detail.runtime_environment #=> String, one of "SQL-1_0", "FLINK-1_6", "FLINK-1_8", "ZEPPELIN-FLINK-1_0", "FLINK-1_11", "FLINK-1_13", "ZEPPELIN-FLINK-2_0", "FLINK-1_15", "ZEPPELIN-FLINK-3_0"
1170
+ # resp.application_detail.runtime_environment #=> String, one of "SQL-1_0", "FLINK-1_6", "FLINK-1_8", "ZEPPELIN-FLINK-1_0", "FLINK-1_11", "FLINK-1_13", "ZEPPELIN-FLINK-2_0", "FLINK-1_15", "ZEPPELIN-FLINK-3_0", "FLINK-1_18"
1147
1171
  # resp.application_detail.service_execution_role #=> String
1148
1172
  # resp.application_detail.application_status #=> String, one of "DELETING", "STARTING", "STOPPING", "READY", "RUNNING", "UPDATING", "AUTOSCALING", "FORCE_STOPPING", "ROLLING_BACK", "MAINTENANCE", "ROLLED_BACK"
1149
1173
  # resp.application_detail.application_version_id #=> Integer
@@ -1685,7 +1709,7 @@ module Aws::KinesisAnalyticsV2
1685
1709
  # resp.application_detail.application_arn #=> String
1686
1710
  # resp.application_detail.application_description #=> String
1687
1711
  # resp.application_detail.application_name #=> String
1688
- # resp.application_detail.runtime_environment #=> String, one of "SQL-1_0", "FLINK-1_6", "FLINK-1_8", "ZEPPELIN-FLINK-1_0", "FLINK-1_11", "FLINK-1_13", "ZEPPELIN-FLINK-2_0", "FLINK-1_15", "ZEPPELIN-FLINK-3_0"
1712
+ # resp.application_detail.runtime_environment #=> String, one of "SQL-1_0", "FLINK-1_6", "FLINK-1_8", "ZEPPELIN-FLINK-1_0", "FLINK-1_11", "FLINK-1_13", "ZEPPELIN-FLINK-2_0", "FLINK-1_15", "ZEPPELIN-FLINK-3_0", "FLINK-1_18"
1689
1713
  # resp.application_detail.service_execution_role #=> String
1690
1714
  # resp.application_detail.application_status #=> String, one of "DELETING", "STARTING", "STOPPING", "READY", "RUNNING", "UPDATING", "AUTOSCALING", "FORCE_STOPPING", "ROLLING_BACK", "MAINTENANCE", "ROLLED_BACK"
1691
1715
  # resp.application_detail.application_version_id #=> Integer
@@ -1832,7 +1856,7 @@ module Aws::KinesisAnalyticsV2
1832
1856
  # resp.snapshot_details.snapshot_status #=> String, one of "CREATING", "READY", "DELETING", "FAILED"
1833
1857
  # resp.snapshot_details.application_version_id #=> Integer
1834
1858
  # resp.snapshot_details.snapshot_creation_timestamp #=> Time
1835
- # resp.snapshot_details.runtime_environment #=> String, one of "SQL-1_0", "FLINK-1_6", "FLINK-1_8", "ZEPPELIN-FLINK-1_0", "FLINK-1_11", "FLINK-1_13", "ZEPPELIN-FLINK-2_0", "FLINK-1_15", "ZEPPELIN-FLINK-3_0"
1859
+ # resp.snapshot_details.runtime_environment #=> String, one of "SQL-1_0", "FLINK-1_6", "FLINK-1_8", "ZEPPELIN-FLINK-1_0", "FLINK-1_11", "FLINK-1_13", "ZEPPELIN-FLINK-2_0", "FLINK-1_15", "ZEPPELIN-FLINK-3_0", "FLINK-1_18"
1836
1860
  #
1837
1861
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DescribeApplicationSnapshot AWS API Documentation
1838
1862
  #
@@ -1875,7 +1899,7 @@ module Aws::KinesisAnalyticsV2
1875
1899
  # resp.application_version_detail.application_arn #=> String
1876
1900
  # resp.application_version_detail.application_description #=> String
1877
1901
  # resp.application_version_detail.application_name #=> String
1878
- # resp.application_version_detail.runtime_environment #=> String, one of "SQL-1_0", "FLINK-1_6", "FLINK-1_8", "ZEPPELIN-FLINK-1_0", "FLINK-1_11", "FLINK-1_13", "ZEPPELIN-FLINK-2_0", "FLINK-1_15", "ZEPPELIN-FLINK-3_0"
1902
+ # resp.application_version_detail.runtime_environment #=> String, one of "SQL-1_0", "FLINK-1_6", "FLINK-1_8", "ZEPPELIN-FLINK-1_0", "FLINK-1_11", "FLINK-1_13", "ZEPPELIN-FLINK-2_0", "FLINK-1_15", "ZEPPELIN-FLINK-3_0", "FLINK-1_18"
1879
1903
  # resp.application_version_detail.service_execution_role #=> String
1880
1904
  # resp.application_version_detail.application_status #=> String, one of "DELETING", "STARTING", "STOPPING", "READY", "RUNNING", "UPDATING", "AUTOSCALING", "FORCE_STOPPING", "ROLLING_BACK", "MAINTENANCE", "ROLLED_BACK"
1881
1905
  # resp.application_version_detail.application_version_id #=> Integer
@@ -2113,7 +2137,7 @@ module Aws::KinesisAnalyticsV2
2113
2137
  # resp.snapshot_summaries[0].snapshot_status #=> String, one of "CREATING", "READY", "DELETING", "FAILED"
2114
2138
  # resp.snapshot_summaries[0].application_version_id #=> Integer
2115
2139
  # resp.snapshot_summaries[0].snapshot_creation_timestamp #=> Time
2116
- # resp.snapshot_summaries[0].runtime_environment #=> String, one of "SQL-1_0", "FLINK-1_6", "FLINK-1_8", "ZEPPELIN-FLINK-1_0", "FLINK-1_11", "FLINK-1_13", "ZEPPELIN-FLINK-2_0", "FLINK-1_15", "ZEPPELIN-FLINK-3_0"
2140
+ # resp.snapshot_summaries[0].runtime_environment #=> String, one of "SQL-1_0", "FLINK-1_6", "FLINK-1_8", "ZEPPELIN-FLINK-1_0", "FLINK-1_11", "FLINK-1_13", "ZEPPELIN-FLINK-2_0", "FLINK-1_15", "ZEPPELIN-FLINK-3_0", "FLINK-1_18"
2117
2141
  # resp.next_token #=> String
2118
2142
  #
2119
2143
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ListApplicationSnapshots AWS API Documentation
@@ -2221,7 +2245,7 @@ module Aws::KinesisAnalyticsV2
2221
2245
  # resp.application_summaries[0].application_arn #=> String
2222
2246
  # resp.application_summaries[0].application_status #=> String, one of "DELETING", "STARTING", "STOPPING", "READY", "RUNNING", "UPDATING", "AUTOSCALING", "FORCE_STOPPING", "ROLLING_BACK", "MAINTENANCE", "ROLLED_BACK"
2223
2247
  # resp.application_summaries[0].application_version_id #=> Integer
2224
- # resp.application_summaries[0].runtime_environment #=> String, one of "SQL-1_0", "FLINK-1_6", "FLINK-1_8", "ZEPPELIN-FLINK-1_0", "FLINK-1_11", "FLINK-1_13", "ZEPPELIN-FLINK-2_0", "FLINK-1_15", "ZEPPELIN-FLINK-3_0"
2248
+ # resp.application_summaries[0].runtime_environment #=> String, one of "SQL-1_0", "FLINK-1_6", "FLINK-1_8", "ZEPPELIN-FLINK-1_0", "FLINK-1_11", "FLINK-1_13", "ZEPPELIN-FLINK-2_0", "FLINK-1_15", "ZEPPELIN-FLINK-3_0", "FLINK-1_18"
2225
2249
  # resp.application_summaries[0].application_mode #=> String, one of "STREAMING", "INTERACTIVE"
2226
2250
  # resp.next_token #=> String
2227
2251
  #
@@ -2305,7 +2329,7 @@ module Aws::KinesisAnalyticsV2
2305
2329
  # resp.application_detail.application_arn #=> String
2306
2330
  # resp.application_detail.application_description #=> String
2307
2331
  # resp.application_detail.application_name #=> String
2308
- # resp.application_detail.runtime_environment #=> String, one of "SQL-1_0", "FLINK-1_6", "FLINK-1_8", "ZEPPELIN-FLINK-1_0", "FLINK-1_11", "FLINK-1_13", "ZEPPELIN-FLINK-2_0", "FLINK-1_15", "ZEPPELIN-FLINK-3_0"
2332
+ # resp.application_detail.runtime_environment #=> String, one of "SQL-1_0", "FLINK-1_6", "FLINK-1_8", "ZEPPELIN-FLINK-1_0", "FLINK-1_11", "FLINK-1_13", "ZEPPELIN-FLINK-2_0", "FLINK-1_15", "ZEPPELIN-FLINK-3_0", "FLINK-1_18"
2309
2333
  # resp.application_detail.service_execution_role #=> String
2310
2334
  # resp.application_detail.application_status #=> String, one of "DELETING", "STARTING", "STOPPING", "READY", "RUNNING", "UPDATING", "AUTOSCALING", "FORCE_STOPPING", "ROLLING_BACK", "MAINTENANCE", "ROLLED_BACK"
2311
2335
  # resp.application_detail.application_version_id #=> Integer
@@ -2845,7 +2869,7 @@ module Aws::KinesisAnalyticsV2
2845
2869
  # },
2846
2870
  # ],
2847
2871
  # conditional_token: "ConditionalToken",
2848
- # runtime_environment_update: "SQL-1_0", # accepts SQL-1_0, FLINK-1_6, FLINK-1_8, ZEPPELIN-FLINK-1_0, FLINK-1_11, FLINK-1_13, ZEPPELIN-FLINK-2_0, FLINK-1_15, ZEPPELIN-FLINK-3_0
2872
+ # runtime_environment_update: "SQL-1_0", # accepts SQL-1_0, FLINK-1_6, FLINK-1_8, ZEPPELIN-FLINK-1_0, FLINK-1_11, FLINK-1_13, ZEPPELIN-FLINK-2_0, FLINK-1_15, ZEPPELIN-FLINK-3_0, FLINK-1_18
2849
2873
  # })
2850
2874
  #
2851
2875
  # @example Response structure
@@ -2853,7 +2877,7 @@ module Aws::KinesisAnalyticsV2
2853
2877
  # resp.application_detail.application_arn #=> String
2854
2878
  # resp.application_detail.application_description #=> String
2855
2879
  # resp.application_detail.application_name #=> String
2856
- # resp.application_detail.runtime_environment #=> String, one of "SQL-1_0", "FLINK-1_6", "FLINK-1_8", "ZEPPELIN-FLINK-1_0", "FLINK-1_11", "FLINK-1_13", "ZEPPELIN-FLINK-2_0", "FLINK-1_15", "ZEPPELIN-FLINK-3_0"
2880
+ # resp.application_detail.runtime_environment #=> String, one of "SQL-1_0", "FLINK-1_6", "FLINK-1_8", "ZEPPELIN-FLINK-1_0", "FLINK-1_11", "FLINK-1_13", "ZEPPELIN-FLINK-2_0", "FLINK-1_15", "ZEPPELIN-FLINK-3_0", "FLINK-1_18"
2857
2881
  # resp.application_detail.service_execution_role #=> String
2858
2882
  # resp.application_detail.application_status #=> String, one of "DELETING", "STARTING", "STOPPING", "READY", "RUNNING", "UPDATING", "AUTOSCALING", "FORCE_STOPPING", "ROLLING_BACK", "MAINTENANCE", "ROLLED_BACK"
2859
2883
  # resp.application_detail.application_version_id #=> Integer
@@ -3052,7 +3076,7 @@ module Aws::KinesisAnalyticsV2
3052
3076
  params: params,
3053
3077
  config: config)
3054
3078
  context[:gem_name] = 'aws-sdk-kinesisanalyticsv2'
3055
- context[:gem_version] = '1.53.0'
3079
+ context[:gem_version] = '1.55.0'
3056
3080
  Seahorse::Client::Request.new(handlers, context)
3057
3081
  end
3058
3082
 
@@ -943,8 +943,8 @@ module Aws::KinesisAnalyticsV2
943
943
  #
944
944
  #
945
945
  #
946
- # [1]: https://ci.apache.org/projects/flink/flink-docs-release-1.8/concepts/programming-model.html#checkpoints-for-fault-tolerance
947
- # [2]: https://ci.apache.org/projects/flink/flink-docs-release-1.8/
946
+ # [1]: https://nightlies.apache.org/flink/flink-docs-release-1.18/docs/dev/datastream/fault-tolerance/checkpointing/#enabling-and-configuring-checkpointing
947
+ # [2]: https://nightlies.apache.org/flink/flink-docs-release-1.18/
948
948
  #
949
949
  # @!attribute [rw] configuration_type
950
950
  # Describes whether the application uses Managed Service for Apache
@@ -1005,8 +1005,8 @@ module Aws::KinesisAnalyticsV2
1005
1005
  #
1006
1006
  #
1007
1007
  #
1008
- # [1]: https://ci.apache.org/projects/flink/flink-docs-release-1.8/ops/state/large_state_tuning.html#tuning-checkpointing
1009
- # [2]: https://ci.apache.org/projects/flink/flink-docs-release-1.8/
1008
+ # [1]: https://nightlies.apache.org/flink/flink-docs-release-1.18/docs/ops/state/large_state_tuning/#tuning-checkpointing
1009
+ # [2]: https://nightlies.apache.org/flink/flink-docs-release-1.18/
1010
1010
  # @return [Integer]
1011
1011
  #
1012
1012
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/CheckpointConfiguration AWS API Documentation
@@ -2113,8 +2113,8 @@ module Aws::KinesisAnalyticsV2
2113
2113
  #
2114
2114
  #
2115
2115
  #
2116
- # [1]: https://ci.apache.org/projects/flink/flink-docs-release-1.8/concepts/programming-model.html#checkpoints-for-fault-tolerance
2117
- # [2]: https://ci.apache.org/projects/flink/flink-docs-release-1.8/
2116
+ # [1]: https://nightlies.apache.org/flink/flink-docs-release-1.18/docs/dev/datastream/fault-tolerance/checkpointing/#enabling-and-configuring-checkpointing
2117
+ # [2]: https://nightlies.apache.org/flink/flink-docs-release-1.18/
2118
2118
  # @return [Types::CheckpointConfiguration]
2119
2119
  #
2120
2120
  # @!attribute [rw] monitoring_configuration
@@ -2165,8 +2165,8 @@ module Aws::KinesisAnalyticsV2
2165
2165
  #
2166
2166
  #
2167
2167
  #
2168
- # [1]: https://ci.apache.org/projects/flink/flink-docs-release-1.8/internals/job_scheduling.html
2169
- # [2]: https://ci.apache.org/projects/flink/flink-docs-release-1.8/
2168
+ # [1]: https://nightlies.apache.org/flink/flink-docs-release-1.18/internals/job_scheduling.html
2169
+ # [2]: https://nightlies.apache.org/flink/flink-docs-release-1.18/
2170
2170
  # @return [String]
2171
2171
  #
2172
2172
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/FlinkApplicationConfigurationDescription AWS API Documentation
@@ -2229,8 +2229,8 @@ module Aws::KinesisAnalyticsV2
2229
2229
  #
2230
2230
  #
2231
2231
  #
2232
- # [1]: https://ci.apache.org/projects/flink/flink-docs-release-1.8/ops/state/savepoints.html#allowing-non-restored-state
2233
- # [2]: https://ci.apache.org/projects/flink/flink-docs-release-1.8/
2232
+ # [1]: https://nightlies.apache.org/flink/flink-docs-release-1.18/docs/ops/state/savepoints/#allowing-non-restored-state
2233
+ # [2]: https://nightlies.apache.org/flink/flink-docs-release-1.18/
2234
2234
  # @return [Boolean]
2235
2235
  #
2236
2236
  # @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/FlinkRunConfiguration AWS API Documentation
@@ -3560,8 +3560,8 @@ module Aws::KinesisAnalyticsV2
3560
3560
  #
3561
3561
  #
3562
3562
  #
3563
- # [1]: https://ci.apache.org/projects/flink/flink-docs-release-1.8/dev/parallel.html
3564
- # [2]: https://ci.apache.org/projects/flink/flink-docs-release-1.8/
3563
+ # [1]: https://nightlies.apache.org/flink/flink-docs-release-1.18/dev/parallel.html
3564
+ # [2]: https://nightlies.apache.org/flink/flink-docs-release-1.18/
3565
3565
  #
3566
3566
  # @!attribute [rw] configuration_type
3567
3567
  # Describes whether the application uses the default parallelism for
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-kinesisanalyticsv2/customizations'
52
52
  # @!group service
53
53
  module Aws::KinesisAnalyticsV2
54
54
 
55
- GEM_VERSION = '1.53.0'
55
+ GEM_VERSION = '1.55.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -258,7 +258,7 @@ module Aws
258
258
  def create_application: (
259
259
  application_name: ::String,
260
260
  ?application_description: ::String,
261
- runtime_environment: ("SQL-1_0" | "FLINK-1_6" | "FLINK-1_8" | "ZEPPELIN-FLINK-1_0" | "FLINK-1_11" | "FLINK-1_13" | "ZEPPELIN-FLINK-2_0" | "FLINK-1_15" | "ZEPPELIN-FLINK-3_0"),
261
+ runtime_environment: ("SQL-1_0" | "FLINK-1_6" | "FLINK-1_8" | "ZEPPELIN-FLINK-1_0" | "FLINK-1_11" | "FLINK-1_13" | "ZEPPELIN-FLINK-2_0" | "FLINK-1_15" | "ZEPPELIN-FLINK-3_0" | "FLINK-1_18"),
262
262
  service_execution_role: ::String,
263
263
  ?application_configuration: {
264
264
  sql_application_configuration: {
@@ -938,7 +938,7 @@ module Aws
938
938
  },
939
939
  ],
940
940
  ?conditional_token: ::String,
941
- ?runtime_environment_update: ("SQL-1_0" | "FLINK-1_6" | "FLINK-1_8" | "ZEPPELIN-FLINK-1_0" | "FLINK-1_11" | "FLINK-1_13" | "ZEPPELIN-FLINK-2_0" | "FLINK-1_15" | "ZEPPELIN-FLINK-3_0")
941
+ ?runtime_environment_update: ("SQL-1_0" | "FLINK-1_6" | "FLINK-1_8" | "ZEPPELIN-FLINK-1_0" | "FLINK-1_11" | "FLINK-1_13" | "ZEPPELIN-FLINK-2_0" | "FLINK-1_15" | "ZEPPELIN-FLINK-3_0" | "FLINK-1_18")
942
942
  ) -> _UpdateApplicationResponseSuccess
943
943
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationResponseSuccess
944
944
 
data/sig/types.rbs CHANGED
@@ -152,7 +152,7 @@ module Aws::KinesisAnalyticsV2
152
152
  attr_accessor application_arn: ::String
153
153
  attr_accessor application_description: ::String
154
154
  attr_accessor application_name: ::String
155
- attr_accessor runtime_environment: ("SQL-1_0" | "FLINK-1_6" | "FLINK-1_8" | "ZEPPELIN-FLINK-1_0" | "FLINK-1_11" | "FLINK-1_13" | "ZEPPELIN-FLINK-2_0" | "FLINK-1_15" | "ZEPPELIN-FLINK-3_0")
155
+ attr_accessor runtime_environment: ("SQL-1_0" | "FLINK-1_6" | "FLINK-1_8" | "ZEPPELIN-FLINK-1_0" | "FLINK-1_11" | "FLINK-1_13" | "ZEPPELIN-FLINK-2_0" | "FLINK-1_15" | "ZEPPELIN-FLINK-3_0" | "FLINK-1_18")
156
156
  attr_accessor service_execution_role: ::String
157
157
  attr_accessor application_status: ("DELETING" | "STARTING" | "STOPPING" | "READY" | "RUNNING" | "UPDATING" | "AUTOSCALING" | "FORCE_STOPPING" | "ROLLING_BACK" | "MAINTENANCE" | "ROLLED_BACK")
158
158
  attr_accessor application_version_id: ::Integer
@@ -206,7 +206,7 @@ module Aws::KinesisAnalyticsV2
206
206
  attr_accessor application_arn: ::String
207
207
  attr_accessor application_status: ("DELETING" | "STARTING" | "STOPPING" | "READY" | "RUNNING" | "UPDATING" | "AUTOSCALING" | "FORCE_STOPPING" | "ROLLING_BACK" | "MAINTENANCE" | "ROLLED_BACK")
208
208
  attr_accessor application_version_id: ::Integer
209
- attr_accessor runtime_environment: ("SQL-1_0" | "FLINK-1_6" | "FLINK-1_8" | "ZEPPELIN-FLINK-1_0" | "FLINK-1_11" | "FLINK-1_13" | "ZEPPELIN-FLINK-2_0" | "FLINK-1_15" | "ZEPPELIN-FLINK-3_0")
209
+ attr_accessor runtime_environment: ("SQL-1_0" | "FLINK-1_6" | "FLINK-1_8" | "ZEPPELIN-FLINK-1_0" | "FLINK-1_11" | "FLINK-1_13" | "ZEPPELIN-FLINK-2_0" | "FLINK-1_15" | "ZEPPELIN-FLINK-3_0" | "FLINK-1_18")
210
210
  attr_accessor application_mode: ("STREAMING" | "INTERACTIVE")
211
211
  SENSITIVE: []
212
212
  end
@@ -327,7 +327,7 @@ module Aws::KinesisAnalyticsV2
327
327
  class CreateApplicationRequest
328
328
  attr_accessor application_name: ::String
329
329
  attr_accessor application_description: ::String
330
- attr_accessor runtime_environment: ("SQL-1_0" | "FLINK-1_6" | "FLINK-1_8" | "ZEPPELIN-FLINK-1_0" | "FLINK-1_11" | "FLINK-1_13" | "ZEPPELIN-FLINK-2_0" | "FLINK-1_15" | "ZEPPELIN-FLINK-3_0")
330
+ attr_accessor runtime_environment: ("SQL-1_0" | "FLINK-1_6" | "FLINK-1_8" | "ZEPPELIN-FLINK-1_0" | "FLINK-1_11" | "FLINK-1_13" | "ZEPPELIN-FLINK-2_0" | "FLINK-1_15" | "ZEPPELIN-FLINK-3_0" | "FLINK-1_18")
331
331
  attr_accessor service_execution_role: ::String
332
332
  attr_accessor application_configuration: Types::ApplicationConfiguration
333
333
  attr_accessor cloud_watch_logging_options: ::Array[Types::CloudWatchLoggingOption]
@@ -1067,7 +1067,7 @@ module Aws::KinesisAnalyticsV2
1067
1067
  attr_accessor snapshot_status: ("CREATING" | "READY" | "DELETING" | "FAILED")
1068
1068
  attr_accessor application_version_id: ::Integer
1069
1069
  attr_accessor snapshot_creation_timestamp: ::Time
1070
- attr_accessor runtime_environment: ("SQL-1_0" | "FLINK-1_6" | "FLINK-1_8" | "ZEPPELIN-FLINK-1_0" | "FLINK-1_11" | "FLINK-1_13" | "ZEPPELIN-FLINK-2_0" | "FLINK-1_15" | "ZEPPELIN-FLINK-3_0")
1070
+ attr_accessor runtime_environment: ("SQL-1_0" | "FLINK-1_6" | "FLINK-1_8" | "ZEPPELIN-FLINK-1_0" | "FLINK-1_11" | "FLINK-1_13" | "ZEPPELIN-FLINK-2_0" | "FLINK-1_15" | "ZEPPELIN-FLINK-3_0" | "FLINK-1_18")
1071
1071
  SENSITIVE: []
1072
1072
  end
1073
1073
 
@@ -1184,7 +1184,7 @@ module Aws::KinesisAnalyticsV2
1184
1184
  attr_accessor run_configuration_update: Types::RunConfigurationUpdate
1185
1185
  attr_accessor cloud_watch_logging_option_updates: ::Array[Types::CloudWatchLoggingOptionUpdate]
1186
1186
  attr_accessor conditional_token: ::String
1187
- attr_accessor runtime_environment_update: ("SQL-1_0" | "FLINK-1_6" | "FLINK-1_8" | "ZEPPELIN-FLINK-1_0" | "FLINK-1_11" | "FLINK-1_13" | "ZEPPELIN-FLINK-2_0" | "FLINK-1_15" | "ZEPPELIN-FLINK-3_0")
1187
+ attr_accessor runtime_environment_update: ("SQL-1_0" | "FLINK-1_6" | "FLINK-1_8" | "ZEPPELIN-FLINK-1_0" | "FLINK-1_11" | "FLINK-1_13" | "ZEPPELIN-FLINK-2_0" | "FLINK-1_15" | "ZEPPELIN-FLINK-3_0" | "FLINK-1_18")
1188
1188
  SENSITIVE: []
1189
1189
  end
1190
1190
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-kinesisanalyticsv2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.53.0
4
+ version: 1.55.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: 2024-03-13 00:00:00.000000000 Z
11
+ date: 2024-04-25 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.191.0
22
+ version: 3.193.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.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement