aws-sdk-iotfleetwise 1.20.0 → 1.22.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.
data/sig/client.rbs ADDED
@@ -0,0 +1,1304 @@
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 IoTFleetWise
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/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 _AssociateVehicleFleetResponseSuccess
77
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssociateVehicleFleetResponse]
78
+ end
79
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#associate_vehicle_fleet-instance_method
80
+ def associate_vehicle_fleet: (
81
+ vehicle_name: ::String,
82
+ fleet_id: ::String
83
+ ) -> _AssociateVehicleFleetResponseSuccess
84
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateVehicleFleetResponseSuccess
85
+
86
+ interface _BatchCreateVehicleResponseSuccess
87
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchCreateVehicleResponse]
88
+ def vehicles: () -> ::Array[Types::CreateVehicleResponseItem]
89
+ def errors: () -> ::Array[Types::CreateVehicleError]
90
+ end
91
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#batch_create_vehicle-instance_method
92
+ def batch_create_vehicle: (
93
+ vehicles: Array[
94
+ {
95
+ vehicle_name: ::String,
96
+ model_manifest_arn: ::String,
97
+ decoder_manifest_arn: ::String,
98
+ attributes: Hash[::String, ::String]?,
99
+ association_behavior: ("CreateIotThing" | "ValidateIotThingExists")?,
100
+ tags: Array[
101
+ {
102
+ key: ::String,
103
+ value: ::String
104
+ },
105
+ ]?
106
+ },
107
+ ]
108
+ ) -> _BatchCreateVehicleResponseSuccess
109
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchCreateVehicleResponseSuccess
110
+
111
+ interface _BatchUpdateVehicleResponseSuccess
112
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchUpdateVehicleResponse]
113
+ def vehicles: () -> ::Array[Types::UpdateVehicleResponseItem]
114
+ def errors: () -> ::Array[Types::UpdateVehicleError]
115
+ end
116
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#batch_update_vehicle-instance_method
117
+ def batch_update_vehicle: (
118
+ vehicles: Array[
119
+ {
120
+ vehicle_name: ::String,
121
+ model_manifest_arn: ::String?,
122
+ decoder_manifest_arn: ::String?,
123
+ attributes: Hash[::String, ::String]?,
124
+ attribute_update_mode: ("Overwrite" | "Merge")?
125
+ },
126
+ ]
127
+ ) -> _BatchUpdateVehicleResponseSuccess
128
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchUpdateVehicleResponseSuccess
129
+
130
+ interface _CreateCampaignResponseSuccess
131
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateCampaignResponse]
132
+ def name: () -> ::String
133
+ def arn: () -> ::String
134
+ end
135
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#create_campaign-instance_method
136
+ def create_campaign: (
137
+ name: ::String,
138
+ ?description: ::String,
139
+ signal_catalog_arn: ::String,
140
+ target_arn: ::String,
141
+ ?start_time: ::Time,
142
+ ?expiry_time: ::Time,
143
+ ?post_trigger_collection_duration: ::Integer,
144
+ ?diagnostics_mode: ("OFF" | "SEND_ACTIVE_DTCS"),
145
+ ?spooling_mode: ("OFF" | "TO_DISK"),
146
+ ?compression: ("OFF" | "SNAPPY"),
147
+ ?priority: ::Integer,
148
+ ?signals_to_collect: Array[
149
+ {
150
+ name: ::String,
151
+ max_sample_count: ::Integer?,
152
+ minimum_sampling_interval_ms: ::Integer?
153
+ },
154
+ ],
155
+ collection_scheme: {
156
+ time_based_collection_scheme: {
157
+ period_ms: ::Integer
158
+ }?,
159
+ condition_based_collection_scheme: {
160
+ expression: ::String,
161
+ minimum_trigger_interval_ms: ::Integer?,
162
+ trigger_mode: ("ALWAYS" | "RISING_EDGE")?,
163
+ condition_language_version: ::Integer?
164
+ }?
165
+ },
166
+ ?data_extra_dimensions: Array[::String],
167
+ ?tags: Array[
168
+ {
169
+ key: ::String,
170
+ value: ::String
171
+ },
172
+ ],
173
+ ?data_destination_configs: Array[
174
+ {
175
+ s3_config: {
176
+ bucket_arn: ::String,
177
+ data_format: ("JSON" | "PARQUET")?,
178
+ storage_compression_format: ("NONE" | "GZIP")?,
179
+ prefix: ::String?
180
+ }?,
181
+ timestream_config: {
182
+ timestream_table_arn: ::String,
183
+ execution_role_arn: ::String
184
+ }?
185
+ },
186
+ ]
187
+ ) -> _CreateCampaignResponseSuccess
188
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCampaignResponseSuccess
189
+
190
+ interface _CreateDecoderManifestResponseSuccess
191
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDecoderManifestResponse]
192
+ def name: () -> ::String
193
+ def arn: () -> ::String
194
+ end
195
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#create_decoder_manifest-instance_method
196
+ def create_decoder_manifest: (
197
+ name: ::String,
198
+ ?description: ::String,
199
+ model_manifest_arn: ::String,
200
+ ?signal_decoders: Array[
201
+ {
202
+ fully_qualified_name: ::String,
203
+ type: ("CAN_SIGNAL" | "OBD_SIGNAL" | "MESSAGE_SIGNAL"),
204
+ interface_id: ::String,
205
+ can_signal: {
206
+ message_id: ::Integer,
207
+ is_big_endian: bool,
208
+ is_signed: bool,
209
+ start_bit: ::Integer,
210
+ offset: ::Float,
211
+ factor: ::Float,
212
+ length: ::Integer,
213
+ name: ::String?
214
+ }?,
215
+ obd_signal: {
216
+ pid_response_length: ::Integer,
217
+ service_mode: ::Integer,
218
+ pid: ::Integer,
219
+ scaling: ::Float,
220
+ offset: ::Float,
221
+ start_byte: ::Integer,
222
+ byte_length: ::Integer,
223
+ bit_right_shift: ::Integer?,
224
+ bit_mask_length: ::Integer?
225
+ }?,
226
+ message_signal: {
227
+ topic_name: ::String,
228
+ structured_message: {
229
+ primitive_message_definition: {
230
+ ros2_primitive_message_definition: {
231
+ primitive_type: ("BOOL" | "BYTE" | "CHAR" | "FLOAT32" | "FLOAT64" | "INT8" | "UINT8" | "INT16" | "UINT16" | "INT32" | "UINT32" | "INT64" | "UINT64" | "STRING" | "WSTRING"),
232
+ offset: ::Float?,
233
+ scaling: ::Float?,
234
+ upper_bound: ::Integer?
235
+ }?
236
+ }?,
237
+ structured_message_list_definition: {
238
+ name: ::String,
239
+ member_type: untyped,
240
+ list_type: ("FIXED_CAPACITY" | "DYNAMIC_UNBOUNDED_CAPACITY" | "DYNAMIC_BOUNDED_CAPACITY"),
241
+ capacity: ::Integer?
242
+ }?,
243
+ structured_message_definition: Array[
244
+ {
245
+ field_name: ::String,
246
+ data_type: untyped
247
+ },
248
+ ]?
249
+ }
250
+ }?
251
+ },
252
+ ],
253
+ ?network_interfaces: Array[
254
+ {
255
+ interface_id: ::String,
256
+ type: ("CAN_INTERFACE" | "OBD_INTERFACE" | "VEHICLE_MIDDLEWARE"),
257
+ can_interface: {
258
+ name: ::String,
259
+ protocol_name: ::String?,
260
+ protocol_version: ::String?
261
+ }?,
262
+ obd_interface: {
263
+ name: ::String,
264
+ request_message_id: ::Integer,
265
+ obd_standard: ::String?,
266
+ pid_request_interval_seconds: ::Integer?,
267
+ dtc_request_interval_seconds: ::Integer?,
268
+ use_extended_ids: bool?,
269
+ has_transmission_ecu: bool?
270
+ }?,
271
+ vehicle_middleware: {
272
+ name: ::String,
273
+ protocol_name: ("ROS_2")
274
+ }?
275
+ },
276
+ ],
277
+ ?tags: Array[
278
+ {
279
+ key: ::String,
280
+ value: ::String
281
+ },
282
+ ]
283
+ ) -> _CreateDecoderManifestResponseSuccess
284
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDecoderManifestResponseSuccess
285
+
286
+ interface _CreateFleetResponseSuccess
287
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateFleetResponse]
288
+ def id: () -> ::String
289
+ def arn: () -> ::String
290
+ end
291
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#create_fleet-instance_method
292
+ def create_fleet: (
293
+ fleet_id: ::String,
294
+ ?description: ::String,
295
+ signal_catalog_arn: ::String,
296
+ ?tags: Array[
297
+ {
298
+ key: ::String,
299
+ value: ::String
300
+ },
301
+ ]
302
+ ) -> _CreateFleetResponseSuccess
303
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFleetResponseSuccess
304
+
305
+ interface _CreateModelManifestResponseSuccess
306
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateModelManifestResponse]
307
+ def name: () -> ::String
308
+ def arn: () -> ::String
309
+ end
310
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#create_model_manifest-instance_method
311
+ def create_model_manifest: (
312
+ name: ::String,
313
+ ?description: ::String,
314
+ nodes: Array[::String],
315
+ signal_catalog_arn: ::String,
316
+ ?tags: Array[
317
+ {
318
+ key: ::String,
319
+ value: ::String
320
+ },
321
+ ]
322
+ ) -> _CreateModelManifestResponseSuccess
323
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateModelManifestResponseSuccess
324
+
325
+ interface _CreateSignalCatalogResponseSuccess
326
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSignalCatalogResponse]
327
+ def name: () -> ::String
328
+ def arn: () -> ::String
329
+ end
330
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#create_signal_catalog-instance_method
331
+ def create_signal_catalog: (
332
+ name: ::String,
333
+ ?description: ::String,
334
+ ?nodes: Array[
335
+ {
336
+ branch: {
337
+ fully_qualified_name: ::String,
338
+ description: ::String?,
339
+ deprecation_message: ::String?,
340
+ comment: ::String?
341
+ }?,
342
+ sensor: {
343
+ fully_qualified_name: ::String,
344
+ data_type: ("INT8" | "UINT8" | "INT16" | "UINT16" | "INT32" | "UINT32" | "INT64" | "UINT64" | "BOOLEAN" | "FLOAT" | "DOUBLE" | "STRING" | "UNIX_TIMESTAMP" | "INT8_ARRAY" | "UINT8_ARRAY" | "INT16_ARRAY" | "UINT16_ARRAY" | "INT32_ARRAY" | "UINT32_ARRAY" | "INT64_ARRAY" | "UINT64_ARRAY" | "BOOLEAN_ARRAY" | "FLOAT_ARRAY" | "DOUBLE_ARRAY" | "STRING_ARRAY" | "UNIX_TIMESTAMP_ARRAY" | "UNKNOWN" | "STRUCT" | "STRUCT_ARRAY"),
345
+ description: ::String?,
346
+ unit: ::String?,
347
+ allowed_values: Array[::String]?,
348
+ min: ::Float?,
349
+ max: ::Float?,
350
+ deprecation_message: ::String?,
351
+ comment: ::String?,
352
+ struct_fully_qualified_name: ::String?
353
+ }?,
354
+ actuator: {
355
+ fully_qualified_name: ::String,
356
+ data_type: ("INT8" | "UINT8" | "INT16" | "UINT16" | "INT32" | "UINT32" | "INT64" | "UINT64" | "BOOLEAN" | "FLOAT" | "DOUBLE" | "STRING" | "UNIX_TIMESTAMP" | "INT8_ARRAY" | "UINT8_ARRAY" | "INT16_ARRAY" | "UINT16_ARRAY" | "INT32_ARRAY" | "UINT32_ARRAY" | "INT64_ARRAY" | "UINT64_ARRAY" | "BOOLEAN_ARRAY" | "FLOAT_ARRAY" | "DOUBLE_ARRAY" | "STRING_ARRAY" | "UNIX_TIMESTAMP_ARRAY" | "UNKNOWN" | "STRUCT" | "STRUCT_ARRAY"),
357
+ description: ::String?,
358
+ unit: ::String?,
359
+ allowed_values: Array[::String]?,
360
+ min: ::Float?,
361
+ max: ::Float?,
362
+ assigned_value: ::String?,
363
+ deprecation_message: ::String?,
364
+ comment: ::String?,
365
+ struct_fully_qualified_name: ::String?
366
+ }?,
367
+ attribute: {
368
+ fully_qualified_name: ::String,
369
+ data_type: ("INT8" | "UINT8" | "INT16" | "UINT16" | "INT32" | "UINT32" | "INT64" | "UINT64" | "BOOLEAN" | "FLOAT" | "DOUBLE" | "STRING" | "UNIX_TIMESTAMP" | "INT8_ARRAY" | "UINT8_ARRAY" | "INT16_ARRAY" | "UINT16_ARRAY" | "INT32_ARRAY" | "UINT32_ARRAY" | "INT64_ARRAY" | "UINT64_ARRAY" | "BOOLEAN_ARRAY" | "FLOAT_ARRAY" | "DOUBLE_ARRAY" | "STRING_ARRAY" | "UNIX_TIMESTAMP_ARRAY" | "UNKNOWN" | "STRUCT" | "STRUCT_ARRAY"),
370
+ description: ::String?,
371
+ unit: ::String?,
372
+ allowed_values: Array[::String]?,
373
+ min: ::Float?,
374
+ max: ::Float?,
375
+ assigned_value: ::String?,
376
+ default_value: ::String?,
377
+ deprecation_message: ::String?,
378
+ comment: ::String?
379
+ }?,
380
+ struct: {
381
+ fully_qualified_name: ::String,
382
+ description: ::String?,
383
+ deprecation_message: ::String?,
384
+ comment: ::String?
385
+ }?,
386
+ property: {
387
+ fully_qualified_name: ::String,
388
+ data_type: ("INT8" | "UINT8" | "INT16" | "UINT16" | "INT32" | "UINT32" | "INT64" | "UINT64" | "BOOLEAN" | "FLOAT" | "DOUBLE" | "STRING" | "UNIX_TIMESTAMP" | "INT8_ARRAY" | "UINT8_ARRAY" | "INT16_ARRAY" | "UINT16_ARRAY" | "INT32_ARRAY" | "UINT32_ARRAY" | "INT64_ARRAY" | "UINT64_ARRAY" | "BOOLEAN_ARRAY" | "FLOAT_ARRAY" | "DOUBLE_ARRAY" | "STRING_ARRAY" | "UNIX_TIMESTAMP_ARRAY" | "UNKNOWN" | "STRUCT" | "STRUCT_ARRAY"),
389
+ data_encoding: ("BINARY" | "TYPED")?,
390
+ description: ::String?,
391
+ deprecation_message: ::String?,
392
+ comment: ::String?,
393
+ struct_fully_qualified_name: ::String?
394
+ }?
395
+ },
396
+ ],
397
+ ?tags: Array[
398
+ {
399
+ key: ::String,
400
+ value: ::String
401
+ },
402
+ ]
403
+ ) -> _CreateSignalCatalogResponseSuccess
404
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSignalCatalogResponseSuccess
405
+
406
+ interface _CreateVehicleResponseSuccess
407
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateVehicleResponse]
408
+ def vehicle_name: () -> ::String
409
+ def arn: () -> ::String
410
+ def thing_arn: () -> ::String
411
+ end
412
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#create_vehicle-instance_method
413
+ def create_vehicle: (
414
+ vehicle_name: ::String,
415
+ model_manifest_arn: ::String,
416
+ decoder_manifest_arn: ::String,
417
+ ?attributes: Hash[::String, ::String],
418
+ ?association_behavior: ("CreateIotThing" | "ValidateIotThingExists"),
419
+ ?tags: Array[
420
+ {
421
+ key: ::String,
422
+ value: ::String
423
+ },
424
+ ]
425
+ ) -> _CreateVehicleResponseSuccess
426
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVehicleResponseSuccess
427
+
428
+ interface _DeleteCampaignResponseSuccess
429
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCampaignResponse]
430
+ def name: () -> ::String
431
+ def arn: () -> ::String
432
+ end
433
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#delete_campaign-instance_method
434
+ def delete_campaign: (
435
+ name: ::String
436
+ ) -> _DeleteCampaignResponseSuccess
437
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCampaignResponseSuccess
438
+
439
+ interface _DeleteDecoderManifestResponseSuccess
440
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDecoderManifestResponse]
441
+ def name: () -> ::String
442
+ def arn: () -> ::String
443
+ end
444
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#delete_decoder_manifest-instance_method
445
+ def delete_decoder_manifest: (
446
+ name: ::String
447
+ ) -> _DeleteDecoderManifestResponseSuccess
448
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDecoderManifestResponseSuccess
449
+
450
+ interface _DeleteFleetResponseSuccess
451
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteFleetResponse]
452
+ def id: () -> ::String
453
+ def arn: () -> ::String
454
+ end
455
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#delete_fleet-instance_method
456
+ def delete_fleet: (
457
+ fleet_id: ::String
458
+ ) -> _DeleteFleetResponseSuccess
459
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteFleetResponseSuccess
460
+
461
+ interface _DeleteModelManifestResponseSuccess
462
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteModelManifestResponse]
463
+ def name: () -> ::String
464
+ def arn: () -> ::String
465
+ end
466
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#delete_model_manifest-instance_method
467
+ def delete_model_manifest: (
468
+ name: ::String
469
+ ) -> _DeleteModelManifestResponseSuccess
470
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteModelManifestResponseSuccess
471
+
472
+ interface _DeleteSignalCatalogResponseSuccess
473
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSignalCatalogResponse]
474
+ def name: () -> ::String
475
+ def arn: () -> ::String
476
+ end
477
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#delete_signal_catalog-instance_method
478
+ def delete_signal_catalog: (
479
+ name: ::String
480
+ ) -> _DeleteSignalCatalogResponseSuccess
481
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSignalCatalogResponseSuccess
482
+
483
+ interface _DeleteVehicleResponseSuccess
484
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteVehicleResponse]
485
+ def vehicle_name: () -> ::String
486
+ def arn: () -> ::String
487
+ end
488
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#delete_vehicle-instance_method
489
+ def delete_vehicle: (
490
+ vehicle_name: ::String
491
+ ) -> _DeleteVehicleResponseSuccess
492
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteVehicleResponseSuccess
493
+
494
+ interface _DisassociateVehicleFleetResponseSuccess
495
+ include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateVehicleFleetResponse]
496
+ end
497
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#disassociate_vehicle_fleet-instance_method
498
+ def disassociate_vehicle_fleet: (
499
+ vehicle_name: ::String,
500
+ fleet_id: ::String
501
+ ) -> _DisassociateVehicleFleetResponseSuccess
502
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateVehicleFleetResponseSuccess
503
+
504
+ interface _GetCampaignResponseSuccess
505
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetCampaignResponse]
506
+ def name: () -> ::String
507
+ def arn: () -> ::String
508
+ def description: () -> ::String
509
+ def signal_catalog_arn: () -> ::String
510
+ def target_arn: () -> ::String
511
+ def status: () -> ("CREATING" | "WAITING_FOR_APPROVAL" | "RUNNING" | "SUSPENDED")
512
+ def start_time: () -> ::Time
513
+ def expiry_time: () -> ::Time
514
+ def post_trigger_collection_duration: () -> ::Integer
515
+ def diagnostics_mode: () -> ("OFF" | "SEND_ACTIVE_DTCS")
516
+ def spooling_mode: () -> ("OFF" | "TO_DISK")
517
+ def compression: () -> ("OFF" | "SNAPPY")
518
+ def priority: () -> ::Integer
519
+ def signals_to_collect: () -> ::Array[Types::SignalInformation]
520
+ def collection_scheme: () -> Types::CollectionScheme
521
+ def data_extra_dimensions: () -> ::Array[::String]
522
+ def creation_time: () -> ::Time
523
+ def last_modification_time: () -> ::Time
524
+ def data_destination_configs: () -> ::Array[Types::DataDestinationConfig]
525
+ end
526
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#get_campaign-instance_method
527
+ def get_campaign: (
528
+ name: ::String
529
+ ) -> _GetCampaignResponseSuccess
530
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCampaignResponseSuccess
531
+
532
+ interface _GetDecoderManifestResponseSuccess
533
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDecoderManifestResponse]
534
+ def name: () -> ::String
535
+ def arn: () -> ::String
536
+ def description: () -> ::String
537
+ def model_manifest_arn: () -> ::String
538
+ def status: () -> ("ACTIVE" | "DRAFT" | "INVALID" | "VALIDATING")
539
+ def creation_time: () -> ::Time
540
+ def last_modification_time: () -> ::Time
541
+ def message: () -> ::String
542
+ end
543
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#get_decoder_manifest-instance_method
544
+ def get_decoder_manifest: (
545
+ name: ::String
546
+ ) -> _GetDecoderManifestResponseSuccess
547
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDecoderManifestResponseSuccess
548
+
549
+ interface _GetEncryptionConfigurationResponseSuccess
550
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetEncryptionConfigurationResponse]
551
+ def kms_key_id: () -> ::String
552
+ def encryption_status: () -> ("PENDING" | "SUCCESS" | "FAILURE")
553
+ def encryption_type: () -> ("KMS_BASED_ENCRYPTION" | "FLEETWISE_DEFAULT_ENCRYPTION")
554
+ def error_message: () -> ::String
555
+ def creation_time: () -> ::Time
556
+ def last_modification_time: () -> ::Time
557
+ end
558
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#get_encryption_configuration-instance_method
559
+ def get_encryption_configuration: (
560
+ ) -> _GetEncryptionConfigurationResponseSuccess
561
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEncryptionConfigurationResponseSuccess
562
+
563
+ interface _GetFleetResponseSuccess
564
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetFleetResponse]
565
+ def id: () -> ::String
566
+ def arn: () -> ::String
567
+ def description: () -> ::String
568
+ def signal_catalog_arn: () -> ::String
569
+ def creation_time: () -> ::Time
570
+ def last_modification_time: () -> ::Time
571
+ end
572
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#get_fleet-instance_method
573
+ def get_fleet: (
574
+ fleet_id: ::String
575
+ ) -> _GetFleetResponseSuccess
576
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetFleetResponseSuccess
577
+
578
+ interface _GetLoggingOptionsResponseSuccess
579
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetLoggingOptionsResponse]
580
+ def cloud_watch_log_delivery: () -> Types::CloudWatchLogDeliveryOptions
581
+ end
582
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#get_logging_options-instance_method
583
+ def get_logging_options: (
584
+ ) -> _GetLoggingOptionsResponseSuccess
585
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLoggingOptionsResponseSuccess
586
+
587
+ interface _GetModelManifestResponseSuccess
588
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetModelManifestResponse]
589
+ def name: () -> ::String
590
+ def arn: () -> ::String
591
+ def description: () -> ::String
592
+ def signal_catalog_arn: () -> ::String
593
+ def status: () -> ("ACTIVE" | "DRAFT" | "INVALID" | "VALIDATING")
594
+ def creation_time: () -> ::Time
595
+ def last_modification_time: () -> ::Time
596
+ end
597
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#get_model_manifest-instance_method
598
+ def get_model_manifest: (
599
+ name: ::String
600
+ ) -> _GetModelManifestResponseSuccess
601
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetModelManifestResponseSuccess
602
+
603
+ interface _GetRegisterAccountStatusResponseSuccess
604
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRegisterAccountStatusResponse]
605
+ def customer_account_id: () -> ::String
606
+ def account_status: () -> ("REGISTRATION_PENDING" | "REGISTRATION_SUCCESS" | "REGISTRATION_FAILURE")
607
+ def timestream_registration_response: () -> Types::TimestreamRegistrationResponse
608
+ def iam_registration_response: () -> Types::IamRegistrationResponse
609
+ def creation_time: () -> ::Time
610
+ def last_modification_time: () -> ::Time
611
+ end
612
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#get_register_account_status-instance_method
613
+ def get_register_account_status: (
614
+ ) -> _GetRegisterAccountStatusResponseSuccess
615
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRegisterAccountStatusResponseSuccess
616
+
617
+ interface _GetSignalCatalogResponseSuccess
618
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSignalCatalogResponse]
619
+ def name: () -> ::String
620
+ def arn: () -> ::String
621
+ def description: () -> ::String
622
+ def node_counts: () -> Types::NodeCounts
623
+ def creation_time: () -> ::Time
624
+ def last_modification_time: () -> ::Time
625
+ end
626
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#get_signal_catalog-instance_method
627
+ def get_signal_catalog: (
628
+ name: ::String
629
+ ) -> _GetSignalCatalogResponseSuccess
630
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSignalCatalogResponseSuccess
631
+
632
+ interface _GetVehicleResponseSuccess
633
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetVehicleResponse]
634
+ def vehicle_name: () -> ::String
635
+ def arn: () -> ::String
636
+ def model_manifest_arn: () -> ::String
637
+ def decoder_manifest_arn: () -> ::String
638
+ def attributes: () -> ::Hash[::String, ::String]
639
+ def creation_time: () -> ::Time
640
+ def last_modification_time: () -> ::Time
641
+ end
642
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#get_vehicle-instance_method
643
+ def get_vehicle: (
644
+ vehicle_name: ::String
645
+ ) -> _GetVehicleResponseSuccess
646
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVehicleResponseSuccess
647
+
648
+ interface _GetVehicleStatusResponseSuccess
649
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetVehicleStatusResponse]
650
+ def campaigns: () -> ::Array[Types::VehicleStatus]
651
+ def next_token: () -> ::String
652
+ end
653
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#get_vehicle_status-instance_method
654
+ def get_vehicle_status: (
655
+ ?next_token: ::String,
656
+ ?max_results: ::Integer,
657
+ vehicle_name: ::String
658
+ ) -> _GetVehicleStatusResponseSuccess
659
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVehicleStatusResponseSuccess
660
+
661
+ interface _ImportDecoderManifestResponseSuccess
662
+ include ::Seahorse::Client::_ResponseSuccess[Types::ImportDecoderManifestResponse]
663
+ def name: () -> ::String
664
+ def arn: () -> ::String
665
+ end
666
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#import_decoder_manifest-instance_method
667
+ def import_decoder_manifest: (
668
+ name: ::String,
669
+ network_file_definitions: Array[
670
+ {
671
+ can_dbc: {
672
+ network_interface: ::String,
673
+ can_dbc_files: Array[::String],
674
+ signals_map: Hash[::String, ::String]?
675
+ }?
676
+ },
677
+ ]
678
+ ) -> _ImportDecoderManifestResponseSuccess
679
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportDecoderManifestResponseSuccess
680
+
681
+ interface _ImportSignalCatalogResponseSuccess
682
+ include ::Seahorse::Client::_ResponseSuccess[Types::ImportSignalCatalogResponse]
683
+ def name: () -> ::String
684
+ def arn: () -> ::String
685
+ end
686
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#import_signal_catalog-instance_method
687
+ def import_signal_catalog: (
688
+ name: ::String,
689
+ ?description: ::String,
690
+ ?vss: {
691
+ vss_json: ::String?
692
+ },
693
+ ?tags: Array[
694
+ {
695
+ key: ::String,
696
+ value: ::String
697
+ },
698
+ ]
699
+ ) -> _ImportSignalCatalogResponseSuccess
700
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportSignalCatalogResponseSuccess
701
+
702
+ interface _ListCampaignsResponseSuccess
703
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListCampaignsResponse]
704
+ def campaign_summaries: () -> ::Array[Types::CampaignSummary]
705
+ def next_token: () -> ::String
706
+ end
707
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#list_campaigns-instance_method
708
+ def list_campaigns: (
709
+ ?next_token: ::String,
710
+ ?max_results: ::Integer,
711
+ ?status: ::String
712
+ ) -> _ListCampaignsResponseSuccess
713
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCampaignsResponseSuccess
714
+
715
+ interface _ListDecoderManifestNetworkInterfacesResponseSuccess
716
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDecoderManifestNetworkInterfacesResponse]
717
+ def network_interfaces: () -> ::Array[Types::NetworkInterface]
718
+ def next_token: () -> ::String
719
+ end
720
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#list_decoder_manifest_network_interfaces-instance_method
721
+ def list_decoder_manifest_network_interfaces: (
722
+ name: ::String,
723
+ ?next_token: ::String,
724
+ ?max_results: ::Integer
725
+ ) -> _ListDecoderManifestNetworkInterfacesResponseSuccess
726
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDecoderManifestNetworkInterfacesResponseSuccess
727
+
728
+ interface _ListDecoderManifestSignalsResponseSuccess
729
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDecoderManifestSignalsResponse]
730
+ def signal_decoders: () -> ::Array[Types::SignalDecoder]
731
+ def next_token: () -> ::String
732
+ end
733
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#list_decoder_manifest_signals-instance_method
734
+ def list_decoder_manifest_signals: (
735
+ name: ::String,
736
+ ?next_token: ::String,
737
+ ?max_results: ::Integer
738
+ ) -> _ListDecoderManifestSignalsResponseSuccess
739
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDecoderManifestSignalsResponseSuccess
740
+
741
+ interface _ListDecoderManifestsResponseSuccess
742
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDecoderManifestsResponse]
743
+ def summaries: () -> ::Array[Types::DecoderManifestSummary]
744
+ def next_token: () -> ::String
745
+ end
746
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#list_decoder_manifests-instance_method
747
+ def list_decoder_manifests: (
748
+ ?model_manifest_arn: ::String,
749
+ ?next_token: ::String,
750
+ ?max_results: ::Integer
751
+ ) -> _ListDecoderManifestsResponseSuccess
752
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDecoderManifestsResponseSuccess
753
+
754
+ interface _ListFleetsResponseSuccess
755
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListFleetsResponse]
756
+ def fleet_summaries: () -> ::Array[Types::FleetSummary]
757
+ def next_token: () -> ::String
758
+ end
759
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#list_fleets-instance_method
760
+ def list_fleets: (
761
+ ?next_token: ::String,
762
+ ?max_results: ::Integer
763
+ ) -> _ListFleetsResponseSuccess
764
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFleetsResponseSuccess
765
+
766
+ interface _ListFleetsForVehicleResponseSuccess
767
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListFleetsForVehicleResponse]
768
+ def fleets: () -> ::Array[::String]
769
+ def next_token: () -> ::String
770
+ end
771
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#list_fleets_for_vehicle-instance_method
772
+ def list_fleets_for_vehicle: (
773
+ vehicle_name: ::String,
774
+ ?next_token: ::String,
775
+ ?max_results: ::Integer
776
+ ) -> _ListFleetsForVehicleResponseSuccess
777
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFleetsForVehicleResponseSuccess
778
+
779
+ interface _ListModelManifestNodesResponseSuccess
780
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListModelManifestNodesResponse]
781
+ def nodes: () -> ::Array[Types::Node]
782
+ def next_token: () -> ::String
783
+ end
784
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#list_model_manifest_nodes-instance_method
785
+ def list_model_manifest_nodes: (
786
+ name: ::String,
787
+ ?next_token: ::String,
788
+ ?max_results: ::Integer
789
+ ) -> _ListModelManifestNodesResponseSuccess
790
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListModelManifestNodesResponseSuccess
791
+
792
+ interface _ListModelManifestsResponseSuccess
793
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListModelManifestsResponse]
794
+ def summaries: () -> ::Array[Types::ModelManifestSummary]
795
+ def next_token: () -> ::String
796
+ end
797
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#list_model_manifests-instance_method
798
+ def list_model_manifests: (
799
+ ?signal_catalog_arn: ::String,
800
+ ?next_token: ::String,
801
+ ?max_results: ::Integer
802
+ ) -> _ListModelManifestsResponseSuccess
803
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListModelManifestsResponseSuccess
804
+
805
+ interface _ListSignalCatalogNodesResponseSuccess
806
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSignalCatalogNodesResponse]
807
+ def nodes: () -> ::Array[Types::Node]
808
+ def next_token: () -> ::String
809
+ end
810
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#list_signal_catalog_nodes-instance_method
811
+ def list_signal_catalog_nodes: (
812
+ name: ::String,
813
+ ?next_token: ::String,
814
+ ?max_results: ::Integer,
815
+ ?signal_node_type: ("SENSOR" | "ACTUATOR" | "ATTRIBUTE" | "BRANCH" | "CUSTOM_STRUCT" | "CUSTOM_PROPERTY")
816
+ ) -> _ListSignalCatalogNodesResponseSuccess
817
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSignalCatalogNodesResponseSuccess
818
+
819
+ interface _ListSignalCatalogsResponseSuccess
820
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSignalCatalogsResponse]
821
+ def summaries: () -> ::Array[Types::SignalCatalogSummary]
822
+ def next_token: () -> ::String
823
+ end
824
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#list_signal_catalogs-instance_method
825
+ def list_signal_catalogs: (
826
+ ?next_token: ::String,
827
+ ?max_results: ::Integer
828
+ ) -> _ListSignalCatalogsResponseSuccess
829
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSignalCatalogsResponseSuccess
830
+
831
+ interface _ListTagsForResourceResponseSuccess
832
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
833
+ def tags: () -> ::Array[Types::Tag]
834
+ end
835
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#list_tags_for_resource-instance_method
836
+ def list_tags_for_resource: (
837
+ resource_arn: ::String
838
+ ) -> _ListTagsForResourceResponseSuccess
839
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
840
+
841
+ interface _ListVehiclesResponseSuccess
842
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVehiclesResponse]
843
+ def vehicle_summaries: () -> ::Array[Types::VehicleSummary]
844
+ def next_token: () -> ::String
845
+ end
846
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#list_vehicles-instance_method
847
+ def list_vehicles: (
848
+ ?model_manifest_arn: ::String,
849
+ ?next_token: ::String,
850
+ ?max_results: ::Integer
851
+ ) -> _ListVehiclesResponseSuccess
852
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVehiclesResponseSuccess
853
+
854
+ interface _ListVehiclesInFleetResponseSuccess
855
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVehiclesInFleetResponse]
856
+ def vehicles: () -> ::Array[::String]
857
+ def next_token: () -> ::String
858
+ end
859
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#list_vehicles_in_fleet-instance_method
860
+ def list_vehicles_in_fleet: (
861
+ fleet_id: ::String,
862
+ ?next_token: ::String,
863
+ ?max_results: ::Integer
864
+ ) -> _ListVehiclesInFleetResponseSuccess
865
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVehiclesInFleetResponseSuccess
866
+
867
+ interface _PutEncryptionConfigurationResponseSuccess
868
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutEncryptionConfigurationResponse]
869
+ def kms_key_id: () -> ::String
870
+ def encryption_status: () -> ("PENDING" | "SUCCESS" | "FAILURE")
871
+ def encryption_type: () -> ("KMS_BASED_ENCRYPTION" | "FLEETWISE_DEFAULT_ENCRYPTION")
872
+ end
873
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#put_encryption_configuration-instance_method
874
+ def put_encryption_configuration: (
875
+ ?kms_key_id: ::String,
876
+ encryption_type: ("KMS_BASED_ENCRYPTION" | "FLEETWISE_DEFAULT_ENCRYPTION")
877
+ ) -> _PutEncryptionConfigurationResponseSuccess
878
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutEncryptionConfigurationResponseSuccess
879
+
880
+ interface _PutLoggingOptionsResponseSuccess
881
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutLoggingOptionsResponse]
882
+ end
883
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#put_logging_options-instance_method
884
+ def put_logging_options: (
885
+ cloud_watch_log_delivery: {
886
+ log_type: ("OFF" | "ERROR"),
887
+ log_group_name: ::String?
888
+ }
889
+ ) -> _PutLoggingOptionsResponseSuccess
890
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutLoggingOptionsResponseSuccess
891
+
892
+ interface _RegisterAccountResponseSuccess
893
+ include ::Seahorse::Client::_ResponseSuccess[Types::RegisterAccountResponse]
894
+ def register_account_status: () -> ("REGISTRATION_PENDING" | "REGISTRATION_SUCCESS" | "REGISTRATION_FAILURE")
895
+ def timestream_resources: () -> Types::TimestreamResources
896
+ def iam_resources: () -> Types::IamResources
897
+ def creation_time: () -> ::Time
898
+ def last_modification_time: () -> ::Time
899
+ end
900
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#register_account-instance_method
901
+ def register_account: (
902
+ ?timestream_resources: {
903
+ timestream_database_name: ::String,
904
+ timestream_table_name: ::String
905
+ },
906
+ ?iam_resources: {
907
+ role_arn: ::String
908
+ }
909
+ ) -> _RegisterAccountResponseSuccess
910
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterAccountResponseSuccess
911
+
912
+ interface _TagResourceResponseSuccess
913
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
914
+ end
915
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#tag_resource-instance_method
916
+ def tag_resource: (
917
+ resource_arn: ::String,
918
+ tags: Array[
919
+ {
920
+ key: ::String,
921
+ value: ::String
922
+ },
923
+ ]
924
+ ) -> _TagResourceResponseSuccess
925
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
926
+
927
+ interface _UntagResourceResponseSuccess
928
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
929
+ end
930
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#untag_resource-instance_method
931
+ def untag_resource: (
932
+ resource_arn: ::String,
933
+ tag_keys: Array[::String]
934
+ ) -> _UntagResourceResponseSuccess
935
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
936
+
937
+ interface _UpdateCampaignResponseSuccess
938
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateCampaignResponse]
939
+ def arn: () -> ::String
940
+ def name: () -> ::String
941
+ def status: () -> ("CREATING" | "WAITING_FOR_APPROVAL" | "RUNNING" | "SUSPENDED")
942
+ end
943
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#update_campaign-instance_method
944
+ def update_campaign: (
945
+ name: ::String,
946
+ ?description: ::String,
947
+ ?data_extra_dimensions: Array[::String],
948
+ action: ("APPROVE" | "SUSPEND" | "RESUME" | "UPDATE")
949
+ ) -> _UpdateCampaignResponseSuccess
950
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCampaignResponseSuccess
951
+
952
+ interface _UpdateDecoderManifestResponseSuccess
953
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDecoderManifestResponse]
954
+ def name: () -> ::String
955
+ def arn: () -> ::String
956
+ end
957
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#update_decoder_manifest-instance_method
958
+ def update_decoder_manifest: (
959
+ name: ::String,
960
+ ?description: ::String,
961
+ ?signal_decoders_to_add: Array[
962
+ {
963
+ fully_qualified_name: ::String,
964
+ type: ("CAN_SIGNAL" | "OBD_SIGNAL" | "MESSAGE_SIGNAL"),
965
+ interface_id: ::String,
966
+ can_signal: {
967
+ message_id: ::Integer,
968
+ is_big_endian: bool,
969
+ is_signed: bool,
970
+ start_bit: ::Integer,
971
+ offset: ::Float,
972
+ factor: ::Float,
973
+ length: ::Integer,
974
+ name: ::String?
975
+ }?,
976
+ obd_signal: {
977
+ pid_response_length: ::Integer,
978
+ service_mode: ::Integer,
979
+ pid: ::Integer,
980
+ scaling: ::Float,
981
+ offset: ::Float,
982
+ start_byte: ::Integer,
983
+ byte_length: ::Integer,
984
+ bit_right_shift: ::Integer?,
985
+ bit_mask_length: ::Integer?
986
+ }?,
987
+ message_signal: {
988
+ topic_name: ::String,
989
+ structured_message: {
990
+ primitive_message_definition: {
991
+ ros2_primitive_message_definition: {
992
+ primitive_type: ("BOOL" | "BYTE" | "CHAR" | "FLOAT32" | "FLOAT64" | "INT8" | "UINT8" | "INT16" | "UINT16" | "INT32" | "UINT32" | "INT64" | "UINT64" | "STRING" | "WSTRING"),
993
+ offset: ::Float?,
994
+ scaling: ::Float?,
995
+ upper_bound: ::Integer?
996
+ }?
997
+ }?,
998
+ structured_message_list_definition: {
999
+ name: ::String,
1000
+ member_type: untyped,
1001
+ list_type: ("FIXED_CAPACITY" | "DYNAMIC_UNBOUNDED_CAPACITY" | "DYNAMIC_BOUNDED_CAPACITY"),
1002
+ capacity: ::Integer?
1003
+ }?,
1004
+ structured_message_definition: Array[
1005
+ {
1006
+ field_name: ::String,
1007
+ data_type: untyped
1008
+ },
1009
+ ]?
1010
+ }
1011
+ }?
1012
+ },
1013
+ ],
1014
+ ?signal_decoders_to_update: Array[
1015
+ {
1016
+ fully_qualified_name: ::String,
1017
+ type: ("CAN_SIGNAL" | "OBD_SIGNAL" | "MESSAGE_SIGNAL"),
1018
+ interface_id: ::String,
1019
+ can_signal: {
1020
+ message_id: ::Integer,
1021
+ is_big_endian: bool,
1022
+ is_signed: bool,
1023
+ start_bit: ::Integer,
1024
+ offset: ::Float,
1025
+ factor: ::Float,
1026
+ length: ::Integer,
1027
+ name: ::String?
1028
+ }?,
1029
+ obd_signal: {
1030
+ pid_response_length: ::Integer,
1031
+ service_mode: ::Integer,
1032
+ pid: ::Integer,
1033
+ scaling: ::Float,
1034
+ offset: ::Float,
1035
+ start_byte: ::Integer,
1036
+ byte_length: ::Integer,
1037
+ bit_right_shift: ::Integer?,
1038
+ bit_mask_length: ::Integer?
1039
+ }?,
1040
+ message_signal: {
1041
+ topic_name: ::String,
1042
+ structured_message: {
1043
+ primitive_message_definition: {
1044
+ ros2_primitive_message_definition: {
1045
+ primitive_type: ("BOOL" | "BYTE" | "CHAR" | "FLOAT32" | "FLOAT64" | "INT8" | "UINT8" | "INT16" | "UINT16" | "INT32" | "UINT32" | "INT64" | "UINT64" | "STRING" | "WSTRING"),
1046
+ offset: ::Float?,
1047
+ scaling: ::Float?,
1048
+ upper_bound: ::Integer?
1049
+ }?
1050
+ }?,
1051
+ structured_message_list_definition: {
1052
+ name: ::String,
1053
+ member_type: untyped,
1054
+ list_type: ("FIXED_CAPACITY" | "DYNAMIC_UNBOUNDED_CAPACITY" | "DYNAMIC_BOUNDED_CAPACITY"),
1055
+ capacity: ::Integer?
1056
+ }?,
1057
+ structured_message_definition: Array[
1058
+ {
1059
+ field_name: ::String,
1060
+ data_type: untyped
1061
+ },
1062
+ ]?
1063
+ }
1064
+ }?
1065
+ },
1066
+ ],
1067
+ ?signal_decoders_to_remove: Array[::String],
1068
+ ?network_interfaces_to_add: Array[
1069
+ {
1070
+ interface_id: ::String,
1071
+ type: ("CAN_INTERFACE" | "OBD_INTERFACE" | "VEHICLE_MIDDLEWARE"),
1072
+ can_interface: {
1073
+ name: ::String,
1074
+ protocol_name: ::String?,
1075
+ protocol_version: ::String?
1076
+ }?,
1077
+ obd_interface: {
1078
+ name: ::String,
1079
+ request_message_id: ::Integer,
1080
+ obd_standard: ::String?,
1081
+ pid_request_interval_seconds: ::Integer?,
1082
+ dtc_request_interval_seconds: ::Integer?,
1083
+ use_extended_ids: bool?,
1084
+ has_transmission_ecu: bool?
1085
+ }?,
1086
+ vehicle_middleware: {
1087
+ name: ::String,
1088
+ protocol_name: ("ROS_2")
1089
+ }?
1090
+ },
1091
+ ],
1092
+ ?network_interfaces_to_update: Array[
1093
+ {
1094
+ interface_id: ::String,
1095
+ type: ("CAN_INTERFACE" | "OBD_INTERFACE" | "VEHICLE_MIDDLEWARE"),
1096
+ can_interface: {
1097
+ name: ::String,
1098
+ protocol_name: ::String?,
1099
+ protocol_version: ::String?
1100
+ }?,
1101
+ obd_interface: {
1102
+ name: ::String,
1103
+ request_message_id: ::Integer,
1104
+ obd_standard: ::String?,
1105
+ pid_request_interval_seconds: ::Integer?,
1106
+ dtc_request_interval_seconds: ::Integer?,
1107
+ use_extended_ids: bool?,
1108
+ has_transmission_ecu: bool?
1109
+ }?,
1110
+ vehicle_middleware: {
1111
+ name: ::String,
1112
+ protocol_name: ("ROS_2")
1113
+ }?
1114
+ },
1115
+ ],
1116
+ ?network_interfaces_to_remove: Array[::String],
1117
+ ?status: ("ACTIVE" | "DRAFT" | "INVALID" | "VALIDATING")
1118
+ ) -> _UpdateDecoderManifestResponseSuccess
1119
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDecoderManifestResponseSuccess
1120
+
1121
+ interface _UpdateFleetResponseSuccess
1122
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateFleetResponse]
1123
+ def id: () -> ::String
1124
+ def arn: () -> ::String
1125
+ end
1126
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#update_fleet-instance_method
1127
+ def update_fleet: (
1128
+ fleet_id: ::String,
1129
+ ?description: ::String
1130
+ ) -> _UpdateFleetResponseSuccess
1131
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFleetResponseSuccess
1132
+
1133
+ interface _UpdateModelManifestResponseSuccess
1134
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateModelManifestResponse]
1135
+ def name: () -> ::String
1136
+ def arn: () -> ::String
1137
+ end
1138
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#update_model_manifest-instance_method
1139
+ def update_model_manifest: (
1140
+ name: ::String,
1141
+ ?description: ::String,
1142
+ ?nodes_to_add: Array[::String],
1143
+ ?nodes_to_remove: Array[::String],
1144
+ ?status: ("ACTIVE" | "DRAFT" | "INVALID" | "VALIDATING")
1145
+ ) -> _UpdateModelManifestResponseSuccess
1146
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateModelManifestResponseSuccess
1147
+
1148
+ interface _UpdateSignalCatalogResponseSuccess
1149
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSignalCatalogResponse]
1150
+ def name: () -> ::String
1151
+ def arn: () -> ::String
1152
+ end
1153
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#update_signal_catalog-instance_method
1154
+ def update_signal_catalog: (
1155
+ name: ::String,
1156
+ ?description: ::String,
1157
+ ?nodes_to_add: Array[
1158
+ {
1159
+ branch: {
1160
+ fully_qualified_name: ::String,
1161
+ description: ::String?,
1162
+ deprecation_message: ::String?,
1163
+ comment: ::String?
1164
+ }?,
1165
+ sensor: {
1166
+ fully_qualified_name: ::String,
1167
+ data_type: ("INT8" | "UINT8" | "INT16" | "UINT16" | "INT32" | "UINT32" | "INT64" | "UINT64" | "BOOLEAN" | "FLOAT" | "DOUBLE" | "STRING" | "UNIX_TIMESTAMP" | "INT8_ARRAY" | "UINT8_ARRAY" | "INT16_ARRAY" | "UINT16_ARRAY" | "INT32_ARRAY" | "UINT32_ARRAY" | "INT64_ARRAY" | "UINT64_ARRAY" | "BOOLEAN_ARRAY" | "FLOAT_ARRAY" | "DOUBLE_ARRAY" | "STRING_ARRAY" | "UNIX_TIMESTAMP_ARRAY" | "UNKNOWN" | "STRUCT" | "STRUCT_ARRAY"),
1168
+ description: ::String?,
1169
+ unit: ::String?,
1170
+ allowed_values: Array[::String]?,
1171
+ min: ::Float?,
1172
+ max: ::Float?,
1173
+ deprecation_message: ::String?,
1174
+ comment: ::String?,
1175
+ struct_fully_qualified_name: ::String?
1176
+ }?,
1177
+ actuator: {
1178
+ fully_qualified_name: ::String,
1179
+ data_type: ("INT8" | "UINT8" | "INT16" | "UINT16" | "INT32" | "UINT32" | "INT64" | "UINT64" | "BOOLEAN" | "FLOAT" | "DOUBLE" | "STRING" | "UNIX_TIMESTAMP" | "INT8_ARRAY" | "UINT8_ARRAY" | "INT16_ARRAY" | "UINT16_ARRAY" | "INT32_ARRAY" | "UINT32_ARRAY" | "INT64_ARRAY" | "UINT64_ARRAY" | "BOOLEAN_ARRAY" | "FLOAT_ARRAY" | "DOUBLE_ARRAY" | "STRING_ARRAY" | "UNIX_TIMESTAMP_ARRAY" | "UNKNOWN" | "STRUCT" | "STRUCT_ARRAY"),
1180
+ description: ::String?,
1181
+ unit: ::String?,
1182
+ allowed_values: Array[::String]?,
1183
+ min: ::Float?,
1184
+ max: ::Float?,
1185
+ assigned_value: ::String?,
1186
+ deprecation_message: ::String?,
1187
+ comment: ::String?,
1188
+ struct_fully_qualified_name: ::String?
1189
+ }?,
1190
+ attribute: {
1191
+ fully_qualified_name: ::String,
1192
+ data_type: ("INT8" | "UINT8" | "INT16" | "UINT16" | "INT32" | "UINT32" | "INT64" | "UINT64" | "BOOLEAN" | "FLOAT" | "DOUBLE" | "STRING" | "UNIX_TIMESTAMP" | "INT8_ARRAY" | "UINT8_ARRAY" | "INT16_ARRAY" | "UINT16_ARRAY" | "INT32_ARRAY" | "UINT32_ARRAY" | "INT64_ARRAY" | "UINT64_ARRAY" | "BOOLEAN_ARRAY" | "FLOAT_ARRAY" | "DOUBLE_ARRAY" | "STRING_ARRAY" | "UNIX_TIMESTAMP_ARRAY" | "UNKNOWN" | "STRUCT" | "STRUCT_ARRAY"),
1193
+ description: ::String?,
1194
+ unit: ::String?,
1195
+ allowed_values: Array[::String]?,
1196
+ min: ::Float?,
1197
+ max: ::Float?,
1198
+ assigned_value: ::String?,
1199
+ default_value: ::String?,
1200
+ deprecation_message: ::String?,
1201
+ comment: ::String?
1202
+ }?,
1203
+ struct: {
1204
+ fully_qualified_name: ::String,
1205
+ description: ::String?,
1206
+ deprecation_message: ::String?,
1207
+ comment: ::String?
1208
+ }?,
1209
+ property: {
1210
+ fully_qualified_name: ::String,
1211
+ data_type: ("INT8" | "UINT8" | "INT16" | "UINT16" | "INT32" | "UINT32" | "INT64" | "UINT64" | "BOOLEAN" | "FLOAT" | "DOUBLE" | "STRING" | "UNIX_TIMESTAMP" | "INT8_ARRAY" | "UINT8_ARRAY" | "INT16_ARRAY" | "UINT16_ARRAY" | "INT32_ARRAY" | "UINT32_ARRAY" | "INT64_ARRAY" | "UINT64_ARRAY" | "BOOLEAN_ARRAY" | "FLOAT_ARRAY" | "DOUBLE_ARRAY" | "STRING_ARRAY" | "UNIX_TIMESTAMP_ARRAY" | "UNKNOWN" | "STRUCT" | "STRUCT_ARRAY"),
1212
+ data_encoding: ("BINARY" | "TYPED")?,
1213
+ description: ::String?,
1214
+ deprecation_message: ::String?,
1215
+ comment: ::String?,
1216
+ struct_fully_qualified_name: ::String?
1217
+ }?
1218
+ },
1219
+ ],
1220
+ ?nodes_to_update: Array[
1221
+ {
1222
+ branch: {
1223
+ fully_qualified_name: ::String,
1224
+ description: ::String?,
1225
+ deprecation_message: ::String?,
1226
+ comment: ::String?
1227
+ }?,
1228
+ sensor: {
1229
+ fully_qualified_name: ::String,
1230
+ data_type: ("INT8" | "UINT8" | "INT16" | "UINT16" | "INT32" | "UINT32" | "INT64" | "UINT64" | "BOOLEAN" | "FLOAT" | "DOUBLE" | "STRING" | "UNIX_TIMESTAMP" | "INT8_ARRAY" | "UINT8_ARRAY" | "INT16_ARRAY" | "UINT16_ARRAY" | "INT32_ARRAY" | "UINT32_ARRAY" | "INT64_ARRAY" | "UINT64_ARRAY" | "BOOLEAN_ARRAY" | "FLOAT_ARRAY" | "DOUBLE_ARRAY" | "STRING_ARRAY" | "UNIX_TIMESTAMP_ARRAY" | "UNKNOWN" | "STRUCT" | "STRUCT_ARRAY"),
1231
+ description: ::String?,
1232
+ unit: ::String?,
1233
+ allowed_values: Array[::String]?,
1234
+ min: ::Float?,
1235
+ max: ::Float?,
1236
+ deprecation_message: ::String?,
1237
+ comment: ::String?,
1238
+ struct_fully_qualified_name: ::String?
1239
+ }?,
1240
+ actuator: {
1241
+ fully_qualified_name: ::String,
1242
+ data_type: ("INT8" | "UINT8" | "INT16" | "UINT16" | "INT32" | "UINT32" | "INT64" | "UINT64" | "BOOLEAN" | "FLOAT" | "DOUBLE" | "STRING" | "UNIX_TIMESTAMP" | "INT8_ARRAY" | "UINT8_ARRAY" | "INT16_ARRAY" | "UINT16_ARRAY" | "INT32_ARRAY" | "UINT32_ARRAY" | "INT64_ARRAY" | "UINT64_ARRAY" | "BOOLEAN_ARRAY" | "FLOAT_ARRAY" | "DOUBLE_ARRAY" | "STRING_ARRAY" | "UNIX_TIMESTAMP_ARRAY" | "UNKNOWN" | "STRUCT" | "STRUCT_ARRAY"),
1243
+ description: ::String?,
1244
+ unit: ::String?,
1245
+ allowed_values: Array[::String]?,
1246
+ min: ::Float?,
1247
+ max: ::Float?,
1248
+ assigned_value: ::String?,
1249
+ deprecation_message: ::String?,
1250
+ comment: ::String?,
1251
+ struct_fully_qualified_name: ::String?
1252
+ }?,
1253
+ attribute: {
1254
+ fully_qualified_name: ::String,
1255
+ data_type: ("INT8" | "UINT8" | "INT16" | "UINT16" | "INT32" | "UINT32" | "INT64" | "UINT64" | "BOOLEAN" | "FLOAT" | "DOUBLE" | "STRING" | "UNIX_TIMESTAMP" | "INT8_ARRAY" | "UINT8_ARRAY" | "INT16_ARRAY" | "UINT16_ARRAY" | "INT32_ARRAY" | "UINT32_ARRAY" | "INT64_ARRAY" | "UINT64_ARRAY" | "BOOLEAN_ARRAY" | "FLOAT_ARRAY" | "DOUBLE_ARRAY" | "STRING_ARRAY" | "UNIX_TIMESTAMP_ARRAY" | "UNKNOWN" | "STRUCT" | "STRUCT_ARRAY"),
1256
+ description: ::String?,
1257
+ unit: ::String?,
1258
+ allowed_values: Array[::String]?,
1259
+ min: ::Float?,
1260
+ max: ::Float?,
1261
+ assigned_value: ::String?,
1262
+ default_value: ::String?,
1263
+ deprecation_message: ::String?,
1264
+ comment: ::String?
1265
+ }?,
1266
+ struct: {
1267
+ fully_qualified_name: ::String,
1268
+ description: ::String?,
1269
+ deprecation_message: ::String?,
1270
+ comment: ::String?
1271
+ }?,
1272
+ property: {
1273
+ fully_qualified_name: ::String,
1274
+ data_type: ("INT8" | "UINT8" | "INT16" | "UINT16" | "INT32" | "UINT32" | "INT64" | "UINT64" | "BOOLEAN" | "FLOAT" | "DOUBLE" | "STRING" | "UNIX_TIMESTAMP" | "INT8_ARRAY" | "UINT8_ARRAY" | "INT16_ARRAY" | "UINT16_ARRAY" | "INT32_ARRAY" | "UINT32_ARRAY" | "INT64_ARRAY" | "UINT64_ARRAY" | "BOOLEAN_ARRAY" | "FLOAT_ARRAY" | "DOUBLE_ARRAY" | "STRING_ARRAY" | "UNIX_TIMESTAMP_ARRAY" | "UNKNOWN" | "STRUCT" | "STRUCT_ARRAY"),
1275
+ data_encoding: ("BINARY" | "TYPED")?,
1276
+ description: ::String?,
1277
+ deprecation_message: ::String?,
1278
+ comment: ::String?,
1279
+ struct_fully_qualified_name: ::String?
1280
+ }?
1281
+ },
1282
+ ],
1283
+ ?nodes_to_remove: Array[::String]
1284
+ ) -> _UpdateSignalCatalogResponseSuccess
1285
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSignalCatalogResponseSuccess
1286
+
1287
+ interface _UpdateVehicleResponseSuccess
1288
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateVehicleResponse]
1289
+ def vehicle_name: () -> ::String
1290
+ def arn: () -> ::String
1291
+ end
1292
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoTFleetWise/Client.html#update_vehicle-instance_method
1293
+ def update_vehicle: (
1294
+ vehicle_name: ::String,
1295
+ ?model_manifest_arn: ::String,
1296
+ ?decoder_manifest_arn: ::String,
1297
+ ?attributes: Hash[::String, ::String],
1298
+ ?attribute_update_mode: ("Overwrite" | "Merge")
1299
+ ) -> _UpdateVehicleResponseSuccess
1300
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateVehicleResponseSuccess
1301
+ end
1302
+ end
1303
+ end
1304
+