aws-sdk-sagemaker 1.195.0 → 1.197.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +25 -1
- data/lib/aws-sdk-sagemaker/client_api.rb +6 -0
- data/lib/aws-sdk-sagemaker/types.rb +40 -28
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5263799b9b8aaff4946d32cbdf6b14c5288760859c970b9a3c0ce525d05a436a
|
|
4
|
+
data.tar.gz: 36a41ac8656c3f3d9fac8c1a651a37fef24e79487114f4d373e56faf17095fd1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1aa07bd76e3d9c4c7cfc336f914df4699a9e513ae8a22f2312d0d6071b845c171bd35072151553fcbfe12b3b7ff937a2dc82055119cc6ca327d234ad6d0a219d
|
|
7
|
+
data.tar.gz: 5ae3a6275bcde92b10d4e2b1793e1c821d31d47ec4c681d2275c69ebbdfd150737b77f36c69903569877124817f0217efd22a9e7f07e10a6681e54c9606e8529
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.197.0 (2023-07-13)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon SageMaker Canvas adds WorkspeceSettings support for CanvasAppSettings
|
|
8
|
+
|
|
9
|
+
1.196.0 (2023-07-11)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.195.0 (2023-07-06)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.197.0
|
|
@@ -216,6 +216,10 @@ module Aws::SageMaker
|
|
|
216
216
|
# @option options [Boolean] :endpoint_discovery (false)
|
|
217
217
|
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
|
218
218
|
#
|
|
219
|
+
# @option options [Boolean] :ignore_configured_endpoint_urls
|
|
220
|
+
# Setting to true disables use of endpoint URLs provided via environment
|
|
221
|
+
# variables and the shared configuration file.
|
|
222
|
+
#
|
|
219
223
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
|
220
224
|
# The log formatter.
|
|
221
225
|
#
|
|
@@ -2337,6 +2341,10 @@ module Aws::SageMaker
|
|
|
2337
2341
|
# status: "ENABLED", # accepts ENABLED, DISABLED
|
|
2338
2342
|
# cross_account_model_register_role_arn: "RoleArn",
|
|
2339
2343
|
# },
|
|
2344
|
+
# workspace_settings: {
|
|
2345
|
+
# s3_artifact_path: "S3Uri",
|
|
2346
|
+
# s3_kms_key_id: "KmsKeyId",
|
|
2347
|
+
# },
|
|
2340
2348
|
# },
|
|
2341
2349
|
# },
|
|
2342
2350
|
# subnet_ids: ["SubnetId"], # required
|
|
@@ -8144,6 +8152,10 @@ module Aws::SageMaker
|
|
|
8144
8152
|
# status: "ENABLED", # accepts ENABLED, DISABLED
|
|
8145
8153
|
# cross_account_model_register_role_arn: "RoleArn",
|
|
8146
8154
|
# },
|
|
8155
|
+
# workspace_settings: {
|
|
8156
|
+
# s3_artifact_path: "S3Uri",
|
|
8157
|
+
# s3_kms_key_id: "KmsKeyId",
|
|
8158
|
+
# },
|
|
8147
8159
|
# },
|
|
8148
8160
|
# },
|
|
8149
8161
|
# })
|
|
@@ -10865,6 +10877,8 @@ module Aws::SageMaker
|
|
|
10865
10877
|
# resp.default_user_settings.canvas_app_settings.time_series_forecasting_settings.amazon_forecast_role_arn #=> String
|
|
10866
10878
|
# resp.default_user_settings.canvas_app_settings.model_register_settings.status #=> String, one of "ENABLED", "DISABLED"
|
|
10867
10879
|
# resp.default_user_settings.canvas_app_settings.model_register_settings.cross_account_model_register_role_arn #=> String
|
|
10880
|
+
# resp.default_user_settings.canvas_app_settings.workspace_settings.s3_artifact_path #=> String
|
|
10881
|
+
# resp.default_user_settings.canvas_app_settings.workspace_settings.s3_kms_key_id #=> String
|
|
10868
10882
|
# resp.app_network_access_type #=> String, one of "PublicInternetOnly", "VpcOnly"
|
|
10869
10883
|
# resp.home_efs_file_system_kms_key_id #=> String
|
|
10870
10884
|
# resp.subnet_ids #=> Array
|
|
@@ -14516,6 +14530,8 @@ module Aws::SageMaker
|
|
|
14516
14530
|
# resp.user_settings.canvas_app_settings.time_series_forecasting_settings.amazon_forecast_role_arn #=> String
|
|
14517
14531
|
# resp.user_settings.canvas_app_settings.model_register_settings.status #=> String, one of "ENABLED", "DISABLED"
|
|
14518
14532
|
# resp.user_settings.canvas_app_settings.model_register_settings.cross_account_model_register_role_arn #=> String
|
|
14533
|
+
# resp.user_settings.canvas_app_settings.workspace_settings.s3_artifact_path #=> String
|
|
14534
|
+
# resp.user_settings.canvas_app_settings.workspace_settings.s3_kms_key_id #=> String
|
|
14519
14535
|
#
|
|
14520
14536
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeUserProfile AWS API Documentation
|
|
14521
14537
|
#
|
|
@@ -21892,6 +21908,10 @@ module Aws::SageMaker
|
|
|
21892
21908
|
# status: "ENABLED", # accepts ENABLED, DISABLED
|
|
21893
21909
|
# cross_account_model_register_role_arn: "RoleArn",
|
|
21894
21910
|
# },
|
|
21911
|
+
# workspace_settings: {
|
|
21912
|
+
# s3_artifact_path: "S3Uri",
|
|
21913
|
+
# s3_kms_key_id: "KmsKeyId",
|
|
21914
|
+
# },
|
|
21895
21915
|
# },
|
|
21896
21916
|
# },
|
|
21897
21917
|
# domain_settings_for_update: {
|
|
@@ -23620,6 +23640,10 @@ module Aws::SageMaker
|
|
|
23620
23640
|
# status: "ENABLED", # accepts ENABLED, DISABLED
|
|
23621
23641
|
# cross_account_model_register_role_arn: "RoleArn",
|
|
23622
23642
|
# },
|
|
23643
|
+
# workspace_settings: {
|
|
23644
|
+
# s3_artifact_path: "S3Uri",
|
|
23645
|
+
# s3_kms_key_id: "KmsKeyId",
|
|
23646
|
+
# },
|
|
23623
23647
|
# },
|
|
23624
23648
|
# },
|
|
23625
23649
|
# })
|
|
@@ -23877,7 +23901,7 @@ module Aws::SageMaker
|
|
|
23877
23901
|
params: params,
|
|
23878
23902
|
config: config)
|
|
23879
23903
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
|
23880
|
-
context[:gem_version] = '1.
|
|
23904
|
+
context[:gem_version] = '1.197.0'
|
|
23881
23905
|
Seahorse::Client::Request.new(handlers, context)
|
|
23882
23906
|
end
|
|
23883
23907
|
|
|
@@ -2051,6 +2051,7 @@ module Aws::SageMaker
|
|
|
2051
2051
|
WorkforceVpcEndpointId = Shapes::StringShape.new(name: 'WorkforceVpcEndpointId')
|
|
2052
2052
|
WorkforceVpcId = Shapes::StringShape.new(name: 'WorkforceVpcId')
|
|
2053
2053
|
Workforces = Shapes::ListShape.new(name: 'Workforces')
|
|
2054
|
+
WorkspaceSettings = Shapes::StructureShape.new(name: 'WorkspaceSettings')
|
|
2054
2055
|
Workteam = Shapes::StructureShape.new(name: 'Workteam')
|
|
2055
2056
|
WorkteamArn = Shapes::StringShape.new(name: 'WorkteamArn')
|
|
2056
2057
|
WorkteamName = Shapes::StringShape.new(name: 'WorkteamName')
|
|
@@ -2490,6 +2491,7 @@ module Aws::SageMaker
|
|
|
2490
2491
|
|
|
2491
2492
|
CanvasAppSettings.add_member(:time_series_forecasting_settings, Shapes::ShapeRef.new(shape: TimeSeriesForecastingSettings, location_name: "TimeSeriesForecastingSettings"))
|
|
2492
2493
|
CanvasAppSettings.add_member(:model_register_settings, Shapes::ShapeRef.new(shape: ModelRegisterSettings, location_name: "ModelRegisterSettings"))
|
|
2494
|
+
CanvasAppSettings.add_member(:workspace_settings, Shapes::ShapeRef.new(shape: WorkspaceSettings, location_name: "WorkspaceSettings"))
|
|
2493
2495
|
CanvasAppSettings.struct_class = Types::CanvasAppSettings
|
|
2494
2496
|
|
|
2495
2497
|
CapacitySize.add_member(:type, Shapes::ShapeRef.new(shape: CapacitySizeType, required: true, location_name: "Type"))
|
|
@@ -9075,6 +9077,10 @@ module Aws::SageMaker
|
|
|
9075
9077
|
|
|
9076
9078
|
Workforces.member = Shapes::ShapeRef.new(shape: Workforce)
|
|
9077
9079
|
|
|
9080
|
+
WorkspaceSettings.add_member(:s3_artifact_path, Shapes::ShapeRef.new(shape: S3Uri, location_name: "S3ArtifactPath"))
|
|
9081
|
+
WorkspaceSettings.add_member(:s3_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "S3KmsKeyId"))
|
|
9082
|
+
WorkspaceSettings.struct_class = Types::WorkspaceSettings
|
|
9083
|
+
|
|
9078
9084
|
Workteam.add_member(:workteam_name, Shapes::ShapeRef.new(shape: WorkteamName, required: true, location_name: "WorkteamName"))
|
|
9079
9085
|
Workteam.add_member(:member_definitions, Shapes::ShapeRef.new(shape: MemberDefinitions, required: true, location_name: "MemberDefinitions"))
|
|
9080
9086
|
Workteam.add_member(:workteam_arn, Shapes::ShapeRef.new(shape: WorkteamArn, required: true, location_name: "WorkteamArn"))
|
|
@@ -3103,11 +3103,16 @@ module Aws::SageMaker
|
|
|
3103
3103
|
# The model registry settings for the SageMaker Canvas application.
|
|
3104
3104
|
# @return [Types::ModelRegisterSettings]
|
|
3105
3105
|
#
|
|
3106
|
+
# @!attribute [rw] workspace_settings
|
|
3107
|
+
# The workspace settings for the SageMaker Canvas application.
|
|
3108
|
+
# @return [Types::WorkspaceSettings]
|
|
3109
|
+
#
|
|
3106
3110
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CanvasAppSettings AWS API Documentation
|
|
3107
3111
|
#
|
|
3108
3112
|
class CanvasAppSettings < Struct.new(
|
|
3109
3113
|
:time_series_forecasting_settings,
|
|
3110
|
-
:model_register_settings
|
|
3114
|
+
:model_register_settings,
|
|
3115
|
+
:workspace_settings)
|
|
3111
3116
|
SENSITIVE = []
|
|
3112
3117
|
include Aws::Structure
|
|
3113
3118
|
end
|
|
@@ -35057,15 +35062,10 @@ module Aws::SageMaker
|
|
|
35057
35062
|
# endpoint.
|
|
35058
35063
|
#
|
|
35059
35064
|
# @!attribute [rw] maximum_batch_size
|
|
35060
|
-
#
|
|
35061
|
-
#
|
|
35062
|
-
#
|
|
35063
|
-
#
|
|
35064
|
-
#
|
|
35065
|
-
# For a rollback strategy, if you don't specify the fields in this
|
|
35066
|
-
# object, or if you set the `Value` to 100%, then SageMaker uses a
|
|
35067
|
-
# blue/green rollback strategy and rolls all traffic back to the blue
|
|
35068
|
-
# fleet.
|
|
35065
|
+
# Batch size for each rolling step to provision capacity and turn on
|
|
35066
|
+
# traffic on the new endpoint fleet, and terminate capacity on the old
|
|
35067
|
+
# endpoint fleet. Value must be between 5% to 50% of the variant's
|
|
35068
|
+
# total instance count.
|
|
35069
35069
|
# @return [Types::CapacitySize]
|
|
35070
35070
|
#
|
|
35071
35071
|
# @!attribute [rw] wait_interval_in_seconds
|
|
@@ -35079,15 +35079,12 @@ module Aws::SageMaker
|
|
|
35079
35079
|
# @return [Integer]
|
|
35080
35080
|
#
|
|
35081
35081
|
# @!attribute [rw] rollback_maximum_batch_size
|
|
35082
|
-
#
|
|
35083
|
-
#
|
|
35084
|
-
#
|
|
35085
|
-
# the
|
|
35086
|
-
#
|
|
35087
|
-
#
|
|
35088
|
-
# object, or if you set the `Value` to 100%, then SageMaker uses a
|
|
35089
|
-
# blue/green rollback strategy and rolls all traffic back to the blue
|
|
35090
|
-
# fleet.
|
|
35082
|
+
# Batch size for rollback to the old endpoint fleet. Each rolling step
|
|
35083
|
+
# to provision capacity and turn on traffic on the old endpoint fleet,
|
|
35084
|
+
# and terminate capacity on the new endpoint fleet. If this field is
|
|
35085
|
+
# absent, the default value will be set to 100% of total capacity
|
|
35086
|
+
# which means to bring up the whole capacity of the old fleet at once
|
|
35087
|
+
# during rollback.
|
|
35091
35088
|
# @return [Types::CapacitySize]
|
|
35092
35089
|
#
|
|
35093
35090
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RollingUpdatePolicy AWS API Documentation
|
|
@@ -37133,15 +37130,6 @@ module Aws::SageMaker
|
|
|
37133
37130
|
# `TimeSeriesConfig`.
|
|
37134
37131
|
#
|
|
37135
37132
|
# </note>
|
|
37136
|
-
#
|
|
37137
|
-
# When not provided, the AutoML job V2 includes all the columns from
|
|
37138
|
-
# the original dataset that are not already declared in
|
|
37139
|
-
# `TimeSeriesConfig`. If provided, the AutoML job V2 only considers
|
|
37140
|
-
# these additional columns as a complement to the ones declared in
|
|
37141
|
-
# `TimeSeriesConfig`.
|
|
37142
|
-
#
|
|
37143
|
-
# Autopilot supports the following data types: `numeric`,
|
|
37144
|
-
# `categorical`, `text`, and `datetime`.
|
|
37145
37133
|
# @return [String]
|
|
37146
37134
|
#
|
|
37147
37135
|
# @!attribute [rw] completion_criteria
|
|
@@ -41466,6 +41454,30 @@ module Aws::SageMaker
|
|
|
41466
41454
|
include Aws::Structure
|
|
41467
41455
|
end
|
|
41468
41456
|
|
|
41457
|
+
# The workspace settings for the SageMaker Canvas application.
|
|
41458
|
+
#
|
|
41459
|
+
# @!attribute [rw] s3_artifact_path
|
|
41460
|
+
# The Amazon S3 bucket used to store artifacts generated by Canvas.
|
|
41461
|
+
# Updating the Amazon S3 location impacts existing configuration
|
|
41462
|
+
# settings, and Canvas users no longer have access to their artifacts.
|
|
41463
|
+
# Canvas users must log out and log back in to apply the new location.
|
|
41464
|
+
# @return [String]
|
|
41465
|
+
#
|
|
41466
|
+
# @!attribute [rw] s3_kms_key_id
|
|
41467
|
+
# The Amazon Web Services Key Management Service (KMS) encryption key
|
|
41468
|
+
# ID that is used to encrypt artifacts generated by Canvas in the
|
|
41469
|
+
# Amazon S3 bucket.
|
|
41470
|
+
# @return [String]
|
|
41471
|
+
#
|
|
41472
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/WorkspaceSettings AWS API Documentation
|
|
41473
|
+
#
|
|
41474
|
+
class WorkspaceSettings < Struct.new(
|
|
41475
|
+
:s3_artifact_path,
|
|
41476
|
+
:s3_kms_key_id)
|
|
41477
|
+
SENSITIVE = []
|
|
41478
|
+
include Aws::Structure
|
|
41479
|
+
end
|
|
41480
|
+
|
|
41469
41481
|
# Provides details about a labeling work team.
|
|
41470
41482
|
#
|
|
41471
41483
|
# @!attribute [rw] workteam_name
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
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.
|
|
4
|
+
version: 1.197.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-07-
|
|
11
|
+
date: 2023-07-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|