aws-sdk-sagemaker 1.203.0 → 1.205.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: d01c17db541992d49a28a2d6fef46c2366782aee5e027834226b480b7162856c
4
- data.tar.gz: 64b78f0f56a73d926f93a2fecfa7ebb61c95e92fe9c6549d6f05ebb612fde575
3
+ metadata.gz: 88d91cfd13bc367946d074931339b0434659c8cb71e56271cbd335ed05f52f10
4
+ data.tar.gz: 4035934625187688d3d8506cf442e8ce3d3b4d040426cdc509f0510f9d49a7b5
5
5
  SHA512:
6
- metadata.gz: 2a98d9933414cd3772aeec8e2757bf50db278a01ffec76cb26c2277ee0ccf47fc0be94263c55488007f8d11040ca4ea919a0eed8c583a6374e476b601ab0644c
7
- data.tar.gz: ef5fa6976b75afab0342b37bcc1bc3a70e2567b71627b9d106fa9ce42380f2389e99f66ced40837aa6b0fc5466cc8e9f996950462ad12cc1c9d34b3450e41fb0
6
+ metadata.gz: 400478bb94bb77046e380a2c7747736908cfe336c225ef5f02d87f6ad04c6dd34ff8c5d3b950a5a460e41a25e3a9995702ed532250bf3f01cfbd7a7b09d355c3
7
+ data.tar.gz: 4424cd867f5509c35d31ad2403fbb681fdbd76fe1581514d3d250cb6b7208a8327822cccd0ad3d2f58b12ac186492bbec4efcdc04478c2d12804af5b5ddab4ac
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.205.0 (2023-08-09)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for cross account access for SageMaker Model Cards through AWS RAM.
8
+
9
+ 1.204.0 (2023-08-04)
10
+ ------------------
11
+
12
+ * Feature - Including DataCaptureConfig key in the Amazon Sagemaker Search's transform job object
13
+
4
14
  1.203.0 (2023-08-03)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.203.0
1
+ 1.205.0
@@ -5293,7 +5293,7 @@ module Aws::SageMaker
5293
5293
  # Creates an Amazon SageMaker Model Card export job.
5294
5294
  #
5295
5295
  # @option params [required, String] :model_card_name
5296
- # The name of the model card to export.
5296
+ # The name or Amazon Resource Name (ARN) of the model card to export.
5297
5297
  #
5298
5298
  # @option params [Integer] :model_card_version
5299
5299
  # The version of the model card to export. If a version is not provided,
@@ -5313,7 +5313,7 @@ module Aws::SageMaker
5313
5313
  # @example Request syntax with placeholder values
5314
5314
  #
5315
5315
  # resp = client.create_model_card_export_job({
5316
- # model_card_name: "EntityName", # required
5316
+ # model_card_name: "ModelCardNameOrArn", # required
5317
5317
  # model_card_version: 1,
5318
5318
  # model_card_export_job_name: "EntityName", # required
5319
5319
  # output_config: { # required
@@ -12731,7 +12731,7 @@ module Aws::SageMaker
12731
12731
  # Amazon SageMaker Model Card.
12732
12732
  #
12733
12733
  # @option params [required, String] :model_card_name
12734
- # The name of the model card to describe.
12734
+ # The name or Amazon Resource Name (ARN) of the model card to describe.
12735
12735
  #
12736
12736
  # @option params [Integer] :model_card_version
12737
12737
  # The version of the model card to describe. If a version is not
@@ -12754,7 +12754,7 @@ module Aws::SageMaker
12754
12754
  # @example Request syntax with placeholder values
12755
12755
  #
12756
12756
  # resp = client.describe_model_card({
12757
- # model_card_name: "EntityName", # required
12757
+ # model_card_name: "ModelCardNameOrArn", # required
12758
12758
  # model_card_version: 1,
12759
12759
  # })
12760
12760
  #
@@ -18030,7 +18030,8 @@ module Aws::SageMaker
18030
18030
  # The maximum number of model card versions to list.
18031
18031
  #
18032
18032
  # @option params [required, String] :model_card_name
18033
- # List model card versions for the model card with the specified name.
18033
+ # List model card versions for the model card with the specified name or
18034
+ # Amazon Resource Name (ARN).
18034
18035
  #
18035
18036
  # @option params [String] :model_card_status
