aws-sdk-lookoutequipment 1.26.0 → 1.27.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/client.rbs ADDED
@@ -0,0 +1,918 @@
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 LookoutEquipment
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/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 _CreateDatasetResponseSuccess
77
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDatasetResponse]
78
+ def dataset_name: () -> ::String
79
+ def dataset_arn: () -> ::String
80
+ def status: () -> ("CREATED" | "INGESTION_IN_PROGRESS" | "ACTIVE" | "IMPORT_IN_PROGRESS")
81
+ end
82
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#create_dataset-instance_method
83
+ def create_dataset: (
84
+ dataset_name: ::String,
85
+ ?dataset_schema: {
86
+ inline_data_schema: ::String?
87
+ },
88
+ ?server_side_kms_key_id: ::String,
89
+ client_token: ::String,
90
+ ?tags: Array[
91
+ {
92
+ key: ::String,
93
+ value: ::String
94
+ },
95
+ ]
96
+ ) -> _CreateDatasetResponseSuccess
97
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDatasetResponseSuccess
98
+
99
+ interface _CreateInferenceSchedulerResponseSuccess
100
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateInferenceSchedulerResponse]
101
+ def inference_scheduler_arn: () -> ::String
102
+ def inference_scheduler_name: () -> ::String
103
+ def status: () -> ("PENDING" | "RUNNING" | "STOPPING" | "STOPPED")
104
+ end
105
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#create_inference_scheduler-instance_method
106
+ def create_inference_scheduler: (
107
+ model_name: ::String,
108
+ inference_scheduler_name: ::String,
109
+ ?data_delay_offset_in_minutes: ::Integer,
110
+ data_upload_frequency: ("PT5M" | "PT10M" | "PT15M" | "PT30M" | "PT1H"),
111
+ data_input_configuration: {
112
+ s3_input_configuration: {
113
+ bucket: ::String,
114
+ prefix: ::String?
115
+ }?,
116
+ input_time_zone_offset: ::String?,
117
+ inference_input_name_configuration: {
118
+ timestamp_format: ::String?,
119
+ component_timestamp_delimiter: ::String?
120
+ }?
121
+ },
122
+ data_output_configuration: {
123
+ s3_output_configuration: {
124
+ bucket: ::String,
125
+ prefix: ::String?
126
+ },
127
+ kms_key_id: ::String?
128
+ },
129
+ role_arn: ::String,
130
+ ?server_side_kms_key_id: ::String,
131
+ client_token: ::String,
132
+ ?tags: Array[
133
+ {
134
+ key: ::String,
135
+ value: ::String
136
+ },
137
+ ]
138
+ ) -> _CreateInferenceSchedulerResponseSuccess
139
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInferenceSchedulerResponseSuccess
140
+
141
+ interface _CreateLabelResponseSuccess
142
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateLabelResponse]
143
+ def label_id: () -> ::String
144
+ end
145
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#create_label-instance_method
146
+ def create_label: (
147
+ label_group_name: ::String,
148
+ start_time: ::Time,
149
+ end_time: ::Time,
150
+ rating: ("ANOMALY" | "NO_ANOMALY" | "NEUTRAL"),
151
+ ?fault_code: ::String,
152
+ ?notes: ::String,
153
+ ?equipment: ::String,
154
+ client_token: ::String
155
+ ) -> _CreateLabelResponseSuccess
156
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLabelResponseSuccess
157
+
158
+ interface _CreateLabelGroupResponseSuccess
159
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateLabelGroupResponse]
160
+ def label_group_name: () -> ::String
161
+ def label_group_arn: () -> ::String
162
+ end
163
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#create_label_group-instance_method
164
+ def create_label_group: (
165
+ label_group_name: ::String,
166
+ ?fault_codes: Array[::String],
167
+ client_token: ::String,
168
+ ?tags: Array[
169
+ {
170
+ key: ::String,
171
+ value: ::String
172
+ },
173
+ ]
174
+ ) -> _CreateLabelGroupResponseSuccess
175
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLabelGroupResponseSuccess
176
+
177
+ interface _CreateModelResponseSuccess
178
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateModelResponse]
179
+ def model_arn: () -> ::String
180
+ def status: () -> ("IN_PROGRESS" | "SUCCESS" | "FAILED" | "IMPORT_IN_PROGRESS")
181
+ end
182
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#create_model-instance_method
183
+ def create_model: (
184
+ model_name: ::String,
185
+ dataset_name: ::String,
186
+ ?dataset_schema: {
187
+ inline_data_schema: ::String?
188
+ },
189
+ ?labels_input_configuration: {
190
+ s3_input_configuration: {
191
+ bucket: ::String,
192
+ prefix: ::String?
193
+ }?,
194
+ label_group_name: ::String?
195
+ },
196
+ client_token: ::String,
197
+ ?training_data_start_time: ::Time,
198
+ ?training_data_end_time: ::Time,
199
+ ?evaluation_data_start_time: ::Time,
200
+ ?evaluation_data_end_time: ::Time,
201
+ ?role_arn: ::String,
202
+ ?data_pre_processing_configuration: {
203
+ target_sampling_rate: ("PT1S" | "PT5S" | "PT10S" | "PT15S" | "PT30S" | "PT1M" | "PT5M" | "PT10M" | "PT15M" | "PT30M" | "PT1H")?
204
+ },
205
+ ?server_side_kms_key_id: ::String,
206
+ ?tags: Array[
207
+ {
208
+ key: ::String,
209
+ value: ::String
210
+ },
211
+ ],
212
+ ?off_condition: ::String
213
+ ) -> _CreateModelResponseSuccess
214
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateModelResponseSuccess
215
+
216
+ interface _CreateRetrainingSchedulerResponseSuccess
217
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateRetrainingSchedulerResponse]
218
+ def model_name: () -> ::String
219
+ def model_arn: () -> ::String
220
+ def status: () -> ("PENDING" | "RUNNING" | "STOPPING" | "STOPPED")
221
+ end
222
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#create_retraining_scheduler-instance_method
223
+ def create_retraining_scheduler: (
224
+ model_name: ::String,
225
+ ?retraining_start_date: ::Time,
226
+ retraining_frequency: ::String,
227
+ lookback_window: ::String,
228
+ ?promote_mode: ("MANAGED" | "MANUAL"),
229
+ client_token: ::String
230
+ ) -> _CreateRetrainingSchedulerResponseSuccess
231
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRetrainingSchedulerResponseSuccess
232
+
233
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#delete_dataset-instance_method
234
+ def delete_dataset: (
235
+ dataset_name: ::String
236
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
237
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
238
+
239
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#delete_inference_scheduler-instance_method
240
+ def delete_inference_scheduler: (
241
+ inference_scheduler_name: ::String
242
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
243
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
244
+
245
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#delete_label-instance_method
246
+ def delete_label: (
247
+ label_group_name: ::String,
248
+ label_id: ::String
249
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
250
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
251
+
252
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#delete_label_group-instance_method
253
+ def delete_label_group: (
254
+ label_group_name: ::String
255
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
256
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
257
+
258
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#delete_model-instance_method
259
+ def delete_model: (
260
+ model_name: ::String
261
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
262
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
263
+
264
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#delete_resource_policy-instance_method
265
+ def delete_resource_policy: (
266
+ resource_arn: ::String
267
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
268
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
269
+
270
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#delete_retraining_scheduler-instance_method
271
+ def delete_retraining_scheduler: (
272
+ model_name: ::String
273
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
274
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
275
+
276
+ interface _DescribeDataIngestionJobResponseSuccess
277
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDataIngestionJobResponse]
278
+ def job_id: () -> ::String
279
+ def dataset_arn: () -> ::String
280
+ def ingestion_input_configuration: () -> Types::IngestionInputConfiguration
281
+ def role_arn: () -> ::String
282
+ def created_at: () -> ::Time
283
+ def status: () -> ("IN_PROGRESS" | "SUCCESS" | "FAILED" | "IMPORT_IN_PROGRESS")
284
+ def failed_reason: () -> ::String
285
+ def data_quality_summary: () -> Types::DataQualitySummary
286
+ def ingested_files_summary: () -> Types::IngestedFilesSummary
287
+ def status_detail: () -> ::String
288
+ def ingested_data_size: () -> ::Integer
289
+ def data_start_time: () -> ::Time
290
+ def data_end_time: () -> ::Time
291
+ def source_dataset_arn: () -> ::String
292
+ end
293
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#describe_data_ingestion_job-instance_method
294
+ def describe_data_ingestion_job: (
295
+ job_id: ::String
296
+ ) -> _DescribeDataIngestionJobResponseSuccess
297
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDataIngestionJobResponseSuccess
298
+
299
+ interface _DescribeDatasetResponseSuccess
300
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDatasetResponse]
301
+ def dataset_name: () -> ::String
302
+ def dataset_arn: () -> ::String
303
+ def created_at: () -> ::Time
304
+ def last_updated_at: () -> ::Time
305
+ def status: () -> ("CREATED" | "INGESTION_IN_PROGRESS" | "ACTIVE" | "IMPORT_IN_PROGRESS")
306
+ def schema: () -> ::String
307
+ def server_side_kms_key_id: () -> ::String
308
+ def ingestion_input_configuration: () -> Types::IngestionInputConfiguration
309
+ def data_quality_summary: () -> Types::DataQualitySummary
310
+ def ingested_files_summary: () -> Types::IngestedFilesSummary
311
+ def role_arn: () -> ::String
312
+ def data_start_time: () -> ::Time
313
+ def data_end_time: () -> ::Time
314
+ def source_dataset_arn: () -> ::String
315
+ end
316
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#describe_dataset-instance_method
317
+ def describe_dataset: (
318
+ dataset_name: ::String
319
+ ) -> _DescribeDatasetResponseSuccess
320
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDatasetResponseSuccess
321
+
322
+ interface _DescribeInferenceSchedulerResponseSuccess
323
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeInferenceSchedulerResponse]
324
+ def model_arn: () -> ::String
325
+ def model_name: () -> ::String
326
+ def inference_scheduler_name: () -> ::String
327
+ def inference_scheduler_arn: () -> ::String
328
+ def status: () -> ("PENDING" | "RUNNING" | "STOPPING" | "STOPPED")
329
+ def data_delay_offset_in_minutes: () -> ::Integer
330
+ def data_upload_frequency: () -> ("PT5M" | "PT10M" | "PT15M" | "PT30M" | "PT1H")
331
+ def created_at: () -> ::Time
332
+ def updated_at: () -> ::Time
333
+ def data_input_configuration: () -> Types::InferenceInputConfiguration
334
+ def data_output_configuration: () -> Types::InferenceOutputConfiguration
335
+ def role_arn: () -> ::String
336
+ def server_side_kms_key_id: () -> ::String
337
+ def latest_inference_result: () -> ("ANOMALOUS" | "NORMAL")
338
+ end
339
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#describe_inference_scheduler-instance_method
340
+ def describe_inference_scheduler: (
341
+ inference_scheduler_name: ::String
342
+ ) -> _DescribeInferenceSchedulerResponseSuccess
343
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInferenceSchedulerResponseSuccess
344
+
345
+ interface _DescribeLabelResponseSuccess
346
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLabelResponse]
347
+ def label_group_name: () -> ::String
348
+ def label_group_arn: () -> ::String
349
+ def label_id: () -> ::String
350
+ def start_time: () -> ::Time
351
+ def end_time: () -> ::Time
352
+ def rating: () -> ("ANOMALY" | "NO_ANOMALY" | "NEUTRAL")
353
+ def fault_code: () -> ::String
354
+ def notes: () -> ::String
355
+ def equipment: () -> ::String
356
+ def created_at: () -> ::Time
357
+ end
358
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#describe_label-instance_method
359
+ def describe_label: (
360
+ label_group_name: ::String,
361
+ label_id: ::String
362
+ ) -> _DescribeLabelResponseSuccess
363
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLabelResponseSuccess
364
+
365
+ interface _DescribeLabelGroupResponseSuccess
366
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLabelGroupResponse]
367
+ def label_group_name: () -> ::String
368
+ def label_group_arn: () -> ::String
369
+ def fault_codes: () -> ::Array[::String]
370
+ def created_at: () -> ::Time
371
+ def updated_at: () -> ::Time
372
+ end
373
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#describe_label_group-instance_method
374
+ def describe_label_group: (
375
+ label_group_name: ::String
376
+ ) -> _DescribeLabelGroupResponseSuccess
377
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLabelGroupResponseSuccess
378
+
379
+ interface _DescribeModelResponseSuccess
380
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeModelResponse]
381
+ def model_name: () -> ::String
382
+ def model_arn: () -> ::String
383
+ def dataset_name: () -> ::String
384
+ def dataset_arn: () -> ::String
385
+ def schema: () -> ::String
386
+ def labels_input_configuration: () -> Types::LabelsInputConfiguration
387
+ def training_data_start_time: () -> ::Time
388
+ def training_data_end_time: () -> ::Time
389
+ def evaluation_data_start_time: () -> ::Time
390
+ def evaluation_data_end_time: () -> ::Time
391
+ def role_arn: () -> ::String
392
+ def data_pre_processing_configuration: () -> Types::DataPreProcessingConfiguration
393
+ def status: () -> ("IN_PROGRESS" | "SUCCESS" | "FAILED" | "IMPORT_IN_PROGRESS")
394
+ def training_execution_start_time: () -> ::Time
395
+ def training_execution_end_time: () -> ::Time
396
+ def failed_reason: () -> ::String
397
+ def model_metrics: () -> ::String
398
+ def last_updated_time: () -> ::Time
399
+ def created_at: () -> ::Time
400
+ def server_side_kms_key_id: () -> ::String
401
+ def off_condition: () -> ::String
402
+ def source_model_version_arn: () -> ::String
403
+ def import_job_start_time: () -> ::Time
404
+ def import_job_end_time: () -> ::Time
405
+ def active_model_version: () -> ::Integer
406
+ def active_model_version_arn: () -> ::String
407
+ def model_version_activated_at: () -> ::Time
408
+ def previous_active_model_version: () -> ::Integer
409
+ def previous_active_model_version_arn: () -> ::String
410
+ def previous_model_version_activated_at: () -> ::Time
411
+ def prior_model_metrics: () -> ::String
412
+ def latest_scheduled_retraining_failed_reason: () -> ::String
413
+ def latest_scheduled_retraining_status: () -> ("IN_PROGRESS" | "SUCCESS" | "FAILED" | "IMPORT_IN_PROGRESS" | "CANCELED")
414
+ def latest_scheduled_retraining_model_version: () -> ::Integer
415
+ def latest_scheduled_retraining_start_time: () -> ::Time
416
+ def latest_scheduled_retraining_available_data_in_days: () -> ::Integer
417
+ def next_scheduled_retraining_start_date: () -> ::Time
418
+ def accumulated_inference_data_start_time: () -> ::Time
419
+ def accumulated_inference_data_end_time: () -> ::Time
420
+ def retraining_scheduler_status: () -> ("PENDING" | "RUNNING" | "STOPPING" | "STOPPED")
421
+ end
422
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#describe_model-instance_method
423
+ def describe_model: (
424
+ model_name: ::String
425
+ ) -> _DescribeModelResponseSuccess
426
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeModelResponseSuccess
427
+
428
+ interface _DescribeModelVersionResponseSuccess
429
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeModelVersionResponse]
430
+ def model_name: () -> ::String
431
+ def model_arn: () -> ::String
432
+ def model_version: () -> ::Integer
433
+ def model_version_arn: () -> ::String
434
+ def status: () -> ("IN_PROGRESS" | "SUCCESS" | "FAILED" | "IMPORT_IN_PROGRESS" | "CANCELED")
435
+ def source_type: () -> ("TRAINING" | "RETRAINING" | "IMPORT")
436
+ def dataset_name: () -> ::String
437
+ def dataset_arn: () -> ::String
438
+ def schema: () -> ::String
439
+ def labels_input_configuration: () -> Types::LabelsInputConfiguration
440
+ def training_data_start_time: () -> ::Time
441
+ def training_data_end_time: () -> ::Time
442
+ def evaluation_data_start_time: () -> ::Time
443
+ def evaluation_data_end_time: () -> ::Time
444
+ def role_arn: () -> ::String
445
+ def data_pre_processing_configuration: () -> Types::DataPreProcessingConfiguration
446
+ def training_execution_start_time: () -> ::Time
447
+ def training_execution_end_time: () -> ::Time
448
+ def failed_reason: () -> ::String
449
+ def model_metrics: () -> ::String
450
+ def last_updated_time: () -> ::Time
451
+ def created_at: () -> ::Time
452
+ def server_side_kms_key_id: () -> ::String
453
+ def off_condition: () -> ::String
454
+ def source_model_version_arn: () -> ::String
455
+ def import_job_start_time: () -> ::Time
456
+ def import_job_end_time: () -> ::Time
457
+ def imported_data_size_in_bytes: () -> ::Integer
458
+ def prior_model_metrics: () -> ::String
459
+ def retraining_available_data_in_days: () -> ::Integer
460
+ def auto_promotion_result: () -> ("MODEL_PROMOTED" | "MODEL_NOT_PROMOTED" | "RETRAINING_INTERNAL_ERROR" | "RETRAINING_CUSTOMER_ERROR" | "RETRAINING_CANCELLED")
461
+ def auto_promotion_result_reason: () -> ::String
462
+ end
463
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#describe_model_version-instance_method
464
+ def describe_model_version: (
465
+ model_name: ::String,
466
+ model_version: ::Integer
467
+ ) -> _DescribeModelVersionResponseSuccess
468
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeModelVersionResponseSuccess
469
+
470
+ interface _DescribeResourcePolicyResponseSuccess
471
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeResourcePolicyResponse]
472
+ def policy_revision_id: () -> ::String
473
+ def resource_policy: () -> ::String
474
+ def creation_time: () -> ::Time
475
+ def last_modified_time: () -> ::Time
476
+ end
477
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#describe_resource_policy-instance_method
478
+ def describe_resource_policy: (
479
+ resource_arn: ::String
480
+ ) -> _DescribeResourcePolicyResponseSuccess
481
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeResourcePolicyResponseSuccess
482
+
483
+ interface _DescribeRetrainingSchedulerResponseSuccess
484
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeRetrainingSchedulerResponse]
485
+ def model_name: () -> ::String
486
+ def model_arn: () -> ::String
487
+ def retraining_start_date: () -> ::Time
488
+ def retraining_frequency: () -> ::String
489
+ def lookback_window: () -> ::String
490
+ def status: () -> ("PENDING" | "RUNNING" | "STOPPING" | "STOPPED")
491
+ def promote_mode: () -> ("MANAGED" | "MANUAL")
492
+ def created_at: () -> ::Time
493
+ def updated_at: () -> ::Time
494
+ end
495
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#describe_retraining_scheduler-instance_method
496
+ def describe_retraining_scheduler: (
497
+ model_name: ::String
498
+ ) -> _DescribeRetrainingSchedulerResponseSuccess
499
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeRetrainingSchedulerResponseSuccess
500
+
501
+ interface _ImportDatasetResponseSuccess
502
+ include ::Seahorse::Client::_ResponseSuccess[Types::ImportDatasetResponse]
503
+ def dataset_name: () -> ::String
504
+ def dataset_arn: () -> ::String
505
+ def status: () -> ("CREATED" | "INGESTION_IN_PROGRESS" | "ACTIVE" | "IMPORT_IN_PROGRESS")
506
+ def job_id: () -> ::String
507
+ end
508
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#import_dataset-instance_method
509
+ def import_dataset: (
510
+ source_dataset_arn: ::String,
511
+ ?dataset_name: ::String,
512
+ client_token: ::String,
513
+ ?server_side_kms_key_id: ::String,
514
+ ?tags: Array[
515
+ {
516
+ key: ::String,
517
+ value: ::String
518
+ },
519
+ ]
520
+ ) -> _ImportDatasetResponseSuccess
521
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportDatasetResponseSuccess
522
+
523
+ interface _ImportModelVersionResponseSuccess
524
+ include ::Seahorse::Client::_ResponseSuccess[Types::ImportModelVersionResponse]
525
+ def model_name: () -> ::String
526
+ def model_arn: () -> ::String
527
+ def model_version_arn: () -> ::String
528
+ def model_version: () -> ::Integer
529
+ def status: () -> ("IN_PROGRESS" | "SUCCESS" | "FAILED" | "IMPORT_IN_PROGRESS" | "CANCELED")
530
+ end
531
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#import_model_version-instance_method
532
+ def import_model_version: (
533
+ source_model_version_arn: ::String,
534
+ ?model_name: ::String,
535
+ dataset_name: ::String,
536
+ ?labels_input_configuration: {
537
+ s3_input_configuration: {
538
+ bucket: ::String,
539
+ prefix: ::String?
540
+ }?,
541
+ label_group_name: ::String?
542
+ },
543
+ client_token: ::String,
544
+ ?role_arn: ::String,
545
+ ?server_side_kms_key_id: ::String,
546
+ ?tags: Array[
547
+ {
548
+ key: ::String,
549
+ value: ::String
550
+ },
551
+ ],
552
+ ?inference_data_import_strategy: ("NO_IMPORT" | "ADD_WHEN_EMPTY" | "OVERWRITE")
553
+ ) -> _ImportModelVersionResponseSuccess
554
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportModelVersionResponseSuccess
555
+
556
+ interface _ListDataIngestionJobsResponseSuccess
557
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDataIngestionJobsResponse]
558
+ def next_token: () -> ::String
559
+ def data_ingestion_job_summaries: () -> ::Array[Types::DataIngestionJobSummary]
560
+ end
561
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#list_data_ingestion_jobs-instance_method
562
+ def list_data_ingestion_jobs: (
563
+ ?dataset_name: ::String,
564
+ ?next_token: ::String,
565
+ ?max_results: ::Integer,
566
+ ?status: ("IN_PROGRESS" | "SUCCESS" | "FAILED" | "IMPORT_IN_PROGRESS")
567
+ ) -> _ListDataIngestionJobsResponseSuccess
568
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataIngestionJobsResponseSuccess
569
+
570
+ interface _ListDatasetsResponseSuccess
571
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDatasetsResponse]
572
+ def next_token: () -> ::String
573
+ def dataset_summaries: () -> ::Array[Types::DatasetSummary]
574
+ end
575
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#list_datasets-instance_method
576
+ def list_datasets: (
577
+ ?next_token: ::String,
578
+ ?max_results: ::Integer,
579
+ ?dataset_name_begins_with: ::String
580
+ ) -> _ListDatasetsResponseSuccess
581
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDatasetsResponseSuccess
582
+
583
+ interface _ListInferenceEventsResponseSuccess
584
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListInferenceEventsResponse]
585
+ def next_token: () -> ::String
586
+ def inference_event_summaries: () -> ::Array[Types::InferenceEventSummary]
587
+ end
588
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#list_inference_events-instance_method
589
+ def list_inference_events: (
590
+ ?next_token: ::String,
591
+ ?max_results: ::Integer,
592
+ inference_scheduler_name: ::String,
593
+ interval_start_time: ::Time,
594
+ interval_end_time: ::Time
595
+ ) -> _ListInferenceEventsResponseSuccess
596
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListInferenceEventsResponseSuccess
597
+
598
+ interface _ListInferenceExecutionsResponseSuccess
599
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListInferenceExecutionsResponse]
600
+ def next_token: () -> ::String
601
+ def inference_execution_summaries: () -> ::Array[Types::InferenceExecutionSummary]
602
+ end
603
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#list_inference_executions-instance_method
604
+ def list_inference_executions: (
605
+ ?next_token: ::String,
606
+ ?max_results: ::Integer,
607
+ inference_scheduler_name: ::String,
608
+ ?data_start_time_after: ::Time,
609
+ ?data_end_time_before: ::Time,
610
+ ?status: ("IN_PROGRESS" | "SUCCESS" | "FAILED")
611
+ ) -> _ListInferenceExecutionsResponseSuccess
612
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListInferenceExecutionsResponseSuccess
613
+
614
+ interface _ListInferenceSchedulersResponseSuccess
615
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListInferenceSchedulersResponse]
616
+ def next_token: () -> ::String
617
+ def inference_scheduler_summaries: () -> ::Array[Types::InferenceSchedulerSummary]
618
+ end
619
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#list_inference_schedulers-instance_method
620
+ def list_inference_schedulers: (
621
+ ?next_token: ::String,
622
+ ?max_results: ::Integer,
623
+ ?inference_scheduler_name_begins_with: ::String,
624
+ ?model_name: ::String,
625
+ ?status: ("PENDING" | "RUNNING" | "STOPPING" | "STOPPED")
626
+ ) -> _ListInferenceSchedulersResponseSuccess
627
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListInferenceSchedulersResponseSuccess
628
+
629
+ interface _ListLabelGroupsResponseSuccess
630
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListLabelGroupsResponse]
631
+ def next_token: () -> ::String
632
+ def label_group_summaries: () -> ::Array[Types::LabelGroupSummary]
633
+ end
634
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#list_label_groups-instance_method
635
+ def list_label_groups: (
636
+ ?label_group_name_begins_with: ::String,
637
+ ?next_token: ::String,
638
+ ?max_results: ::Integer
639
+ ) -> _ListLabelGroupsResponseSuccess
640
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLabelGroupsResponseSuccess
641
+
642
+ interface _ListLabelsResponseSuccess
643
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListLabelsResponse]
644
+ def next_token: () -> ::String
645
+ def label_summaries: () -> ::Array[Types::LabelSummary]
646
+ end
647
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#list_labels-instance_method
648
+ def list_labels: (
649
+ label_group_name: ::String,
650
+ ?interval_start_time: ::Time,
651
+ ?interval_end_time: ::Time,
652
+ ?fault_code: ::String,
653
+ ?equipment: ::String,
654
+ ?next_token: ::String,
655
+ ?max_results: ::Integer
656
+ ) -> _ListLabelsResponseSuccess
657
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLabelsResponseSuccess
658
+
659
+ interface _ListModelVersionsResponseSuccess
660
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListModelVersionsResponse]
661
+ def next_token: () -> ::String
662
+ def model_version_summaries: () -> ::Array[Types::ModelVersionSummary]
663
+ end
664
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#list_model_versions-instance_method
665
+ def list_model_versions: (
666
+ model_name: ::String,
667
+ ?next_token: ::String,
668
+ ?max_results: ::Integer,
669
+ ?status: ("IN_PROGRESS" | "SUCCESS" | "FAILED" | "IMPORT_IN_PROGRESS" | "CANCELED"),
670
+ ?source_type: ("TRAINING" | "RETRAINING" | "IMPORT"),
671
+ ?created_at_end_time: ::Time,
672
+ ?created_at_start_time: ::Time,
673
+ ?max_model_version: ::Integer,
674
+ ?min_model_version: ::Integer
675
+ ) -> _ListModelVersionsResponseSuccess
676
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListModelVersionsResponseSuccess
677
+
678
+ interface _ListModelsResponseSuccess
679
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListModelsResponse]
680
+ def next_token: () -> ::String
681
+ def model_summaries: () -> ::Array[Types::ModelSummary]
682
+ end
683
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#list_models-instance_method
684
+ def list_models: (
685
+ ?next_token: ::String,
686
+ ?max_results: ::Integer,
687
+ ?status: ("IN_PROGRESS" | "SUCCESS" | "FAILED" | "IMPORT_IN_PROGRESS"),
688
+ ?model_name_begins_with: ::String,
689
+ ?dataset_name_begins_with: ::String
690
+ ) -> _ListModelsResponseSuccess
691
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListModelsResponseSuccess
692
+
693
+ interface _ListRetrainingSchedulersResponseSuccess
694
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRetrainingSchedulersResponse]
695
+ def retraining_scheduler_summaries: () -> ::Array[Types::RetrainingSchedulerSummary]
696
+ def next_token: () -> ::String
697
+ end
698
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#list_retraining_schedulers-instance_method
699
+ def list_retraining_schedulers: (
700
+ ?model_name_begins_with: ::String,
701
+ ?status: ("PENDING" | "RUNNING" | "STOPPING" | "STOPPED"),
702
+ ?next_token: ::String,
703
+ ?max_results: ::Integer
704
+ ) -> _ListRetrainingSchedulersResponseSuccess
705
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRetrainingSchedulersResponseSuccess
706
+
707
+ interface _ListSensorStatisticsResponseSuccess
708
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSensorStatisticsResponse]
709
+ def sensor_statistics_summaries: () -> ::Array[Types::SensorStatisticsSummary]
710
+ def next_token: () -> ::String
711
+ end
712
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#list_sensor_statistics-instance_method
713
+ def list_sensor_statistics: (
714
+ dataset_name: ::String,
715
+ ?ingestion_job_id: ::String,
716
+ ?max_results: ::Integer,
717
+ ?next_token: ::String
718
+ ) -> _ListSensorStatisticsResponseSuccess
719
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSensorStatisticsResponseSuccess
720
+
721
+ interface _ListTagsForResourceResponseSuccess
722
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
723
+ def tags: () -> ::Array[Types::Tag]
724
+ end
725
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#list_tags_for_resource-instance_method
726
+ def list_tags_for_resource: (
727
+ resource_arn: ::String
728
+ ) -> _ListTagsForResourceResponseSuccess
729
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
730
+
731
+ interface _PutResourcePolicyResponseSuccess
732
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutResourcePolicyResponse]
733
+ def resource_arn: () -> ::String
734
+ def policy_revision_id: () -> ::String
735
+ end
736
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#put_resource_policy-instance_method
737
+ def put_resource_policy: (
738
+ resource_arn: ::String,
739
+ resource_policy: ::String,
740
+ ?policy_revision_id: ::String,
741
+ client_token: ::String
742
+ ) -> _PutResourcePolicyResponseSuccess
743
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutResourcePolicyResponseSuccess
744
+
745
+ interface _StartDataIngestionJobResponseSuccess
746
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartDataIngestionJobResponse]
747
+ def job_id: () -> ::String
748
+ def status: () -> ("IN_PROGRESS" | "SUCCESS" | "FAILED" | "IMPORT_IN_PROGRESS")
749
+ end
750
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#start_data_ingestion_job-instance_method
751
+ def start_data_ingestion_job: (
752
+ dataset_name: ::String,
753
+ ingestion_input_configuration: {
754
+ s3_input_configuration: {
755
+ bucket: ::String,
756
+ prefix: ::String?,
757
+ key_pattern: ::String?
758
+ }
759
+ },
760
+ role_arn: ::String,
761
+ client_token: ::String
762
+ ) -> _StartDataIngestionJobResponseSuccess
763
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDataIngestionJobResponseSuccess
764
+
765
+ interface _StartInferenceSchedulerResponseSuccess
766
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartInferenceSchedulerResponse]
767
+ def model_arn: () -> ::String
768
+ def model_name: () -> ::String
769
+ def inference_scheduler_name: () -> ::String
770
+ def inference_scheduler_arn: () -> ::String
771
+ def status: () -> ("PENDING" | "RUNNING" | "STOPPING" | "STOPPED")
772
+ end
773
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#start_inference_scheduler-instance_method
774
+ def start_inference_scheduler: (
775
+ inference_scheduler_name: ::String
776
+ ) -> _StartInferenceSchedulerResponseSuccess
777
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartInferenceSchedulerResponseSuccess
778
+
779
+ interface _StartRetrainingSchedulerResponseSuccess
780
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartRetrainingSchedulerResponse]
781
+ def model_name: () -> ::String
782
+ def model_arn: () -> ::String
783
+ def status: () -> ("PENDING" | "RUNNING" | "STOPPING" | "STOPPED")
784
+ end
785
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#start_retraining_scheduler-instance_method
786
+ def start_retraining_scheduler: (
787
+ model_name: ::String
788
+ ) -> _StartRetrainingSchedulerResponseSuccess
789
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartRetrainingSchedulerResponseSuccess
790
+
791
+ interface _StopInferenceSchedulerResponseSuccess
792
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopInferenceSchedulerResponse]
793
+ def model_arn: () -> ::String
794
+ def model_name: () -> ::String
795
+ def inference_scheduler_name: () -> ::String
796
+ def inference_scheduler_arn: () -> ::String
797
+ def status: () -> ("PENDING" | "RUNNING" | "STOPPING" | "STOPPED")
798
+ end
799
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#stop_inference_scheduler-instance_method
800
+ def stop_inference_scheduler: (
801
+ inference_scheduler_name: ::String
802
+ ) -> _StopInferenceSchedulerResponseSuccess
803
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopInferenceSchedulerResponseSuccess
804
+
805
+ interface _StopRetrainingSchedulerResponseSuccess
806
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopRetrainingSchedulerResponse]
807
+ def model_name: () -> ::String
808
+ def model_arn: () -> ::String
809
+ def status: () -> ("PENDING" | "RUNNING" | "STOPPING" | "STOPPED")
810
+ end
811
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#stop_retraining_scheduler-instance_method
812
+ def stop_retraining_scheduler: (
813
+ model_name: ::String
814
+ ) -> _StopRetrainingSchedulerResponseSuccess
815
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopRetrainingSchedulerResponseSuccess
816
+
817
+ interface _TagResourceResponseSuccess
818
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
819
+ end
820
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#tag_resource-instance_method
821
+ def tag_resource: (
822
+ resource_arn: ::String,
823
+ tags: Array[
824
+ {
825
+ key: ::String,
826
+ value: ::String
827
+ },
828
+ ]
829
+ ) -> _TagResourceResponseSuccess
830
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
831
+
832
+ interface _UntagResourceResponseSuccess
833
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
834
+ end
835
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#untag_resource-instance_method
836
+ def untag_resource: (
837
+ resource_arn: ::String,
838
+ tag_keys: Array[::String]
839
+ ) -> _UntagResourceResponseSuccess
840
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
841
+
842
+ interface _UpdateActiveModelVersionResponseSuccess
843
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateActiveModelVersionResponse]
844
+ def model_name: () -> ::String
845
+ def model_arn: () -> ::String
846
+ def current_active_version: () -> ::Integer
847
+ def previous_active_version: () -> ::Integer
848
+ def current_active_version_arn: () -> ::String
849
+ def previous_active_version_arn: () -> ::String
850
+ end
851
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#update_active_model_version-instance_method
852
+ def update_active_model_version: (
853
+ model_name: ::String,
854
+ model_version: ::Integer
855
+ ) -> _UpdateActiveModelVersionResponseSuccess
856
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateActiveModelVersionResponseSuccess
857
+
858
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#update_inference_scheduler-instance_method
859
+ def update_inference_scheduler: (
860
+ inference_scheduler_name: ::String,
861
+ ?data_delay_offset_in_minutes: ::Integer,
862
+ ?data_upload_frequency: ("PT5M" | "PT10M" | "PT15M" | "PT30M" | "PT1H"),
863
+ ?data_input_configuration: {
864
+ s3_input_configuration: {
865
+ bucket: ::String,
866
+ prefix: ::String?
867
+ }?,
868
+ input_time_zone_offset: ::String?,
869
+ inference_input_name_configuration: {
870
+ timestamp_format: ::String?,
871
+ component_timestamp_delimiter: ::String?
872
+ }?
873
+ },
874
+ ?data_output_configuration: {
875
+ s3_output_configuration: {
876
+ bucket: ::String,
877
+ prefix: ::String?
878
+ },
879
+ kms_key_id: ::String?
880
+ },
881
+ ?role_arn: ::String
882
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
883
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
884
+
885
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#update_label_group-instance_method
886
+ def update_label_group: (
887
+ label_group_name: ::String,
888
+ ?fault_codes: Array[::String]
889
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
890
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
891
+
892
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#update_model-instance_method
893
+ def update_model: (
894
+ model_name: ::String,
895
+ ?labels_input_configuration: {
896
+ s3_input_configuration: {
897
+ bucket: ::String,
898
+ prefix: ::String?
899
+ }?,
900
+ label_group_name: ::String?
901
+ },
902
+ ?role_arn: ::String
903
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
904
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
905
+
906
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutEquipment/Client.html#update_retraining_scheduler-instance_method
907
+ def update_retraining_scheduler: (
908
+ model_name: ::String,
909
+ ?retraining_start_date: ::Time,
910
+ ?retraining_frequency: ::String,
911
+ ?lookback_window: ::String,
912
+ ?promote_mode: ("MANAGED" | "MANUAL")
913
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
914
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
915
+ end
916
+ end
917
+ end
918
+