aws-sdk-kinesisanalyticsv2 1.58.0 → 1.60.0
Sign up to get free protection for your applications and to get access to all the features.
- 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
data/sig/types.rbs
CHANGED
@@ -20,6 +20,7 @@ module Aws::KinesisAnalyticsV2
|
|
20
20
|
attr_accessor application_arn: ::String
|
21
21
|
attr_accessor application_version_id: ::Integer
|
22
22
|
attr_accessor cloud_watch_logging_option_descriptions: ::Array[Types::CloudWatchLoggingOptionDescription]
|
23
|
+
attr_accessor operation_id: ::String
|
23
24
|
SENSITIVE: []
|
24
25
|
end
|
25
26
|
|
@@ -93,6 +94,7 @@ module Aws::KinesisAnalyticsV2
|
|
93
94
|
attr_accessor application_arn: ::String
|
94
95
|
attr_accessor application_version_id: ::Integer
|
95
96
|
attr_accessor vpc_configuration_description: Types::VpcConfigurationDescription
|
97
|
+
attr_accessor operation_id: ::String
|
96
98
|
SENSITIVE: []
|
97
99
|
end
|
98
100
|
|
@@ -120,6 +122,7 @@ module Aws::KinesisAnalyticsV2
|
|
120
122
|
attr_accessor environment_properties: Types::EnvironmentProperties
|
121
123
|
attr_accessor application_code_configuration: Types::ApplicationCodeConfiguration
|
122
124
|
attr_accessor application_snapshot_configuration: Types::ApplicationSnapshotConfiguration
|
125
|
+
attr_accessor application_system_rollback_configuration: Types::ApplicationSystemRollbackConfiguration
|
123
126
|
attr_accessor vpc_configurations: ::Array[Types::VpcConfiguration]
|
124
127
|
attr_accessor zeppelin_application_configuration: Types::ZeppelinApplicationConfiguration
|
125
128
|
SENSITIVE: []
|
@@ -132,6 +135,7 @@ module Aws::KinesisAnalyticsV2
|
|
132
135
|
attr_accessor flink_application_configuration_description: Types::FlinkApplicationConfigurationDescription
|
133
136
|
attr_accessor environment_property_descriptions: Types::EnvironmentPropertyDescriptions
|
134
137
|
attr_accessor application_snapshot_configuration_description: Types::ApplicationSnapshotConfigurationDescription
|
138
|
+
attr_accessor application_system_rollback_configuration_description: Types::ApplicationSystemRollbackConfigurationDescription
|
135
139
|
attr_accessor vpc_configuration_descriptions: ::Array[Types::VpcConfigurationDescription]
|
136
140
|
attr_accessor zeppelin_application_configuration_description: Types::ZeppelinApplicationConfigurationDescription
|
137
141
|
SENSITIVE: []
|
@@ -143,6 +147,7 @@ module Aws::KinesisAnalyticsV2
|
|
143
147
|
attr_accessor flink_application_configuration_update: Types::FlinkApplicationConfigurationUpdate
|
144
148
|
attr_accessor environment_property_updates: Types::EnvironmentPropertyUpdates
|
145
149
|
attr_accessor application_snapshot_configuration_update: Types::ApplicationSnapshotConfigurationUpdate
|
150
|
+
attr_accessor application_system_rollback_configuration_update: Types::ApplicationSystemRollbackConfigurationUpdate
|
146
151
|
attr_accessor vpc_configuration_updates: ::Array[Types::VpcConfigurationUpdate]
|
147
152
|
attr_accessor zeppelin_application_configuration_update: Types::ZeppelinApplicationConfigurationUpdate
|
148
153
|
SENSITIVE: []
|
@@ -163,6 +168,7 @@ module Aws::KinesisAnalyticsV2
|
|
163
168
|
attr_accessor application_maintenance_configuration_description: Types::ApplicationMaintenanceConfigurationDescription
|
164
169
|
attr_accessor application_version_updated_from: ::Integer
|
165
170
|
attr_accessor application_version_rolled_back_from: ::Integer
|
171
|
+
attr_accessor application_version_create_timestamp: ::Time
|
166
172
|
attr_accessor conditional_token: ::String
|
167
173
|
attr_accessor application_version_rolled_back_to: ::Integer
|
168
174
|
attr_accessor application_mode: ("STREAMING" | "INTERACTIVE")
|
@@ -180,6 +186,25 @@ module Aws::KinesisAnalyticsV2
|
|
180
186
|
SENSITIVE: []
|
181
187
|
end
|
182
188
|
|
189
|
+
class ApplicationOperationInfo
|
190
|
+
attr_accessor operation: ::String
|
191
|
+
attr_accessor operation_id: ::String
|
192
|
+
attr_accessor start_time: ::Time
|
193
|
+
attr_accessor end_time: ::Time
|
194
|
+
attr_accessor operation_status: ("IN_PROGRESS" | "CANCELLED" | "SUCCESSFUL" | "FAILED")
|
195
|
+
SENSITIVE: []
|
196
|
+
end
|
197
|
+
|
198
|
+
class ApplicationOperationInfoDetails
|
199
|
+
attr_accessor operation: ::String
|
200
|
+
attr_accessor start_time: ::Time
|
201
|
+
attr_accessor end_time: ::Time
|
202
|
+
attr_accessor operation_status: ("IN_PROGRESS" | "CANCELLED" | "SUCCESSFUL" | "FAILED")
|
203
|
+
attr_accessor application_version_change_details: Types::ApplicationVersionChangeDetails
|
204
|
+
attr_accessor operation_failure_details: Types::OperationFailureDetails
|
205
|
+
SENSITIVE: []
|
206
|
+
end
|
207
|
+
|
183
208
|
class ApplicationRestoreConfiguration
|
184
209
|
attr_accessor application_restore_type: ("SKIP_RESTORE_FROM_SNAPSHOT" | "RESTORE_FROM_LATEST_SNAPSHOT" | "RESTORE_FROM_CUSTOM_SNAPSHOT")
|
185
210
|
attr_accessor snapshot_name: ::String
|
@@ -211,6 +236,27 @@ module Aws::KinesisAnalyticsV2
|
|
211
236
|
SENSITIVE: []
|
212
237
|
end
|
213
238
|
|
239
|
+
class ApplicationSystemRollbackConfiguration
|
240
|
+
attr_accessor rollback_enabled: bool
|
241
|
+
SENSITIVE: []
|
242
|
+
end
|
243
|
+
|
244
|
+
class ApplicationSystemRollbackConfigurationDescription
|
245
|
+
attr_accessor rollback_enabled: bool
|
246
|
+
SENSITIVE: []
|
247
|
+
end
|
248
|
+
|
249
|
+
class ApplicationSystemRollbackConfigurationUpdate
|
250
|
+
attr_accessor rollback_enabled_update: bool
|
251
|
+
SENSITIVE: []
|
252
|
+
end
|
253
|
+
|
254
|
+
class ApplicationVersionChangeDetails
|
255
|
+
attr_accessor application_version_updated_from: ::Integer
|
256
|
+
attr_accessor application_version_updated_to: ::Integer
|
257
|
+
SENSITIVE: []
|
258
|
+
end
|
259
|
+
|
214
260
|
class ApplicationVersionSummary
|
215
261
|
attr_accessor application_version_id: ::Integer
|
216
262
|
attr_accessor application_status: ("DELETING" | "STARTING" | "STOPPING" | "READY" | "RUNNING" | "UPDATING" | "AUTOSCALING" | "FORCE_STOPPING" | "ROLLING_BACK" | "MAINTENANCE" | "ROLLED_BACK")
|
@@ -376,6 +422,7 @@ module Aws::KinesisAnalyticsV2
|
|
376
422
|
attr_accessor application_arn: ::String
|
377
423
|
attr_accessor application_version_id: ::Integer
|
378
424
|
attr_accessor cloud_watch_logging_option_descriptions: ::Array[Types::CloudWatchLoggingOptionDescription]
|
425
|
+
attr_accessor operation_id: ::String
|
379
426
|
SENSITIVE: []
|
380
427
|
end
|
381
428
|
|
@@ -448,6 +495,7 @@ module Aws::KinesisAnalyticsV2
|
|
448
495
|
class DeleteApplicationVpcConfigurationResponse
|
449
496
|
attr_accessor application_arn: ::String
|
450
497
|
attr_accessor application_version_id: ::Integer
|
498
|
+
attr_accessor operation_id: ::String
|
451
499
|
SENSITIVE: []
|
452
500
|
end
|
453
501
|
|
@@ -466,6 +514,17 @@ module Aws::KinesisAnalyticsV2
|
|
466
514
|
SENSITIVE: []
|
467
515
|
end
|
468
516
|
|
517
|
+
class DescribeApplicationOperationRequest
|
518
|
+
attr_accessor application_name: ::String
|
519
|
+
attr_accessor operation_id: ::String
|
520
|
+
SENSITIVE: []
|
521
|
+
end
|
522
|
+
|
523
|
+
class DescribeApplicationOperationResponse
|
524
|
+
attr_accessor application_operation_info_details: Types::ApplicationOperationInfoDetails
|
525
|
+
SENSITIVE: []
|
526
|
+
end
|
527
|
+
|
469
528
|
class DescribeApplicationRequest
|
470
529
|
attr_accessor application_name: ::String
|
471
530
|
attr_accessor include_additional_details: bool
|
@@ -536,6 +595,11 @@ module Aws::KinesisAnalyticsV2
|
|
536
595
|
SENSITIVE: []
|
537
596
|
end
|
538
597
|
|
598
|
+
class ErrorInfo
|
599
|
+
attr_accessor error_string: ::String
|
600
|
+
SENSITIVE: []
|
601
|
+
end
|
602
|
+
|
539
603
|
class FlinkApplicationConfiguration
|
540
604
|
attr_accessor checkpoint_configuration: Types::CheckpointConfiguration
|
541
605
|
attr_accessor monitoring_configuration: Types::MonitoringConfiguration
|
@@ -770,6 +834,21 @@ module Aws::KinesisAnalyticsV2
|
|
770
834
|
SENSITIVE: []
|
771
835
|
end
|
772
836
|
|
837
|
+
class ListApplicationOperationsRequest
|
838
|
+
attr_accessor application_name: ::String
|
839
|
+
attr_accessor limit: ::Integer
|
840
|
+
attr_accessor next_token: ::String
|
841
|
+
attr_accessor operation: ::String
|
842
|
+
attr_accessor operation_status: ("IN_PROGRESS" | "CANCELLED" | "SUCCESSFUL" | "FAILED")
|
843
|
+
SENSITIVE: []
|
844
|
+
end
|
845
|
+
|
846
|
+
class ListApplicationOperationsResponse
|
847
|
+
attr_accessor application_operation_info_list: ::Array[Types::ApplicationOperationInfo]
|
848
|
+
attr_accessor next_token: ::String
|
849
|
+
SENSITIVE: []
|
850
|
+
end
|
851
|
+
|
773
852
|
class ListApplicationSnapshotsRequest
|
774
853
|
attr_accessor application_name: ::String
|
775
854
|
attr_accessor limit: ::Integer
|
@@ -852,6 +931,12 @@ module Aws::KinesisAnalyticsV2
|
|
852
931
|
SENSITIVE: []
|
853
932
|
end
|
854
933
|
|
934
|
+
class OperationFailureDetails
|
935
|
+
attr_accessor rollback_operation_id: ::String
|
936
|
+
attr_accessor error_info: Types::ErrorInfo
|
937
|
+
SENSITIVE: []
|
938
|
+
end
|
939
|
+
|
855
940
|
class Output
|
856
941
|
attr_accessor name: ::String
|
857
942
|
attr_accessor kinesis_streams_output: Types::KinesisStreamsOutput
|
@@ -971,6 +1056,7 @@ module Aws::KinesisAnalyticsV2
|
|
971
1056
|
|
972
1057
|
class RollbackApplicationResponse
|
973
1058
|
attr_accessor application_detail: Types::ApplicationDetail
|
1059
|
+
attr_accessor operation_id: ::String
|
974
1060
|
SENSITIVE: []
|
975
1061
|
end
|
976
1062
|
|
@@ -1111,7 +1197,9 @@ module Aws::KinesisAnalyticsV2
|
|
1111
1197
|
SENSITIVE: []
|
1112
1198
|
end
|
1113
1199
|
|
1114
|
-
class StartApplicationResponse
|
1200
|
+
class StartApplicationResponse
|
1201
|
+
attr_accessor operation_id: ::String
|
1202
|
+
SENSITIVE: []
|
1115
1203
|
end
|
1116
1204
|
|
1117
1205
|
class StopApplicationRequest
|
@@ -1120,7 +1208,9 @@ module Aws::KinesisAnalyticsV2
|
|
1120
1208
|
SENSITIVE: []
|
1121
1209
|
end
|
1122
1210
|
|
1123
|
-
class StopApplicationResponse
|
1211
|
+
class StopApplicationResponse
|
1212
|
+
attr_accessor operation_id: ::String
|
1213
|
+
SENSITIVE: []
|
1124
1214
|
end
|
1125
1215
|
|
1126
1216
|
class Tag
|
@@ -1190,6 +1280,7 @@ module Aws::KinesisAnalyticsV2
|
|
1190
1280
|
|
1191
1281
|
class UpdateApplicationResponse
|
1192
1282
|
attr_accessor application_detail: Types::ApplicationDetail
|
1283
|
+
attr_accessor operation_id: ::String
|
1193
1284
|
SENSITIVE: []
|
1194
1285
|
end
|
1195
1286
|
|
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.
|
4
|
+
version: 1.60.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-06-
|
11
|
+
date: 2024-06-26 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.
|
22
|
+
version: 3.199.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.
|
32
|
+
version: 3.199.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|