18036
18037
  # Only list model card versions with the specified approval status.
@@ -18060,7 +18061,7 @@ module Aws::SageMaker
18060
18061
  # creation_time_after: Time.now,
18061
18062
  # creation_time_before: Time.now,
18062
18063
  # max_results: 1,
18063
- # model_card_name: "EntityName", # required
18064
+ # model_card_name: "ModelCardNameOrArn", # required
18064
18065
  # model_card_status: "Draft", # accepts Draft, PendingReview, Approved, Archived
18065
18066
  # next_token: "NextToken",
18066
18067
  # sort_by: "Version", # accepts Version
@@ -22781,7 +22782,7 @@ module Aws::SageMaker
22781
22782
  # single call.
22782
22783
  #
22783
22784
  # @option params [required, String] :model_card_name
22784
- # The name of the model card to update.
22785
+ # The name or Amazon Resource Name (ARN) of the model card to update.
22785
22786
  #
22786
22787
  # @option params [String] :content
22787
22788
  # The updated model card content. Content must be in [model card JSON
@@ -22815,7 +22816,7 @@ module Aws::SageMaker
22815
22816
  # @example Request syntax with placeholder values
22816
22817
  #
22817
22818
  # resp = client.update_model_card({
22818
- # model_card_name: "EntityName", # required
22819
+ # model_card_name: "ModelCardNameOrArn", # required
22819
22820
  # content: "ModelCardContent",
22820
22821
  # model_card_status: "Draft", # accepts Draft, PendingReview, Approved, Archived
22821
22822
  # })
@@ -24091,7 +24092,7 @@ module Aws::SageMaker
24091
24092
  params: params,
24092
24093
  config: config)
24093
24094
  context[:gem_name] = 'aws-sdk-sagemaker'
24094
- context[:gem_version] = '1.203.0'
24095
+ context[:gem_version] = '1.205.0'
24095
24096
  Seahorse::Client::Request.new(handlers, context)
24096
24097
  end
24097
24098
 
@@ -1261,6 +1261,7 @@ module Aws::SageMaker
1261
1261
  ModelCardExportJobSummary = Shapes::StructureShape.new(name: 'ModelCardExportJobSummary')
1262
1262
  ModelCardExportJobSummaryList = Shapes::ListShape.new(name: 'ModelCardExportJobSummaryList')
1263
1263
  ModelCardExportOutputConfig = Shapes::StructureShape.new(name: 'ModelCardExportOutputConfig')
1264
+ ModelCardNameOrArn = Shapes::StringShape.new(name: 'ModelCardNameOrArn')
1264
1265
  ModelCardProcessingStatus = Shapes::StringShape.new(name: 'ModelCardProcessingStatus')
1265
1266
  ModelCardSecurityConfig = Shapes::StructureShape.new(name: 'ModelCardSecurityConfig')
1266
1267
  ModelCardSortBy = Shapes::StringShape.new(name: 'ModelCardSortBy')
@@ -3091,7 +3092,7 @@ module Aws::SageMaker
3091
3092
  CreateModelBiasJobDefinitionResponse.add_member(:job_definition_arn, Shapes::ShapeRef.new(shape: MonitoringJobDefinitionArn, required: true, location_name: "JobDefinitionArn"))
3092
3093
  CreateModelBiasJobDefinitionResponse.struct_class = Types::CreateModelBiasJobDefinitionResponse
3093
3094
 
3094
- CreateModelCardExportJobRequest.add_member(:model_card_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "ModelCardName"))
3095
+ CreateModelCardExportJobRequest.add_member(:model_card_name, Shapes::ShapeRef.new(shape: ModelCardNameOrArn, required: true, location_name: "ModelCardName"))
3095
3096
  CreateModelCardExportJobRequest.add_member(:model_card_version, Shapes::ShapeRef.new(shape: Integer, location_name: "ModelCardVersion"))
3096
3097
  CreateModelCardExportJobRequest.add_member(:model_card_export_job_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "ModelCardExportJobName"))
3097
3098
  CreateModelCardExportJobRequest.add_member(:output_config, Shapes::ShapeRef.new(shape: ModelCardExportOutputConfig, required: true, location_name: "OutputConfig"))
