aws-sdk-kinesisanalyticsv2 1.58.0 → 1.60.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 +152 -16
- data/lib/aws-sdk-kinesisanalyticsv2/client_api.rb +132 -0
- data/lib/aws-sdk-kinesisanalyticsv2/endpoints.rb +28 -0
- data/lib/aws-sdk-kinesisanalyticsv2/plugins/endpoints.rb +4 -0
- data/lib/aws-sdk-kinesisanalyticsv2/types.rb +349 -8
- data/lib/aws-sdk-kinesisanalyticsv2.rb +1 -1
- data/sig/client.rbs +40 -0
- data/sig/types.rbs +93 -2
- metadata +4 -4
@@ -64,12 +64,18 @@ module Aws::KinesisAnalyticsV2
|
|
64
64
|
# SQL-based Kinesis Data Analytics application.
|
65
65
|
# @return [Array<Types::CloudWatchLoggingOptionDescription>]
|
66
66
|
#
|
67
|
+
# @!attribute [rw] operation_id
|
68
|
+
# Operation ID for tracking AddApplicationCloudWatchLoggingOption
|
69
|
+
# request
|
70
|
+
# @return [String]
|
71
|
+
#
|
67
72
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/AddApplicationCloudWatchLoggingOptionResponse AWS API Documentation
|
68
73
|
#
|
69
74
|
class AddApplicationCloudWatchLoggingOptionResponse < Struct.new(
|
70
75
|
:application_arn,
|
71
76
|
:application_version_id,
|
72
|
-
:cloud_watch_logging_option_descriptions
|
77
|
+
:cloud_watch_logging_option_descriptions,
|
78
|
+
:operation_id)
|
73
79
|
SENSITIVE = []
|
74
80
|
include Aws::Structure
|
75
81
|
end
|
@@ -350,12 +356,17 @@ module Aws::KinesisAnalyticsV2
|
|
350
356
|
# The parameters of the new VPC configuration.
|
351
357
|
# @return [Types::VpcConfigurationDescription]
|
352
358
|
#
|
359
|
+
# @!attribute [rw] operation_id
|
360
|
+
# Operation ID for tracking AddApplicationVpcConfiguration request
|
361
|
+
# @return [String]
|
362
|
+
#
|
353
363
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/AddApplicationVpcConfigurationResponse AWS API Documentation
|
354
364
|
#
|
355
365
|
class AddApplicationVpcConfigurationResponse < Struct.new(
|
356
366
|
:application_arn,
|
357
367
|
:application_version_id,
|
358
|
-
:vpc_configuration_description
|
368
|
+
:vpc_configuration_description,
|
369
|
+
:operation_id)
|
359
370
|
SENSITIVE = []
|
360
371
|
include Aws::Structure
|
361
372
|
end
|
@@ -448,6 +459,11 @@ module Aws::KinesisAnalyticsV2
|
|
448
459
|
# Apache Flink application.
|
449
460
|
# @return [Types::ApplicationSnapshotConfiguration]
|
450
461
|
#
|
462
|
+
# @!attribute [rw] application_system_rollback_configuration
|
463
|
+
# Describes system rollback configuration for a Managed Service for
|
464
|
+
# Apache Flink application
|
465
|
+
# @return [Types::ApplicationSystemRollbackConfiguration]
|
466
|
+
#
|
451
467
|
# @!attribute [rw] vpc_configurations
|
452
468
|
# The array of descriptions of VPC configurations available to the
|
453
469
|
# application.
|
@@ -466,6 +482,7 @@ module Aws::KinesisAnalyticsV2
|
|
466
482
|
:environment_properties,
|
467
483
|
:application_code_configuration,
|
468
484
|
:application_snapshot_configuration,
|
485
|
+
:application_system_rollback_configuration,
|
469
486
|
:vpc_configurations,
|
470
487
|
:zeppelin_application_configuration)
|
471
488
|
SENSITIVE = []
|
@@ -504,6 +521,11 @@ module Aws::KinesisAnalyticsV2
|
|
504
521
|
# Apache Flink application.
|
505
522
|
# @return [Types::ApplicationSnapshotConfigurationDescription]
|
506
523
|
#
|
524
|
+
# @!attribute [rw] application_system_rollback_configuration_description
|
525
|
+
# Describes system rollback configuration for a Managed Service for
|
526
|
+
# Apache Flink application
|
527
|
+
# @return [Types::ApplicationSystemRollbackConfigurationDescription]
|
528
|
+
#
|
507
529
|
# @!attribute [rw] vpc_configuration_descriptions
|
508
530
|
# The array of descriptions of VPC configurations available to the
|
509
531
|
# application.
|
@@ -523,6 +545,7 @@ module Aws::KinesisAnalyticsV2
|
|
523
545
|
:flink_application_configuration_description,
|
524
546
|
:environment_property_descriptions,
|
525
547
|
:application_snapshot_configuration_description,
|
548
|
+
:application_system_rollback_configuration_description,
|
526
549
|
:vpc_configuration_descriptions,
|
527
550
|
:zeppelin_application_configuration_description)
|
528
551
|
SENSITIVE = []
|
@@ -555,6 +578,11 @@ module Aws::KinesisAnalyticsV2
|
|
555
578
|
# Apache Flink application.
|
556
579
|
# @return [Types::ApplicationSnapshotConfigurationUpdate]
|
557
580
|
#
|
581
|
+
# @!attribute [rw] application_system_rollback_configuration_update
|
582
|
+
# Describes system rollback configuration for a Managed Service for
|
583
|
+
# Apache Flink application
|
584
|
+
# @return [Types::ApplicationSystemRollbackConfigurationUpdate]
|
585
|
+
#
|
558
586
|
# @!attribute [rw] vpc_configuration_updates
|
559
587
|
# Updates to the array of descriptions of VPC configurations available
|
560
588
|
# to the application.
|
@@ -573,6 +601,7 @@ module Aws::KinesisAnalyticsV2
|
|
573
601
|
:flink_application_configuration_update,
|
574
602
|
:environment_property_updates,
|
575
603
|
:application_snapshot_configuration_update,
|
604
|
+
:application_system_rollback_configuration_update,
|
576
605
|
:vpc_configuration_updates,
|
577
606
|
:zeppelin_application_configuration_update)
|
578
607
|
SENSITIVE = []
|
@@ -645,6 +674,10 @@ module Aws::KinesisAnalyticsV2
|
|
645
674
|
# application version when `RollbackApplication` was called.
|
646
675
|
# @return [Integer]
|
647
676
|
#
|
677
|
+
# @!attribute [rw] application_version_create_timestamp
|
678
|
+
# The current timestamp when the application version was created.
|
679
|
+
# @return [Time]
|
680
|
+
#
|
648
681
|
# @!attribute [rw] conditional_token
|
649
682
|
# A value you use to implement strong concurrency for application
|
650
683
|
# updates.
|
@@ -677,6 +710,7 @@ module Aws::KinesisAnalyticsV2
|
|
677
710
|
:application_maintenance_configuration_description,
|
678
711
|
:application_version_updated_from,
|
679
712
|
:application_version_rolled_back_from,
|
713
|
+
:application_version_create_timestamp,
|
680
714
|
:conditional_token,
|
681
715
|
:application_version_rolled_back_to,
|
682
716
|
:application_mode)
|
@@ -717,6 +751,82 @@ module Aws::KinesisAnalyticsV2
|
|
717
751
|
include Aws::Structure
|
718
752
|
end
|
719
753
|
|
754
|
+
# Provides a description of the operation, such as the type and status
|
755
|
+
# of operation
|
756
|
+
#
|
757
|
+
# @!attribute [rw] operation
|
758
|
+
# Type of operation performed on an application
|
759
|
+
# @return [String]
|
760
|
+
#
|
761
|
+
# @!attribute [rw] operation_id
|
762
|
+
# Identifier of the Operation
|
763
|
+
# @return [String]
|
764
|
+
#
|
765
|
+
# @!attribute [rw] start_time
|
766
|
+
# The timestamp at which the operation was created
|
767
|
+
# @return [Time]
|
768
|
+
#
|
769
|
+
# @!attribute [rw] end_time
|
770
|
+
# The timestamp at which the operation finished for the application
|
771
|
+
# @return [Time]
|
772
|
+
#
|
773
|
+
# @!attribute [rw] operation_status
|
774
|
+
# Status of the operation performed on an application
|
775
|
+
# @return [String]
|
776
|
+
#
|
777
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationOperationInfo AWS API Documentation
|
778
|
+
#
|
779
|
+
class ApplicationOperationInfo < Struct.new(
|
780
|
+
:operation,
|
781
|
+
:operation_id,
|
782
|
+
:start_time,
|
783
|
+
:end_time,
|
784
|
+
:operation_status)
|
785
|
+
SENSITIVE = []
|
786
|
+
include Aws::Structure
|
787
|
+
end
|
788
|
+
|
789
|
+
# Provides a description of the operation, such as the operation-type
|
790
|
+
# and status
|
791
|
+
#
|
792
|
+
# @!attribute [rw] operation
|
793
|
+
# Type of operation performed on an application
|
794
|
+
# @return [String]
|
795
|
+
#
|
796
|
+
# @!attribute [rw] start_time
|
797
|
+
# The timestamp at which the operation was created
|
798
|
+
# @return [Time]
|
799
|
+
#
|
800
|
+
# @!attribute [rw] end_time
|
801
|
+
# The timestamp at which the operation finished for the application
|
802
|
+
# @return [Time]
|
803
|
+
#
|
804
|
+
# @!attribute [rw] operation_status
|
805
|
+
# Status of the operation performed on an application
|
806
|
+
# @return [String]
|
807
|
+
#
|
808
|
+
# @!attribute [rw] application_version_change_details
|
809
|
+
# Contains information about the application version changes due to an
|
810
|
+
# operation
|
811
|
+
# @return [Types::ApplicationVersionChangeDetails]
|
812
|
+
#
|
813
|
+
# @!attribute [rw] operation_failure_details
|
814
|
+
# Provides a description of the operation failure
|
815
|
+
# @return [Types::OperationFailureDetails]
|
816
|
+
#
|
817
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationOperationInfoDetails AWS API Documentation
|
818
|
+
#
|
819
|
+
class ApplicationOperationInfoDetails < Struct.new(
|
820
|
+
:operation,
|
821
|
+
:start_time,
|
822
|
+
:end_time,
|
823
|
+
:operation_status,
|
824
|
+
:application_version_change_details,
|
825
|
+
:operation_failure_details)
|
826
|
+
SENSITIVE = []
|
827
|
+
include Aws::Structure
|
828
|
+
end
|
829
|
+
|
720
830
|
# Specifies the method and snapshot to use when restarting an
|
721
831
|
# application using previously saved application state.
|
722
832
|
#
|
@@ -830,6 +940,75 @@ module Aws::KinesisAnalyticsV2
|
|
830
940
|
include Aws::Structure
|
831
941
|
end
|
832
942
|
|
943
|
+
# Describes system rollback configuration for a Managed Service for
|
944
|
+
# Apache Flink application
|
945
|
+
#
|
946
|
+
# @!attribute [rw] rollback_enabled
|
947
|
+
# Describes whether system rollbacks are enabled for a Managed Service
|
948
|
+
# for Apache Flink application
|
949
|
+
# @return [Boolean]
|
950
|
+
#
|
951
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationSystemRollbackConfiguration AWS API Documentation
|
952
|
+
#
|
953
|
+
class ApplicationSystemRollbackConfiguration < Struct.new(
|
954
|
+
:rollback_enabled)
|
955
|
+
SENSITIVE = []
|
956
|
+
include Aws::Structure
|
957
|
+
end
|
958
|
+
|
959
|
+
# Describes system rollback configuration for a Managed Service for
|
960
|
+
# Apache Flink application
|
961
|
+
#
|
962
|
+
# @!attribute [rw] rollback_enabled
|
963
|
+
# Describes whether system rollbacks are enabled for a Managed Service
|
964
|
+
# for Apache Flink application
|
965
|
+
# @return [Boolean]
|
966
|
+
#
|
967
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationSystemRollbackConfigurationDescription AWS API Documentation
|
968
|
+
#
|
969
|
+
class ApplicationSystemRollbackConfigurationDescription < Struct.new(
|
970
|
+
:rollback_enabled)
|
971
|
+
SENSITIVE = []
|
972
|
+
include Aws::Structure
|
973
|
+
end
|
974
|
+
|
975
|
+
# Describes system rollback configuration for a Managed Service for
|
976
|
+
# Apache Flink application
|
977
|
+
#
|
978
|
+
# @!attribute [rw] rollback_enabled_update
|
979
|
+
# Describes whether system rollbacks are enabled for a Managed Service
|
980
|
+
# for Apache Flink application
|
981
|
+
# @return [Boolean]
|
982
|
+
#
|
983
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationSystemRollbackConfigurationUpdate AWS API Documentation
|
984
|
+
#
|
985
|
+
class ApplicationSystemRollbackConfigurationUpdate < Struct.new(
|
986
|
+
:rollback_enabled_update)
|
987
|
+
SENSITIVE = []
|
988
|
+
include Aws::Structure
|
989
|
+
end
|
990
|
+
|
991
|
+
# Contains information about the application version changes due to an
|
992
|
+
# operation
|
993
|
+
#
|
994
|
+
# @!attribute [rw] application_version_updated_from
|
995
|
+
# The operation was performed on this version of the application
|
996
|
+
# @return [Integer]
|
997
|
+
#
|
998
|
+
# @!attribute [rw] application_version_updated_to
|
999
|
+
# The operation execution resulted in the transition to the following
|
1000
|
+
# version of the application
|
1001
|
+
# @return [Integer]
|
1002
|
+
#
|
1003
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationVersionChangeDetails AWS API Documentation
|
1004
|
+
#
|
1005
|
+
class ApplicationVersionChangeDetails < Struct.new(
|
1006
|
+
:application_version_updated_from,
|
1007
|
+
:application_version_updated_to)
|
1008
|
+
SENSITIVE = []
|
1009
|
+
include Aws::Structure
|
1010
|
+
end
|
1011
|
+
|
833
1012
|
# The summary of the application version.
|
834
1013
|
#
|
835
1014
|
# @!attribute [rw] application_version_id
|
@@ -1581,12 +1760,18 @@ module Aws::KinesisAnalyticsV2
|
|
1581
1760
|
# application.
|
1582
1761
|
# @return [Array<Types::CloudWatchLoggingOptionDescription>]
|
1583
1762
|
#
|
1763
|
+
# @!attribute [rw] operation_id
|
1764
|
+
# Operation ID for tracking DeleteApplicationCloudWatchLoggingOption
|
1765
|
+
# request
|
1766
|
+
# @return [String]
|
1767
|
+
#
|
1584
1768
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DeleteApplicationCloudWatchLoggingOptionResponse AWS API Documentation
|
1585
1769
|
#
|
1586
1770
|
class DeleteApplicationCloudWatchLoggingOptionResponse < Struct.new(
|
1587
1771
|
:application_arn,
|
1588
1772
|
:application_version_id,
|
1589
|
-
:cloud_watch_logging_option_descriptions
|
1773
|
+
:cloud_watch_logging_option_descriptions,
|
1774
|
+
:operation_id)
|
1590
1775
|
SENSITIVE = []
|
1591
1776
|
include Aws::Structure
|
1592
1777
|
end
|
@@ -1821,11 +2006,16 @@ module Aws::KinesisAnalyticsV2
|
|
1821
2006
|
# The updated version ID of the application.
|
1822
2007
|
# @return [Integer]
|
1823
2008
|
#
|
2009
|
+
# @!attribute [rw] operation_id
|
2010
|
+
# Operation ID for tracking DeleteApplicationVpcConfiguration request
|
2011
|
+
# @return [String]
|
2012
|
+
#
|
1824
2013
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DeleteApplicationVpcConfigurationResponse AWS API Documentation
|
1825
2014
|
#
|
1826
2015
|
class DeleteApplicationVpcConfigurationResponse < Struct.new(
|
1827
2016
|
:application_arn,
|
1828
|
-
:application_version_id
|
2017
|
+
:application_version_id,
|
2018
|
+
:operation_id)
|
1829
2019
|
SENSITIVE = []
|
1830
2020
|
include Aws::Structure
|
1831
2021
|
end
|
@@ -1881,6 +2071,42 @@ module Aws::KinesisAnalyticsV2
|
|
1881
2071
|
include Aws::Structure
|
1882
2072
|
end
|
1883
2073
|
|
2074
|
+
# Request for information about a specific operation performed on a
|
2075
|
+
# Managed Service for Apache Flink application
|
2076
|
+
#
|
2077
|
+
# @!attribute [rw] application_name
|
2078
|
+
# The name of the application
|
2079
|
+
# @return [String]
|
2080
|
+
#
|
2081
|
+
# @!attribute [rw] operation_id
|
2082
|
+
# Identifier of the Operation
|
2083
|
+
# @return [String]
|
2084
|
+
#
|
2085
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DescribeApplicationOperationRequest AWS API Documentation
|
2086
|
+
#
|
2087
|
+
class DescribeApplicationOperationRequest < Struct.new(
|
2088
|
+
:application_name,
|
2089
|
+
:operation_id)
|
2090
|
+
SENSITIVE = []
|
2091
|
+
include Aws::Structure
|
2092
|
+
end
|
2093
|
+
|
2094
|
+
# Provides details of the operation corresponding to the operation-ID on
|
2095
|
+
# a Managed Service for Apache Flink application
|
2096
|
+
#
|
2097
|
+
# @!attribute [rw] application_operation_info_details
|
2098
|
+
# Provides a description of the operation, such as the operation-type
|
2099
|
+
# and status
|
2100
|
+
# @return [Types::ApplicationOperationInfoDetails]
|
2101
|
+
#
|
2102
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DescribeApplicationOperationResponse AWS API Documentation
|
2103
|
+
#
|
2104
|
+
class DescribeApplicationOperationResponse < Struct.new(
|
2105
|
+
:application_operation_info_details)
|
2106
|
+
SENSITIVE = []
|
2107
|
+
include Aws::Structure
|
2108
|
+
end
|
2109
|
+
|
1884
2110
|
# @!attribute [rw] application_name
|
1885
2111
|
# The name of the application.
|
1886
2112
|
# @return [String]
|
@@ -2102,6 +2328,20 @@ module Aws::KinesisAnalyticsV2
|
|
2102
2328
|
include Aws::Structure
|
2103
2329
|
end
|
2104
2330
|
|
2331
|
+
# Provides a description of the operation failure error
|
2332
|
+
#
|
2333
|
+
# @!attribute [rw] error_string
|
2334
|
+
# Error message resulting in failure of the operation
|
2335
|
+
# @return [String]
|
2336
|
+
#
|
2337
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ErrorInfo AWS API Documentation
|
2338
|
+
#
|
2339
|
+
class ErrorInfo < Struct.new(
|
2340
|
+
:error_string)
|
2341
|
+
SENSITIVE = []
|
2342
|
+
include Aws::Structure
|
2343
|
+
end
|
2344
|
+
|
2105
2345
|
# Describes configuration parameters for a Managed Service for Apache
|
2106
2346
|
# Flink application or a Studio notebook.
|
2107
2347
|
#
|
@@ -3102,6 +3342,61 @@ module Aws::KinesisAnalyticsV2
|
|
3102
3342
|
include Aws::Structure
|
3103
3343
|
end
|
3104
3344
|
|
3345
|
+
# Request to list operations performed on an application
|
3346
|
+
#
|
3347
|
+
# @!attribute [rw] application_name
|
3348
|
+
# The name of the application
|
3349
|
+
# @return [String]
|
3350
|
+
#
|
3351
|
+
# @!attribute [rw] limit
|
3352
|
+
# Limit on the number of records returned in the response
|
3353
|
+
# @return [Integer]
|
3354
|
+
#
|
3355
|
+
# @!attribute [rw] next_token
|
3356
|
+
# If a previous command returned a pagination token, pass it into this
|
3357
|
+
# value to retrieve the next set of results
|
3358
|
+
# @return [String]
|
3359
|
+
#
|
3360
|
+
# @!attribute [rw] operation
|
3361
|
+
# Type of operation performed on an application
|
3362
|
+
# @return [String]
|
3363
|
+
#
|
3364
|
+
# @!attribute [rw] operation_status
|
3365
|
+
# Status of the operation performed on an application
|
3366
|
+
# @return [String]
|
3367
|
+
#
|
3368
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ListApplicationOperationsRequest AWS API Documentation
|
3369
|
+
#
|
3370
|
+
class ListApplicationOperationsRequest < Struct.new(
|
3371
|
+
:application_name,
|
3372
|
+
:limit,
|
3373
|
+
:next_token,
|
3374
|
+
:operation,
|
3375
|
+
:operation_status)
|
3376
|
+
SENSITIVE = []
|
3377
|
+
include Aws::Structure
|
3378
|
+
end
|
3379
|
+
|
3380
|
+
# Response with the list of operations for an application
|
3381
|
+
#
|
3382
|
+
# @!attribute [rw] application_operation_info_list
|
3383
|
+
# List of ApplicationOperationInfo for an application
|
3384
|
+
# @return [Array<Types::ApplicationOperationInfo>]
|
3385
|
+
#
|
3386
|
+
# @!attribute [rw] next_token
|
3387
|
+
# If a previous command returned a pagination token, pass it into this
|
3388
|
+
# value to retrieve the next set of results
|
3389
|
+
# @return [String]
|
3390
|
+
#
|
3391
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ListApplicationOperationsResponse AWS API Documentation
|
3392
|
+
#
|
3393
|
+
class ListApplicationOperationsResponse < Struct.new(
|
3394
|
+
:application_operation_info_list,
|
3395
|
+
:next_token)
|
3396
|
+
SENSITIVE = []
|
3397
|
+
include Aws::Structure
|
3398
|
+
end
|
3399
|
+
|
3105
3400
|
# @!attribute [rw] application_name
|
3106
3401
|
# The name of an existing application.
|
3107
3402
|
# @return [String]
|
@@ -3421,6 +3716,26 @@ module Aws::KinesisAnalyticsV2
|
|
3421
3716
|
include Aws::Structure
|
3422
3717
|
end
|
3423
3718
|
|
3719
|
+
# Provides a description of the operation failure
|
3720
|
+
#
|
3721
|
+
# @!attribute [rw] rollback_operation_id
|
3722
|
+
# Provides the operation ID of a system-rollback operation executed
|
3723
|
+
# due to failure in the current operation
|
3724
|
+
# @return [String]
|
3725
|
+
#
|
3726
|
+
# @!attribute [rw] error_info
|
3727
|
+
# Provides a description of the operation failure error
|
3728
|
+
# @return [Types::ErrorInfo]
|
3729
|
+
#
|
3730
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/OperationFailureDetails AWS API Documentation
|
3731
|
+
#
|
3732
|
+
class OperationFailureDetails < Struct.new(
|
3733
|
+
:rollback_operation_id,
|
3734
|
+
:error_info)
|
3735
|
+
SENSITIVE = []
|
3736
|
+
include Aws::Structure
|
3737
|
+
end
|
3738
|
+
|
3424
3739
|
# Describes a SQL-based Kinesis Data Analytics application's output
|
3425
3740
|
# configuration, in which you identify an in-application stream and a
|
3426
3741
|
# destination where you want the in-application stream data to be
|
@@ -3973,10 +4288,15 @@ module Aws::KinesisAnalyticsV2
|
|
3973
4288
|
# configurations.
|
3974
4289
|
# @return [Types::ApplicationDetail]
|
3975
4290
|
#
|
4291
|
+
# @!attribute [rw] operation_id
|
4292
|
+
# Operation ID for tracking RollbackApplication request
|
4293
|
+
# @return [String]
|
4294
|
+
#
|
3976
4295
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/RollbackApplicationResponse AWS API Documentation
|
3977
4296
|
#
|
3978
4297
|
class RollbackApplicationResponse < Struct.new(
|
3979
|
-
:application_detail
|
4298
|
+
:application_detail,
|
4299
|
+
:operation_id)
|
3980
4300
|
SENSITIVE = []
|
3981
4301
|
include Aws::Structure
|
3982
4302
|
end
|
@@ -4489,9 +4809,17 @@ module Aws::KinesisAnalyticsV2
|
|
4489
4809
|
include Aws::Structure
|
4490
4810
|
end
|
4491
4811
|
|
4812
|
+
# @!attribute [rw] operation_id
|
4813
|
+
# Operation ID for tracking StartApplication request
|
4814
|
+
# @return [String]
|
4815
|
+
#
|
4492
4816
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/StartApplicationResponse AWS API Documentation
|
4493
4817
|
#
|
4494
|
-
class StartApplicationResponse <
|
4818
|
+
class StartApplicationResponse < Struct.new(
|
4819
|
+
:operation_id)
|
4820
|
+
SENSITIVE = []
|
4821
|
+
include Aws::Structure
|
4822
|
+
end
|
4495
4823
|
|
4496
4824
|
# @!attribute [rw] application_name
|
4497
4825
|
# The name of the running application to stop.
|
@@ -4526,9 +4854,17 @@ module Aws::KinesisAnalyticsV2
|
|
4526
4854
|
include Aws::Structure
|
4527
4855
|
end
|
4528
4856
|
|
4857
|
+
# @!attribute [rw] operation_id
|
4858
|
+
# Operation ID for tracking StopApplication request
|
4859
|
+
# @return [String]
|
4860
|
+
#
|
4529
4861
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/StopApplicationResponse AWS API Documentation
|
4530
4862
|
#
|
4531
|
-
class StopApplicationResponse <
|
4863
|
+
class StopApplicationResponse < Struct.new(
|
4864
|
+
:operation_id)
|
4865
|
+
SENSITIVE = []
|
4866
|
+
include Aws::Structure
|
4867
|
+
end
|
4532
4868
|
|
4533
4869
|
# A key-value pair (the value is optional) that you can define and
|
4534
4870
|
# assign to Amazon resources. If you specify a tag that already exists,
|
@@ -4762,10 +5098,15 @@ module Aws::KinesisAnalyticsV2
|
|
4762
5098
|
# Describes application updates.
|
4763
5099
|
# @return [Types::ApplicationDetail]
|
4764
5100
|
#
|
5101
|
+
# @!attribute [rw] operation_id
|
5102
|
+
# Operation ID for tracking UpdateApplication request
|
5103
|
+
# @return [String]
|
5104
|
+
#
|
4765
5105
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/UpdateApplicationResponse AWS API Documentation
|
4766
5106
|
#
|
4767
5107
|
class UpdateApplicationResponse < Struct.new(
|
4768
|
-
:application_detail
|
5108
|
+
:application_detail,
|
5109
|
+
:operation_id)
|
4769
5110
|
SENSITIVE = []
|
4770
5111
|
include Aws::Structure
|
4771
5112
|
end
|
data/sig/client.rbs
CHANGED
@@ -78,6 +78,7 @@ module Aws
|
|
78
78
|
def application_arn: () -> ::String
|
79
79
|
def application_version_id: () -> ::Integer
|
80
80
|
def cloud_watch_logging_option_descriptions: () -> ::Array[Types::CloudWatchLoggingOptionDescription]
|
81
|
+
def operation_id: () -> ::String
|
81
82
|
end
|
82
83
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#add_application_cloud_watch_logging_option-instance_method
|
83
84
|
def add_application_cloud_watch_logging_option: (
|
@@ -237,6 +238,7 @@ module Aws
|
|
237
238
|
def application_arn: () -> ::String
|
238
239
|
def application_version_id: () -> ::Integer
|
239
240
|
def vpc_configuration_description: () -> Types::VpcConfigurationDescription
|
241
|
+
def operation_id: () -> ::String
|
240
242
|
end
|
241
243
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#add_application_vpc_configuration-instance_method
|
242
244
|
def add_application_vpc_configuration: (
|
@@ -394,6 +396,9 @@ module Aws
|
|
394
396
|
application_snapshot_configuration: {
|
395
397
|
snapshots_enabled: bool
|
396
398
|
}?,
|
399
|
+
application_system_rollback_configuration: {
|
400
|
+
rollback_enabled: bool
|
401
|
+
}?,
|
397
402
|
vpc_configurations: Array[
|
398
403
|
{
|
399
404
|
subnet_ids: Array[::String],
|
@@ -484,6 +489,7 @@ module Aws
|
|
484
489
|
def application_arn: () -> ::String
|
485
490
|
def application_version_id: () -> ::Integer
|
486
491
|
def cloud_watch_logging_option_descriptions: () -> ::Array[Types::CloudWatchLoggingOptionDescription]
|
492
|
+
def operation_id: () -> ::String
|
487
493
|
end
|
488
494
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#delete_application_cloud_watch_logging_option-instance_method
|
489
495
|
def delete_application_cloud_watch_logging_option: (
|
@@ -548,6 +554,7 @@ module Aws
|
|
548
554
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteApplicationVpcConfigurationResponse]
|
549
555
|
def application_arn: () -> ::String
|
550
556
|
def application_version_id: () -> ::Integer
|
557
|
+
def operation_id: () -> ::String
|
551
558
|
end
|
552
559
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#delete_application_vpc_configuration-instance_method
|
553
560
|
def delete_application_vpc_configuration: (
|
@@ -569,6 +576,17 @@ module Aws
|
|
569
576
|
) -> _DescribeApplicationResponseSuccess
|
570
577
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeApplicationResponseSuccess
|
571
578
|
|
579
|
+
interface _DescribeApplicationOperationResponseSuccess
|
580
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeApplicationOperationResponse]
|
581
|
+
def application_operation_info_details: () -> Types::ApplicationOperationInfoDetails
|
582
|
+
end
|
583
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#describe_application_operation-instance_method
|
584
|
+
def describe_application_operation: (
|
585
|
+
application_name: ::String,
|
586
|
+
operation_id: ::String
|
587
|
+
) -> _DescribeApplicationOperationResponseSuccess
|
588
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeApplicationOperationResponseSuccess
|
589
|
+
|
572
590
|
interface _DescribeApplicationSnapshotResponseSuccess
|
573
591
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeApplicationSnapshotResponse]
|
574
592
|
def snapshot_details: () -> Types::SnapshotDetails
|
@@ -617,6 +635,21 @@ module Aws
|
|
617
635
|
) -> _DiscoverInputSchemaResponseSuccess
|
618
636
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DiscoverInputSchemaResponseSuccess
|
619
637
|
|
638
|
+
interface _ListApplicationOperationsResponseSuccess
|
639
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListApplicationOperationsResponse]
|
640
|
+
def application_operation_info_list: () -> ::Array[Types::ApplicationOperationInfo]
|
641
|
+
def next_token: () -> ::String
|
642
|
+
end
|
643
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#list_application_operations-instance_method
|
644
|
+
def list_application_operations: (
|
645
|
+
application_name: ::String,
|
646
|
+
?limit: ::Integer,
|
647
|
+
?next_token: ::String,
|
648
|
+
?operation: ::String,
|
649
|
+
?operation_status: ("IN_PROGRESS" | "CANCELLED" | "SUCCESSFUL" | "FAILED")
|
650
|
+
) -> _ListApplicationOperationsResponseSuccess
|
651
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApplicationOperationsResponseSuccess
|
652
|
+
|
620
653
|
interface _ListApplicationSnapshotsResponseSuccess
|
621
654
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListApplicationSnapshotsResponse]
|
622
655
|
def snapshot_summaries: () -> ::Array[Types::SnapshotDetails]
|
@@ -668,6 +701,7 @@ module Aws
|
|
668
701
|
interface _RollbackApplicationResponseSuccess
|
669
702
|
include ::Seahorse::Client::_ResponseSuccess[Types::RollbackApplicationResponse]
|
670
703
|
def application_detail: () -> Types::ApplicationDetail
|
704
|
+
def operation_id: () -> ::String
|
671
705
|
end
|
672
706
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#rollback_application-instance_method
|
673
707
|
def rollback_application: (
|
@@ -678,6 +712,7 @@ module Aws
|
|
678
712
|
|
679
713
|
interface _StartApplicationResponseSuccess
|
680
714
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartApplicationResponse]
|
715
|
+
def operation_id: () -> ::String
|
681
716
|
end
|
682
717
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#start_application-instance_method
|
683
718
|
def start_application: (
|
@@ -704,6 +739,7 @@ module Aws
|
|
704
739
|
|
705
740
|
interface _StopApplicationResponseSuccess
|
706
741
|
include ::Seahorse::Client::_ResponseSuccess[Types::StopApplicationResponse]
|
742
|
+
def operation_id: () -> ::String
|
707
743
|
end
|
708
744
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#stop_application-instance_method
|
709
745
|
def stop_application: (
|
@@ -740,6 +776,7 @@ module Aws
|
|
740
776
|
interface _UpdateApplicationResponseSuccess
|
741
777
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateApplicationResponse]
|
742
778
|
def application_detail: () -> Types::ApplicationDetail
|
779
|
+
def operation_id: () -> ::String
|
743
780
|
end
|
744
781
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#update_application-instance_method
|
745
782
|
def update_application: (
|
@@ -882,6 +919,9 @@ module Aws
|
|
882
919
|
application_snapshot_configuration_update: {
|
883
920
|
snapshots_enabled_update: bool
|
884
921
|
}?,
|
922
|
+
application_system_rollback_configuration_update: {
|
923
|
+
rollback_enabled_update: bool
|
924
|
+
}?,
|
885
925
|
vpc_configuration_updates: Array[
|
886
926
|
{
|
887
927
|
vpc_configuration_id: ::String,
|