aws-sdk-sagemaker 1.182.0 → 1.184.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4ff8c6fd8704f894afdb7aaa65f11b510dc4c7b6ee1943e9045339237b716f2e
4
- data.tar.gz: 675a9b9546344e815e9fb8d520fdd9ac891a6e90e9c65efd2e473a34b9157eeb
3
+ metadata.gz: cd6d5100ec22b5ff0ebd06298712ec56e56a63d5757e2ecf02ffb2a61f32d41d
4
+ data.tar.gz: 34b98e9f84b0379a0b809e02cdc3dc56afd2b02f1344976002ae645c64743695
5
5
  SHA512:
6
- metadata.gz: 4a92dc16a092c826452e48a7976d8bfaab204801f5f877280ea70dde58ce15c35d8664cfe5ad9e2db470944b4fa879975d75bd459c41e4cba2603025466de83d
7
- data.tar.gz: acc16a68acc552a345ce6d1c77507ab474f4485704b096be925af7579c1feb29ea4f5a4f4e129b5fae5a34632c13eb186046ae66f2ca930ed425d9a36e6ee08c
6
+ metadata.gz: c0c6b09637d9575168a937e7143b2cdc0d1737ed0b39fe968ce50a30e924b4b270999889e367ab720f4eda3aa473cd71e389964d032789f32e050241f72b9266
7
+ data.tar.gz: 2630905fa55ba362fa39100c18be8dbcc514bcc56459555ec5470ce88127000fcc48cb8b29dec402f7b79bd732ef412a7425111fca3405d9cb00fdfa3dff1ade
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.184.0 (2023-06-01)
5
+ ------------------
6
+
7
+ * Feature - Amazon Sagemaker Autopilot adds support for Parquet file input to NLP text classification jobs.
8
+
9
+ 1.183.0 (2023-05-31)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.182.0 (2023-05-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.182.0
1
+ 1.184.0
@@ -275,6 +275,11 @@ module Aws::SageMaker
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -23584,7 +23589,7 @@ module Aws::SageMaker
23584
23589
  params: params,
23585
23590
  config: config)
23586
23591
  context[:gem_name] = 'aws-sdk-sagemaker'
23587
- context[:gem_version] = '1.182.0'
23592
+ context[:gem_version] = '1.184.0'
23588
23593
  Seahorse::Client::Request.new(handlers, context)
23589
23594
  end
23590
23595
 
@@ -2096,9 +2096,12 @@ module Aws::SageMaker
2096
2096
  # The content type of the data from the input source. The following
2097
2097
  # are the allowed content types for different problems:
2098
2098
  #
2099
- # * ImageClassification: `image/png`, `image/jpeg`, `image/*`
2099
+ # * ImageClassification: `image/png`, `image/jpeg`, or `image/*`. The
2100
+ # default value is `image/*`.
2100
2101
  #
2101
- # * TextClassification: `text/csv;header=present`
2102
+ # * TextClassification: `text/csv;header=present` or
2103
+ # `x-application/vnd.amazon+parquet`. The default value is
2104
+ # `text/csv;header=present`.
2102
2105
  # @return [String]
2103
2106
  #
2104
2107
  # @!attribute [rw] compression_type
@@ -10043,12 +10046,21 @@ module Aws::SageMaker
10043
10046
  include Aws::Structure
10044
10047
  end
10045
10048
 
10046
- # A set of recommended deployment configurations for the model.
10049
+ # A set of recommended deployment configurations for the model. To get
10050
+ # more advanced recommendations, see
10051
+ # [CreateInferenceRecommendationsJob][1] to create an inference
10052
+ # recommendation job.
10053
+ #
10054
+ #
10055
+ #
10056
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateInferenceRecommendationsJob.html
10047
10057
  #
10048
10058
  # @!attribute [rw] recommendation_status
10049
- # Status of the deployment recommendation. `NOT_APPLICABLE` means that
10050
- # SageMaker is unable to provide a default recommendation for the
10051
- # model using the information provided.
10059
+ # Status of the deployment recommendation. The status `NOT_APPLICABLE`
10060
+ # means that SageMaker is unable to provide a default recommendation
10061
+ # for the model using the information provided. If the deployment
10062
+ # status is `IN_PROGRESS`, retry your API call after a few seconds to
10063
+ # get a `COMPLETED` deployment recommendation.
10052
10064
  # @return [String]
10053
10065
  #
10054
10066
  # @!attribute [rw] real_time_inference_recommendations
@@ -33568,9 +33580,7 @@ module Aws::SageMaker
33568
33580
  end
33569
33581
 
33570
33582
  # A collection of settings that configure user interaction with the
33571
- # `RStudioServerPro` app. `RStudioServerProAppSettings` cannot be
33572
- # updated. The `RStudioServerPro` app must be deleted and a new one
33573
- # created to make any changes.
33583
+ # `RStudioServerPro` app.
33574
33584
  #
33575
33585
  # @!attribute [rw] access_status
33576
33586
  # Indicates whether the current user has access to the
@@ -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.182.0'
56
+ GEM_VERSION = '1.184.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.182.0
4
+ version: 1.184.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-05-26 00:00:00.000000000 Z
11
+ date: 2023-06-01 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.165.0
22
+ version: 3.174.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.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement