aws-sdk-lookoutforvision 1.1.0 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 218132ffd1136a4e9e7a52e332b9e8aa6c1e07c3d49d9a58dab7ca247fef6cc3
4
- data.tar.gz: '08a32047941b215881c4432b9217354c872e258c1af66dab4ef7042a21d074f3'
3
+ metadata.gz: 2559a26481be0fac13a87f9dbf0dbfa1175921f149e1b579cd62447468c7b82e
4
+ data.tar.gz: f81d99e3cf095b1f88c037051fc10032644b9ec86fbfa0733c87ffef631ed099
5
5
  SHA512:
6
- metadata.gz: 50595f455a8dacb221c141840b081d940433c48ff714bd364788468a755dc230a167732199b61ffec27ba5d99a2877c1573222424c4892ac84423feab9ee7558
7
- data.tar.gz: 35469c6695672fa98f87aea4092913b53b55c1fb779e721c00a14def10320844e2a9e99bcd4a81f0dbe4a97d6f8b9ab4ac2e33bfbcf1c14c0c44e115accd38a8
6
+ metadata.gz: e57b8a29512a3999eb5f2695783819226dfcda38d3338a6c25c711ce99a8e74095fe40c1d00451d40bb84c190c9f7b5d703338a8844a977b3a06a148159389bc
7
+ data.tar.gz: 550e6e328b1b2b05cf839aaa4b056cd6047683b2966ddf330b4debfa253d3586c456f70e3ad1d166e1e90793b339fb565e95cf434d8e7cb50313e5d2330e4c30
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-lookoutforvision/customizations'
48
48
  # @!group service
49
49
  module Aws::LookoutforVision
50
50
 
51
- GEM_VERSION = '1.1.0'
51
+ GEM_VERSION = '1.2.0'
52
52
 
53
53
  end
@@ -460,10 +460,11 @@ module Aws::LookoutforVision
460
460
  # results.
461
461
  #
462
462
  # @option params [String] :kms_key_id
463
- # The identifier of the AWS Key Management Service (AWS KMS) customer
464
- # master key (CMK) to use for encypting the model. If this parameter is
465
- # not specified, the model is encrypted by a key that AWS owns and
466
- # manages.
463
+ # The identifier for your AWS Key Management Service (AWS KMS) customer
464
+ # master key (CMK). The key is used to encrypt training and test images
465
+ # copied into the service for model training. Your source images are
466
+ # unaffected. If this parameter is not specified, the copied images are
467
+ # encrypted by a key that AWS owns and manages.
467
468
  #
468
469
  # @option params [Array<Types::Tag>] :tags
469
470
  # A set of tags (key-value pairs) that you want to attach to the model.
@@ -579,10 +580,6 @@ module Aws::LookoutforVision
579
580
  # * If you delete the training dataset, you must create a training
580
581
  # dataset before you can create a model.
581
582
  #
582
- # It might take a while to delete the dataset. To check the current
583
- # status, check the `Status` field in the response from a call to
584
- # DescribeDataset.
585
- #
586
583
  # This operation requires permissions to perform the
587
584
  # `lookoutvision:DeleteDataset` operation.
588
585
  #
@@ -631,6 +628,10 @@ module Aws::LookoutforVision
631
628
  # Deletes an Amazon Lookout for Vision model. You can't delete a
632
629
  # running model. To stop a running model, use the StopModel operation.
633
630
  #
631
+ # It might take a few seconds to delete a model. To determine if a model
632
+ # has been deleted, call ListProjects and check if the version of the
633
+ # model (`ModelVersion`) is in the `Models` array.
634
+ #
634
635
  # This operation requires permissions to perform the
635
636
  # `lookoutvision:DeleteModel` operation.
636
637
  #
@@ -1162,6 +1163,8 @@ module Aws::LookoutforVision
1162
1163
  # model. Starting a model takes a while to complete. To check the
1163
1164
  # current state of the model, use DescribeModel.
1164
1165
  #
1166
+ # A model is ready to use when its status is `HOSTED`.
1167
+ #
1165
1168
  # Once the model is running, you can detect custom labels in new images
1166
1169
  # by calling DetectAnomalies.
1167
1170
  #
@@ -1216,7 +1219,7 @@ module Aws::LookoutforVision
1216
1219
  #
1217
1220
  # @example Response structure
1218
1221
  #
1219
- # resp.status #=> String, one of "RUNNING", "STARTING", "STOPPED", "FAILED"
1222
+ # resp.status #=> String, one of "STARTING_HOSTING", "HOSTED", "HOSTING_FAILED", "STOPPING_HOSTING", "SYSTEM_UPDATING"
1220
1223
  #
1221
1224
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutvision-2020-11-20/StartModel AWS API Documentation
1222
1225
  #