@@ -4342,7 +4343,7 @@ module Aws::SageMaker
4342
4343
  DescribeModelCardExportJobResponse.add_member(:export_artifacts, Shapes::ShapeRef.new(shape: ModelCardExportArtifacts, location_name: "ExportArtifacts"))
4343
4344
  DescribeModelCardExportJobResponse.struct_class = Types::DescribeModelCardExportJobResponse
4344
4345
 
4345
- DescribeModelCardRequest.add_member(:model_card_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "ModelCardName"))
4346
+ DescribeModelCardRequest.add_member(:model_card_name, Shapes::ShapeRef.new(shape: ModelCardNameOrArn, required: true, location_name: "ModelCardName"))
4346
4347
  DescribeModelCardRequest.add_member(:model_card_version, Shapes::ShapeRef.new(shape: Integer, location_name: "ModelCardVersion"))
4347
4348
  DescribeModelCardRequest.struct_class = Types::DescribeModelCardRequest
4348
4349
 
@@ -6341,7 +6342,7 @@ module Aws::SageMaker
6341
6342
  ListModelCardVersionsRequest.add_member(:creation_time_after, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTimeAfter"))
6342
6343
  ListModelCardVersionsRequest.add_member(:creation_time_before, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTimeBefore"))
6343
6344
  ListModelCardVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
6344
- ListModelCardVersionsRequest.add_member(:model_card_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "ModelCardName"))
6345
+ ListModelCardVersionsRequest.add_member(:model_card_name, Shapes::ShapeRef.new(shape: ModelCardNameOrArn, required: true, location_name: "ModelCardName"))
6345
6346
  ListModelCardVersionsRequest.add_member(:model_card_status, Shapes::ShapeRef.new(shape: ModelCardStatus, location_name: "ModelCardStatus"))
6346
6347
  ListModelCardVersionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
6347
6348
  ListModelCardVersionsRequest.add_member(:sort_by, Shapes::ShapeRef.new(shape: ModelCardVersionSortBy, location_name: "SortBy"))
@@ -8622,6 +8623,7 @@ module Aws::SageMaker
8622
8623
  TransformJob.add_member(:data_processing, Shapes::ShapeRef.new(shape: DataProcessing, location_name: "DataProcessing"))
8623
8624
  TransformJob.add_member(:experiment_config, Shapes::ShapeRef.new(shape: ExperimentConfig, location_name: "ExperimentConfig"))
8624
8625
  TransformJob.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
8626
+ TransformJob.add_member(:data_capture_config, Shapes::ShapeRef.new(shape: BatchDataCaptureConfig, location_name: "DataCaptureConfig"))
8625
8627
  TransformJob.struct_class = Types::TransformJob
8626
8628
 
8627
8629
  TransformJobDefinition.add_member(:max_concurrent_transforms, Shapes::ShapeRef.new(shape: MaxConcurrentTransforms, location_name: "MaxConcurrentTransforms"))
@@ -8959,7 +8961,7 @@ module Aws::SageMaker
8959
8961
  UpdateInferenceExperimentResponse.add_member(:inference_experiment_arn, Shapes::ShapeRef.new(shape: InferenceExperimentArn, required: true, location_name: "InferenceExperimentArn"))
8960
8962
  UpdateInferenceExperimentResponse.struct_class = Types::UpdateInferenceExperimentResponse
8961
8963
 
8962
- UpdateModelCardRequest.add_member(:model_card_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "ModelCardName"))
8964
+ UpdateModelCardRequest.add_member(:model_card_name, Shapes::ShapeRef.new(shape: ModelCardNameOrArn, required: true, location_name: "ModelCardName"))
8963
8965
  UpdateModelCardRequest.add_member(:content, Shapes::ShapeRef.new(shape: ModelCardContent, location_name: "Content"))
8964
8966
  UpdateModelCardRequest.add_member(:model_card_status, Shapes::ShapeRef.new(shape: ModelCardStatus, location_name: "ModelCardStatus"))
8965
8967
  UpdateModelCardRequest.struct_class = Types::UpdateModelCardRequest
@@ -6774,7 +6774,7 @@ module Aws::SageMaker
6774
6774
  end
6775
6775
 
6776
6776
  # @!attribute [rw] model_card_name
6777
- # The name of the model card to export.
6777
+ # The name or Amazon Resource Name (ARN) of the model card to export.
6778
6778
  # @return [String]
