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
data/sig/client.rbs
ADDED
@@ -0,0 +1,961 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module KinesisAnalyticsV2
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?simple_json: bool,
|
52
|
+
?stub_responses: untyped,
|
53
|
+
?token_provider: untyped,
|
54
|
+
?use_dualstack_endpoint: bool,
|
55
|
+
?use_fips_endpoint: bool,
|
56
|
+
?validate_params: bool,
|
57
|
+
?endpoint_provider: untyped,
|
58
|
+
?http_proxy: String,
|
59
|
+
?http_open_timeout: (Float | Integer),
|
60
|
+
?http_read_timeout: (Float | Integer),
|
61
|
+
?http_idle_timeout: (Float | Integer),
|
62
|
+
?http_continue_timeout: (Float | Integer),
|
63
|
+
?ssl_timeout: (Float | Integer | nil),
|
64
|
+
?http_wire_trace: bool,
|
65
|
+
?ssl_verify_peer: bool,
|
66
|
+
?ssl_ca_bundle: String,
|
67
|
+
?ssl_ca_directory: String,
|
68
|
+
?ssl_ca_store: String,
|
69
|
+
?on_chunk_received: Proc,
|
70
|
+
?on_chunk_sent: Proc,
|
71
|
+
?raise_response_errors: bool
|
72
|
+
) -> instance
|
73
|
+
| (?Hash[Symbol, untyped]) -> instance
|
74
|
+
|
75
|
+
|
76
|
+
interface _AddApplicationCloudWatchLoggingOptionResponseSuccess
|
77
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AddApplicationCloudWatchLoggingOptionResponse]
|
78
|
+
def application_arn: () -> ::String
|
79
|
+
def application_version_id: () -> ::Integer
|
80
|
+
def cloud_watch_logging_option_descriptions: () -> ::Array[Types::CloudWatchLoggingOptionDescription]
|
81
|
+
end
|
82
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#add_application_cloud_watch_logging_option-instance_method
|
83
|
+
def add_application_cloud_watch_logging_option: (
|
84
|
+
application_name: ::String,
|
85
|
+
?current_application_version_id: ::Integer,
|
86
|
+
cloud_watch_logging_option: {
|
87
|
+
log_stream_arn: ::String
|
88
|
+
},
|
89
|
+
?conditional_token: ::String
|
90
|
+
) -> _AddApplicationCloudWatchLoggingOptionResponseSuccess
|
91
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddApplicationCloudWatchLoggingOptionResponseSuccess
|
92
|
+
|
93
|
+
interface _AddApplicationInputResponseSuccess
|
94
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AddApplicationInputResponse]
|
95
|
+
def application_arn: () -> ::String
|
96
|
+
def application_version_id: () -> ::Integer
|
97
|
+
def input_descriptions: () -> ::Array[Types::InputDescription]
|
98
|
+
end
|
99
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#add_application_input-instance_method
|
100
|
+
def add_application_input: (
|
101
|
+
application_name: ::String,
|
102
|
+
current_application_version_id: ::Integer,
|
103
|
+
input: {
|
104
|
+
name_prefix: ::String,
|
105
|
+
input_processing_configuration: {
|
106
|
+
input_lambda_processor: {
|
107
|
+
resource_arn: ::String
|
108
|
+
}
|
109
|
+
}?,
|
110
|
+
kinesis_streams_input: {
|
111
|
+
resource_arn: ::String
|
112
|
+
}?,
|
113
|
+
kinesis_firehose_input: {
|
114
|
+
resource_arn: ::String
|
115
|
+
}?,
|
116
|
+
input_parallelism: {
|
117
|
+
count: ::Integer?
|
118
|
+
}?,
|
119
|
+
input_schema: {
|
120
|
+
record_format: {
|
121
|
+
record_format_type: ("JSON" | "CSV"),
|
122
|
+
mapping_parameters: {
|
123
|
+
json_mapping_parameters: {
|
124
|
+
record_row_path: ::String
|
125
|
+
}?,
|
126
|
+
csv_mapping_parameters: {
|
127
|
+
record_row_delimiter: ::String,
|
128
|
+
record_column_delimiter: ::String
|
129
|
+
}?
|
130
|
+
}?
|
131
|
+
},
|
132
|
+
record_encoding: ::String?,
|
133
|
+
record_columns: Array[
|
134
|
+
{
|
135
|
+
name: ::String,
|
136
|
+
mapping: ::String?,
|
137
|
+
sql_type: ::String
|
138
|
+
},
|
139
|
+
]
|
140
|
+
}
|
141
|
+
}
|
142
|
+
) -> _AddApplicationInputResponseSuccess
|
143
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddApplicationInputResponseSuccess
|
144
|
+
|
145
|
+
interface _AddApplicationInputProcessingConfigurationResponseSuccess
|
146
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AddApplicationInputProcessingConfigurationResponse]
|
147
|
+
def application_arn: () -> ::String
|
148
|
+
def application_version_id: () -> ::Integer
|
149
|
+
def input_id: () -> ::String
|
150
|
+
def input_processing_configuration_description: () -> Types::InputProcessingConfigurationDescription
|
151
|
+
end
|
152
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#add_application_input_processing_configuration-instance_method
|
153
|
+
def add_application_input_processing_configuration: (
|
154
|
+
application_name: ::String,
|
155
|
+
current_application_version_id: ::Integer,
|
156
|
+
input_id: ::String,
|
157
|
+
input_processing_configuration: {
|
158
|
+
input_lambda_processor: {
|
159
|
+
resource_arn: ::String
|
160
|
+
}
|
161
|
+
}
|
162
|
+
) -> _AddApplicationInputProcessingConfigurationResponseSuccess
|
163
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddApplicationInputProcessingConfigurationResponseSuccess
|
164
|
+
|
165
|
+
interface _AddApplicationOutputResponseSuccess
|
166
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AddApplicationOutputResponse]
|
167
|
+
def application_arn: () -> ::String
|
168
|
+
def application_version_id: () -> ::Integer
|
169
|
+
def output_descriptions: () -> ::Array[Types::OutputDescription]
|
170
|
+
end
|
171
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#add_application_output-instance_method
|
172
|
+
def add_application_output: (
|
173
|
+
application_name: ::String,
|
174
|
+
current_application_version_id: ::Integer,
|
175
|
+
output: {
|
176
|
+
name: ::String,
|
177
|
+
kinesis_streams_output: {
|
178
|
+
resource_arn: ::String
|
179
|
+
}?,
|
180
|
+
kinesis_firehose_output: {
|
181
|
+
resource_arn: ::String
|
182
|
+
}?,
|
183
|
+
lambda_output: {
|
184
|
+
resource_arn: ::String
|
185
|
+
}?,
|
186
|
+
destination_schema: {
|
187
|
+
record_format_type: ("JSON" | "CSV")
|
188
|
+
}
|
189
|
+
}
|
190
|
+
) -> _AddApplicationOutputResponseSuccess
|
191
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddApplicationOutputResponseSuccess
|
192
|
+
|
193
|
+
interface _AddApplicationReferenceDataSourceResponseSuccess
|
194
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AddApplicationReferenceDataSourceResponse]
|
195
|
+
def application_arn: () -> ::String
|
196
|
+
def application_version_id: () -> ::Integer
|
197
|
+
def reference_data_source_descriptions: () -> ::Array[Types::ReferenceDataSourceDescription]
|
198
|
+
end
|
199
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#add_application_reference_data_source-instance_method
|
200
|
+
def add_application_reference_data_source: (
|
201
|
+
application_name: ::String,
|
202
|
+
current_application_version_id: ::Integer,
|
203
|
+
reference_data_source: {
|
204
|
+
table_name: ::String,
|
205
|
+
s3_reference_data_source: {
|
206
|
+
bucket_arn: ::String?,
|
207
|
+
file_key: ::String?
|
208
|
+
}?,
|
209
|
+
reference_schema: {
|
210
|
+
record_format: {
|
211
|
+
record_format_type: ("JSON" | "CSV"),
|
212
|
+
mapping_parameters: {
|
213
|
+
json_mapping_parameters: {
|
214
|
+
record_row_path: ::String
|
215
|
+
}?,
|
216
|
+
csv_mapping_parameters: {
|
217
|
+
record_row_delimiter: ::String,
|
218
|
+
record_column_delimiter: ::String
|
219
|
+
}?
|
220
|
+
}?
|
221
|
+
},
|
222
|
+
record_encoding: ::String?,
|
223
|
+
record_columns: Array[
|
224
|
+
{
|
225
|
+
name: ::String,
|
226
|
+
mapping: ::String?,
|
227
|
+
sql_type: ::String
|
228
|
+
},
|
229
|
+
]
|
230
|
+
}
|
231
|
+
}
|
232
|
+
) -> _AddApplicationReferenceDataSourceResponseSuccess
|
233
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddApplicationReferenceDataSourceResponseSuccess
|
234
|
+
|
235
|
+
interface _AddApplicationVpcConfigurationResponseSuccess
|
236
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AddApplicationVpcConfigurationResponse]
|
237
|
+
def application_arn: () -> ::String
|
238
|
+
def application_version_id: () -> ::Integer
|
239
|
+
def vpc_configuration_description: () -> Types::VpcConfigurationDescription
|
240
|
+
end
|
241
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#add_application_vpc_configuration-instance_method
|
242
|
+
def add_application_vpc_configuration: (
|
243
|
+
application_name: ::String,
|
244
|
+
?current_application_version_id: ::Integer,
|
245
|
+
vpc_configuration: {
|
246
|
+
subnet_ids: Array[::String],
|
247
|
+
security_group_ids: Array[::String]
|
248
|
+
},
|
249
|
+
?conditional_token: ::String
|
250
|
+
) -> _AddApplicationVpcConfigurationResponseSuccess
|
251
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddApplicationVpcConfigurationResponseSuccess
|
252
|
+
|
253
|
+
interface _CreateApplicationResponseSuccess
|
254
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateApplicationResponse]
|
255
|
+
def application_detail: () -> Types::ApplicationDetail
|
256
|
+
end
|
257
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#create_application-instance_method
|
258
|
+
def create_application: (
|
259
|
+
application_name: ::String,
|
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"),
|
262
|
+
service_execution_role: ::String,
|
263
|
+
?application_configuration: {
|
264
|
+
sql_application_configuration: {
|
265
|
+
inputs: Array[
|
266
|
+
{
|
267
|
+
name_prefix: ::String,
|
268
|
+
input_processing_configuration: {
|
269
|
+
input_lambda_processor: {
|
270
|
+
resource_arn: ::String
|
271
|
+
}
|
272
|
+
}?,
|
273
|
+
kinesis_streams_input: {
|
274
|
+
resource_arn: ::String
|
275
|
+
}?,
|
276
|
+
kinesis_firehose_input: {
|
277
|
+
resource_arn: ::String
|
278
|
+
}?,
|
279
|
+
input_parallelism: {
|
280
|
+
count: ::Integer?
|
281
|
+
}?,
|
282
|
+
input_schema: {
|
283
|
+
record_format: {
|
284
|
+
record_format_type: ("JSON" | "CSV"),
|
285
|
+
mapping_parameters: {
|
286
|
+
json_mapping_parameters: {
|
287
|
+
record_row_path: ::String
|
288
|
+
}?,
|
289
|
+
csv_mapping_parameters: {
|
290
|
+
record_row_delimiter: ::String,
|
291
|
+
record_column_delimiter: ::String
|
292
|
+
}?
|
293
|
+
}?
|
294
|
+
},
|
295
|
+
record_encoding: ::String?,
|
296
|
+
record_columns: Array[
|
297
|
+
{
|
298
|
+
name: ::String,
|
299
|
+
mapping: ::String?,
|
300
|
+
sql_type: ::String
|
301
|
+
},
|
302
|
+
]
|
303
|
+
}
|
304
|
+
},
|
305
|
+
]?,
|
306
|
+
outputs: Array[
|
307
|
+
{
|
308
|
+
name: ::String,
|
309
|
+
kinesis_streams_output: {
|
310
|
+
resource_arn: ::String
|
311
|
+
}?,
|
312
|
+
kinesis_firehose_output: {
|
313
|
+
resource_arn: ::String
|
314
|
+
}?,
|
315
|
+
lambda_output: {
|
316
|
+
resource_arn: ::String
|
317
|
+
}?,
|
318
|
+
destination_schema: {
|
319
|
+
record_format_type: ("JSON" | "CSV")
|
320
|
+
}
|
321
|
+
},
|
322
|
+
]?,
|
323
|
+
reference_data_sources: Array[
|
324
|
+
{
|
325
|
+
table_name: ::String,
|
326
|
+
s3_reference_data_source: {
|
327
|
+
bucket_arn: ::String?,
|
328
|
+
file_key: ::String?
|
329
|
+
}?,
|
330
|
+
reference_schema: {
|
331
|
+
record_format: {
|
332
|
+
record_format_type: ("JSON" | "CSV"),
|
333
|
+
mapping_parameters: {
|
334
|
+
json_mapping_parameters: {
|
335
|
+
record_row_path: ::String
|
336
|
+
}?,
|
337
|
+
csv_mapping_parameters: {
|
338
|
+
record_row_delimiter: ::String,
|
339
|
+
record_column_delimiter: ::String
|
340
|
+
}?
|
341
|
+
}?
|
342
|
+
},
|
343
|
+
record_encoding: ::String?,
|
344
|
+
record_columns: Array[
|
345
|
+
{
|
346
|
+
name: ::String,
|
347
|
+
mapping: ::String?,
|
348
|
+
sql_type: ::String
|
349
|
+
},
|
350
|
+
]
|
351
|
+
}
|
352
|
+
},
|
353
|
+
]?
|
354
|
+
}?,
|
355
|
+
flink_application_configuration: {
|
356
|
+
checkpoint_configuration: {
|
357
|
+
configuration_type: ("DEFAULT" | "CUSTOM"),
|
358
|
+
checkpointing_enabled: bool?,
|
359
|
+
checkpoint_interval: ::Integer?,
|
360
|
+
min_pause_between_checkpoints: ::Integer?
|
361
|
+
}?,
|
362
|
+
monitoring_configuration: {
|
363
|
+
configuration_type: ("DEFAULT" | "CUSTOM"),
|
364
|
+
metrics_level: ("APPLICATION" | "TASK" | "OPERATOR" | "PARALLELISM")?,
|
365
|
+
log_level: ("INFO" | "WARN" | "ERROR" | "DEBUG")?
|
366
|
+
}?,
|
367
|
+
parallelism_configuration: {
|
368
|
+
configuration_type: ("DEFAULT" | "CUSTOM"),
|
369
|
+
parallelism: ::Integer?,
|
370
|
+
parallelism_per_kpu: ::Integer?,
|
371
|
+
auto_scaling_enabled: bool?
|
372
|
+
}?
|
373
|
+
}?,
|
374
|
+
environment_properties: {
|
375
|
+
property_groups: Array[
|
376
|
+
{
|
377
|
+
property_group_id: ::String,
|
378
|
+
property_map: Hash[::String, ::String]
|
379
|
+
},
|
380
|
+
]
|
381
|
+
}?,
|
382
|
+
application_code_configuration: {
|
383
|
+
code_content: {
|
384
|
+
text_content: ::String?,
|
385
|
+
zip_file_content: ::String?,
|
386
|
+
s3_content_location: {
|
387
|
+
bucket_arn: ::String,
|
388
|
+
file_key: ::String,
|
389
|
+
object_version: ::String?
|
390
|
+
}?
|
391
|
+
}?,
|
392
|
+
code_content_type: ("PLAINTEXT" | "ZIPFILE")
|
393
|
+
}?,
|
394
|
+
application_snapshot_configuration: {
|
395
|
+
snapshots_enabled: bool
|
396
|
+
}?,
|
397
|
+
vpc_configurations: Array[
|
398
|
+
{
|
399
|
+
subnet_ids: Array[::String],
|
400
|
+
security_group_ids: Array[::String]
|
401
|
+
},
|
402
|
+
]?,
|
403
|
+
zeppelin_application_configuration: {
|
404
|
+
monitoring_configuration: {
|
405
|
+
log_level: ("INFO" | "WARN" | "ERROR" | "DEBUG")
|
406
|
+
}?,
|
407
|
+
catalog_configuration: {
|
408
|
+
glue_data_catalog_configuration: {
|
409
|
+
database_arn: ::String
|
410
|
+
}
|
411
|
+
}?,
|
412
|
+
deploy_as_application_configuration: {
|
413
|
+
s3_content_location: {
|
414
|
+
bucket_arn: ::String,
|
415
|
+
base_path: ::String?
|
416
|
+
}
|
417
|
+
}?,
|
418
|
+
custom_artifacts_configuration: Array[
|
419
|
+
{
|
420
|
+
artifact_type: ("UDF" | "DEPENDENCY_JAR"),
|
421
|
+
s3_content_location: {
|
422
|
+
bucket_arn: ::String,
|
423
|
+
file_key: ::String,
|
424
|
+
object_version: ::String?
|
425
|
+
}?,
|
426
|
+
maven_reference: {
|
427
|
+
group_id: ::String,
|
428
|
+
artifact_id: ::String,
|
429
|
+
version: ::String
|
430
|
+
}?
|
431
|
+
},
|
432
|
+
]?
|
433
|
+
}?
|
434
|
+
},
|
435
|
+
?cloud_watch_logging_options: Array[
|
436
|
+
{
|
437
|
+
log_stream_arn: ::String
|
438
|
+
},
|
439
|
+
],
|
440
|
+
?tags: Array[
|
441
|
+
{
|
442
|
+
key: ::String,
|
443
|
+
value: ::String?
|
444
|
+
},
|
445
|
+
],
|
446
|
+
?application_mode: ("STREAMING" | "INTERACTIVE")
|
447
|
+
) -> _CreateApplicationResponseSuccess
|
448
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
|
449
|
+
|
450
|
+
interface _CreateApplicationPresignedUrlResponseSuccess
|
451
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateApplicationPresignedUrlResponse]
|
452
|
+
def authorized_url: () -> ::String
|
453
|
+
end
|
454
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#create_application_presigned_url-instance_method
|
455
|
+
def create_application_presigned_url: (
|
456
|
+
application_name: ::String,
|
457
|
+
url_type: ("FLINK_DASHBOARD_URL" | "ZEPPELIN_UI_URL"),
|
458
|
+
?session_expiration_duration_in_seconds: ::Integer
|
459
|
+
) -> _CreateApplicationPresignedUrlResponseSuccess
|
460
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationPresignedUrlResponseSuccess
|
461
|
+
|
462
|
+
interface _CreateApplicationSnapshotResponseSuccess
|
463
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateApplicationSnapshotResponse]
|
464
|
+
end
|
465
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#create_application_snapshot-instance_method
|
466
|
+
def create_application_snapshot: (
|
467
|
+
application_name: ::String,
|
468
|
+
snapshot_name: ::String
|
469
|
+
) -> _CreateApplicationSnapshotResponseSuccess
|
470
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationSnapshotResponseSuccess
|
471
|
+
|
472
|
+
interface _DeleteApplicationResponseSuccess
|
473
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteApplicationResponse]
|
474
|
+
end
|
475
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#delete_application-instance_method
|
476
|
+
def delete_application: (
|
477
|
+
application_name: ::String,
|
478
|
+
create_timestamp: ::Time
|
479
|
+
) -> _DeleteApplicationResponseSuccess
|
480
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteApplicationResponseSuccess
|
481
|
+
|
482
|
+
interface _DeleteApplicationCloudWatchLoggingOptionResponseSuccess
|
483
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteApplicationCloudWatchLoggingOptionResponse]
|
484
|
+
def application_arn: () -> ::String
|
485
|
+
def application_version_id: () -> ::Integer
|
486
|
+
def cloud_watch_logging_option_descriptions: () -> ::Array[Types::CloudWatchLoggingOptionDescription]
|
487
|
+
end
|
488
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#delete_application_cloud_watch_logging_option-instance_method
|
489
|
+
def delete_application_cloud_watch_logging_option: (
|
490
|
+
application_name: ::String,
|
491
|
+
?current_application_version_id: ::Integer,
|
492
|
+
cloud_watch_logging_option_id: ::String,
|
493
|
+
?conditional_token: ::String
|
494
|
+
) -> _DeleteApplicationCloudWatchLoggingOptionResponseSuccess
|
495
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteApplicationCloudWatchLoggingOptionResponseSuccess
|
496
|
+
|
497
|
+
interface _DeleteApplicationInputProcessingConfigurationResponseSuccess
|
498
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteApplicationInputProcessingConfigurationResponse]
|
499
|
+
def application_arn: () -> ::String
|
500
|
+
def application_version_id: () -> ::Integer
|
501
|
+
end
|
502
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#delete_application_input_processing_configuration-instance_method
|
503
|
+
def delete_application_input_processing_configuration: (
|
504
|
+
application_name: ::String,
|
505
|
+
current_application_version_id: ::Integer,
|
506
|
+
input_id: ::String
|
507
|
+
) -> _DeleteApplicationInputProcessingConfigurationResponseSuccess
|
508
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteApplicationInputProcessingConfigurationResponseSuccess
|
509
|
+
|
510
|
+
interface _DeleteApplicationOutputResponseSuccess
|
511
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteApplicationOutputResponse]
|
512
|
+
def application_arn: () -> ::String
|
513
|
+
def application_version_id: () -> ::Integer
|
514
|
+
end
|
515
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#delete_application_output-instance_method
|
516
|
+
def delete_application_output: (
|
517
|
+
application_name: ::String,
|
518
|
+
current_application_version_id: ::Integer,
|
519
|
+
output_id: ::String
|
520
|
+
) -> _DeleteApplicationOutputResponseSuccess
|
521
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteApplicationOutputResponseSuccess
|
522
|
+
|
523
|
+
interface _DeleteApplicationReferenceDataSourceResponseSuccess
|
524
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteApplicationReferenceDataSourceResponse]
|
525
|
+
def application_arn: () -> ::String
|
526
|
+
def application_version_id: () -> ::Integer
|
527
|
+
end
|
528
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#delete_application_reference_data_source-instance_method
|
529
|
+
def delete_application_reference_data_source: (
|
530
|
+
application_name: ::String,
|
531
|
+
current_application_version_id: ::Integer,
|
532
|
+
reference_id: ::String
|
533
|
+
) -> _DeleteApplicationReferenceDataSourceResponseSuccess
|
534
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteApplicationReferenceDataSourceResponseSuccess
|
535
|
+
|
536
|
+
interface _DeleteApplicationSnapshotResponseSuccess
|
537
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteApplicationSnapshotResponse]
|
538
|
+
end
|
539
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#delete_application_snapshot-instance_method
|
540
|
+
def delete_application_snapshot: (
|
541
|
+
application_name: ::String,
|
542
|
+
snapshot_name: ::String,
|
543
|
+
snapshot_creation_timestamp: ::Time
|
544
|
+
) -> _DeleteApplicationSnapshotResponseSuccess
|
545
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteApplicationSnapshotResponseSuccess
|
546
|
+
|
547
|
+
interface _DeleteApplicationVpcConfigurationResponseSuccess
|
548
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteApplicationVpcConfigurationResponse]
|
549
|
+
def application_arn: () -> ::String
|
550
|
+
def application_version_id: () -> ::Integer
|
551
|
+
end
|
552
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#delete_application_vpc_configuration-instance_method
|
553
|
+
def delete_application_vpc_configuration: (
|
554
|
+
application_name: ::String,
|
555
|
+
?current_application_version_id: ::Integer,
|
556
|
+
vpc_configuration_id: ::String,
|
557
|
+
?conditional_token: ::String
|
558
|
+
) -> _DeleteApplicationVpcConfigurationResponseSuccess
|
559
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteApplicationVpcConfigurationResponseSuccess
|
560
|
+
|
561
|
+
interface _DescribeApplicationResponseSuccess
|
562
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeApplicationResponse]
|
563
|
+
def application_detail: () -> Types::ApplicationDetail
|
564
|
+
end
|
565
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#describe_application-instance_method
|
566
|
+
def describe_application: (
|
567
|
+
application_name: ::String,
|
568
|
+
?include_additional_details: bool
|
569
|
+
) -> _DescribeApplicationResponseSuccess
|
570
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeApplicationResponseSuccess
|
571
|
+
|
572
|
+
interface _DescribeApplicationSnapshotResponseSuccess
|
573
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeApplicationSnapshotResponse]
|
574
|
+
def snapshot_details: () -> Types::SnapshotDetails
|
575
|
+
end
|
576
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#describe_application_snapshot-instance_method
|
577
|
+
def describe_application_snapshot: (
|
578
|
+
application_name: ::String,
|
579
|
+
snapshot_name: ::String
|
580
|
+
) -> _DescribeApplicationSnapshotResponseSuccess
|
581
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeApplicationSnapshotResponseSuccess
|
582
|
+
|
583
|
+
interface _DescribeApplicationVersionResponseSuccess
|
584
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeApplicationVersionResponse]
|
585
|
+
def application_version_detail: () -> Types::ApplicationDetail
|
586
|
+
end
|
587
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#describe_application_version-instance_method
|
588
|
+
def describe_application_version: (
|
589
|
+
application_name: ::String,
|
590
|
+
application_version_id: ::Integer
|
591
|
+
) -> _DescribeApplicationVersionResponseSuccess
|
592
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeApplicationVersionResponseSuccess
|
593
|
+
|
594
|
+
interface _DiscoverInputSchemaResponseSuccess
|
595
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DiscoverInputSchemaResponse]
|
596
|
+
def input_schema: () -> Types::SourceSchema
|
597
|
+
def parsed_input_records: () -> ::Array[::Array[::String]]
|
598
|
+
def processed_input_records: () -> ::Array[::String]
|
599
|
+
def raw_input_records: () -> ::Array[::String]
|
600
|
+
end
|
601
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#discover_input_schema-instance_method
|
602
|
+
def discover_input_schema: (
|
603
|
+
?resource_arn: ::String,
|
604
|
+
service_execution_role: ::String,
|
605
|
+
?input_starting_position_configuration: {
|
606
|
+
input_starting_position: ("NOW" | "TRIM_HORIZON" | "LAST_STOPPED_POINT")?
|
607
|
+
},
|
608
|
+
?s3_configuration: {
|
609
|
+
bucket_arn: ::String,
|
610
|
+
file_key: ::String
|
611
|
+
},
|
612
|
+
?input_processing_configuration: {
|
613
|
+
input_lambda_processor: {
|
614
|
+
resource_arn: ::String
|
615
|
+
}
|
616
|
+
}
|
617
|
+
) -> _DiscoverInputSchemaResponseSuccess
|
618
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DiscoverInputSchemaResponseSuccess
|
619
|
+
|
620
|
+
interface _ListApplicationSnapshotsResponseSuccess
|
621
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListApplicationSnapshotsResponse]
|
622
|
+
def snapshot_summaries: () -> ::Array[Types::SnapshotDetails]
|
623
|
+
def next_token: () -> ::String
|
624
|
+
end
|
625
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#list_application_snapshots-instance_method
|
626
|
+
def list_application_snapshots: (
|
627
|
+
application_name: ::String,
|
628
|
+
?limit: ::Integer,
|
629
|
+
?next_token: ::String
|
630
|
+
) -> _ListApplicationSnapshotsResponseSuccess
|
631
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApplicationSnapshotsResponseSuccess
|
632
|
+
|
633
|
+
interface _ListApplicationVersionsResponseSuccess
|
634
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListApplicationVersionsResponse]
|
635
|
+
def application_version_summaries: () -> ::Array[Types::ApplicationVersionSummary]
|
636
|
+
def next_token: () -> ::String
|
637
|
+
end
|
638
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#list_application_versions-instance_method
|
639
|
+
def list_application_versions: (
|
640
|
+
application_name: ::String,
|
641
|
+
?limit: ::Integer,
|
642
|
+
?next_token: ::String
|
643
|
+
) -> _ListApplicationVersionsResponseSuccess
|
644
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApplicationVersionsResponseSuccess
|
645
|
+
|
646
|
+
interface _ListApplicationsResponseSuccess
|
647
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListApplicationsResponse]
|
648
|
+
def application_summaries: () -> ::Array[Types::ApplicationSummary]
|
649
|
+
def next_token: () -> ::String
|
650
|
+
end
|
651
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#list_applications-instance_method
|
652
|
+
def list_applications: (
|
653
|
+
?limit: ::Integer,
|
654
|
+
?next_token: ::String
|
655
|
+
) -> _ListApplicationsResponseSuccess
|
656
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApplicationsResponseSuccess
|
657
|
+
|
658
|
+
interface _ListTagsForResourceResponseSuccess
|
659
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
660
|
+
def tags: () -> ::Array[Types::Tag]
|
661
|
+
end
|
662
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#list_tags_for_resource-instance_method
|
663
|
+
def list_tags_for_resource: (
|
664
|
+
resource_arn: ::String
|
665
|
+
) -> _ListTagsForResourceResponseSuccess
|
666
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
667
|
+
|
668
|
+
interface _RollbackApplicationResponseSuccess
|
669
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RollbackApplicationResponse]
|
670
|
+
def application_detail: () -> Types::ApplicationDetail
|
671
|
+
end
|
672
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#rollback_application-instance_method
|
673
|
+
def rollback_application: (
|
674
|
+
application_name: ::String,
|
675
|
+
current_application_version_id: ::Integer
|
676
|
+
) -> _RollbackApplicationResponseSuccess
|
677
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RollbackApplicationResponseSuccess
|
678
|
+
|
679
|
+
interface _StartApplicationResponseSuccess
|
680
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartApplicationResponse]
|
681
|
+
end
|
682
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#start_application-instance_method
|
683
|
+
def start_application: (
|
684
|
+
application_name: ::String,
|
685
|
+
?run_configuration: {
|
686
|
+
flink_run_configuration: {
|
687
|
+
allow_non_restored_state: bool?
|
688
|
+
}?,
|
689
|
+
sql_run_configurations: Array[
|
690
|
+
{
|
691
|
+
input_id: ::String,
|
692
|
+
input_starting_position_configuration: {
|
693
|
+
input_starting_position: ("NOW" | "TRIM_HORIZON" | "LAST_STOPPED_POINT")?
|
694
|
+
}
|
695
|
+
},
|
696
|
+
]?,
|
697
|
+
application_restore_configuration: {
|
698
|
+
application_restore_type: ("SKIP_RESTORE_FROM_SNAPSHOT" | "RESTORE_FROM_LATEST_SNAPSHOT" | "RESTORE_FROM_CUSTOM_SNAPSHOT"),
|
699
|
+
snapshot_name: ::String?
|
700
|
+
}?
|
701
|
+
}
|
702
|
+
) -> _StartApplicationResponseSuccess
|
703
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartApplicationResponseSuccess
|
704
|
+
|
705
|
+
interface _StopApplicationResponseSuccess
|
706
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopApplicationResponse]
|
707
|
+
end
|
708
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#stop_application-instance_method
|
709
|
+
def stop_application: (
|
710
|
+
application_name: ::String,
|
711
|
+
?force: bool
|
712
|
+
) -> _StopApplicationResponseSuccess
|
713
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopApplicationResponseSuccess
|
714
|
+
|
715
|
+
interface _TagResourceResponseSuccess
|
716
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
717
|
+
end
|
718
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#tag_resource-instance_method
|
719
|
+
def tag_resource: (
|
720
|
+
resource_arn: ::String,
|
721
|
+
tags: Array[
|
722
|
+
{
|
723
|
+
key: ::String,
|
724
|
+
value: ::String?
|
725
|
+
},
|
726
|
+
]
|
727
|
+
) -> _TagResourceResponseSuccess
|
728
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
729
|
+
|
730
|
+
interface _UntagResourceResponseSuccess
|
731
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
732
|
+
end
|
733
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#untag_resource-instance_method
|
734
|
+
def untag_resource: (
|
735
|
+
resource_arn: ::String,
|
736
|
+
tag_keys: Array[::String]
|
737
|
+
) -> _UntagResourceResponseSuccess
|
738
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
739
|
+
|
740
|
+
interface _UpdateApplicationResponseSuccess
|
741
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateApplicationResponse]
|
742
|
+
def application_detail: () -> Types::ApplicationDetail
|
743
|
+
end
|
744
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#update_application-instance_method
|
745
|
+
def update_application: (
|
746
|
+
application_name: ::String,
|
747
|
+
?current_application_version_id: ::Integer,
|
748
|
+
?application_configuration_update: {
|
749
|
+
sql_application_configuration_update: {
|
750
|
+
input_updates: Array[
|
751
|
+
{
|
752
|
+
input_id: ::String,
|
753
|
+
name_prefix_update: ::String?,
|
754
|
+
input_processing_configuration_update: {
|
755
|
+
input_lambda_processor_update: {
|
756
|
+
resource_arn_update: ::String
|
757
|
+
}
|
758
|
+
}?,
|
759
|
+
kinesis_streams_input_update: {
|
760
|
+
resource_arn_update: ::String
|
761
|
+
}?,
|
762
|
+
kinesis_firehose_input_update: {
|
763
|
+
resource_arn_update: ::String
|
764
|
+
}?,
|
765
|
+
input_schema_update: {
|
766
|
+
record_format_update: {
|
767
|
+
record_format_type: ("JSON" | "CSV"),
|
768
|
+
mapping_parameters: {
|
769
|
+
json_mapping_parameters: {
|
770
|
+
record_row_path: ::String
|
771
|
+
}?,
|
772
|
+
csv_mapping_parameters: {
|
773
|
+
record_row_delimiter: ::String,
|
774
|
+
record_column_delimiter: ::String
|
775
|
+
}?
|
776
|
+
}?
|
777
|
+
}?,
|
778
|
+
record_encoding_update: ::String?,
|
779
|
+
record_column_updates: Array[
|
780
|
+
{
|
781
|
+
name: ::String,
|
782
|
+
mapping: ::String?,
|
783
|
+
sql_type: ::String
|
784
|
+
},
|
785
|
+
]?
|
786
|
+
}?,
|
787
|
+
input_parallelism_update: {
|
788
|
+
count_update: ::Integer
|
789
|
+
}?
|
790
|
+
},
|
791
|
+
]?,
|
792
|
+
output_updates: Array[
|
793
|
+
{
|
794
|
+
output_id: ::String,
|
795
|
+
name_update: ::String?,
|
796
|
+
kinesis_streams_output_update: {
|
797
|
+
resource_arn_update: ::String
|
798
|
+
}?,
|
799
|
+
kinesis_firehose_output_update: {
|
800
|
+
resource_arn_update: ::String
|
801
|
+
}?,
|
802
|
+
lambda_output_update: {
|
803
|
+
resource_arn_update: ::String
|
804
|
+
}?,
|
805
|
+
destination_schema_update: {
|
806
|
+
record_format_type: ("JSON" | "CSV")
|
807
|
+
}?
|
808
|
+
},
|
809
|
+
]?,
|
810
|
+
reference_data_source_updates: Array[
|
811
|
+
{
|
812
|
+
reference_id: ::String,
|
813
|
+
table_name_update: ::String?,
|
814
|
+
s3_reference_data_source_update: {
|
815
|
+
bucket_arn_update: ::String?,
|
816
|
+
file_key_update: ::String?
|
817
|
+
}?,
|
818
|
+
reference_schema_update: {
|
819
|
+
record_format: {
|
820
|
+
record_format_type: ("JSON" | "CSV"),
|
821
|
+
mapping_parameters: {
|
822
|
+
json_mapping_parameters: {
|
823
|
+
record_row_path: ::String
|
824
|
+
}?,
|
825
|
+
csv_mapping_parameters: {
|
826
|
+
record_row_delimiter: ::String,
|
827
|
+
record_column_delimiter: ::String
|
828
|
+
}?
|
829
|
+
}?
|
830
|
+
},
|
831
|
+
record_encoding: ::String?,
|
832
|
+
record_columns: Array[
|
833
|
+
{
|
834
|
+
name: ::String,
|
835
|
+
mapping: ::String?,
|
836
|
+
sql_type: ::String
|
837
|
+
},
|
838
|
+
]
|
839
|
+
}?
|
840
|
+
},
|
841
|
+
]?
|
842
|
+
}?,
|
843
|
+
application_code_configuration_update: {
|
844
|
+
code_content_type_update: ("PLAINTEXT" | "ZIPFILE")?,
|
845
|
+
code_content_update: {
|
846
|
+
text_content_update: ::String?,
|
847
|
+
zip_file_content_update: ::String?,
|
848
|
+
s3_content_location_update: {
|
849
|
+
bucket_arn_update: ::String?,
|
850
|
+
file_key_update: ::String?,
|
851
|
+
object_version_update: ::String?
|
852
|
+
}?
|
853
|
+
}?
|
854
|
+
}?,
|
855
|
+
flink_application_configuration_update: {
|
856
|
+
checkpoint_configuration_update: {
|
857
|
+
configuration_type_update: ("DEFAULT" | "CUSTOM")?,
|
858
|
+
checkpointing_enabled_update: bool?,
|
859
|
+
checkpoint_interval_update: ::Integer?,
|
860
|
+
min_pause_between_checkpoints_update: ::Integer?
|
861
|
+
}?,
|
862
|
+
monitoring_configuration_update: {
|
863
|
+
configuration_type_update: ("DEFAULT" | "CUSTOM")?,
|
864
|
+
metrics_level_update: ("APPLICATION" | "TASK" | "OPERATOR" | "PARALLELISM")?,
|
865
|
+
log_level_update: ("INFO" | "WARN" | "ERROR" | "DEBUG")?
|
866
|
+
}?,
|
867
|
+
parallelism_configuration_update: {
|
868
|
+
configuration_type_update: ("DEFAULT" | "CUSTOM")?,
|
869
|
+
parallelism_update: ::Integer?,
|
870
|
+
parallelism_per_kpu_update: ::Integer?,
|
871
|
+
auto_scaling_enabled_update: bool?
|
872
|
+
}?
|
873
|
+
}?,
|
874
|
+
environment_property_updates: {
|
875
|
+
property_groups: Array[
|
876
|
+
{
|
877
|
+
property_group_id: ::String,
|
878
|
+
property_map: Hash[::String, ::String]
|
879
|
+
},
|
880
|
+
]
|
881
|
+
}?,
|
882
|
+
application_snapshot_configuration_update: {
|
883
|
+
snapshots_enabled_update: bool
|
884
|
+
}?,
|
885
|
+
vpc_configuration_updates: Array[
|
886
|
+
{
|
887
|
+
vpc_configuration_id: ::String,
|
888
|
+
subnet_id_updates: Array[::String]?,
|
889
|
+
security_group_id_updates: Array[::String]?
|
890
|
+
},
|
891
|
+
]?,
|
892
|
+
zeppelin_application_configuration_update: {
|
893
|
+
monitoring_configuration_update: {
|
894
|
+
log_level_update: ("INFO" | "WARN" | "ERROR" | "DEBUG")
|
895
|
+
}?,
|
896
|
+
catalog_configuration_update: {
|
897
|
+
glue_data_catalog_configuration_update: {
|
898
|
+
database_arn_update: ::String
|
899
|
+
}
|
900
|
+
}?,
|
901
|
+
deploy_as_application_configuration_update: {
|
902
|
+
s3_content_location_update: {
|
903
|
+
bucket_arn_update: ::String?,
|
904
|
+
base_path_update: ::String?
|
905
|
+
}?
|
906
|
+
}?,
|
907
|
+
custom_artifacts_configuration_update: Array[
|
908
|
+
{
|
909
|
+
artifact_type: ("UDF" | "DEPENDENCY_JAR"),
|
910
|
+
s3_content_location: {
|
911
|
+
bucket_arn: ::String,
|
912
|
+
file_key: ::String,
|
913
|
+
object_version: ::String?
|
914
|
+
}?,
|
915
|
+
maven_reference: {
|
916
|
+
group_id: ::String,
|
917
|
+
artifact_id: ::String,
|
918
|
+
version: ::String
|
919
|
+
}?
|
920
|
+
},
|
921
|
+
]?
|
922
|
+
}?
|
923
|
+
},
|
924
|
+
?service_execution_role_update: ::String,
|
925
|
+
?run_configuration_update: {
|
926
|
+
flink_run_configuration: {
|
927
|
+
allow_non_restored_state: bool?
|
928
|
+
}?,
|
929
|
+
application_restore_configuration: {
|
930
|
+
application_restore_type: ("SKIP_RESTORE_FROM_SNAPSHOT" | "RESTORE_FROM_LATEST_SNAPSHOT" | "RESTORE_FROM_CUSTOM_SNAPSHOT"),
|
931
|
+
snapshot_name: ::String?
|
932
|
+
}?
|
933
|
+
},
|
934
|
+
?cloud_watch_logging_option_updates: Array[
|
935
|
+
{
|
936
|
+
cloud_watch_logging_option_id: ::String,
|
937
|
+
log_stream_arn_update: ::String?
|
938
|
+
},
|
939
|
+
],
|
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")
|
942
|
+
) -> _UpdateApplicationResponseSuccess
|
943
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationResponseSuccess
|
944
|
+
|
945
|
+
interface _UpdateApplicationMaintenanceConfigurationResponseSuccess
|
946
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateApplicationMaintenanceConfigurationResponse]
|
947
|
+
def application_arn: () -> ::String
|
948
|
+
def application_maintenance_configuration_description: () -> Types::ApplicationMaintenanceConfigurationDescription
|
949
|
+
end
|
950
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisAnalyticsV2/Client.html#update_application_maintenance_configuration-instance_method
|
951
|
+
def update_application_maintenance_configuration: (
|
952
|
+
application_name: ::String,
|
953
|
+
application_maintenance_configuration_update: {
|
954
|
+
application_maintenance_window_start_time_update: ::String
|
955
|
+
}
|
956
|
+
) -> _UpdateApplicationMaintenanceConfigurationResponseSuccess
|
957
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationMaintenanceConfigurationResponseSuccess
|
958
|
+
end
|
959
|
+
end
|
960
|
+
end
|
961
|
+
|