aws-sdk-lookoutforvision 1.28.0 → 1.29.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lookoutforvision/client.rb +1 -1
- data/lib/aws-sdk-lookoutforvision/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-lookoutforvision.rb +1 -1
- data/sig/client.rbs +393 -0
- data/sig/errors.rbs +49 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +533 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c62c41aed16e757b44c0d5d0443bc55f306c24464c40ee6e724f69a6561422d
|
4
|
+
data.tar.gz: 19d6b70899e205a409336c1ed5f51184b2e2f7a4b136e4a63218f849bf8fd079
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 18007d57e883004ffbe5538293d1ea95242908a65a115838e705596e5d3dc98901ed458379ddf01a37a7a75b8b6a811a6f4d8b75660f9945b7ea7cb6b330e4f7
|
7
|
+
data.tar.gz: 5c4cf50ac23875dfdabb3bf7fa3eda4a7cac9f8687fbee13c957c4530db42c921fc7aeb6e467592eacfeac055e8f5681ba47affd94a3810f8ffa2914b52a378f
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.29.0
|
@@ -1835,7 +1835,7 @@ module Aws::LookoutforVision
|
|
1835
1835
|
params: params,
|
1836
1836
|
config: config)
|
1837
1837
|
context[:gem_name] = 'aws-sdk-lookoutforvision'
|
1838
|
-
context[:gem_version] = '1.
|
1838
|
+
context[:gem_version] = '1.29.0'
|
1839
1839
|
Seahorse::Client::Request.new(handlers, context)
|
1840
1840
|
end
|
1841
1841
|
|
@@ -14,6 +14,7 @@ module Aws::LookoutforVision
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::LookoutforVision::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
data/sig/client.rbs
ADDED
@@ -0,0 +1,393 @@
|
|
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 LookoutforVision
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/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
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> instance
|
72
|
+
| (?Hash[Symbol, untyped]) -> instance
|
73
|
+
|
74
|
+
|
75
|
+
interface _CreateDatasetResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDatasetResponse]
|
77
|
+
def dataset_metadata: () -> Types::DatasetMetadata
|
78
|
+
end
|
79
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/Client.html#create_dataset-instance_method
|
80
|
+
def create_dataset: (
|
81
|
+
project_name: ::String,
|
82
|
+
dataset_type: ::String,
|
83
|
+
?dataset_source: {
|
84
|
+
ground_truth_manifest: {
|
85
|
+
s3_object: {
|
86
|
+
bucket: ::String,
|
87
|
+
key: ::String,
|
88
|
+
version_id: ::String?
|
89
|
+
}?
|
90
|
+
}?
|
91
|
+
},
|
92
|
+
?client_token: ::String
|
93
|
+
) -> _CreateDatasetResponseSuccess
|
94
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDatasetResponseSuccess
|
95
|
+
|
96
|
+
interface _CreateModelResponseSuccess
|
97
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateModelResponse]
|
98
|
+
def model_metadata: () -> Types::ModelMetadata
|
99
|
+
end
|
100
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/Client.html#create_model-instance_method
|
101
|
+
def create_model: (
|
102
|
+
project_name: ::String,
|
103
|
+
?description: ::String,
|
104
|
+
?client_token: ::String,
|
105
|
+
output_config: {
|
106
|
+
s3_location: {
|
107
|
+
bucket: ::String,
|
108
|
+
prefix: ::String?
|
109
|
+
}
|
110
|
+
},
|
111
|
+
?kms_key_id: ::String,
|
112
|
+
?tags: Array[
|
113
|
+
{
|
114
|
+
key: ::String,
|
115
|
+
value: ::String
|
116
|
+
},
|
117
|
+
]
|
118
|
+
) -> _CreateModelResponseSuccess
|
119
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateModelResponseSuccess
|
120
|
+
|
121
|
+
interface _CreateProjectResponseSuccess
|
122
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateProjectResponse]
|
123
|
+
def project_metadata: () -> Types::ProjectMetadata
|
124
|
+
end
|
125
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/Client.html#create_project-instance_method
|
126
|
+
def create_project: (
|
127
|
+
project_name: ::String,
|
128
|
+
?client_token: ::String
|
129
|
+
) -> _CreateProjectResponseSuccess
|
130
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProjectResponseSuccess
|
131
|
+
|
132
|
+
interface _DeleteDatasetResponseSuccess
|
133
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDatasetResponse]
|
134
|
+
end
|
135
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/Client.html#delete_dataset-instance_method
|
136
|
+
def delete_dataset: (
|
137
|
+
project_name: ::String,
|
138
|
+
dataset_type: ::String,
|
139
|
+
?client_token: ::String
|
140
|
+
) -> _DeleteDatasetResponseSuccess
|
141
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDatasetResponseSuccess
|
142
|
+
|
143
|
+
interface _DeleteModelResponseSuccess
|
144
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteModelResponse]
|
145
|
+
def model_arn: () -> ::String
|
146
|
+
end
|
147
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/Client.html#delete_model-instance_method
|
148
|
+
def delete_model: (
|
149
|
+
project_name: ::String,
|
150
|
+
model_version: ::String,
|
151
|
+
?client_token: ::String
|
152
|
+
) -> _DeleteModelResponseSuccess
|
153
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteModelResponseSuccess
|
154
|
+
|
155
|
+
interface _DeleteProjectResponseSuccess
|
156
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteProjectResponse]
|
157
|
+
def project_arn: () -> ::String
|
158
|
+
end
|
159
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/Client.html#delete_project-instance_method
|
160
|
+
def delete_project: (
|
161
|
+
project_name: ::String,
|
162
|
+
?client_token: ::String
|
163
|
+
) -> _DeleteProjectResponseSuccess
|
164
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteProjectResponseSuccess
|
165
|
+
|
166
|
+
interface _DescribeDatasetResponseSuccess
|
167
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDatasetResponse]
|
168
|
+
def dataset_description: () -> Types::DatasetDescription
|
169
|
+
end
|
170
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/Client.html#describe_dataset-instance_method
|
171
|
+
def describe_dataset: (
|
172
|
+
project_name: ::String,
|
173
|
+
dataset_type: ::String
|
174
|
+
) -> _DescribeDatasetResponseSuccess
|
175
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDatasetResponseSuccess
|
176
|
+
|
177
|
+
interface _DescribeModelResponseSuccess
|
178
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeModelResponse]
|
179
|
+
def model_description: () -> Types::ModelDescription
|
180
|
+
end
|
181
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/Client.html#describe_model-instance_method
|
182
|
+
def describe_model: (
|
183
|
+
project_name: ::String,
|
184
|
+
model_version: ::String
|
185
|
+
) -> _DescribeModelResponseSuccess
|
186
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeModelResponseSuccess
|
187
|
+
|
188
|
+
interface _DescribeModelPackagingJobResponseSuccess
|
189
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeModelPackagingJobResponse]
|
190
|
+
def model_packaging_description: () -> Types::ModelPackagingDescription
|
191
|
+
end
|
192
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/Client.html#describe_model_packaging_job-instance_method
|
193
|
+
def describe_model_packaging_job: (
|
194
|
+
project_name: ::String,
|
195
|
+
job_name: ::String
|
196
|
+
) -> _DescribeModelPackagingJobResponseSuccess
|
197
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeModelPackagingJobResponseSuccess
|
198
|
+
|
199
|
+
interface _DescribeProjectResponseSuccess
|
200
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeProjectResponse]
|
201
|
+
def project_description: () -> Types::ProjectDescription
|
202
|
+
end
|
203
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/Client.html#describe_project-instance_method
|
204
|
+
def describe_project: (
|
205
|
+
project_name: ::String
|
206
|
+
) -> _DescribeProjectResponseSuccess
|
207
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeProjectResponseSuccess
|
208
|
+
|
209
|
+
interface _DetectAnomaliesResponseSuccess
|
210
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DetectAnomaliesResponse]
|
211
|
+
def detect_anomaly_result: () -> Types::DetectAnomalyResult
|
212
|
+
end
|
213
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/Client.html#detect_anomalies-instance_method
|
214
|
+
def detect_anomalies: (
|
215
|
+
project_name: ::String,
|
216
|
+
model_version: ::String,
|
217
|
+
body: ::String,
|
218
|
+
content_type: ::String
|
219
|
+
) -> _DetectAnomaliesResponseSuccess
|
220
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DetectAnomaliesResponseSuccess
|
221
|
+
|
222
|
+
interface _ListDatasetEntriesResponseSuccess
|
223
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDatasetEntriesResponse]
|
224
|
+
def dataset_entries: () -> ::Array[::String]
|
225
|
+
def next_token: () -> ::String
|
226
|
+
end
|
227
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/Client.html#list_dataset_entries-instance_method
|
228
|
+
def list_dataset_entries: (
|
229
|
+
project_name: ::String,
|
230
|
+
dataset_type: ::String,
|
231
|
+
?labeled: bool,
|
232
|
+
?anomaly_class: ::String,
|
233
|
+
?before_creation_date: ::Time,
|
234
|
+
?after_creation_date: ::Time,
|
235
|
+
?next_token: ::String,
|
236
|
+
?max_results: ::Integer,
|
237
|
+
?source_ref_contains: ::String
|
238
|
+
) -> _ListDatasetEntriesResponseSuccess
|
239
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDatasetEntriesResponseSuccess
|
240
|
+
|
241
|
+
interface _ListModelPackagingJobsResponseSuccess
|
242
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListModelPackagingJobsResponse]
|
243
|
+
def model_packaging_jobs: () -> ::Array[Types::ModelPackagingJobMetadata]
|
244
|
+
def next_token: () -> ::String
|
245
|
+
end
|
246
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/Client.html#list_model_packaging_jobs-instance_method
|
247
|
+
def list_model_packaging_jobs: (
|
248
|
+
project_name: ::String,
|
249
|
+
?next_token: ::String,
|
250
|
+
?max_results: ::Integer
|
251
|
+
) -> _ListModelPackagingJobsResponseSuccess
|
252
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListModelPackagingJobsResponseSuccess
|
253
|
+
|
254
|
+
interface _ListModelsResponseSuccess
|
255
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListModelsResponse]
|
256
|
+
def models: () -> ::Array[Types::ModelMetadata]
|
257
|
+
def next_token: () -> ::String
|
258
|
+
end
|
259
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/Client.html#list_models-instance_method
|
260
|
+
def list_models: (
|
261
|
+
project_name: ::String,
|
262
|
+
?next_token: ::String,
|
263
|
+
?max_results: ::Integer
|
264
|
+
) -> _ListModelsResponseSuccess
|
265
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListModelsResponseSuccess
|
266
|
+
|
267
|
+
interface _ListProjectsResponseSuccess
|
268
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListProjectsResponse]
|
269
|
+
def projects: () -> ::Array[Types::ProjectMetadata]
|
270
|
+
def next_token: () -> ::String
|
271
|
+
end
|
272
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/Client.html#list_projects-instance_method
|
273
|
+
def list_projects: (
|
274
|
+
?next_token: ::String,
|
275
|
+
?max_results: ::Integer
|
276
|
+
) -> _ListProjectsResponseSuccess
|
277
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProjectsResponseSuccess
|
278
|
+
|
279
|
+
interface _ListTagsForResourceResponseSuccess
|
280
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
281
|
+
def tags: () -> ::Array[Types::Tag]
|
282
|
+
end
|
283
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/Client.html#list_tags_for_resource-instance_method
|
284
|
+
def list_tags_for_resource: (
|
285
|
+
resource_arn: ::String
|
286
|
+
) -> _ListTagsForResourceResponseSuccess
|
287
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
288
|
+
|
289
|
+
interface _StartModelResponseSuccess
|
290
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartModelResponse]
|
291
|
+
def status: () -> ("STARTING_HOSTING" | "HOSTED" | "HOSTING_FAILED" | "STOPPING_HOSTING" | "SYSTEM_UPDATING")
|
292
|
+
end
|
293
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/Client.html#start_model-instance_method
|
294
|
+
def start_model: (
|
295
|
+
project_name: ::String,
|
296
|
+
model_version: ::String,
|
297
|
+
min_inference_units: ::Integer,
|
298
|
+
?client_token: ::String,
|
299
|
+
?max_inference_units: ::Integer
|
300
|
+
) -> _StartModelResponseSuccess
|
301
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartModelResponseSuccess
|
302
|
+
|
303
|
+
interface _StartModelPackagingJobResponseSuccess
|
304
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartModelPackagingJobResponse]
|
305
|
+
def job_name: () -> ::String
|
306
|
+
end
|
307
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/Client.html#start_model_packaging_job-instance_method
|
308
|
+
def start_model_packaging_job: (
|
309
|
+
project_name: ::String,
|
310
|
+
model_version: ::String,
|
311
|
+
?job_name: ::String,
|
312
|
+
configuration: {
|
313
|
+
greengrass: {
|
314
|
+
compiler_options: ::String?,
|
315
|
+
target_device: ("jetson_xavier")?,
|
316
|
+
target_platform: {
|
317
|
+
os: ("LINUX"),
|
318
|
+
arch: ("ARM64" | "X86_64"),
|
319
|
+
accelerator: ("NVIDIA")?
|
320
|
+
}?,
|
321
|
+
s3_output_location: {
|
322
|
+
bucket: ::String,
|
323
|
+
prefix: ::String?
|
324
|
+
},
|
325
|
+
component_name: ::String,
|
326
|
+
component_version: ::String?,
|
327
|
+
component_description: ::String?,
|
328
|
+
tags: Array[
|
329
|
+
{
|
330
|
+
key: ::String,
|
331
|
+
value: ::String
|
332
|
+
},
|
333
|
+
]?
|
334
|
+
}
|
335
|
+
},
|
336
|
+
?description: ::String,
|
337
|
+
?client_token: ::String
|
338
|
+
) -> _StartModelPackagingJobResponseSuccess
|
339
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartModelPackagingJobResponseSuccess
|
340
|
+
|
341
|
+
interface _StopModelResponseSuccess
|
342
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopModelResponse]
|
343
|
+
def status: () -> ("STARTING_HOSTING" | "HOSTED" | "HOSTING_FAILED" | "STOPPING_HOSTING" | "SYSTEM_UPDATING")
|
344
|
+
end
|
345
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/Client.html#stop_model-instance_method
|
346
|
+
def stop_model: (
|
347
|
+
project_name: ::String,
|
348
|
+
model_version: ::String,
|
349
|
+
?client_token: ::String
|
350
|
+
) -> _StopModelResponseSuccess
|
351
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopModelResponseSuccess
|
352
|
+
|
353
|
+
interface _TagResourceResponseSuccess
|
354
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
355
|
+
end
|
356
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/Client.html#tag_resource-instance_method
|
357
|
+
def tag_resource: (
|
358
|
+
resource_arn: ::String,
|
359
|
+
tags: Array[
|
360
|
+
{
|
361
|
+
key: ::String,
|
362
|
+
value: ::String
|
363
|
+
},
|
364
|
+
]
|
365
|
+
) -> _TagResourceResponseSuccess
|
366
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
367
|
+
|
368
|
+
interface _UntagResourceResponseSuccess
|
369
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
370
|
+
end
|
371
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/Client.html#untag_resource-instance_method
|
372
|
+
def untag_resource: (
|
373
|
+
resource_arn: ::String,
|
374
|
+
tag_keys: Array[::String]
|
375
|
+
) -> _UntagResourceResponseSuccess
|
376
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
377
|
+
|
378
|
+
interface _UpdateDatasetEntriesResponseSuccess
|
379
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDatasetEntriesResponse]
|
380
|
+
def status: () -> ("CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "CREATE_FAILED" | "UPDATE_IN_PROGRESS" | "UPDATE_COMPLETE" | "UPDATE_FAILED_ROLLBACK_IN_PROGRESS" | "UPDATE_FAILED_ROLLBACK_COMPLETE" | "DELETE_IN_PROGRESS" | "DELETE_COMPLETE" | "DELETE_FAILED")
|
381
|
+
end
|
382
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/Client.html#update_dataset_entries-instance_method
|
383
|
+
def update_dataset_entries: (
|
384
|
+
project_name: ::String,
|
385
|
+
dataset_type: ::String,
|
386
|
+
changes: ::String,
|
387
|
+
?client_token: ::String
|
388
|
+
) -> _UpdateDatasetEntriesResponseSuccess
|
389
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDatasetEntriesResponseSuccess
|
390
|
+
end
|
391
|
+
end
|
392
|
+
end
|
393
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,49 @@
|
|
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 LookoutforVision
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class AccessDeniedException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class ConflictException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
def resource_id: () -> ::String
|
20
|
+
def resource_type: () -> ::String
|
21
|
+
end
|
22
|
+
class InternalServerException < ::Aws::Errors::ServiceError
|
23
|
+
def message: () -> ::String
|
24
|
+
def retry_after_seconds: () -> ::String
|
25
|
+
end
|
26
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
def resource_id: () -> ::String
|
29
|
+
def resource_type: () -> ::String
|
30
|
+
end
|
31
|
+
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
32
|
+
def message: () -> ::String
|
33
|
+
def resource_id: () -> ::String
|
34
|
+
def resource_type: () -> ::String
|
35
|
+
def quota_code: () -> ::String
|
36
|
+
def service_code: () -> ::String
|
37
|
+
end
|
38
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
39
|
+
def message: () -> ::String
|
40
|
+
def quota_code: () -> ::String
|
41
|
+
def service_code: () -> ::String
|
42
|
+
def retry_after_seconds: () -> ::String
|
43
|
+
end
|
44
|
+
class ValidationException < ::Aws::Errors::ServiceError
|
45
|
+
def message: () -> ::String
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
data/sig/resource.rbs
ADDED
@@ -0,0 +1,79 @@
|
|
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 LookoutforVision
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LookoutforVision/Resource.html#initialize-instance_method
|
13
|
+
def initialize: (
|
14
|
+
?client: Client,
|
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
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> void
|
72
|
+
| (?Hash[Symbol, untyped]) -> void
|
73
|
+
|
74
|
+
def client: () -> Client
|
75
|
+
|
76
|
+
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
data/sig/types.rbs
ADDED
@@ -0,0 +1,533 @@
|
|
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::LookoutforVision
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class Anomaly
|
17
|
+
attr_accessor name: ::String
|
18
|
+
attr_accessor pixel_anomaly: Types::PixelAnomaly
|
19
|
+
SENSITIVE: []
|
20
|
+
end
|
21
|
+
|
22
|
+
class ConflictException
|
23
|
+
attr_accessor message: ::String
|
24
|
+
attr_accessor resource_id: ::String
|
25
|
+
attr_accessor resource_type: ("PROJECT" | "DATASET" | "MODEL" | "TRIAL" | "MODEL_PACKAGE_JOB")
|
26
|
+
SENSITIVE: []
|
27
|
+
end
|
28
|
+
|
29
|
+
class CreateDatasetRequest
|
30
|
+
attr_accessor project_name: ::String
|
31
|
+
attr_accessor dataset_type: ::String
|
32
|
+
attr_accessor dataset_source: Types::DatasetSource
|
33
|
+
attr_accessor client_token: ::String
|
34
|
+
SENSITIVE: []
|
35
|
+
end
|
36
|
+
|
37
|
+
class CreateDatasetResponse
|
38
|
+
attr_accessor dataset_metadata: Types::DatasetMetadata
|
39
|
+
SENSITIVE: []
|
40
|
+
end
|
41
|
+
|
42
|
+
class CreateModelRequest
|
43
|
+
attr_accessor project_name: ::String
|
44
|
+
attr_accessor description: ::String
|
45
|
+
attr_accessor client_token: ::String
|
46
|
+
attr_accessor output_config: Types::OutputConfig
|
47
|
+
attr_accessor kms_key_id: ::String
|
48
|
+
attr_accessor tags: ::Array[Types::Tag]
|
49
|
+
SENSITIVE: []
|
50
|
+
end
|
51
|
+
|
52
|
+
class CreateModelResponse
|
53
|
+
attr_accessor model_metadata: Types::ModelMetadata
|
54
|
+
SENSITIVE: []
|
55
|
+
end
|
56
|
+
|
57
|
+
class CreateProjectRequest
|
58
|
+
attr_accessor project_name: ::String
|
59
|
+
attr_accessor client_token: ::String
|
60
|
+
SENSITIVE: []
|
61
|
+
end
|
62
|
+
|
63
|
+
class CreateProjectResponse
|
64
|
+
attr_accessor project_metadata: Types::ProjectMetadata
|
65
|
+
SENSITIVE: []
|
66
|
+
end
|
67
|
+
|
68
|
+
class DatasetDescription
|
69
|
+
attr_accessor project_name: ::String
|
70
|
+
attr_accessor dataset_type: ::String
|
71
|
+
attr_accessor creation_timestamp: ::Time
|
72
|
+
attr_accessor last_updated_timestamp: ::Time
|
73
|
+
attr_accessor status: ("CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "CREATE_FAILED" | "UPDATE_IN_PROGRESS" | "UPDATE_COMPLETE" | "UPDATE_FAILED_ROLLBACK_IN_PROGRESS" | "UPDATE_FAILED_ROLLBACK_COMPLETE" | "DELETE_IN_PROGRESS" | "DELETE_COMPLETE" | "DELETE_FAILED")
|
74
|
+
attr_accessor status_message: ::String
|
75
|
+
attr_accessor image_stats: Types::DatasetImageStats
|
76
|
+
SENSITIVE: []
|
77
|
+
end
|
78
|
+
|
79
|
+
class DatasetGroundTruthManifest
|
80
|
+
attr_accessor s3_object: Types::InputS3Object
|
81
|
+
SENSITIVE: []
|
82
|
+
end
|
83
|
+
|
84
|
+
class DatasetImageStats
|
85
|
+
attr_accessor total: ::Integer
|
86
|
+
attr_accessor labeled: ::Integer
|
87
|
+
attr_accessor normal: ::Integer
|
88
|
+
attr_accessor anomaly: ::Integer
|
89
|
+
SENSITIVE: []
|
90
|
+
end
|
91
|
+
|
92
|
+
class DatasetMetadata
|
93
|
+
attr_accessor dataset_type: ::String
|
94
|
+
attr_accessor creation_timestamp: ::Time
|
95
|
+
attr_accessor status: ("CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "CREATE_FAILED" | "UPDATE_IN_PROGRESS" | "UPDATE_COMPLETE" | "UPDATE_FAILED_ROLLBACK_IN_PROGRESS" | "UPDATE_FAILED_ROLLBACK_COMPLETE" | "DELETE_IN_PROGRESS" | "DELETE_COMPLETE" | "DELETE_FAILED")
|
96
|
+
attr_accessor status_message: ::String
|
97
|
+
SENSITIVE: []
|
98
|
+
end
|
99
|
+
|
100
|
+
class DatasetSource
|
101
|
+
attr_accessor ground_truth_manifest: Types::DatasetGroundTruthManifest
|
102
|
+
SENSITIVE: []
|
103
|
+
end
|
104
|
+
|
105
|
+
class DeleteDatasetRequest
|
106
|
+
attr_accessor project_name: ::String
|
107
|
+
attr_accessor dataset_type: ::String
|
108
|
+
attr_accessor client_token: ::String
|
109
|
+
SENSITIVE: []
|
110
|
+
end
|
111
|
+
|
112
|
+
class DeleteDatasetResponse < Aws::EmptyStructure
|
113
|
+
end
|
114
|
+
|
115
|
+
class DeleteModelRequest
|
116
|
+
attr_accessor project_name: ::String
|
117
|
+
attr_accessor model_version: ::String
|
118
|
+
attr_accessor client_token: ::String
|
119
|
+
SENSITIVE: []
|
120
|
+
end
|
121
|
+
|
122
|
+
class DeleteModelResponse
|
123
|
+
attr_accessor model_arn: ::String
|
124
|
+
SENSITIVE: []
|
125
|
+
end
|
126
|
+
|
127
|
+
class DeleteProjectRequest
|
128
|
+
attr_accessor project_name: ::String
|
129
|
+
attr_accessor client_token: ::String
|
130
|
+
SENSITIVE: []
|
131
|
+
end
|
132
|
+
|
133
|
+
class DeleteProjectResponse
|
134
|
+
attr_accessor project_arn: ::String
|
135
|
+
SENSITIVE: []
|
136
|
+
end
|
137
|
+
|
138
|
+
class DescribeDatasetRequest
|
139
|
+
attr_accessor project_name: ::String
|
140
|
+
attr_accessor dataset_type: ::String
|
141
|
+
SENSITIVE: []
|
142
|
+
end
|
143
|
+
|
144
|
+
class DescribeDatasetResponse
|
145
|
+
attr_accessor dataset_description: Types::DatasetDescription
|
146
|
+
SENSITIVE: []
|
147
|
+
end
|
148
|
+
|
149
|
+
class DescribeModelPackagingJobRequest
|
150
|
+
attr_accessor project_name: ::String
|
151
|
+
attr_accessor job_name: ::String
|
152
|
+
SENSITIVE: []
|
153
|
+
end
|
154
|
+
|
155
|
+
class DescribeModelPackagingJobResponse
|
156
|
+
attr_accessor model_packaging_description: Types::ModelPackagingDescription
|
157
|
+
SENSITIVE: []
|
158
|
+
end
|
159
|
+
|
160
|
+
class DescribeModelRequest
|
161
|
+
attr_accessor project_name: ::String
|
162
|
+
attr_accessor model_version: ::String
|
163
|
+
SENSITIVE: []
|
164
|
+
end
|
165
|
+
|
166
|
+
class DescribeModelResponse
|
167
|
+
attr_accessor model_description: Types::ModelDescription
|
168
|
+
SENSITIVE: []
|
169
|
+
end
|
170
|
+
|
171
|
+
class DescribeProjectRequest
|
172
|
+
attr_accessor project_name: ::String
|
173
|
+
SENSITIVE: []
|
174
|
+
end
|
175
|
+
|
176
|
+
class DescribeProjectResponse
|
177
|
+
attr_accessor project_description: Types::ProjectDescription
|
178
|
+
SENSITIVE: []
|
179
|
+
end
|
180
|
+
|
181
|
+
class DetectAnomaliesRequest
|
182
|
+
attr_accessor project_name: ::String
|
183
|
+
attr_accessor model_version: ::String
|
184
|
+
attr_accessor body: ::IO
|
185
|
+
attr_accessor content_type: ::String
|
186
|
+
SENSITIVE: []
|
187
|
+
end
|
188
|
+
|
189
|
+
class DetectAnomaliesResponse
|
190
|
+
attr_accessor detect_anomaly_result: Types::DetectAnomalyResult
|
191
|
+
SENSITIVE: []
|
192
|
+
end
|
193
|
+
|
194
|
+
class DetectAnomalyResult
|
195
|
+
attr_accessor source: Types::ImageSource
|
196
|
+
attr_accessor is_anomalous: bool
|
197
|
+
attr_accessor confidence: ::Float
|
198
|
+
attr_accessor anomalies: ::Array[Types::Anomaly]
|
199
|
+
attr_accessor anomaly_mask: ::String
|
200
|
+
SENSITIVE: []
|
201
|
+
end
|
202
|
+
|
203
|
+
class GreengrassConfiguration
|
204
|
+
attr_accessor compiler_options: ::String
|
205
|
+
attr_accessor target_device: ("jetson_xavier")
|
206
|
+
attr_accessor target_platform: Types::TargetPlatform
|
207
|
+
attr_accessor s3_output_location: Types::S3Location
|
208
|
+
attr_accessor component_name: ::String
|
209
|
+
attr_accessor component_version: ::String
|
210
|
+
attr_accessor component_description: ::String
|
211
|
+
attr_accessor tags: ::Array[Types::Tag]
|
212
|
+
SENSITIVE: []
|
213
|
+
end
|
214
|
+
|
215
|
+
class GreengrassOutputDetails
|
216
|
+
attr_accessor component_version_arn: ::String
|
217
|
+
attr_accessor component_name: ::String
|
218
|
+
attr_accessor component_version: ::String
|
219
|
+
SENSITIVE: []
|
220
|
+
end
|
221
|
+
|
222
|
+
class ImageSource
|
223
|
+
attr_accessor type: ::String
|
224
|
+
SENSITIVE: []
|
225
|
+
end
|
226
|
+
|
227
|
+
class InputS3Object
|
228
|
+
attr_accessor bucket: ::String
|
229
|
+
attr_accessor key: ::String
|
230
|
+
attr_accessor version_id: ::String
|
231
|
+
SENSITIVE: []
|
232
|
+
end
|
233
|
+
|
234
|
+
class InternalServerException
|
235
|
+
attr_accessor message: ::String
|
236
|
+
attr_accessor retry_after_seconds: ::Integer
|
237
|
+
SENSITIVE: []
|
238
|
+
end
|
239
|
+
|
240
|
+
class ListDatasetEntriesRequest
|
241
|
+
attr_accessor project_name: ::String
|
242
|
+
attr_accessor dataset_type: ::String
|
243
|
+
attr_accessor labeled: bool
|
244
|
+
attr_accessor anomaly_class: ::String
|
245
|
+
attr_accessor before_creation_date: ::Time
|
246
|
+
attr_accessor after_creation_date: ::Time
|
247
|
+
attr_accessor next_token: ::String
|
248
|
+
attr_accessor max_results: ::Integer
|
249
|
+
attr_accessor source_ref_contains: ::String
|
250
|
+
SENSITIVE: []
|
251
|
+
end
|
252
|
+
|
253
|
+
class ListDatasetEntriesResponse
|
254
|
+
attr_accessor dataset_entries: ::Array[::String]
|
255
|
+
attr_accessor next_token: ::String
|
256
|
+
SENSITIVE: []
|
257
|
+
end
|
258
|
+
|
259
|
+
class ListModelPackagingJobsRequest
|
260
|
+
attr_accessor project_name: ::String
|
261
|
+
attr_accessor next_token: ::String
|
262
|
+
attr_accessor max_results: ::Integer
|
263
|
+
SENSITIVE: []
|
264
|
+
end
|
265
|
+
|
266
|
+
class ListModelPackagingJobsResponse
|
267
|
+
attr_accessor model_packaging_jobs: ::Array[Types::ModelPackagingJobMetadata]
|
268
|
+
attr_accessor next_token: ::String
|
269
|
+
SENSITIVE: []
|
270
|
+
end
|
271
|
+
|
272
|
+
class ListModelsRequest
|
273
|
+
attr_accessor project_name: ::String
|
274
|
+
attr_accessor next_token: ::String
|
275
|
+
attr_accessor max_results: ::Integer
|
276
|
+
SENSITIVE: []
|
277
|
+
end
|
278
|
+
|
279
|
+
class ListModelsResponse
|
280
|
+
attr_accessor models: ::Array[Types::ModelMetadata]
|
281
|
+
attr_accessor next_token: ::String
|
282
|
+
SENSITIVE: []
|
283
|
+
end
|
284
|
+
|
285
|
+
class ListProjectsRequest
|
286
|
+
attr_accessor next_token: ::String
|
287
|
+
attr_accessor max_results: ::Integer
|
288
|
+
SENSITIVE: []
|
289
|
+
end
|
290
|
+
|
291
|
+
class ListProjectsResponse
|
292
|
+
attr_accessor projects: ::Array[Types::ProjectMetadata]
|
293
|
+
attr_accessor next_token: ::String
|
294
|
+
SENSITIVE: []
|
295
|
+
end
|
296
|
+
|
297
|
+
class ListTagsForResourceRequest
|
298
|
+
attr_accessor resource_arn: ::String
|
299
|
+
SENSITIVE: []
|
300
|
+
end
|
301
|
+
|
302
|
+
class ListTagsForResourceResponse
|
303
|
+
attr_accessor tags: ::Array[Types::Tag]
|
304
|
+
SENSITIVE: []
|
305
|
+
end
|
306
|
+
|
307
|
+
class ModelDescription
|
308
|
+
attr_accessor model_version: ::String
|
309
|
+
attr_accessor model_arn: ::String
|
310
|
+
attr_accessor creation_timestamp: ::Time
|
311
|
+
attr_accessor description: ::String
|
312
|
+
attr_accessor status: ("TRAINING" | "TRAINED" | "TRAINING_FAILED" | "STARTING_HOSTING" | "HOSTED" | "HOSTING_FAILED" | "STOPPING_HOSTING" | "SYSTEM_UPDATING" | "DELETING")
|
313
|
+
attr_accessor status_message: ::String
|
314
|
+
attr_accessor performance: Types::ModelPerformance
|
315
|
+
attr_accessor output_config: Types::OutputConfig
|
316
|
+
attr_accessor evaluation_manifest: Types::OutputS3Object
|
317
|
+
attr_accessor evaluation_result: Types::OutputS3Object
|
318
|
+
attr_accessor evaluation_end_timestamp: ::Time
|
319
|
+
attr_accessor kms_key_id: ::String
|
320
|
+
attr_accessor min_inference_units: ::Integer
|
321
|
+
attr_accessor max_inference_units: ::Integer
|
322
|
+
SENSITIVE: []
|
323
|
+
end
|
324
|
+
|
325
|
+
class ModelMetadata
|
326
|
+
attr_accessor creation_timestamp: ::Time
|
327
|
+
attr_accessor model_version: ::String
|
328
|
+
attr_accessor model_arn: ::String
|
329
|
+
attr_accessor description: ::String
|
330
|
+
attr_accessor status: ("TRAINING" | "TRAINED" | "TRAINING_FAILED" | "STARTING_HOSTING" | "HOSTED" | "HOSTING_FAILED" | "STOPPING_HOSTING" | "SYSTEM_UPDATING" | "DELETING")
|
331
|
+
attr_accessor status_message: ::String
|
332
|
+
attr_accessor performance: Types::ModelPerformance
|
333
|
+
SENSITIVE: []
|
334
|
+
end
|
335
|
+
|
336
|
+
class ModelPackagingConfiguration
|
337
|
+
attr_accessor greengrass: Types::GreengrassConfiguration
|
338
|
+
SENSITIVE: []
|
339
|
+
end
|
340
|
+
|
341
|
+
class ModelPackagingDescription
|
342
|
+
attr_accessor job_name: ::String
|
343
|
+
attr_accessor project_name: ::String
|
344
|
+
attr_accessor model_version: ::String
|
345
|
+
attr_accessor model_packaging_configuration: Types::ModelPackagingConfiguration
|
346
|
+
attr_accessor model_packaging_job_description: ::String
|
347
|
+
attr_accessor model_packaging_method: ::String
|
348
|
+
attr_accessor model_packaging_output_details: Types::ModelPackagingOutputDetails
|
349
|
+
attr_accessor status: ("CREATED" | "RUNNING" | "SUCCEEDED" | "FAILED")
|
350
|
+
attr_accessor status_message: ::String
|
351
|
+
attr_accessor creation_timestamp: ::Time
|
352
|
+
attr_accessor last_updated_timestamp: ::Time
|
353
|
+
SENSITIVE: []
|
354
|
+
end
|
355
|
+
|
356
|
+
class ModelPackagingJobMetadata
|
357
|
+
attr_accessor job_name: ::String
|
358
|
+
attr_accessor project_name: ::String
|
359
|
+
attr_accessor model_version: ::String
|
360
|
+
attr_accessor model_packaging_job_description: ::String
|
361
|
+
attr_accessor model_packaging_method: ::String
|
362
|
+
attr_accessor status: ("CREATED" | "RUNNING" | "SUCCEEDED" | "FAILED")
|
363
|
+
attr_accessor status_message: ::String
|
364
|
+
attr_accessor creation_timestamp: ::Time
|
365
|
+
attr_accessor last_updated_timestamp: ::Time
|
366
|
+
SENSITIVE: []
|
367
|
+
end
|
368
|
+
|
369
|
+
class ModelPackagingOutputDetails
|
370
|
+
attr_accessor greengrass: Types::GreengrassOutputDetails
|
371
|
+
SENSITIVE: []
|
372
|
+
end
|
373
|
+
|
374
|
+
class ModelPerformance
|
375
|
+
attr_accessor f1_score: ::Float
|
376
|
+
attr_accessor recall: ::Float
|
377
|
+
attr_accessor precision: ::Float
|
378
|
+
SENSITIVE: []
|
379
|
+
end
|
380
|
+
|
381
|
+
class OutputConfig
|
382
|
+
attr_accessor s3_location: Types::S3Location
|
383
|
+
SENSITIVE: []
|
384
|
+
end
|
385
|
+
|
386
|
+
class OutputS3Object
|
387
|
+
attr_accessor bucket: ::String
|
388
|
+
attr_accessor key: ::String
|
389
|
+
SENSITIVE: []
|
390
|
+
end
|
391
|
+
|
392
|
+
class PixelAnomaly
|
393
|
+
attr_accessor total_percentage_area: ::Float
|
394
|
+
attr_accessor color: ::String
|
395
|
+
SENSITIVE: []
|
396
|
+
end
|
397
|
+
|
398
|
+
class ProjectDescription
|
399
|
+
attr_accessor project_arn: ::String
|
400
|
+
attr_accessor project_name: ::String
|
401
|
+
attr_accessor creation_timestamp: ::Time
|
402
|
+
attr_accessor datasets: ::Array[Types::DatasetMetadata]
|
403
|
+
SENSITIVE: []
|
404
|
+
end
|
405
|
+
|
406
|
+
class ProjectMetadata
|
407
|
+
attr_accessor project_arn: ::String
|
408
|
+
attr_accessor project_name: ::String
|
409
|
+
attr_accessor creation_timestamp: ::Time
|
410
|
+
SENSITIVE: []
|
411
|
+
end
|
412
|
+
|
413
|
+
class ResourceNotFoundException
|
414
|
+
attr_accessor message: ::String
|
415
|
+
attr_accessor resource_id: ::String
|
416
|
+
attr_accessor resource_type: ("PROJECT" | "DATASET" | "MODEL" | "TRIAL" | "MODEL_PACKAGE_JOB")
|
417
|
+
SENSITIVE: []
|
418
|
+
end
|
419
|
+
|
420
|
+
class S3Location
|
421
|
+
attr_accessor bucket: ::String
|
422
|
+
attr_accessor prefix: ::String
|
423
|
+
SENSITIVE: []
|
424
|
+
end
|
425
|
+
|
426
|
+
class ServiceQuotaExceededException
|
427
|
+
attr_accessor message: ::String
|
428
|
+
attr_accessor resource_id: ::String
|
429
|
+
attr_accessor resource_type: ("PROJECT" | "DATASET" | "MODEL" | "TRIAL" | "MODEL_PACKAGE_JOB")
|
430
|
+
attr_accessor quota_code: ::String
|
431
|
+
attr_accessor service_code: ::String
|
432
|
+
SENSITIVE: []
|
433
|
+
end
|
434
|
+
|
435
|
+
class StartModelPackagingJobRequest
|
436
|
+
attr_accessor project_name: ::String
|
437
|
+
attr_accessor model_version: ::String
|
438
|
+
attr_accessor job_name: ::String
|
439
|
+
attr_accessor configuration: Types::ModelPackagingConfiguration
|
440
|
+
attr_accessor description: ::String
|
441
|
+
attr_accessor client_token: ::String
|
442
|
+
SENSITIVE: []
|
443
|
+
end
|
444
|
+
|
445
|
+
class StartModelPackagingJobResponse
|
446
|
+
attr_accessor job_name: ::String
|
447
|
+
SENSITIVE: []
|
448
|
+
end
|
449
|
+
|
450
|
+
class StartModelRequest
|
451
|
+
attr_accessor project_name: ::String
|
452
|
+
attr_accessor model_version: ::String
|
453
|
+
attr_accessor min_inference_units: ::Integer
|
454
|
+
attr_accessor client_token: ::String
|
455
|
+
attr_accessor max_inference_units: ::Integer
|
456
|
+
SENSITIVE: []
|
457
|
+
end
|
458
|
+
|
459
|
+
class StartModelResponse
|
460
|
+
attr_accessor status: ("STARTING_HOSTING" | "HOSTED" | "HOSTING_FAILED" | "STOPPING_HOSTING" | "SYSTEM_UPDATING")
|
461
|
+
SENSITIVE: []
|
462
|
+
end
|
463
|
+
|
464
|
+
class StopModelRequest
|
465
|
+
attr_accessor project_name: ::String
|
466
|
+
attr_accessor model_version: ::String
|
467
|
+
attr_accessor client_token: ::String
|
468
|
+
SENSITIVE: []
|
469
|
+
end
|
470
|
+
|
471
|
+
class StopModelResponse
|
472
|
+
attr_accessor status: ("STARTING_HOSTING" | "HOSTED" | "HOSTING_FAILED" | "STOPPING_HOSTING" | "SYSTEM_UPDATING")
|
473
|
+
SENSITIVE: []
|
474
|
+
end
|
475
|
+
|
476
|
+
class Tag
|
477
|
+
attr_accessor key: ::String
|
478
|
+
attr_accessor value: ::String
|
479
|
+
SENSITIVE: []
|
480
|
+
end
|
481
|
+
|
482
|
+
class TagResourceRequest
|
483
|
+
attr_accessor resource_arn: ::String
|
484
|
+
attr_accessor tags: ::Array[Types::Tag]
|
485
|
+
SENSITIVE: []
|
486
|
+
end
|
487
|
+
|
488
|
+
class TagResourceResponse < Aws::EmptyStructure
|
489
|
+
end
|
490
|
+
|
491
|
+
class TargetPlatform
|
492
|
+
attr_accessor os: ("LINUX")
|
493
|
+
attr_accessor arch: ("ARM64" | "X86_64")
|
494
|
+
attr_accessor accelerator: ("NVIDIA")
|
495
|
+
SENSITIVE: []
|
496
|
+
end
|
497
|
+
|
498
|
+
class ThrottlingException
|
499
|
+
attr_accessor message: ::String
|
500
|
+
attr_accessor quota_code: ::String
|
501
|
+
attr_accessor service_code: ::String
|
502
|
+
attr_accessor retry_after_seconds: ::Integer
|
503
|
+
SENSITIVE: []
|
504
|
+
end
|
505
|
+
|
506
|
+
class UntagResourceRequest
|
507
|
+
attr_accessor resource_arn: ::String
|
508
|
+
attr_accessor tag_keys: ::Array[::String]
|
509
|
+
SENSITIVE: []
|
510
|
+
end
|
511
|
+
|
512
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
513
|
+
end
|
514
|
+
|
515
|
+
class UpdateDatasetEntriesRequest
|
516
|
+
attr_accessor project_name: ::String
|
517
|
+
attr_accessor dataset_type: ::String
|
518
|
+
attr_accessor changes: ::String
|
519
|
+
attr_accessor client_token: ::String
|
520
|
+
SENSITIVE: []
|
521
|
+
end
|
522
|
+
|
523
|
+
class UpdateDatasetEntriesResponse
|
524
|
+
attr_accessor status: ("CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "CREATE_FAILED" | "UPDATE_IN_PROGRESS" | "UPDATE_COMPLETE" | "UPDATE_FAILED_ROLLBACK_IN_PROGRESS" | "UPDATE_FAILED_ROLLBACK_COMPLETE" | "DELETE_IN_PROGRESS" | "DELETE_COMPLETE" | "DELETE_FAILED")
|
525
|
+
SENSITIVE: []
|
526
|
+
end
|
527
|
+
|
528
|
+
class ValidationException
|
529
|
+
attr_accessor message: ::String
|
530
|
+
SENSITIVE: []
|
531
|
+
end
|
532
|
+
end
|
533
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
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 LookoutforVision
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-lookoutforvision
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.29.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.191.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.191.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,13 +66,18 @@ files:
|
|
66
66
|
- lib/aws-sdk-lookoutforvision/plugins/endpoints.rb
|
67
67
|
- lib/aws-sdk-lookoutforvision/resource.rb
|
68
68
|
- lib/aws-sdk-lookoutforvision/types.rb
|
69
|
+
- sig/client.rbs
|
70
|
+
- sig/errors.rbs
|
71
|
+
- sig/resource.rbs
|
72
|
+
- sig/types.rbs
|
73
|
+
- sig/waiters.rbs
|
69
74
|
homepage: https://github.com/aws/aws-sdk-ruby
|
70
75
|
licenses:
|
71
76
|
- Apache-2.0
|
72
77
|
metadata:
|
73
78
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-lookoutforvision
|
74
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-lookoutforvision/CHANGELOG.md
|
75
|
-
post_install_message:
|
80
|
+
post_install_message:
|
76
81
|
rdoc_options: []
|
77
82
|
require_paths:
|
78
83
|
- lib
|
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
92
|
- !ruby/object:Gem::Version
|
88
93
|
version: '0'
|
89
94
|
requirements: []
|
90
|
-
rubygems_version: 3.
|
91
|
-
signing_key:
|
95
|
+
rubygems_version: 3.4.10
|
96
|
+
signing_key:
|
92
97
|
specification_version: 4
|
93
98
|
summary: AWS SDK for Ruby - Amazon Lookout for Vision
|
94
99
|
test_files: []
|