6779
6779
  #
6780
6780
  # @!attribute [rw] model_card_version
@@ -13596,7 +13596,8 @@ module Aws::SageMaker
13596
13596
  # @return [String]
13597
13597
  #
13598
13598
  # @!attribute [rw] model_card_name
13599
- # The name of the model card that the model export job exports.
13599
+ # The name or Amazon Resource Name (ARN) of the model card that the
13600
+ # model export job exports.
13600
13601
  # @return [String]
13601
13602
  #
13602
13603
  # @!attribute [rw] model_card_version
@@ -13641,7 +13642,8 @@ module Aws::SageMaker
13641
13642
  end
13642
13643
 
13643
13644
  # @!attribute [rw] model_card_name
13644
- # The name of the model card to describe.
13645
+ # The name or Amazon Resource Name (ARN) of the model card to
13646
+ # describe.
13645
13647
  # @return [String]
13646
13648
  #
13647
13649
  # @!attribute [rw] model_card_version
@@ -25480,7 +25482,8 @@ module Aws::SageMaker
25480
25482
  # @return [Integer]
25481
25483
  #
25482
25484
  # @!attribute [rw] model_card_name
25483
- # List model card versions for the model card with the specified name.
25485
+ # List model card versions for the model card with the specified name
25486
+ # or Amazon Resource Name (ARN).
25484
25487
  # @return [String]
25485
25488
  #
25486
25489
  # @!attribute [rw] model_card_status
@@ -31463,7 +31466,7 @@ module Aws::SageMaker
31463
31466
  # `"CompilerOptions": ""--verbose 1 --num-neuroncores 2 -O2""`.
31464
31467
  #
31465
31468
  # For information about supported compiler options, see [ Neuron
31466
- # Compiler CLI][1].
31469
+ # Compiler CLI Reference Guide][1].
31467
31470
  #
31468
31471
  # * `CoreML`: Compilation for the CoreML [OutputConfig][2]
31469
31472
  # `TargetDevice` supports the following compiler options:
@@ -31494,7 +31497,7 @@ module Aws::SageMaker
31494
31497
  #
31495
31498
  #
31496
31499
  #
31497
- # [1]: https://github.com/aws/aws-neuron-sdk/blob/master/docs/neuron-cc/command-line-reference.md
31500
+ # [1]: https://awsdocs-neuron.readthedocs-hosted.com/en/latest/compiler/neuronx-cc/api-reference-guide/neuron-compiler-cli-reference-guide.html
31498
31501
  # [2]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_OutputConfig.html
31499
31502
  # @return [String]
31500
31503
  #
@@ -38706,6 +38709,11 @@ module Aws::SageMaker
38706
38709
  # A list of tags associated with the transform job.
38707
38710
  # @return [Array<Types::Tag>]
38708
38711
  #
38712
+ # @!attribute [rw] data_capture_config
38713
+ # Configuration to control how SageMaker captures inference data for
38714
+ # batch transform jobs.
38715
+ # @return [Types::BatchDataCaptureConfig]
38716
+ #
38709
38717
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TransformJob AWS API Documentation
38710
38718
  #
38711
38719
  class TransformJob < Struct.new(
@@ -38729,7 +38737,8 @@ module Aws::SageMaker
38729
38737
  :auto_ml_job_arn,
38730
38738
  :data_processing,
38731
38739
  :experiment_config,
38732
- :tags)
38740
+ :tags,
38741
+ :data_capture_config)
38733
38742
  SENSITIVE = []
38734
38743
  include Aws::Structure
38735
38744
  end
@@ -40611,7 +40620,7 @@ module Aws::SageMaker
40611
40620
  end
40612
40621
 
40613
40622
  # @!attribute [rw] model_card_name
40614
- # The name of the model card to update.
40623
+ # The name or Amazon Resource Name (ARN) of the model card to update.
40615
40624
  # @return [String]
40616
40625
  #
40617
40626
  # @!attribute [rw] content
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
53
53
  # @!group service
54
54
  module Aws::SageMaker
55
55
 
56
- GEM_VERSION = '1.203.0'
56
+ GEM_VERSION = '1.205.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sagemaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.203.0
4
+ version: 1.205.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: 2023-08-03 00:00:00.000000000 Z
11
+ date: 2023-08-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core