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