aws-sdk-kinesisanalyticsv2 1.51.0 → 1.53.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kinesisanalyticsv2/client.rb +71 -66
- data/lib/aws-sdk-kinesisanalyticsv2/client_api.rb +2 -0
- data/lib/aws-sdk-kinesisanalyticsv2/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-kinesisanalyticsv2/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-kinesisanalyticsv2/types.rb +260 -235
- data/lib/aws-sdk-kinesisanalyticsv2.rb +1 -1
- data/sig/client.rbs +961 -0
- data/sig/errors.rbs +57 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +1256 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 63b323e57e81c81f6d160f0ba00a33ff9dc0a4fecff3188df322e7a9ad691786
|
4
|
+
data.tar.gz: 228d71fcb82a34c8877b8eda7b2838bad753ae3b8656a2659d62b20c714b6324
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f90738c3585a0714b1f935d6d1146baa9589ed2397bacadf5b27f96c16d002b8294c45c0724cdd4a8c7b24754b23f6c618e75e63ea477c10bf193b93229ce4fd
|
7
|
+
data.tar.gz: afcf100a10dc5d0bfd226fa48d1ce582ad4325404323c3475898e79de19002a1ea27a84e64b81024d3684fad1bb6176a0a090199bbf0870ca1353976b0f7b5ee
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.53.0 (2024-03-13)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Support new RuntimeEnvironmentUpdate parameter within UpdateApplication API allowing callers to change the Flink version upon which their application runs.
|
8
|
+
|
9
|
+
1.52.0 (2024-01-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.51.0 (2023-11-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.53.0
|
@@ -405,8 +405,8 @@ module Aws::KinesisAnalyticsV2
|
|
405
405
|
# The Kinesis Data Analytics application name.
|
406
406
|
#
|
407
407
|
# @option params [Integer] :current_application_version_id
|
408
|
-
# The version ID of the Kinesis Data Analytics application.
|
409
|
-
# provide the `CurrentApplicationVersionId` or the
|
408
|
+
# The version ID of the SQL-based Kinesis Data Analytics application.
|
409
|
+
# You must provide the `CurrentApplicationVersionId` or the
|
410
410
|
# `ConditionalToken`.You can retrieve the application version ID using
|
411
411
|
# DescribeApplication. For better concurrency support, use the
|
412
412
|
# `ConditionalToken` parameter instead of `CurrentApplicationVersionId`.
|
@@ -823,15 +823,15 @@ module Aws::KinesisAnalyticsV2
|
|
823
823
|
# Adds a Virtual Private Cloud (VPC) configuration to the application.
|
824
824
|
# Applications can use VPCs to store and access resources securely.
|
825
825
|
#
|
826
|
-
# Note the following about VPC configurations for
|
827
|
-
# applications:
|
826
|
+
# Note the following about VPC configurations for Managed Service for
|
827
|
+
# Apache Flink applications:
|
828
828
|
#
|
829
829
|
# * VPC configurations are not supported for SQL applications.
|
830
830
|
#
|
831
|
-
# * When a VPC is added to a
|
832
|
-
# application can no longer be accessed from the
|
833
|
-
# enable Internet access to the application, add
|
834
|
-
# to your VPC.
|
831
|
+
# * When a VPC is added to a Managed Service for Apache Flink
|
832
|
+
# application, the application can no longer be accessed from the
|
833
|
+
# Internet directly. To enable Internet access to the application, add
|
834
|
+
# an Internet gateway to your VPC.
|
835
835
|
#
|
836
836
|
# @option params [required, String] :application_name
|
837
837
|
# The name of an existing application.
|
@@ -894,9 +894,9 @@ module Aws::KinesisAnalyticsV2
|
|
894
894
|
req.send_request(options)
|
895
895
|
end
|
896
896
|
|
897
|
-
# Creates a
|
898
|
-
# creating a
|
899
|
-
# Application][1].
|
897
|
+
# Creates a Managed Service for Apache Flink application. For
|
898
|
+
# information about creating a Managed Service for Apache Flink
|
899
|
+
# application, see [Creating an Application][1].
|
900
900
|
#
|
901
901
|
#
|
902
902
|
#
|
@@ -935,9 +935,9 @@ module Aws::KinesisAnalyticsV2
|
|
935
935
|
# [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/java/how-tagging.html
|
936
936
|
#
|
937
937
|
# @option params [String] :application_mode
|
938
|
-
# Use the `STREAMING` mode to create a
|
939
|
-
# application. To create a
|
940
|
-
# the `INTERACTIVE` mode.
|
938
|
+
# Use the `STREAMING` mode to create a Managed Service for Apache Flink
|
939
|
+
# application. To create a Managed Service for Apache Flink Studio
|
940
|
+
# notebook, use the `INTERACTIVE` mode.
|
941
941
|
#
|
942
942
|
# @return [Types::CreateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
943
943
|
#
|
@@ -1345,8 +1345,8 @@ module Aws::KinesisAnalyticsV2
|
|
1345
1345
|
req.send_request(options)
|
1346
1346
|
end
|
1347
1347
|
|
1348
|
-
# Deletes the specified application.
|
1349
|
-
# application execution and deletes the application.
|
1348
|
+
# Deletes the specified application. Managed Service for Apache Flink
|
1349
|
+
# halts application execution and deletes the application.
|
1350
1350
|
#
|
1351
1351
|
# @option params [required, String] :application_name
|
1352
1352
|
# The name of the application to delete.
|
@@ -1372,8 +1372,8 @@ module Aws::KinesisAnalyticsV2
|
|
1372
1372
|
req.send_request(options)
|
1373
1373
|
end
|
1374
1374
|
|
1375
|
-
# Deletes an Amazon CloudWatch log stream from an Kinesis Data
|
1376
|
-
# application.
|
1375
|
+
# Deletes an Amazon CloudWatch log stream from an SQL-based Kinesis Data
|
1376
|
+
# Analytics application.
|
1377
1377
|
#
|
1378
1378
|
# @option params [required, String] :application_name
|
1379
1379
|
# The application name.
|
@@ -1604,7 +1604,8 @@ module Aws::KinesisAnalyticsV2
|
|
1604
1604
|
req.send_request(options)
|
1605
1605
|
end
|
1606
1606
|
|
1607
|
-
# Removes a VPC configuration from a
|
1607
|
+
# Removes a VPC configuration from a Managed Service for Apache Flink
|
1608
|
+
# application.
|
1608
1609
|
#
|
1609
1610
|
# @option params [required, String] :application_name
|
1610
1611
|
# The name of an existing application.
|
@@ -1655,7 +1656,7 @@ module Aws::KinesisAnalyticsV2
|
|
1655
1656
|
req.send_request(options)
|
1656
1657
|
end
|
1657
1658
|
|
1658
|
-
# Returns information about a specific
|
1659
|
+
# Returns information about a specific Managed Service for Apache Flink
|
1659
1660
|
# application.
|
1660
1661
|
#
|
1661
1662
|
# If you want to retrieve a list of all applications in your account,
|
@@ -1665,7 +1666,7 @@ module Aws::KinesisAnalyticsV2
|
|
1665
1666
|
# The name of the application.
|
1666
1667
|
#
|
1667
1668
|
# @option params [Boolean] :include_additional_details
|
1668
|
-
# Displays verbose information about a
|
1669
|
+
# Displays verbose information about a Managed Service for Apache Flink
|
1669
1670
|
# application, including the application's job plan.
|
1670
1671
|
#
|
1671
1672
|
# @return [Types::DescribeApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -1831,6 +1832,7 @@ module Aws::KinesisAnalyticsV2
|
|
1831
1832
|
# resp.snapshot_details.snapshot_status #=> String, one of "CREATING", "READY", "DELETING", "FAILED"
|
1832
1833
|
# resp.snapshot_details.application_version_id #=> Integer
|
1833
1834
|
# 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"
|
1834
1836
|
#
|
1835
1837
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DescribeApplicationSnapshot AWS API Documentation
|
1836
1838
|
#
|
@@ -1845,8 +1847,7 @@ module Aws::KinesisAnalyticsV2
|
|
1845
1847
|
# application. To see a list of all the versions of an application,
|
1846
1848
|
# invoke the ListApplicationVersions operation.
|
1847
1849
|
#
|
1848
|
-
# <note markdown="1"> This operation is supported only for
|
1849
|
-
# Apache Flink.
|
1850
|
+
# <note markdown="1"> This operation is supported only for Managed Service for Apache Flink.
|
1850
1851
|
#
|
1851
1852
|
# </note>
|
1852
1853
|
#
|
@@ -2014,7 +2015,7 @@ module Aws::KinesisAnalyticsV2
|
|
2014
2015
|
#
|
2015
2016
|
# @option params [Types::InputStartingPositionConfiguration] :input_starting_position_configuration
|
2016
2017
|
# The point at which you want Kinesis Data Analytics to start reading
|
2017
|
-
# records from the specified streaming source discovery purposes.
|
2018
|
+
# records from the specified streaming source for discovery purposes.
|
2018
2019
|
#
|
2019
2020
|
# @option params [Types::S3Configuration] :s3_configuration
|
2020
2021
|
# Specify this parameter to discover a schema from data in an Amazon S3
|
@@ -2112,6 +2113,7 @@ module Aws::KinesisAnalyticsV2
|
|
2112
2113
|
# resp.snapshot_summaries[0].snapshot_status #=> String, one of "CREATING", "READY", "DELETING", "FAILED"
|
2113
2114
|
# resp.snapshot_summaries[0].application_version_id #=> Integer
|
2114
2115
|
# 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"
|
2115
2117
|
# resp.next_token #=> String
|
2116
2118
|
#
|
2117
2119
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ListApplicationSnapshots AWS API Documentation
|
@@ -2130,8 +2132,7 @@ module Aws::KinesisAnalyticsV2
|
|
2130
2132
|
# To get the complete description of a specific application version,
|
2131
2133
|
# invoke the DescribeApplicationVersion operation.
|
2132
2134
|
#
|
2133
|
-
# <note markdown="1"> This operation is supported only for
|
2134
|
-
# Apache Flink.
|
2135
|
+
# <note markdown="1"> This operation is supported only for Managed Service for Apache Flink.
|
2135
2136
|
#
|
2136
2137
|
# </note>
|
2137
2138
|
#
|
@@ -2181,9 +2182,9 @@ module Aws::KinesisAnalyticsV2
|
|
2181
2182
|
req.send_request(options)
|
2182
2183
|
end
|
2183
2184
|
|
2184
|
-
# Returns a list of
|
2185
|
-
# For each application, the response includes the
|
2186
|
-
# Amazon Resource Name (ARN), and status.
|
2185
|
+
# Returns a list of Managed Service for Apache Flink applications in
|
2186
|
+
# your account. For each application, the response includes the
|
2187
|
+
# application name, Amazon Resource Name (ARN), and status.
|
2187
2188
|
#
|
2188
2189
|
# If you want detailed information about a specific application, use
|
2189
2190
|
# DescribeApplication.
|
@@ -2275,11 +2276,11 @@ module Aws::KinesisAnalyticsV2
|
|
2275
2276
|
# `AUTOSCALING` status.
|
2276
2277
|
#
|
2277
2278
|
# When you rollback an application, it loads state data from the last
|
2278
|
-
# successful snapshot. If the application has no snapshots,
|
2279
|
-
#
|
2279
|
+
# successful snapshot. If the application has no snapshots, Managed
|
2280
|
+
# Service for Apache Flink rejects the rollback request.
|
2280
2281
|
#
|
2281
|
-
# This action is not supported for
|
2282
|
-
# applications.
|
2282
|
+
# This action is not supported for Managed Service for Apache Flink for
|
2283
|
+
# SQL applications.
|
2283
2284
|
#
|
2284
2285
|
# @option params [required, String] :application_name
|
2285
2286
|
# The name of the application.
|
@@ -2425,16 +2426,16 @@ module Aws::KinesisAnalyticsV2
|
|
2425
2426
|
req.send_request(options)
|
2426
2427
|
end
|
2427
2428
|
|
2428
|
-
# Starts the specified
|
2429
|
-
# creating an application, you must exclusively call this
|
2430
|
-
# start your application.
|
2429
|
+
# Starts the specified Managed Service for Apache Flink application.
|
2430
|
+
# After creating an application, you must exclusively call this
|
2431
|
+
# operation to start your application.
|
2431
2432
|
#
|
2432
2433
|
# @option params [required, String] :application_name
|
2433
2434
|
# The name of the application.
|
2434
2435
|
#
|
2435
2436
|
# @option params [Types::RunConfiguration] :run_configuration
|
2436
|
-
# Identifies the run configuration (start parameters) of a
|
2437
|
-
#
|
2437
|
+
# Identifies the run configuration (start parameters) of a Managed
|
2438
|
+
# Service for Apache Flink application.
|
2438
2439
|
#
|
2439
2440
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2440
2441
|
#
|
@@ -2477,16 +2478,16 @@ module Aws::KinesisAnalyticsV2
|
|
2477
2478
|
# You can use the DescribeApplication operation to find the application
|
2478
2479
|
# status.
|
2479
2480
|
#
|
2480
|
-
#
|
2481
|
-
# stopped, unless `Force` is set to `true`.
|
2481
|
+
# Managed Service for Apache Flink takes a snapshot when the application
|
2482
|
+
# is stopped, unless `Force` is set to `true`.
|
2482
2483
|
#
|
2483
2484
|
# @option params [required, String] :application_name
|
2484
2485
|
# The name of the running application to stop.
|
2485
2486
|
#
|
2486
2487
|
# @option params [Boolean] :force
|
2487
2488
|
# Set to `true` to force the application to stop. If you set `Force` to
|
2488
|
-
# `true`,
|
2489
|
-
# snapshot.
|
2489
|
+
# `true`, Managed Service for Apache Flink stops the application without
|
2490
|
+
# taking a snapshot.
|
2490
2491
|
#
|
2491
2492
|
# <note markdown="1"> Force-stopping your application may lead to data loss or duplication.
|
2492
2493
|
# To prevent data loss or duplicate processing of data during
|
@@ -2495,7 +2496,7 @@ module Aws::KinesisAnalyticsV2
|
|
2495
2496
|
#
|
2496
2497
|
# </note>
|
2497
2498
|
#
|
2498
|
-
# You can only force stop a
|
2499
|
+
# You can only force stop a Managed Service for Apache Flink
|
2499
2500
|
# application. You can't force stop a SQL-based Kinesis Data Analytics
|
2500
2501
|
# application.
|
2501
2502
|
#
|
@@ -2520,7 +2521,7 @@ module Aws::KinesisAnalyticsV2
|
|
2520
2521
|
req.send_request(options)
|
2521
2522
|
end
|
2522
2523
|
|
2523
|
-
# Adds one or more key-value tags to a
|
2524
|
+
# Adds one or more key-value tags to a Managed Service for Apache Flink
|
2524
2525
|
# application. Note that the maximum number of application tags includes
|
2525
2526
|
# system tags. The maximum number of user-defined application tags is
|
2526
2527
|
# 50. For more information, see [Using Tagging][1].
|
@@ -2558,16 +2559,16 @@ module Aws::KinesisAnalyticsV2
|
|
2558
2559
|
req.send_request(options)
|
2559
2560
|
end
|
2560
2561
|
|
2561
|
-
# Removes one or more tags from a
|
2562
|
-
# For more information, see [Using Tagging][1].
|
2562
|
+
# Removes one or more tags from a Managed Service for Apache Flink
|
2563
|
+
# application. For more information, see [Using Tagging][1].
|
2563
2564
|
#
|
2564
2565
|
#
|
2565
2566
|
#
|
2566
2567
|
# [1]: https://docs.aws.amazon.com/kinesisanalytics/latest/java/how-tagging.html
|
2567
2568
|
#
|
2568
2569
|
# @option params [required, String] :resource_arn
|
2569
|
-
# The ARN of the
|
2570
|
-
# the tags.
|
2570
|
+
# The ARN of the Managed Service for Apache Flink application from which
|
2571
|
+
# to remove the tags.
|
2571
2572
|
#
|
2572
2573
|
# @option params [required, Array<String>] :tag_keys
|
2573
2574
|
# A list of keys of tags to remove from the specified application.
|
@@ -2590,18 +2591,12 @@ module Aws::KinesisAnalyticsV2
|
|
2590
2591
|
req.send_request(options)
|
2591
2592
|
end
|
2592
2593
|
|
2593
|
-
# Updates an existing
|
2594
|
-
# operation, you can update application code, input
|
2595
|
-
# output configuration.
|
2596
|
-
#
|
2597
|
-
# Kinesis Data Analytics updates the `ApplicationVersionId` each time
|
2598
|
-
# you update your application.
|
2599
|
-
#
|
2600
|
-
# <note markdown="1"> You cannot update the `RuntimeEnvironment` of an existing application.
|
2601
|
-
# If you need to update an application's `RuntimeEnvironment`, you must
|
2602
|
-
# delete the application and create it again.
|
2594
|
+
# Updates an existing Managed Service for Apache Flink application.
|
2595
|
+
# Using this operation, you can update application code, input
|
2596
|
+
# configuration, and output configuration.
|
2603
2597
|
#
|
2604
|
-
#
|
2598
|
+
# Managed Service for Apache Flink updates the `ApplicationVersionId`
|
2599
|
+
# each time you update your application.
|
2605
2600
|
#
|
2606
2601
|
# @option params [required, String] :application_name
|
2607
2602
|
# The name of the application to update.
|
@@ -2636,6 +2631,16 @@ module Aws::KinesisAnalyticsV2
|
|
2636
2631
|
# support, use the `ConditionalToken` parameter instead of
|
2637
2632
|
# `CurrentApplicationVersionId`.
|
2638
2633
|
#
|
2634
|
+
# @option params [String] :runtime_environment_update
|
2635
|
+
# Updates the Managed Service for Apache Flink runtime environment used
|
2636
|
+
# to run your code. To avoid issues you must:
|
2637
|
+
#
|
2638
|
+
# * Ensure your new jar and dependencies are compatible with the new
|
2639
|
+
# runtime selected.
|
2640
|
+
#
|
2641
|
+
# * Ensure your new code's state is compatible with the snapshot from
|
2642
|
+
# which your application will start
|
2643
|
+
#
|
2639
2644
|
# @return [Types::UpdateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2640
2645
|
#
|
2641
2646
|
# * {Types::UpdateApplicationResponse#application_detail #application_detail} => Types::ApplicationDetail
|
@@ -2840,6 +2845,7 @@ module Aws::KinesisAnalyticsV2
|
|
2840
2845
|
# },
|
2841
2846
|
# ],
|
2842
2847
|
# 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
|
2843
2849
|
# })
|
2844
2850
|
#
|
2845
2851
|
# @example Response structure
|
@@ -2968,8 +2974,8 @@ module Aws::KinesisAnalyticsV2
|
|
2968
2974
|
req.send_request(options)
|
2969
2975
|
end
|
2970
2976
|
|
2971
|
-
# Updates the maintenance configuration of the
|
2972
|
-
# application.
|
2977
|
+
# Updates the maintenance configuration of the Managed Service for
|
2978
|
+
# Apache Flink application.
|
2973
2979
|
#
|
2974
2980
|
# You can invoke this operation on an application that is in one of the
|
2975
2981
|
# two following states: `READY` or `RUNNING`. If you invoke it when the
|
@@ -2986,11 +2992,10 @@ module Aws::KinesisAnalyticsV2
|
|
2986
2992
|
# To see the current maintenance configuration of your application,
|
2987
2993
|
# invoke the DescribeApplication operation.
|
2988
2994
|
#
|
2989
|
-
# For information about application maintenance, see [
|
2990
|
-
#
|
2995
|
+
# For information about application maintenance, see [Managed Service
|
2996
|
+
# for Apache Flink for Apache Flink Maintenance][1].
|
2991
2997
|
#
|
2992
|
-
# <note markdown="1"> This operation is supported only for
|
2993
|
-
# Apache Flink.
|
2998
|
+
# <note markdown="1"> This operation is supported only for Managed Service for Apache Flink.
|
2994
2999
|
#
|
2995
3000
|
# </note>
|
2996
3001
|
#
|
@@ -3047,7 +3052,7 @@ module Aws::KinesisAnalyticsV2
|
|
3047
3052
|
params: params,
|
3048
3053
|
config: config)
|
3049
3054
|
context[:gem_name] = 'aws-sdk-kinesisanalyticsv2'
|
3050
|
-
context[:gem_version] = '1.
|
3055
|
+
context[:gem_version] = '1.53.0'
|
3051
3056
|
Seahorse::Client::Request.new(handlers, context)
|
3052
3057
|
end
|
3053
3058
|
|
@@ -1098,6 +1098,7 @@ module Aws::KinesisAnalyticsV2
|
|
1098
1098
|
SnapshotDetails.add_member(:snapshot_status, Shapes::ShapeRef.new(shape: SnapshotStatus, required: true, location_name: "SnapshotStatus"))
|
1099
1099
|
SnapshotDetails.add_member(:application_version_id, Shapes::ShapeRef.new(shape: ApplicationVersionId, required: true, location_name: "ApplicationVersionId"))
|
1100
1100
|
SnapshotDetails.add_member(:snapshot_creation_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "SnapshotCreationTimestamp"))
|
1101
|
+
SnapshotDetails.add_member(:runtime_environment, Shapes::ShapeRef.new(shape: RuntimeEnvironment, location_name: "RuntimeEnvironment"))
|
1101
1102
|
SnapshotDetails.struct_class = Types::SnapshotDetails
|
1102
1103
|
|
1103
1104
|
SnapshotSummaries.member = Shapes::ShapeRef.new(shape: SnapshotDetails)
|
@@ -1188,6 +1189,7 @@ module Aws::KinesisAnalyticsV2
|
|
1188
1189
|
UpdateApplicationRequest.add_member(:run_configuration_update, Shapes::ShapeRef.new(shape: RunConfigurationUpdate, location_name: "RunConfigurationUpdate"))
|
1189
1190
|
UpdateApplicationRequest.add_member(:cloud_watch_logging_option_updates, Shapes::ShapeRef.new(shape: CloudWatchLoggingOptionUpdates, location_name: "CloudWatchLoggingOptionUpdates"))
|
1190
1191
|
UpdateApplicationRequest.add_member(:conditional_token, Shapes::ShapeRef.new(shape: ConditionalToken, location_name: "ConditionalToken"))
|
1192
|
+
UpdateApplicationRequest.add_member(:runtime_environment_update, Shapes::ShapeRef.new(shape: RuntimeEnvironment, location_name: "RuntimeEnvironmentUpdate"))
|
1191
1193
|
UpdateApplicationRequest.struct_class = Types::UpdateApplicationRequest
|
1192
1194
|
|
1193
1195
|
UpdateApplicationResponse.add_member(:application_detail, Shapes::ShapeRef.new(shape: ApplicationDetail, required: true, location_name: "ApplicationDetail"))
|
@@ -32,7 +32,7 @@ module Aws::KinesisAnalyticsV2
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
33
|
end
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
36
|
return Aws::Endpoints::Endpoint.new(url: "https://kinesisanalytics-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
37
|
end
|
38
38
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
@@ -14,6 +14,7 @@ module Aws::KinesisAnalyticsV2
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::KinesisAnalyticsV2::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|