@@ -1227,8 +1230,10 @@ module Aws::LookoutforVision
1227
1230
  req.send_request(options)
1228
1231
  end
1229
1232
 
1230
- # Stops a running model. The operation might take a while to complete.
1231
- # To check the current status, call DescribeModel.
1233
+ # Stops the hosting of a running model. The operation might take a while
1234
+ # to complete. To check the current status, call DescribeModel.
1235
+ #
1236
+ # After the model hosting stops, the `Status` of the model is `TRAINED`.
1232
1237
  #
1233
1238
  # This operation requires permissions to perform the
1234
1239
  # `lookoutvision:StopModel` operation.
@@ -1266,7 +1271,7 @@ module Aws::LookoutforVision
1266
1271
  #
1267
1272
  # @example Response structure
1268
1273
  #
1269
- # resp.status #=> String, one of "RUNNING", "STARTING", "STOPPED", "FAILED"
1274
+ # resp.status #=> String, one of "STARTING_HOSTING", "HOSTED", "HOSTING_FAILED", "STOPPING_HOSTING", "SYSTEM_UPDATING"
1270
1275
  #
1271
1276
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutvision-2020-11-20/StopModel AWS API Documentation
1272
1277
  #
@@ -1421,7 +1426,7 @@ module Aws::LookoutforVision
1421
1426
  params: params,
1422
1427
  config: config)
1423
1428
  context[:gem_name] = 'aws-sdk-lookoutforvision'
1424
- context[:gem_version] = '1.1.0'
1429
+ context[:gem_version] = '1.2.0'
1425
1430
  Seahorse::Client::Request.new(handlers, context)
1426
1431
  end
1427
1432
 
@@ -231,7 +231,7 @@ module Aws::LookoutforVision
231
231
  DetectAnomaliesRequest.add_member(:project_name, Shapes::ShapeRef.new(shape: ProjectName, required: true, location: "uri", location_name: "projectName"))
232
232
  DetectAnomaliesRequest.add_member(:model_version, Shapes::ShapeRef.new(shape: ModelVersion, required: true, location: "uri", location_name: "modelVersion"))
233
233
  DetectAnomaliesRequest.add_member(:body, Shapes::ShapeRef.new(shape: Stream, required: true, location_name: "Body"))
234
- DetectAnomaliesRequest.add_member(:content_type, Shapes::ShapeRef.new(shape: ContentType, required: true, location: "header", location_name: "content-type"))
234
+ DetectAnomaliesRequest.add_member(:content_type, Shapes::ShapeRef.new(shape: ContentType, required: true, location: "header", location_name: "Content-Type"))
235
235
  DetectAnomaliesRequest.struct_class = Types::DetectAnomaliesRequest
236
236
  DetectAnomaliesRequest[:payload] = :body
237
237
  DetectAnomaliesRequest[:payload_member] = DetectAnomaliesRequest.member(:body)
@@ -177,10 +177,11 @@ module Aws::LookoutforVision
177
177
  # @return [Types::OutputConfig]
178
178
  #
179
179
  # @!attribute [rw] kms_key_id
180
- # The identifier of the AWS Key Management Service (AWS KMS) customer
181
- # master key (CMK) to use for encypting the model. If this parameter
182
- # is not specified, the model is encrypted by a key that AWS owns and
183
- # manages.
180
+ # The identifier for your AWS Key Management Service (AWS KMS)
181
+ # customer master key (CMK). The key is used to encrypt training and
182
+ # test images copied into the service for model training. Your source
183
+ # images are unaffected. If this parameter is not specified, the
184
+ # copied images are encrypted by a key that AWS owns and manages.
184
185
  # @return [String]
185
186
  #
186
187
  # @!attribute [rw] tags
@@ -1335,7 +1336,7 @@ module Aws::LookoutforVision
1335
1336
  include Aws::Structure
1336
1337
  end
1337
1338
 
1338
- # Information about the location of a manifest file.
1339
+ # Information about the location training output.
1339
1340
  #
1340
1341
  # @note When making an API call, you may pass S3Location
1341
1342
  # data as a hash:
@@ -1346,11 +1347,12 @@ module Aws::LookoutforVision
1346
1347
  # }
1347
1348
  #
1348
1349
  # @!attribute [rw] bucket
1349
- # The S3 bucket that contain the manifest file.
1350
+ # The S3 bucket that contains the training output.
1350
1351
  # @return [String]
1351
1352
  #
1352
1353
  # @!attribute [rw] prefix
1353
- # The path and name of the manifest file with the S3 bucket.
1354
+ # The path of the folder, within the S3 bucket, that contains the
1355
+ # training output.
1354
1356
  # @return [String]
1355
1357
  #
1356
1358
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutvision-2020-11-20/S3Location AWS API Documentation
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.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-02 00:00:00.000000000 Z
11
+ date: 2021-02-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core