aws-sdk-sagemaker 1.313.0 → 1.314.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +119 -5
- data/lib/aws-sdk-sagemaker/client_api.rb +72 -2
- data/lib/aws-sdk-sagemaker/types.rb +172 -1
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +38 -4
- data/sig/types.rbs +43 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 23d15a76d789822a62759748288602b0c65fc49881553947d569bd9ff6efc33f
|
4
|
+
data.tar.gz: 9141d34a6733acef9b705132a666740bb63833db467af769e69ce68bb0c9eabe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31e16673cb8fe445f8bda0bdd17d15ec6d333a8835c8a0067b0c90613ea17ac9ef675613bf4ecf4a3a170391af3309e105a938e658a59df18f1c0bdbffdc81a1
|
7
|
+
data.tar.gz: f0d179b37b1bc7fdb38309bd75a6885f093021edbb245e2f3c4bf04db12e5d29110bd9caf4f37c0f164908dc7d44140478027bca1171ba2e22bf3a7466bd24b3
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.314.0 (2025-07-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Changes include new StartSession API for SageMaker Studio spaces and CreateHubContentPresignedUrls API for SageMaker JumpStart.
|
8
|
+
|
4
9
|
1.313.0 (2025-07-01)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.314.0
|
@@ -2862,10 +2862,10 @@ module Aws::SageMaker
|
|
2862
2862
|
# @option params [Types::DomainSettings] :domain_settings
|
2863
2863
|
# A collection of `Domain` settings.
|
2864
2864
|
#
|
2865
|
-
# @option params [
|
2865
|
+
# @option params [Array<String>] :subnet_ids
|
2866
2866
|
# The VPC subnets that the domain uses for communication.
|
2867
2867
|
#
|
2868
|
-
# @option params [
|
2868
|
+
# @option params [String] :vpc_id
|
2869
2869
|
# The ID of the Amazon Virtual Private Cloud (VPC) that the domain uses
|
2870
2870
|
# for communication.
|
2871
2871
|
#
|
@@ -3156,8 +3156,8 @@ module Aws::SageMaker
|
|
3156
3156
|
# single_sign_on_application_arn: "SingleSignOnApplicationArn",
|
3157
3157
|
# },
|
3158
3158
|
# },
|
3159
|
-
# subnet_ids: ["SubnetId"],
|
3160
|
-
# vpc_id: "VpcId",
|
3159
|
+
# subnet_ids: ["SubnetId"],
|
3160
|
+
# vpc_id: "VpcId",
|
3161
3161
|
# tags: [
|
3162
3162
|
# {
|
3163
3163
|
# key: "TagKey", # required
|
@@ -4443,6 +4443,80 @@ module Aws::SageMaker
|
|
4443
4443
|
req.send_request(options)
|
4444
4444
|
end
|
4445
4445
|
|
4446
|
+
# Creates presigned URLs for accessing hub content artifacts. This
|
4447
|
+
# operation generates time-limited, secure URLs that allow direct
|
4448
|
+
# download of model artifacts and associated files from Amazon SageMaker
|
4449
|
+
# hub content, including gated models that require end-user license
|
4450
|
+
# agreement acceptance.
|
4451
|
+
#
|
4452
|
+
# @option params [required, String] :hub_name
|
4453
|
+
# The name or Amazon Resource Name (ARN) of the hub that contains the
|
4454
|
+
# content. For public content, use `SageMakerPublicHub`.
|
4455
|
+
#
|
4456
|
+
# @option params [required, String] :hub_content_type
|
4457
|
+
# The type of hub content to access. Valid values include `Model`,
|
4458
|
+
# `Notebook`, and `ModelReference`.
|
4459
|
+
#
|
4460
|
+
# @option params [required, String] :hub_content_name
|
4461
|
+
# The name of the hub content for which to generate presigned URLs. This
|
4462
|
+
# identifies the specific model or content within the hub.
|
4463
|
+
#
|
4464
|
+
# @option params [String] :hub_content_version
|
4465
|
+
# The version of the hub content. If not specified, the latest version
|
4466
|
+
# is used.
|
4467
|
+
#
|
4468
|
+
# @option params [Types::PresignedUrlAccessConfig] :access_config
|
4469
|
+
# Configuration settings for accessing the hub content, including
|
4470
|
+
# end-user license agreement acceptance for gated models and expected S3
|
4471
|
+
# URL validation.
|
4472
|
+
#
|
4473
|
+
# @option params [Integer] :max_results
|
4474
|
+
# The maximum number of presigned URLs to return in the response.
|
4475
|
+
# Default value is 100. Large models may contain hundreds of files,
|
4476
|
+
# requiring pagination to retrieve all URLs.
|
4477
|
+
#
|
4478
|
+
# @option params [String] :next_token
|
4479
|
+
# A token for pagination. Use this token to retrieve the next set of
|
4480
|
+
# presigned URLs when the response is truncated.
|
4481
|
+
#
|
4482
|
+
# @return [Types::CreateHubContentPresignedUrlsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4483
|
+
#
|
4484
|
+
# * {Types::CreateHubContentPresignedUrlsResponse#authorized_url_configs #authorized_url_configs} => Array<Types::AuthorizedUrl>
|
4485
|
+
# * {Types::CreateHubContentPresignedUrlsResponse#next_token #next_token} => String
|
4486
|
+
#
|
4487
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4488
|
+
#
|
4489
|
+
# @example Request syntax with placeholder values
|
4490
|
+
#
|
4491
|
+
# resp = client.create_hub_content_presigned_urls({
|
4492
|
+
# hub_name: "HubNameOrArn", # required
|
4493
|
+
# hub_content_type: "Model", # required, accepts Model, Notebook, ModelReference
|
4494
|
+
# hub_content_name: "HubContentName", # required
|
4495
|
+
# hub_content_version: "HubContentVersion",
|
4496
|
+
# access_config: {
|
4497
|
+
# accept_eula: false,
|
4498
|
+
# expected_s3_url: "S3ModelUri",
|
4499
|
+
# },
|
4500
|
+
# max_results: 1,
|
4501
|
+
# next_token: "NextToken",
|
4502
|
+
# })
|
4503
|
+
#
|
4504
|
+
# @example Response structure
|
4505
|
+
#
|
4506
|
+
# resp.authorized_url_configs #=> Array
|
4507
|
+
# resp.authorized_url_configs[0].url #=> String
|
4508
|
+
# resp.authorized_url_configs[0].local_path #=> String
|
4509
|
+
# resp.next_token #=> String
|
4510
|
+
#
|
4511
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateHubContentPresignedUrls AWS API Documentation
|
4512
|
+
#
|
4513
|
+
# @overload create_hub_content_presigned_urls(params = {})
|
4514
|
+
# @param [Hash] params ({})
|
4515
|
+
def create_hub_content_presigned_urls(params = {}, options = {})
|
4516
|
+
req = build_request(:create_hub_content_presigned_urls, params)
|
4517
|
+
req.send_request(options)
|
4518
|
+
end
|
4519
|
+
|
4446
4520
|
# Create a hub content reference in order to add a model in the
|
4447
4521
|
# JumpStart public hub to a private hub.
|
4448
4522
|
#
|
@@ -8934,6 +9008,7 @@ module Aws::SageMaker
|
|
8934
9008
|
# },
|
8935
9009
|
# },
|
8936
9010
|
# ],
|
9011
|
+
# remote_access: "ENABLED", # accepts ENABLED, DISABLED
|
8937
9012
|
# },
|
8938
9013
|
# ownership_settings: {
|
8939
9014
|
# owner_user_profile_name: "UserProfileName", # required
|
@@ -17301,6 +17376,7 @@ module Aws::SageMaker
|
|
17301
17376
|
# resp.space_settings.custom_file_systems #=> Array
|
17302
17377
|
# resp.space_settings.custom_file_systems[0].efs_file_system.file_system_id #=> String
|
17303
17378
|
# resp.space_settings.custom_file_systems[0].f_sx_lustre_file_system.file_system_id #=> String
|
17379
|
+
# resp.space_settings.remote_access #=> String, one of "ENABLED", "DISABLED"
|
17304
17380
|
# resp.ownership_settings.owner_user_profile_name #=> String
|
17305
17381
|
# resp.space_sharing_settings.sharing_type #=> String, one of "Private", "Shared"
|
17306
17382
|
# resp.space_display_name #=> String
|
@@ -23954,6 +24030,7 @@ module Aws::SageMaker
|
|
23954
24030
|
# resp.spaces[0].creation_time #=> Time
|
23955
24031
|
# resp.spaces[0].last_modified_time #=> Time
|
23956
24032
|
# resp.spaces[0].space_settings_summary.app_type #=> String, one of "JupyterServer", "KernelGateway", "DetailedProfiler", "TensorBoard", "CodeEditor", "JupyterLab", "RStudioServerPro", "RSessionGateway", "Canvas"
|
24033
|
+
# resp.spaces[0].space_settings_summary.remote_access #=> String, one of "ENABLED", "DISABLED"
|
23957
24034
|
# resp.spaces[0].space_settings_summary.space_storage_settings.ebs_storage_settings.ebs_volume_size_in_gb #=> Integer
|
23958
24035
|
# resp.spaces[0].space_sharing_settings_summary.sharing_type #=> String, one of "Private", "Shared"
|
23959
24036
|
# resp.spaces[0].ownership_settings_summary.owner_user_profile_name #=> String
|
@@ -25793,6 +25870,42 @@ module Aws::SageMaker
|
|
25793
25870
|
req.send_request(options)
|
25794
25871
|
end
|
25795
25872
|
|
25873
|
+
# Initiates a remote connection session between a local integrated
|
25874
|
+
# development environments (IDEs) and a remote SageMaker space.
|
25875
|
+
#
|
25876
|
+
# @option params [required, String] :resource_identifier
|
25877
|
+
# The Amazon Resource Name (ARN) of the resource to which the remote
|
25878
|
+
# connection will be established. For example, this identifies the
|
25879
|
+
# specific ARN space application you want to connect to from your local
|
25880
|
+
# IDE.
|
25881
|
+
#
|
25882
|
+
# @return [Types::StartSessionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
25883
|
+
#
|
25884
|
+
# * {Types::StartSessionResponse#session_id #session_id} => String
|
25885
|
+
# * {Types::StartSessionResponse#stream_url #stream_url} => String
|
25886
|
+
# * {Types::StartSessionResponse#token_value #token_value} => String
|
25887
|
+
#
|
25888
|
+
# @example Request syntax with placeholder values
|
25889
|
+
#
|
25890
|
+
# resp = client.start_session({
|
25891
|
+
# resource_identifier: "ResourceIdentifier", # required
|
25892
|
+
# })
|
25893
|
+
#
|
25894
|
+
# @example Response structure
|
25895
|
+
#
|
25896
|
+
# resp.session_id #=> String
|
25897
|
+
# resp.stream_url #=> String
|
25898
|
+
# resp.token_value #=> String
|
25899
|
+
#
|
25900
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StartSession AWS API Documentation
|
25901
|
+
#
|
25902
|
+
# @overload start_session(params = {})
|
25903
|
+
# @param [Hash] params ({})
|
25904
|
+
def start_session(params = {}, options = {})
|
25905
|
+
req = build_request(:start_session, params)
|
25906
|
+
req.send_request(options)
|
25907
|
+
end
|
25908
|
+
|
25796
25909
|
# A method for forcing a running job to shut down.
|
25797
25910
|
#
|
25798
25911
|
# @option params [required, String] :auto_ml_job_name
|
@@ -29295,6 +29408,7 @@ module Aws::SageMaker
|
|
29295
29408
|
# },
|
29296
29409
|
# },
|
29297
29410
|
# ],
|
29411
|
+
# remote_access: "ENABLED", # accepts ENABLED, DISABLED
|
29298
29412
|
# },
|
29299
29413
|
# space_display_name: "NonEmptyString64",
|
29300
29414
|
# })
|
@@ -30027,7 +30141,7 @@ module Aws::SageMaker
|
|
30027
30141
|
tracer: tracer
|
30028
30142
|
)
|
30029
30143
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
30030
|
-
context[:gem_version] = '1.
|
30144
|
+
context[:gem_version] = '1.314.0'
|
30031
30145
|
Seahorse::Client::Request.new(handlers, context)
|
30032
30146
|
end
|
30033
30147
|
|
@@ -115,6 +115,8 @@ module Aws::SageMaker
|
|
115
115
|
AuthenticationRequestExtraParams = Shapes::MapShape.new(name: 'AuthenticationRequestExtraParams')
|
116
116
|
AuthenticationRequestExtraParamsKey = Shapes::StringShape.new(name: 'AuthenticationRequestExtraParamsKey')
|
117
117
|
AuthenticationRequestExtraParamsValue = Shapes::StringShape.new(name: 'AuthenticationRequestExtraParamsValue')
|
118
|
+
AuthorizedUrl = Shapes::StructureShape.new(name: 'AuthorizedUrl')
|
119
|
+
AuthorizedUrlConfigs = Shapes::ListShape.new(name: 'AuthorizedUrlConfigs')
|
118
120
|
AutoGenerateEndpointName = Shapes::BooleanShape.new(name: 'AutoGenerateEndpointName')
|
119
121
|
AutoMLAlgorithm = Shapes::StringShape.new(name: 'AutoMLAlgorithm')
|
120
122
|
AutoMLAlgorithmConfig = Shapes::StructureShape.new(name: 'AutoMLAlgorithmConfig')
|
@@ -451,6 +453,8 @@ module Aws::SageMaker
|
|
451
453
|
CreateFeatureGroupResponse = Shapes::StructureShape.new(name: 'CreateFeatureGroupResponse')
|
452
454
|
CreateFlowDefinitionRequest = Shapes::StructureShape.new(name: 'CreateFlowDefinitionRequest')
|
453
455
|
CreateFlowDefinitionResponse = Shapes::StructureShape.new(name: 'CreateFlowDefinitionResponse')
|
456
|
+
CreateHubContentPresignedUrlsRequest = Shapes::StructureShape.new(name: 'CreateHubContentPresignedUrlsRequest')
|
457
|
+
CreateHubContentPresignedUrlsResponse = Shapes::StructureShape.new(name: 'CreateHubContentPresignedUrlsResponse')
|
454
458
|
CreateHubContentReferenceRequest = Shapes::StructureShape.new(name: 'CreateHubContentReferenceRequest')
|
455
459
|
CreateHubContentReferenceResponse = Shapes::StructureShape.new(name: 'CreateHubContentReferenceResponse')
|
456
460
|
CreateHubRequest = Shapes::StructureShape.new(name: 'CreateHubRequest')
|
@@ -1481,7 +1485,9 @@ module Aws::SageMaker
|
|
1481
1485
|
ListWorkteamsRequest = Shapes::StructureShape.new(name: 'ListWorkteamsRequest')
|
1482
1486
|
ListWorkteamsResponse = Shapes::StructureShape.new(name: 'ListWorkteamsResponse')
|
1483
1487
|
ListWorkteamsSortByOptions = Shapes::StringShape.new(name: 'ListWorkteamsSortByOptions')
|
1488
|
+
LocalPath = Shapes::StringShape.new(name: 'LocalPath')
|
1484
1489
|
Long = Shapes::IntegerShape.new(name: 'Long')
|
1490
|
+
LongS3Uri = Shapes::StringShape.new(name: 'LongS3Uri')
|
1485
1491
|
MLFramework = Shapes::StringShape.new(name: 'MLFramework')
|
1486
1492
|
ManagedInstanceScalingMaxInstanceCount = Shapes::IntegerShape.new(name: 'ManagedInstanceScalingMaxInstanceCount')
|
1487
1493
|
ManagedInstanceScalingMinInstanceCount = Shapes::IntegerShape.new(name: 'ManagedInstanceScalingMinInstanceCount')
|
@@ -1850,6 +1856,7 @@ module Aws::SageMaker
|
|
1850
1856
|
PredefinedMetricSpecification = Shapes::StructureShape.new(name: 'PredefinedMetricSpecification')
|
1851
1857
|
PreemptTeamTasks = Shapes::StringShape.new(name: 'PreemptTeamTasks')
|
1852
1858
|
PresignedDomainUrl = Shapes::StringShape.new(name: 'PresignedDomainUrl')
|
1859
|
+
PresignedUrlAccessConfig = Shapes::StructureShape.new(name: 'PresignedUrlAccessConfig')
|
1853
1860
|
PriorityClass = Shapes::StructureShape.new(name: 'PriorityClass')
|
1854
1861
|
PriorityClassList = Shapes::ListShape.new(name: 'PriorityClassList')
|
1855
1862
|
PriorityWeight = Shapes::IntegerShape.new(name: 'PriorityWeight')
|
@@ -2040,6 +2047,7 @@ module Aws::SageMaker
|
|
2040
2047
|
ResourceConfig = Shapes::StructureShape.new(name: 'ResourceConfig')
|
2041
2048
|
ResourceConfigForUpdate = Shapes::StructureShape.new(name: 'ResourceConfigForUpdate')
|
2042
2049
|
ResourceId = Shapes::StringShape.new(name: 'ResourceId')
|
2050
|
+
ResourceIdentifier = Shapes::StringShape.new(name: 'ResourceIdentifier')
|
2043
2051
|
ResourceInUse = Shapes::StructureShape.new(name: 'ResourceInUse')
|
2044
2052
|
ResourceLimitExceeded = Shapes::StructureShape.new(name: 'ResourceLimitExceeded')
|
2045
2053
|
ResourceLimits = Shapes::StructureShape.new(name: 'ResourceLimits')
|
@@ -2129,6 +2137,7 @@ module Aws::SageMaker
|
|
2129
2137
|
ServiceCatalogProvisioningUpdateDetails = Shapes::StructureShape.new(name: 'ServiceCatalogProvisioningUpdateDetails')
|
2130
2138
|
SessionChainingConfig = Shapes::StructureShape.new(name: 'SessionChainingConfig')
|
2131
2139
|
SessionExpirationDurationInSeconds = Shapes::IntegerShape.new(name: 'SessionExpirationDurationInSeconds')
|
2140
|
+
SessionId = Shapes::StringShape.new(name: 'SessionId')
|
2132
2141
|
ShadowModeConfig = Shapes::StructureShape.new(name: 'ShadowModeConfig')
|
2133
2142
|
ShadowModelVariantConfig = Shapes::StructureShape.new(name: 'ShadowModelVariantConfig')
|
2134
2143
|
ShadowModelVariantConfigList = Shapes::ListShape.new(name: 'ShadowModelVariantConfigList')
|
@@ -2191,6 +2200,8 @@ module Aws::SageMaker
|
|
2191
2200
|
StartNotebookInstanceInput = Shapes::StructureShape.new(name: 'StartNotebookInstanceInput')
|
2192
2201
|
StartPipelineExecutionRequest = Shapes::StructureShape.new(name: 'StartPipelineExecutionRequest')
|
2193
2202
|
StartPipelineExecutionResponse = Shapes::StructureShape.new(name: 'StartPipelineExecutionResponse')
|
2203
|
+
StartSessionRequest = Shapes::StructureShape.new(name: 'StartSessionRequest')
|
2204
|
+
StartSessionResponse = Shapes::StructureShape.new(name: 'StartSessionResponse')
|
2194
2205
|
Statistic = Shapes::StringShape.new(name: 'Statistic')
|
2195
2206
|
StatusDetails = Shapes::StringShape.new(name: 'StatusDetails')
|
2196
2207
|
StatusMessage = Shapes::StringShape.new(name: 'StatusMessage')
|
@@ -2219,6 +2230,7 @@ module Aws::SageMaker
|
|
2219
2230
|
StopTransformJobRequest = Shapes::StructureShape.new(name: 'StopTransformJobRequest')
|
2220
2231
|
StoppingCondition = Shapes::StructureShape.new(name: 'StoppingCondition')
|
2221
2232
|
StorageType = Shapes::StringShape.new(name: 'StorageType')
|
2233
|
+
StreamUrl = Shapes::StringShape.new(name: 'StreamUrl')
|
2222
2234
|
String = Shapes::StringShape.new(name: 'String')
|
2223
2235
|
String1024 = Shapes::StringShape.new(name: 'String1024')
|
2224
2236
|
String128 = Shapes::StringShape.new(name: 'String128')
|
@@ -2298,6 +2310,7 @@ module Aws::SageMaker
|
|
2298
2310
|
TimeSeriesTransformations = Shapes::StructureShape.new(name: 'TimeSeriesTransformations')
|
2299
2311
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
2300
2312
|
TimestampAttributeName = Shapes::StringShape.new(name: 'TimestampAttributeName')
|
2313
|
+
TokenValue = Shapes::StringShape.new(name: 'TokenValue')
|
2301
2314
|
TotalHits = Shapes::StructureShape.new(name: 'TotalHits')
|
2302
2315
|
TotalInstanceCount = Shapes::IntegerShape.new(name: 'TotalInstanceCount')
|
2303
2316
|
TrackingServerArn = Shapes::StringShape.new(name: 'TrackingServerArn')
|
@@ -2808,6 +2821,12 @@ module Aws::SageMaker
|
|
2808
2821
|
AuthenticationRequestExtraParams.key = Shapes::ShapeRef.new(shape: AuthenticationRequestExtraParamsKey)
|
2809
2822
|
AuthenticationRequestExtraParams.value = Shapes::ShapeRef.new(shape: AuthenticationRequestExtraParamsValue)
|
2810
2823
|
|
2824
|
+
AuthorizedUrl.add_member(:url, Shapes::ShapeRef.new(shape: LongS3Uri, location_name: "Url"))
|
2825
|
+
AuthorizedUrl.add_member(:local_path, Shapes::ShapeRef.new(shape: LocalPath, location_name: "LocalPath"))
|
2826
|
+
AuthorizedUrl.struct_class = Types::AuthorizedUrl
|
2827
|
+
|
2828
|
+
AuthorizedUrlConfigs.member = Shapes::ShapeRef.new(shape: AuthorizedUrl)
|
2829
|
+
|
2811
2830
|
AutoMLAlgorithmConfig.add_member(:auto_ml_algorithms, Shapes::ShapeRef.new(shape: AutoMLAlgorithms, required: true, location_name: "AutoMLAlgorithms"))
|
2812
2831
|
AutoMLAlgorithmConfig.struct_class = Types::AutoMLAlgorithmConfig
|
2813
2832
|
|
@@ -3681,8 +3700,8 @@ module Aws::SageMaker
|
|
3681
3700
|
CreateDomainRequest.add_member(:auth_mode, Shapes::ShapeRef.new(shape: AuthMode, required: true, location_name: "AuthMode"))
|
3682
3701
|
CreateDomainRequest.add_member(:default_user_settings, Shapes::ShapeRef.new(shape: UserSettings, required: true, location_name: "DefaultUserSettings"))
|
3683
3702
|
CreateDomainRequest.add_member(:domain_settings, Shapes::ShapeRef.new(shape: DomainSettings, location_name: "DomainSettings"))
|
3684
|
-
CreateDomainRequest.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: Subnets,
|
3685
|
-
CreateDomainRequest.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId,
|
3703
|
+
CreateDomainRequest.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: Subnets, location_name: "SubnetIds"))
|
3704
|
+
CreateDomainRequest.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "VpcId"))
|
3686
3705
|
CreateDomainRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
3687
3706
|
CreateDomainRequest.add_member(:app_network_access_type, Shapes::ShapeRef.new(shape: AppNetworkAccessType, location_name: "AppNetworkAccessType"))
|
3688
3707
|
CreateDomainRequest.add_member(:home_efs_file_system_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, deprecated: true, location_name: "HomeEfsFileSystemKmsKeyId", metadata: {"deprecatedMessage" => "This property is deprecated, use KmsKeyId instead."}))
|
@@ -3782,6 +3801,19 @@ module Aws::SageMaker
|
|
3782
3801
|
CreateFlowDefinitionResponse.add_member(:flow_definition_arn, Shapes::ShapeRef.new(shape: FlowDefinitionArn, required: true, location_name: "FlowDefinitionArn"))
|
3783
3802
|
CreateFlowDefinitionResponse.struct_class = Types::CreateFlowDefinitionResponse
|
3784
3803
|
|
3804
|
+
CreateHubContentPresignedUrlsRequest.add_member(:hub_name, Shapes::ShapeRef.new(shape: HubNameOrArn, required: true, location_name: "HubName"))
|
3805
|
+
CreateHubContentPresignedUrlsRequest.add_member(:hub_content_type, Shapes::ShapeRef.new(shape: HubContentType, required: true, location_name: "HubContentType"))
|
3806
|
+
CreateHubContentPresignedUrlsRequest.add_member(:hub_content_name, Shapes::ShapeRef.new(shape: HubContentName, required: true, location_name: "HubContentName"))
|
3807
|
+
CreateHubContentPresignedUrlsRequest.add_member(:hub_content_version, Shapes::ShapeRef.new(shape: HubContentVersion, location_name: "HubContentVersion"))
|
3808
|
+
CreateHubContentPresignedUrlsRequest.add_member(:access_config, Shapes::ShapeRef.new(shape: PresignedUrlAccessConfig, location_name: "AccessConfig"))
|
3809
|
+
CreateHubContentPresignedUrlsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
3810
|
+
CreateHubContentPresignedUrlsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3811
|
+
CreateHubContentPresignedUrlsRequest.struct_class = Types::CreateHubContentPresignedUrlsRequest
|
3812
|
+
|
3813
|
+
CreateHubContentPresignedUrlsResponse.add_member(:authorized_url_configs, Shapes::ShapeRef.new(shape: AuthorizedUrlConfigs, required: true, location_name: "AuthorizedUrlConfigs"))
|
3814
|
+
CreateHubContentPresignedUrlsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
3815
|
+
CreateHubContentPresignedUrlsResponse.struct_class = Types::CreateHubContentPresignedUrlsResponse
|
3816
|
+
|
3785
3817
|
CreateHubContentReferenceRequest.add_member(:hub_name, Shapes::ShapeRef.new(shape: HubNameOrArn, required: true, location_name: "HubName"))
|
3786
3818
|
CreateHubContentReferenceRequest.add_member(:sage_maker_public_hub_content_arn, Shapes::ShapeRef.new(shape: SageMakerPublicHubContentArn, required: true, location_name: "SageMakerPublicHubContentArn"))
|
3787
3819
|
CreateHubContentReferenceRequest.add_member(:hub_content_name, Shapes::ShapeRef.new(shape: HubContentName, location_name: "HubContentName"))
|
@@ -9299,6 +9331,10 @@ module Aws::SageMaker
|
|
9299
9331
|
PredefinedMetricSpecification.add_member(:predefined_metric_type, Shapes::ShapeRef.new(shape: String, location_name: "PredefinedMetricType"))
|
9300
9332
|
PredefinedMetricSpecification.struct_class = Types::PredefinedMetricSpecification
|
9301
9333
|
|
9334
|
+
PresignedUrlAccessConfig.add_member(:accept_eula, Shapes::ShapeRef.new(shape: Boolean, location_name: "AcceptEula", metadata: {"box" => true}))
|
9335
|
+
PresignedUrlAccessConfig.add_member(:expected_s3_url, Shapes::ShapeRef.new(shape: S3ModelUri, location_name: "ExpectedS3Url"))
|
9336
|
+
PresignedUrlAccessConfig.struct_class = Types::PresignedUrlAccessConfig
|
9337
|
+
|
9302
9338
|
PriorityClass.add_member(:name, Shapes::ShapeRef.new(shape: ClusterSchedulerPriorityClassName, required: true, location_name: "Name"))
|
9303
9339
|
PriorityClass.add_member(:weight, Shapes::ShapeRef.new(shape: PriorityWeight, required: true, location_name: "Weight"))
|
9304
9340
|
PriorityClass.struct_class = Types::PriorityClass
|
@@ -10096,9 +10132,11 @@ module Aws::SageMaker
|
|
10096
10132
|
SpaceSettings.add_member(:space_storage_settings, Shapes::ShapeRef.new(shape: SpaceStorageSettings, location_name: "SpaceStorageSettings"))
|
10097
10133
|
SpaceSettings.add_member(:space_managed_resources, Shapes::ShapeRef.new(shape: FeatureStatus, location_name: "SpaceManagedResources"))
|
10098
10134
|
SpaceSettings.add_member(:custom_file_systems, Shapes::ShapeRef.new(shape: CustomFileSystems, location_name: "CustomFileSystems"))
|
10135
|
+
SpaceSettings.add_member(:remote_access, Shapes::ShapeRef.new(shape: FeatureStatus, location_name: "RemoteAccess"))
|
10099
10136
|
SpaceSettings.struct_class = Types::SpaceSettings
|
10100
10137
|
|
10101
10138
|
SpaceSettingsSummary.add_member(:app_type, Shapes::ShapeRef.new(shape: AppType, location_name: "AppType"))
|
10139
|
+
SpaceSettingsSummary.add_member(:remote_access, Shapes::ShapeRef.new(shape: FeatureStatus, location_name: "RemoteAccess"))
|
10102
10140
|
SpaceSettingsSummary.add_member(:space_storage_settings, Shapes::ShapeRef.new(shape: SpaceStorageSettings, location_name: "SpaceStorageSettings"))
|
10103
10141
|
SpaceSettingsSummary.struct_class = Types::SpaceSettingsSummary
|
10104
10142
|
|
@@ -10150,6 +10188,14 @@ module Aws::SageMaker
|
|
10150
10188
|
StartPipelineExecutionResponse.add_member(:pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, location_name: "PipelineExecutionArn"))
|
10151
10189
|
StartPipelineExecutionResponse.struct_class = Types::StartPipelineExecutionResponse
|
10152
10190
|
|
10191
|
+
StartSessionRequest.add_member(:resource_identifier, Shapes::ShapeRef.new(shape: ResourceIdentifier, required: true, location_name: "ResourceIdentifier"))
|
10192
|
+
StartSessionRequest.struct_class = Types::StartSessionRequest
|
10193
|
+
|
10194
|
+
StartSessionResponse.add_member(:session_id, Shapes::ShapeRef.new(shape: SessionId, location_name: "SessionId"))
|
10195
|
+
StartSessionResponse.add_member(:stream_url, Shapes::ShapeRef.new(shape: StreamUrl, location_name: "StreamUrl"))
|
10196
|
+
StartSessionResponse.add_member(:token_value, Shapes::ShapeRef.new(shape: TokenValue, location_name: "TokenValue"))
|
10197
|
+
StartSessionResponse.struct_class = Types::StartSessionResponse
|
10198
|
+
|
10153
10199
|
StopAutoMLJobRequest.add_member(:auto_ml_job_name, Shapes::ShapeRef.new(shape: AutoMLJobName, required: true, location_name: "AutoMLJobName"))
|
10154
10200
|
StopAutoMLJobRequest.struct_class = Types::StopAutoMLJobRequest
|
10155
10201
|
|
@@ -11606,6 +11652,20 @@ module Aws::SageMaker
|
|
11606
11652
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
11607
11653
|
end)
|
11608
11654
|
|
11655
|
+
api.add_operation(:create_hub_content_presigned_urls, Seahorse::Model::Operation.new.tap do |o|
|
11656
|
+
o.name = "CreateHubContentPresignedUrls"
|
11657
|
+
o.http_method = "POST"
|
11658
|
+
o.http_request_uri = "/"
|
11659
|
+
o.input = Shapes::ShapeRef.new(shape: CreateHubContentPresignedUrlsRequest)
|
11660
|
+
o.output = Shapes::ShapeRef.new(shape: CreateHubContentPresignedUrlsResponse)
|
11661
|
+
o[:pager] = Aws::Pager.new(
|
11662
|
+
limit_key: "max_results",
|
11663
|
+
tokens: {
|
11664
|
+
"next_token" => "next_token"
|
11665
|
+
}
|
11666
|
+
)
|
11667
|
+
end)
|
11668
|
+
|
11609
11669
|
api.add_operation(:create_hub_content_reference, Seahorse::Model::Operation.new.tap do |o|
|
11610
11670
|
o.name = "CreateHubContentReference"
|
11611
11671
|
o.http_method = "POST"
|
@@ -14474,6 +14534,16 @@ module Aws::SageMaker
|
|
14474
14534
|
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
14475
14535
|
end)
|
14476
14536
|
|
14537
|
+
api.add_operation(:start_session, Seahorse::Model::Operation.new.tap do |o|
|
14538
|
+
o.name = "StartSession"
|
14539
|
+
o.http_method = "POST"
|
14540
|
+
o.http_request_uri = "/"
|
14541
|
+
o.input = Shapes::ShapeRef.new(shape: StartSessionRequest)
|
14542
|
+
o.output = Shapes::ShapeRef.new(shape: StartSessionResponse)
|
14543
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
|
14544
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitExceeded)
|
14545
|
+
end)
|
14546
|
+
|
14477
14547
|
api.add_operation(:stop_auto_ml_job, Seahorse::Model::Operation.new.tap do |o|
|
14478
14548
|
o.name = "StopAutoMLJob"
|
14479
14549
|
o.http_method = "POST"
|
@@ -1798,6 +1798,29 @@ module Aws::SageMaker
|
|
1798
1798
|
include Aws::Structure
|
1799
1799
|
end
|
1800
1800
|
|
1801
|
+
# Contains a presigned URL and its associated local file path for
|
1802
|
+
# downloading hub content artifacts.
|
1803
|
+
#
|
1804
|
+
# @!attribute [rw] url
|
1805
|
+
# The presigned S3 URL that provides temporary, secure access to
|
1806
|
+
# download the file. URLs expire within 15 minutes for security
|
1807
|
+
# purposes.
|
1808
|
+
# @return [String]
|
1809
|
+
#
|
1810
|
+
# @!attribute [rw] local_path
|
1811
|
+
# The recommended local file path where the downloaded file should be
|
1812
|
+
# stored to maintain proper directory structure and file organization.
|
1813
|
+
# @return [String]
|
1814
|
+
#
|
1815
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AuthorizedUrl AWS API Documentation
|
1816
|
+
#
|
1817
|
+
class AuthorizedUrl < Struct.new(
|
1818
|
+
:url,
|
1819
|
+
:local_path)
|
1820
|
+
SENSITIVE = []
|
1821
|
+
include Aws::Structure
|
1822
|
+
end
|
1823
|
+
|
1801
1824
|
# The selection of algorithms trained on your dataset to generate the
|
1802
1825
|
# model candidates for an Autopilot job.
|
1803
1826
|
#
|
@@ -7697,6 +7720,78 @@ module Aws::SageMaker
|
|
7697
7720
|
include Aws::Structure
|
7698
7721
|
end
|
7699
7722
|
|
7723
|
+
# @!attribute [rw] hub_name
|
7724
|
+
# The name or Amazon Resource Name (ARN) of the hub that contains the
|
7725
|
+
# content. For public content, use `SageMakerPublicHub`.
|
7726
|
+
# @return [String]
|
7727
|
+
#
|
7728
|
+
# @!attribute [rw] hub_content_type
|
7729
|
+
# The type of hub content to access. Valid values include `Model`,
|
7730
|
+
# `Notebook`, and `ModelReference`.
|
7731
|
+
# @return [String]
|
7732
|
+
#
|
7733
|
+
# @!attribute [rw] hub_content_name
|
7734
|
+
# The name of the hub content for which to generate presigned URLs.
|
7735
|
+
# This identifies the specific model or content within the hub.
|
7736
|
+
# @return [String]
|
7737
|
+
#
|
7738
|
+
# @!attribute [rw] hub_content_version
|
7739
|
+
# The version of the hub content. If not specified, the latest version
|
7740
|
+
# is used.
|
7741
|
+
# @return [String]
|
7742
|
+
#
|
7743
|
+
# @!attribute [rw] access_config
|
7744
|
+
# Configuration settings for accessing the hub content, including
|
7745
|
+
# end-user license agreement acceptance for gated models and expected
|
7746
|
+
# S3 URL validation.
|
7747
|
+
# @return [Types::PresignedUrlAccessConfig]
|
7748
|
+
#
|
7749
|
+
# @!attribute [rw] max_results
|
7750
|
+
# The maximum number of presigned URLs to return in the response.
|
7751
|
+
# Default value is 100. Large models may contain hundreds of files,
|
7752
|
+
# requiring pagination to retrieve all URLs.
|
7753
|
+
# @return [Integer]
|
7754
|
+
#
|
7755
|
+
# @!attribute [rw] next_token
|
7756
|
+
# A token for pagination. Use this token to retrieve the next set of
|
7757
|
+
# presigned URLs when the response is truncated.
|
7758
|
+
# @return [String]
|
7759
|
+
#
|
7760
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateHubContentPresignedUrlsRequest AWS API Documentation
|
7761
|
+
#
|
7762
|
+
class CreateHubContentPresignedUrlsRequest < Struct.new(
|
7763
|
+
:hub_name,
|
7764
|
+
:hub_content_type,
|
7765
|
+
:hub_content_name,
|
7766
|
+
:hub_content_version,
|
7767
|
+
:access_config,
|
7768
|
+
:max_results,
|
7769
|
+
:next_token)
|
7770
|
+
SENSITIVE = []
|
7771
|
+
include Aws::Structure
|
7772
|
+
end
|
7773
|
+
|
7774
|
+
# @!attribute [rw] authorized_url_configs
|
7775
|
+
# An array of authorized URL configurations, each containing a
|
7776
|
+
# presigned URL and its corresponding local file path for proper file
|
7777
|
+
# organization during download.
|
7778
|
+
# @return [Array<Types::AuthorizedUrl>]
|
7779
|
+
#
|
7780
|
+
# @!attribute [rw] next_token
|
7781
|
+
# A token for pagination. If present, indicates that more presigned
|
7782
|
+
# URLs are available. Use this token in a subsequent request to
|
7783
|
+
# retrieve additional URLs.
|
7784
|
+
# @return [String]
|
7785
|
+
#
|
7786
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateHubContentPresignedUrlsResponse AWS API Documentation
|
7787
|
+
#
|
7788
|
+
class CreateHubContentPresignedUrlsResponse < Struct.new(
|
7789
|
+
:authorized_url_configs,
|
7790
|
+
:next_token)
|
7791
|
+
SENSITIVE = []
|
7792
|
+
include Aws::Structure
|
7793
|
+
end
|
7794
|
+
|
7700
7795
|
# @!attribute [rw] hub_name
|
7701
7796
|
# The name of the hub to add the hub content reference to.
|
7702
7797
|
# @return [String]
|
@@ -39026,6 +39121,30 @@ module Aws::SageMaker
|
|
39026
39121
|
include Aws::Structure
|
39027
39122
|
end
|
39028
39123
|
|
39124
|
+
# Configuration for accessing hub content through presigned URLs,
|
39125
|
+
# including license agreement acceptance and URL validation settings.
|
39126
|
+
#
|
39127
|
+
# @!attribute [rw] accept_eula
|
39128
|
+
# Indicates acceptance of the End User License Agreement (EULA) for
|
39129
|
+
# gated models. Set to true to acknowledge acceptance of the license
|
39130
|
+
# terms required for accessing gated content.
|
39131
|
+
# @return [Boolean]
|
39132
|
+
#
|
39133
|
+
# @!attribute [rw] expected_s3_url
|
39134
|
+
# The expected S3 URL prefix for validation purposes. This parameter
|
39135
|
+
# helps ensure consistency between the resolved S3 URIs and the
|
39136
|
+
# deployment configuration, reducing potential compatibility issues.
|
39137
|
+
# @return [String]
|
39138
|
+
#
|
39139
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PresignedUrlAccessConfig AWS API Documentation
|
39140
|
+
#
|
39141
|
+
class PresignedUrlAccessConfig < Struct.new(
|
39142
|
+
:accept_eula,
|
39143
|
+
:expected_s3_url)
|
39144
|
+
SENSITIVE = []
|
39145
|
+
include Aws::Structure
|
39146
|
+
end
|
39147
|
+
|
39029
39148
|
# Priority class configuration. When included in `PriorityClasses`,
|
39030
39149
|
# these class configurations define how tasks are queued.
|
39031
39150
|
#
|
@@ -44123,6 +44242,12 @@ module Aws::SageMaker
|
|
44123
44242
|
# system in Amazon SageMaker AI Studio.
|
44124
44243
|
# @return [Array<Types::CustomFileSystem>]
|
44125
44244
|
#
|
44245
|
+
# @!attribute [rw] remote_access
|
44246
|
+
# A setting that enables or disables remote access for a SageMaker
|
44247
|
+
# space. When enabled, this allows you to connect to the remote space
|
44248
|
+
# from your local IDE.
|
44249
|
+
# @return [String]
|
44250
|
+
#
|
44126
44251
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceSettings AWS API Documentation
|
44127
44252
|
#
|
44128
44253
|
class SpaceSettings < Struct.new(
|
@@ -44133,7 +44258,8 @@ module Aws::SageMaker
|
|
44133
44258
|
:app_type,
|
44134
44259
|
:space_storage_settings,
|
44135
44260
|
:space_managed_resources,
|
44136
|
-
:custom_file_systems
|
44261
|
+
:custom_file_systems,
|
44262
|
+
:remote_access)
|
44137
44263
|
SENSITIVE = []
|
44138
44264
|
include Aws::Structure
|
44139
44265
|
end
|
@@ -44144,6 +44270,12 @@ module Aws::SageMaker
|
|
44144
44270
|
# The type of app created within the space.
|
44145
44271
|
# @return [String]
|
44146
44272
|
#
|
44273
|
+
# @!attribute [rw] remote_access
|
44274
|
+
# A setting that enables or disables remote access for a SageMaker
|
44275
|
+
# space. When enabled, this allows you to connect to the remote space
|
44276
|
+
# from your local IDE.
|
44277
|
+
# @return [String]
|
44278
|
+
#
|
44147
44279
|
# @!attribute [rw] space_storage_settings
|
44148
44280
|
# The storage settings for a space.
|
44149
44281
|
# @return [Types::SpaceStorageSettings]
|
@@ -44152,6 +44284,7 @@ module Aws::SageMaker
|
|
44152
44284
|
#
|
44153
44285
|
class SpaceSettingsSummary < Struct.new(
|
44154
44286
|
:app_type,
|
44287
|
+
:remote_access,
|
44155
44288
|
:space_storage_settings)
|
44156
44289
|
SENSITIVE = []
|
44157
44290
|
include Aws::Structure
|
@@ -44376,6 +44509,44 @@ module Aws::SageMaker
|
|
44376
44509
|
include Aws::Structure
|
44377
44510
|
end
|
44378
44511
|
|
44512
|
+
# @!attribute [rw] resource_identifier
|
44513
|
+
# The Amazon Resource Name (ARN) of the resource to which the remote
|
44514
|
+
# connection will be established. For example, this identifies the
|
44515
|
+
# specific ARN space application you want to connect to from your
|
44516
|
+
# local IDE.
|
44517
|
+
# @return [String]
|
44518
|
+
#
|
44519
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StartSessionRequest AWS API Documentation
|
44520
|
+
#
|
44521
|
+
class StartSessionRequest < Struct.new(
|
44522
|
+
:resource_identifier)
|
44523
|
+
SENSITIVE = []
|
44524
|
+
include Aws::Structure
|
44525
|
+
end
|
44526
|
+
|
44527
|
+
# @!attribute [rw] session_id
|
44528
|
+
# A unique identifier for the established remote connection session.
|
44529
|
+
# @return [String]
|
44530
|
+
#
|
44531
|
+
# @!attribute [rw] stream_url
|
44532
|
+
# A WebSocket URL used to establish a SSH connection between the local
|
44533
|
+
# IDE and remote SageMaker space.
|
44534
|
+
# @return [String]
|
44535
|
+
#
|
44536
|
+
# @!attribute [rw] token_value
|
44537
|
+
# An encrypted token value containing session and caller information.
|
44538
|
+
# @return [String]
|
44539
|
+
#
|
44540
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StartSessionResponse AWS API Documentation
|
44541
|
+
#
|
44542
|
+
class StartSessionResponse < Struct.new(
|
44543
|
+
:session_id,
|
44544
|
+
:stream_url,
|
44545
|
+
:token_value)
|
44546
|
+
SENSITIVE = []
|
44547
|
+
include Aws::Structure
|
44548
|
+
end
|
44549
|
+
|
44379
44550
|
# @!attribute [rw] auto_ml_job_name
|
44380
44551
|
# The name of the object you are requesting.
|
44381
44552
|
# @return [String]
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -1314,8 +1314,8 @@ module Aws
|
|
1314
1314
|
single_sign_on_application_arn: ::String?
|
1315
1315
|
}?
|
1316
1316
|
},
|
1317
|
-
subnet_ids: Array[::String],
|
1318
|
-
vpc_id: ::String,
|
1317
|
+
?subnet_ids: Array[::String],
|
1318
|
+
?vpc_id: ::String,
|
1319
1319
|
?tags: Array[
|
1320
1320
|
{
|
1321
1321
|
key: ::String,
|
@@ -1862,6 +1862,26 @@ module Aws
|
|
1862
1862
|
) -> _CreateHubResponseSuccess
|
1863
1863
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateHubResponseSuccess
|
1864
1864
|
|
1865
|
+
interface _CreateHubContentPresignedUrlsResponseSuccess
|
1866
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateHubContentPresignedUrlsResponse]
|
1867
|
+
def authorized_url_configs: () -> ::Array[Types::AuthorizedUrl]
|
1868
|
+
def next_token: () -> ::String
|
1869
|
+
end
|
1870
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#create_hub_content_presigned_urls-instance_method
|
1871
|
+
def create_hub_content_presigned_urls: (
|
1872
|
+
hub_name: ::String,
|
1873
|
+
hub_content_type: ("Model" | "Notebook" | "ModelReference"),
|
1874
|
+
hub_content_name: ::String,
|
1875
|
+
?hub_content_version: ::String,
|
1876
|
+
?access_config: {
|
1877
|
+
accept_eula: bool?,
|
1878
|
+
expected_s3_url: ::String?
|
1879
|
+
},
|
1880
|
+
?max_results: ::Integer,
|
1881
|
+
?next_token: ::String
|
1882
|
+
) -> _CreateHubContentPresignedUrlsResponseSuccess
|
1883
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateHubContentPresignedUrlsResponseSuccess
|
1884
|
+
|
1865
1885
|
interface _CreateHubContentReferenceResponseSuccess
|
1866
1886
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateHubContentReferenceResponse]
|
1867
1887
|
def hub_arn: () -> ::String
|
@@ -3976,7 +3996,8 @@ module Aws
|
|
3976
3996
|
file_system_id: ::String
|
3977
3997
|
}?
|
3978
3998
|
},
|
3979
|
-
]
|
3999
|
+
]?,
|
4000
|
+
remote_access: ("ENABLED" | "DISABLED")?
|
3980
4001
|
},
|
3981
4002
|
?ownership_settings: {
|
3982
4003
|
owner_user_profile_name: ::String
|
@@ -8393,6 +8414,18 @@ module Aws
|
|
8393
8414
|
) -> _StartPipelineExecutionResponseSuccess
|
8394
8415
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartPipelineExecutionResponseSuccess
|
8395
8416
|
|
8417
|
+
interface _StartSessionResponseSuccess
|
8418
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartSessionResponse]
|
8419
|
+
def session_id: () -> ::String
|
8420
|
+
def stream_url: () -> ::String
|
8421
|
+
def token_value: () -> ::String
|
8422
|
+
end
|
8423
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#start_session-instance_method
|
8424
|
+
def start_session: (
|
8425
|
+
resource_identifier: ::String
|
8426
|
+
) -> _StartSessionResponseSuccess
|
8427
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartSessionResponseSuccess
|
8428
|
+
|
8396
8429
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#stop_auto_ml_job-instance_method
|
8397
8430
|
def stop_auto_ml_job: (
|
8398
8431
|
auto_ml_job_name: ::String
|
@@ -9967,7 +10000,8 @@ module Aws
|
|
9967
10000
|
file_system_id: ::String
|
9968
10001
|
}?
|
9969
10002
|
},
|
9970
|
-
]
|
10003
|
+
]?,
|
10004
|
+
remote_access: ("ENABLED" | "DISABLED")?
|
9971
10005
|
},
|
9972
10006
|
?space_display_name: ::String
|
9973
10007
|
) -> _UpdateSpaceResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -269,6 +269,12 @@ module Aws::SageMaker
|
|
269
269
|
SENSITIVE: []
|
270
270
|
end
|
271
271
|
|
272
|
+
class AuthorizedUrl
|
273
|
+
attr_accessor url: ::String
|
274
|
+
attr_accessor local_path: ::String
|
275
|
+
SENSITIVE: []
|
276
|
+
end
|
277
|
+
|
272
278
|
class AutoMLAlgorithmConfig
|
273
279
|
attr_accessor auto_ml_algorithms: ::Array[("xgboost" | "linear-learner" | "mlp" | "lightgbm" | "catboost" | "randomforest" | "extra-trees" | "nn-torch" | "fastai" | "cnn-qr" | "deepar" | "prophet" | "npts" | "arima" | "ets")]
|
274
280
|
SENSITIVE: []
|
@@ -1453,6 +1459,23 @@ module Aws::SageMaker
|
|
1453
1459
|
SENSITIVE: []
|
1454
1460
|
end
|
1455
1461
|
|
1462
|
+
class CreateHubContentPresignedUrlsRequest
|
1463
|
+
attr_accessor hub_name: ::String
|
1464
|
+
attr_accessor hub_content_type: ("Model" | "Notebook" | "ModelReference")
|
1465
|
+
attr_accessor hub_content_name: ::String
|
1466
|
+
attr_accessor hub_content_version: ::String
|
1467
|
+
attr_accessor access_config: Types::PresignedUrlAccessConfig
|
1468
|
+
attr_accessor max_results: ::Integer
|
1469
|
+
attr_accessor next_token: ::String
|
1470
|
+
SENSITIVE: []
|
1471
|
+
end
|
1472
|
+
|
1473
|
+
class CreateHubContentPresignedUrlsResponse
|
1474
|
+
attr_accessor authorized_url_configs: ::Array[Types::AuthorizedUrl]
|
1475
|
+
attr_accessor next_token: ::String
|
1476
|
+
SENSITIVE: []
|
1477
|
+
end
|
1478
|
+
|
1456
1479
|
class CreateHubContentReferenceRequest
|
1457
1480
|
attr_accessor hub_name: ::String
|
1458
1481
|
attr_accessor sage_maker_public_hub_content_arn: ::String
|
@@ -8263,6 +8286,12 @@ module Aws::SageMaker
|
|
8263
8286
|
SENSITIVE: []
|
8264
8287
|
end
|
8265
8288
|
|
8289
|
+
class PresignedUrlAccessConfig
|
8290
|
+
attr_accessor accept_eula: bool
|
8291
|
+
attr_accessor expected_s3_url: ::String
|
8292
|
+
SENSITIVE: []
|
8293
|
+
end
|
8294
|
+
|
8266
8295
|
class PriorityClass
|
8267
8296
|
attr_accessor name: ::String
|
8268
8297
|
attr_accessor weight: ::Integer
|
@@ -9220,11 +9249,13 @@ module Aws::SageMaker
|
|
9220
9249
|
attr_accessor space_storage_settings: Types::SpaceStorageSettings
|
9221
9250
|
attr_accessor space_managed_resources: ("ENABLED" | "DISABLED")
|
9222
9251
|
attr_accessor custom_file_systems: ::Array[Types::CustomFileSystem]
|
9252
|
+
attr_accessor remote_access: ("ENABLED" | "DISABLED")
|
9223
9253
|
SENSITIVE: []
|
9224
9254
|
end
|
9225
9255
|
|
9226
9256
|
class SpaceSettingsSummary
|
9227
9257
|
attr_accessor app_type: ("JupyterServer" | "KernelGateway" | "DetailedProfiler" | "TensorBoard" | "CodeEditor" | "JupyterLab" | "RStudioServerPro" | "RSessionGateway" | "Canvas")
|
9258
|
+
attr_accessor remote_access: ("ENABLED" | "DISABLED")
|
9228
9259
|
attr_accessor space_storage_settings: Types::SpaceStorageSettings
|
9229
9260
|
SENSITIVE: []
|
9230
9261
|
end
|
@@ -9303,6 +9334,18 @@ module Aws::SageMaker
|
|
9303
9334
|
SENSITIVE: []
|
9304
9335
|
end
|
9305
9336
|
|
9337
|
+
class StartSessionRequest
|
9338
|
+
attr_accessor resource_identifier: ::String
|
9339
|
+
SENSITIVE: []
|
9340
|
+
end
|
9341
|
+
|
9342
|
+
class StartSessionResponse
|
9343
|
+
attr_accessor session_id: ::String
|
9344
|
+
attr_accessor stream_url: ::String
|
9345
|
+
attr_accessor token_value: ::String
|
9346
|
+
SENSITIVE: []
|
9347
|
+
end
|
9348
|
+
|
9306
9349
|
class StopAutoMLJobRequest
|
9307
9350
|
attr_accessor auto_ml_job_name: ::String
|
9308
9351
|
SENSITIVE: []
|