aws-sdk-sagemaker 1.311.0 → 1.313.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 +58 -6
- data/lib/aws-sdk-sagemaker/client_api.rb +85 -2
- data/lib/aws-sdk-sagemaker/types.rb +251 -29
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +32 -2
- data/sig/types.rbs +68 -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: 17ebc593477cbe417eea9252e25598c2d87b7866f75518aa17de16b3efabd944
|
4
|
+
data.tar.gz: 8d997bc2fc378c25c4ee89925840d0016a52e5f6e82e0a318f2c74b8f7cfd7a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 47d1c72a44b290f0abd150cf5bfd7c2058052030db006d5047df993e7bdd84ac98dc7166b5c54ef77525567c27e02a74f2e4547ff5a9bc207b61ec2c583dfa47
|
7
|
+
data.tar.gz: 22ab16979d51ee40b1df69cf1f0453844b0aea622d6b5e361b1c6a95c11f780fea042c11b615a5aaf15dac4e7a891878bdbd6ae46f9c7c541324b47350da9045
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.313.0 (2025-07-01)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Updated field validation requirements for InstanceGroups.
|
8
|
+
|
9
|
+
1.312.0 (2025-06-19)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release introduces alternative support for utilizing CFN templates from S3 for SageMaker Projects.
|
13
|
+
|
4
14
|
1.311.0 (2025-06-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.313.0
|
@@ -1974,7 +1974,7 @@ module Aws::SageMaker
|
|
1974
1974
|
# @option params [required, String] :cluster_name
|
1975
1975
|
# The name for the new SageMaker HyperPod cluster.
|
1976
1976
|
#
|
1977
|
-
# @option params [
|
1977
|
+
# @option params [Array<Types::ClusterInstanceGroupSpecification>] :instance_groups
|
1978
1978
|
# The instance groups to be created in the SageMaker HyperPod cluster.
|
1979
1979
|
#
|
1980
1980
|
# @option params [Types::VpcConfig] :vpc_config
|
@@ -2047,7 +2047,7 @@ module Aws::SageMaker
|
|
2047
2047
|
#
|
2048
2048
|
# resp = client.create_cluster({
|
2049
2049
|
# cluster_name: "ClusterName", # required
|
2050
|
-
# instance_groups: [
|
2050
|
+
# instance_groups: [
|
2051
2051
|
# {
|
2052
2052
|
# instance_count: 1, # required
|
2053
2053
|
# instance_group_name: "ClusterInstanceGroupName", # required
|
@@ -8748,6 +8748,10 @@ module Aws::SageMaker
|
|
8748
8748
|
#
|
8749
8749
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
8750
8750
|
#
|
8751
|
+
# @option params [Array<Types::CreateTemplateProvider>] :template_providers
|
8752
|
+
# An array of template provider configurations for creating
|
8753
|
+
# infrastructure resources for the project.
|
8754
|
+
#
|
8751
8755
|
# @return [Types::CreateProjectOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8752
8756
|
#
|
8753
8757
|
# * {Types::CreateProjectOutput#project_arn #project_arn} => String
|
@@ -8775,6 +8779,21 @@ module Aws::SageMaker
|
|
8775
8779
|
# value: "TagValue", # required
|
8776
8780
|
# },
|
8777
8781
|
# ],
|
8782
|
+
# template_providers: [
|
8783
|
+
# {
|
8784
|
+
# cfn_template_provider: {
|
8785
|
+
# template_name: "CfnTemplateName", # required
|
8786
|
+
# template_url: "CfnTemplateURL", # required
|
8787
|
+
# role_arn: "RoleArn",
|
8788
|
+
# parameters: [
|
8789
|
+
# {
|
8790
|
+
# key: "CfnStackParameterKey", # required
|
8791
|
+
# value: "CfnStackParameterValue",
|
8792
|
+
# },
|
8793
|
+
# ],
|
8794
|
+
# },
|
8795
|
+
# },
|
8796
|
+
# ],
|
8778
8797
|
# })
|
8779
8798
|
#
|
8780
8799
|
# @example Response structure
|
@@ -17140,6 +17159,7 @@ module Aws::SageMaker
|
|
17140
17159
|
# * {Types::DescribeProjectOutput#service_catalog_provisioning_details #service_catalog_provisioning_details} => Types::ServiceCatalogProvisioningDetails
|
17141
17160
|
# * {Types::DescribeProjectOutput#service_catalog_provisioned_product_details #service_catalog_provisioned_product_details} => Types::ServiceCatalogProvisionedProductDetails
|
17142
17161
|
# * {Types::DescribeProjectOutput#project_status #project_status} => String
|
17162
|
+
# * {Types::DescribeProjectOutput#template_provider_details #template_provider_details} => Array<Types::TemplateProviderDetail>
|
17143
17163
|
# * {Types::DescribeProjectOutput#created_by #created_by} => Types::UserContext
|
17144
17164
|
# * {Types::DescribeProjectOutput#creation_time #creation_time} => Time
|
17145
17165
|
# * {Types::DescribeProjectOutput#last_modified_time #last_modified_time} => Time
|
@@ -17166,6 +17186,16 @@ module Aws::SageMaker
|
|
17166
17186
|
# resp.service_catalog_provisioned_product_details.provisioned_product_id #=> String
|
17167
17187
|
# resp.service_catalog_provisioned_product_details.provisioned_product_status_message #=> String
|
17168
17188
|
# resp.project_status #=> String, one of "Pending", "CreateInProgress", "CreateCompleted", "CreateFailed", "DeleteInProgress", "DeleteFailed", "DeleteCompleted", "UpdateInProgress", "UpdateCompleted", "UpdateFailed"
|
17189
|
+
# resp.template_provider_details #=> Array
|
17190
|
+
# resp.template_provider_details[0].cfn_template_provider_detail.template_name #=> String
|
17191
|
+
# resp.template_provider_details[0].cfn_template_provider_detail.template_url #=> String
|
17192
|
+
# resp.template_provider_details[0].cfn_template_provider_detail.role_arn #=> String
|
17193
|
+
# resp.template_provider_details[0].cfn_template_provider_detail.parameters #=> Array
|
17194
|
+
# resp.template_provider_details[0].cfn_template_provider_detail.parameters[0].key #=> String
|
17195
|
+
# resp.template_provider_details[0].cfn_template_provider_detail.parameters[0].value #=> String
|
17196
|
+
# resp.template_provider_details[0].cfn_template_provider_detail.stack_detail.name #=> String
|
17197
|
+
# resp.template_provider_details[0].cfn_template_provider_detail.stack_detail.id #=> String
|
17198
|
+
# resp.template_provider_details[0].cfn_template_provider_detail.stack_detail.status_message #=> String
|
17169
17199
|
# resp.created_by.user_profile_arn #=> String
|
17170
17200
|
# resp.created_by.user_profile_name #=> String
|
17171
17201
|
# resp.created_by.domain_id #=> String
|
@@ -19547,7 +19577,12 @@ module Aws::SageMaker
|
|
19547
19577
|
# [1]: https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-parameters-types.html#parameter-type-timestamp
|
19548
19578
|
#
|
19549
19579
|
# @option params [Integer] :max_results
|
19550
|
-
#
|
19580
|
+
# Specifies the maximum number of clusters to evaluate for the operation
|
19581
|
+
# (not necessarily the number of matching items). After SageMaker
|
19582
|
+
# processes the number of clusters up to `MaxResults`, it stops the
|
19583
|
+
# operation and returns the matching clusters up to that point. If all
|
19584
|
+
# the matching clusters are desired, SageMaker will go through all the
|
19585
|
+
# clusters until `NextToken` is empty.
|
19551
19586
|
#
|
19552
19587
|
# @option params [String] :name_contains
|
19553
19588
|
# Set the maximum number of instances to print in the list.
|
@@ -26424,7 +26459,7 @@ module Aws::SageMaker
|
|
26424
26459
|
# @option params [required, String] :cluster_name
|
26425
26460
|
# Specify the name of the SageMaker HyperPod cluster you want to update.
|
26426
26461
|
#
|
26427
|
-
# @option params [
|
26462
|
+
# @option params [Array<Types::ClusterInstanceGroupSpecification>] :instance_groups
|
26428
26463
|
# Specify the instance groups to update.
|
26429
26464
|
#
|
26430
26465
|
# @option params [String] :node_recovery
|
@@ -26443,7 +26478,7 @@ module Aws::SageMaker
|
|
26443
26478
|
#
|
26444
26479
|
# resp = client.update_cluster({
|
26445
26480
|
# cluster_name: "ClusterNameOrArn", # required
|
26446
|
-
# instance_groups: [
|
26481
|
+
# instance_groups: [
|
26447
26482
|
# {
|
26448
26483
|
# instance_count: 1, # required
|
26449
26484
|
# instance_group_name: "ClusterInstanceGroupName", # required
|
@@ -29094,6 +29129,9 @@ module Aws::SageMaker
|
|
29094
29129
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
29095
29130
|
# [2]: https://docs.aws.amazon.com/servicecatalog/latest/adminguide/constraints-resourceupdate.html
|
29096
29131
|
#
|
29132
|
+
# @option params [Array<Types::UpdateTemplateProvider>] :template_providers_to_update
|
29133
|
+
# The template providers to update in the project.
|
29134
|
+
#
|
29097
29135
|
# @return [Types::UpdateProjectOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
29098
29136
|
#
|
29099
29137
|
# * {Types::UpdateProjectOutput#project_arn #project_arn} => String
|
@@ -29118,6 +29156,20 @@ module Aws::SageMaker
|
|
29118
29156
|
# value: "TagValue", # required
|
29119
29157
|
# },
|
29120
29158
|
# ],
|
29159
|
+
# template_providers_to_update: [
|
29160
|
+
# {
|
29161
|
+
# cfn_template_provider: {
|
29162
|
+
# template_name: "CfnTemplateName", # required
|
29163
|
+
# template_url: "CfnTemplateURL", # required
|
29164
|
+
# parameters: [
|
29165
|
+
# {
|
29166
|
+
# key: "CfnStackParameterKey", # required
|
29167
|
+
# value: "CfnStackParameterValue",
|
29168
|
+
# },
|
29169
|
+
# ],
|
29170
|
+
# },
|
29171
|
+
# },
|
29172
|
+
# ],
|
29121
29173
|
# })
|
29122
29174
|
#
|
29123
29175
|
# @example Response structure
|
@@ -29975,7 +30027,7 @@ module Aws::SageMaker
|
|
29975
30027
|
tracer: tracer
|
29976
30028
|
)
|
29977
30029
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
29978
|
-
context[:gem_version] = '1.
|
30030
|
+
context[:gem_version] = '1.313.0'
|
29979
30031
|
Seahorse::Client::Request.new(handlers, context)
|
29980
30032
|
end
|
29981
30033
|
|
@@ -237,6 +237,23 @@ module Aws::SageMaker
|
|
237
237
|
CategoricalParameters = Shapes::ListShape.new(name: 'CategoricalParameters')
|
238
238
|
Cents = Shapes::IntegerShape.new(name: 'Cents')
|
239
239
|
CertifyForMarketplace = Shapes::BooleanShape.new(name: 'CertifyForMarketplace')
|
240
|
+
CfnCreateTemplateProvider = Shapes::StructureShape.new(name: 'CfnCreateTemplateProvider')
|
241
|
+
CfnStackCreateParameter = Shapes::StructureShape.new(name: 'CfnStackCreateParameter')
|
242
|
+
CfnStackCreateParameters = Shapes::ListShape.new(name: 'CfnStackCreateParameters')
|
243
|
+
CfnStackDetail = Shapes::StructureShape.new(name: 'CfnStackDetail')
|
244
|
+
CfnStackId = Shapes::StringShape.new(name: 'CfnStackId')
|
245
|
+
CfnStackName = Shapes::StringShape.new(name: 'CfnStackName')
|
246
|
+
CfnStackParameter = Shapes::StructureShape.new(name: 'CfnStackParameter')
|
247
|
+
CfnStackParameterKey = Shapes::StringShape.new(name: 'CfnStackParameterKey')
|
248
|
+
CfnStackParameterValue = Shapes::StringShape.new(name: 'CfnStackParameterValue')
|
249
|
+
CfnStackParameters = Shapes::ListShape.new(name: 'CfnStackParameters')
|
250
|
+
CfnStackStatusMessage = Shapes::StringShape.new(name: 'CfnStackStatusMessage')
|
251
|
+
CfnStackUpdateParameter = Shapes::StructureShape.new(name: 'CfnStackUpdateParameter')
|
252
|
+
CfnStackUpdateParameters = Shapes::ListShape.new(name: 'CfnStackUpdateParameters')
|
253
|
+
CfnTemplateName = Shapes::StringShape.new(name: 'CfnTemplateName')
|
254
|
+
CfnTemplateProviderDetail = Shapes::StructureShape.new(name: 'CfnTemplateProviderDetail')
|
255
|
+
CfnTemplateURL = Shapes::StringShape.new(name: 'CfnTemplateURL')
|
256
|
+
CfnUpdateTemplateProvider = Shapes::StructureShape.new(name: 'CfnUpdateTemplateProvider')
|
240
257
|
Channel = Shapes::StructureShape.new(name: 'Channel')
|
241
258
|
ChannelName = Shapes::StringShape.new(name: 'ChannelName')
|
242
259
|
ChannelSpecification = Shapes::StructureShape.new(name: 'ChannelSpecification')
|
@@ -500,6 +517,8 @@ module Aws::SageMaker
|
|
500
517
|
CreateSpaceResponse = Shapes::StructureShape.new(name: 'CreateSpaceResponse')
|
501
518
|
CreateStudioLifecycleConfigRequest = Shapes::StructureShape.new(name: 'CreateStudioLifecycleConfigRequest')
|
502
519
|
CreateStudioLifecycleConfigResponse = Shapes::StructureShape.new(name: 'CreateStudioLifecycleConfigResponse')
|
520
|
+
CreateTemplateProvider = Shapes::StructureShape.new(name: 'CreateTemplateProvider')
|
521
|
+
CreateTemplateProviderList = Shapes::ListShape.new(name: 'CreateTemplateProviderList')
|
503
522
|
CreateTrainingJobRequest = Shapes::StructureShape.new(name: 'CreateTrainingJobRequest')
|
504
523
|
CreateTrainingJobResponse = Shapes::StructureShape.new(name: 'CreateTrainingJobResponse')
|
505
524
|
CreateTrainingPlanRequest = Shapes::StructureShape.new(name: 'CreateTrainingPlanRequest')
|
@@ -2255,6 +2274,8 @@ module Aws::SageMaker
|
|
2255
2274
|
TaskTitle = Shapes::StringShape.new(name: 'TaskTitle')
|
2256
2275
|
TemplateContent = Shapes::StringShape.new(name: 'TemplateContent')
|
2257
2276
|
TemplateContentSha256 = Shapes::StringShape.new(name: 'TemplateContentSha256')
|
2277
|
+
TemplateProviderDetail = Shapes::StructureShape.new(name: 'TemplateProviderDetail')
|
2278
|
+
TemplateProviderDetailList = Shapes::ListShape.new(name: 'TemplateProviderDetailList')
|
2258
2279
|
TemplateUrl = Shapes::StringShape.new(name: 'TemplateUrl')
|
2259
2280
|
TensorBoardAppSettings = Shapes::StructureShape.new(name: 'TensorBoardAppSettings')
|
2260
2281
|
TensorBoardOutputConfig = Shapes::StructureShape.new(name: 'TensorBoardOutputConfig')
|
@@ -2476,6 +2497,8 @@ module Aws::SageMaker
|
|
2476
2497
|
UpdateProjectOutput = Shapes::StructureShape.new(name: 'UpdateProjectOutput')
|
2477
2498
|
UpdateSpaceRequest = Shapes::StructureShape.new(name: 'UpdateSpaceRequest')
|
2478
2499
|
UpdateSpaceResponse = Shapes::StructureShape.new(name: 'UpdateSpaceResponse')
|
2500
|
+
UpdateTemplateProvider = Shapes::StructureShape.new(name: 'UpdateTemplateProvider')
|
2501
|
+
UpdateTemplateProviderList = Shapes::ListShape.new(name: 'UpdateTemplateProviderList')
|
2479
2502
|
UpdateTrainingJobRequest = Shapes::StructureShape.new(name: 'UpdateTrainingJobRequest')
|
2480
2503
|
UpdateTrainingJobResponse = Shapes::StructureShape.new(name: 'UpdateTrainingJobResponse')
|
2481
2504
|
UpdateTrialComponentRequest = Shapes::StructureShape.new(name: 'UpdateTrialComponentRequest')
|
@@ -3085,6 +3108,47 @@ module Aws::SageMaker
|
|
3085
3108
|
|
3086
3109
|
CategoricalParameters.member = Shapes::ShapeRef.new(shape: CategoricalParameter)
|
3087
3110
|
|
3111
|
+
CfnCreateTemplateProvider.add_member(:template_name, Shapes::ShapeRef.new(shape: CfnTemplateName, required: true, location_name: "TemplateName"))
|
3112
|
+
CfnCreateTemplateProvider.add_member(:template_url, Shapes::ShapeRef.new(shape: CfnTemplateURL, required: true, location_name: "TemplateURL"))
|
3113
|
+
CfnCreateTemplateProvider.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleARN"))
|
3114
|
+
CfnCreateTemplateProvider.add_member(:parameters, Shapes::ShapeRef.new(shape: CfnStackCreateParameters, location_name: "Parameters"))
|
3115
|
+
CfnCreateTemplateProvider.struct_class = Types::CfnCreateTemplateProvider
|
3116
|
+
|
3117
|
+
CfnStackCreateParameter.add_member(:key, Shapes::ShapeRef.new(shape: CfnStackParameterKey, required: true, location_name: "Key"))
|
3118
|
+
CfnStackCreateParameter.add_member(:value, Shapes::ShapeRef.new(shape: CfnStackParameterValue, location_name: "Value"))
|
3119
|
+
CfnStackCreateParameter.struct_class = Types::CfnStackCreateParameter
|
3120
|
+
|
3121
|
+
CfnStackCreateParameters.member = Shapes::ShapeRef.new(shape: CfnStackCreateParameter)
|
3122
|
+
|
3123
|
+
CfnStackDetail.add_member(:name, Shapes::ShapeRef.new(shape: CfnStackName, location_name: "Name"))
|
3124
|
+
CfnStackDetail.add_member(:id, Shapes::ShapeRef.new(shape: CfnStackId, location_name: "Id"))
|
3125
|
+
CfnStackDetail.add_member(:status_message, Shapes::ShapeRef.new(shape: CfnStackStatusMessage, required: true, location_name: "StatusMessage"))
|
3126
|
+
CfnStackDetail.struct_class = Types::CfnStackDetail
|
3127
|
+
|
3128
|
+
CfnStackParameter.add_member(:key, Shapes::ShapeRef.new(shape: CfnStackParameterKey, required: true, location_name: "Key"))
|
3129
|
+
CfnStackParameter.add_member(:value, Shapes::ShapeRef.new(shape: CfnStackParameterValue, location_name: "Value"))
|
3130
|
+
CfnStackParameter.struct_class = Types::CfnStackParameter
|
3131
|
+
|
3132
|
+
CfnStackParameters.member = Shapes::ShapeRef.new(shape: CfnStackParameter)
|
3133
|
+
|
3134
|
+
CfnStackUpdateParameter.add_member(:key, Shapes::ShapeRef.new(shape: CfnStackParameterKey, required: true, location_name: "Key"))
|
3135
|
+
CfnStackUpdateParameter.add_member(:value, Shapes::ShapeRef.new(shape: CfnStackParameterValue, location_name: "Value"))
|
3136
|
+
CfnStackUpdateParameter.struct_class = Types::CfnStackUpdateParameter
|
3137
|
+
|
3138
|
+
CfnStackUpdateParameters.member = Shapes::ShapeRef.new(shape: CfnStackUpdateParameter)
|
3139
|
+
|
3140
|
+
CfnTemplateProviderDetail.add_member(:template_name, Shapes::ShapeRef.new(shape: CfnTemplateName, required: true, location_name: "TemplateName"))
|
3141
|
+
CfnTemplateProviderDetail.add_member(:template_url, Shapes::ShapeRef.new(shape: CfnTemplateURL, required: true, location_name: "TemplateURL"))
|
3142
|
+
CfnTemplateProviderDetail.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleARN"))
|
3143
|
+
CfnTemplateProviderDetail.add_member(:parameters, Shapes::ShapeRef.new(shape: CfnStackParameters, location_name: "Parameters"))
|
3144
|
+
CfnTemplateProviderDetail.add_member(:stack_detail, Shapes::ShapeRef.new(shape: CfnStackDetail, location_name: "StackDetail"))
|
3145
|
+
CfnTemplateProviderDetail.struct_class = Types::CfnTemplateProviderDetail
|
3146
|
+
|
3147
|
+
CfnUpdateTemplateProvider.add_member(:template_name, Shapes::ShapeRef.new(shape: CfnTemplateName, required: true, location_name: "TemplateName"))
|
3148
|
+
CfnUpdateTemplateProvider.add_member(:template_url, Shapes::ShapeRef.new(shape: CfnTemplateURL, required: true, location_name: "TemplateURL"))
|
3149
|
+
CfnUpdateTemplateProvider.add_member(:parameters, Shapes::ShapeRef.new(shape: CfnStackUpdateParameters, location_name: "Parameters"))
|
3150
|
+
CfnUpdateTemplateProvider.struct_class = Types::CfnUpdateTemplateProvider
|
3151
|
+
|
3088
3152
|
Channel.add_member(:channel_name, Shapes::ShapeRef.new(shape: ChannelName, required: true, location_name: "ChannelName"))
|
3089
3153
|
Channel.add_member(:data_source, Shapes::ShapeRef.new(shape: DataSource, required: true, location_name: "DataSource"))
|
3090
3154
|
Channel.add_member(:content_type, Shapes::ShapeRef.new(shape: ContentType, location_name: "ContentType"))
|
@@ -3524,7 +3588,7 @@ module Aws::SageMaker
|
|
3524
3588
|
CreateAutoMLJobV2Response.struct_class = Types::CreateAutoMLJobV2Response
|
3525
3589
|
|
3526
3590
|
CreateClusterRequest.add_member(:cluster_name, Shapes::ShapeRef.new(shape: ClusterName, required: true, location_name: "ClusterName"))
|
3527
|
-
CreateClusterRequest.add_member(:instance_groups, Shapes::ShapeRef.new(shape: ClusterInstanceGroupSpecifications,
|
3591
|
+
CreateClusterRequest.add_member(:instance_groups, Shapes::ShapeRef.new(shape: ClusterInstanceGroupSpecifications, location_name: "InstanceGroups"))
|
3528
3592
|
CreateClusterRequest.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
|
3529
3593
|
CreateClusterRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
3530
3594
|
CreateClusterRequest.add_member(:orchestrator, Shapes::ShapeRef.new(shape: ClusterOrchestrator, location_name: "Orchestrator"))
|
@@ -4104,6 +4168,7 @@ module Aws::SageMaker
|
|
4104
4168
|
CreateProjectInput.add_member(:project_description, Shapes::ShapeRef.new(shape: EntityDescription, location_name: "ProjectDescription"))
|
4105
4169
|
CreateProjectInput.add_member(:service_catalog_provisioning_details, Shapes::ShapeRef.new(shape: ServiceCatalogProvisioningDetails, location_name: "ServiceCatalogProvisioningDetails"))
|
4106
4170
|
CreateProjectInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
4171
|
+
CreateProjectInput.add_member(:template_providers, Shapes::ShapeRef.new(shape: CreateTemplateProviderList, location_name: "TemplateProviders"))
|
4107
4172
|
CreateProjectInput.struct_class = Types::CreateProjectInput
|
4108
4173
|
|
4109
4174
|
CreateProjectOutput.add_member(:project_arn, Shapes::ShapeRef.new(shape: ProjectArn, required: true, location_name: "ProjectArn"))
|
@@ -4131,6 +4196,11 @@ module Aws::SageMaker
|
|
4131
4196
|
CreateStudioLifecycleConfigResponse.add_member(:studio_lifecycle_config_arn, Shapes::ShapeRef.new(shape: StudioLifecycleConfigArn, location_name: "StudioLifecycleConfigArn"))
|
4132
4197
|
CreateStudioLifecycleConfigResponse.struct_class = Types::CreateStudioLifecycleConfigResponse
|
4133
4198
|
|
4199
|
+
CreateTemplateProvider.add_member(:cfn_template_provider, Shapes::ShapeRef.new(shape: CfnCreateTemplateProvider, location_name: "CfnTemplateProvider"))
|
4200
|
+
CreateTemplateProvider.struct_class = Types::CreateTemplateProvider
|
4201
|
+
|
4202
|
+
CreateTemplateProviderList.member = Shapes::ShapeRef.new(shape: CreateTemplateProvider)
|
4203
|
+
|
4134
4204
|
CreateTrainingJobRequest.add_member(:training_job_name, Shapes::ShapeRef.new(shape: TrainingJobName, required: true, location_name: "TrainingJobName"))
|
4135
4205
|
CreateTrainingJobRequest.add_member(:hyper_parameters, Shapes::ShapeRef.new(shape: HyperParameters, location_name: "HyperParameters"))
|
4136
4206
|
CreateTrainingJobRequest.add_member(:algorithm_specification, Shapes::ShapeRef.new(shape: AlgorithmSpecification, required: true, location_name: "AlgorithmSpecification"))
|
@@ -5681,6 +5751,7 @@ module Aws::SageMaker
|
|
5681
5751
|
DescribeProjectOutput.add_member(:service_catalog_provisioning_details, Shapes::ShapeRef.new(shape: ServiceCatalogProvisioningDetails, location_name: "ServiceCatalogProvisioningDetails"))
|
5682
5752
|
DescribeProjectOutput.add_member(:service_catalog_provisioned_product_details, Shapes::ShapeRef.new(shape: ServiceCatalogProvisionedProductDetails, location_name: "ServiceCatalogProvisionedProductDetails"))
|
5683
5753
|
DescribeProjectOutput.add_member(:project_status, Shapes::ShapeRef.new(shape: ProjectStatus, required: true, location_name: "ProjectStatus"))
|
5754
|
+
DescribeProjectOutput.add_member(:template_provider_details, Shapes::ShapeRef.new(shape: TemplateProviderDetailList, location_name: "TemplateProviderDetails"))
|
5684
5755
|
DescribeProjectOutput.add_member(:created_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "CreatedBy"))
|
5685
5756
|
DescribeProjectOutput.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
|
5686
5757
|
DescribeProjectOutput.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
@@ -9446,6 +9517,7 @@ module Aws::SageMaker
|
|
9446
9517
|
Project.add_member(:project_status, Shapes::ShapeRef.new(shape: ProjectStatus, location_name: "ProjectStatus"))
|
9447
9518
|
Project.add_member(:created_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "CreatedBy"))
|
9448
9519
|
Project.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
|
9520
|
+
Project.add_member(:template_provider_details, Shapes::ShapeRef.new(shape: TemplateProviderDetailList, location_name: "TemplateProviderDetails"))
|
9449
9521
|
Project.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
9450
9522
|
Project.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
9451
9523
|
Project.add_member(:last_modified_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "LastModifiedBy"))
|
@@ -10207,6 +10279,11 @@ module Aws::SageMaker
|
|
10207
10279
|
|
10208
10280
|
TaskKeywords.member = Shapes::ShapeRef.new(shape: TaskKeyword)
|
10209
10281
|
|
10282
|
+
TemplateProviderDetail.add_member(:cfn_template_provider_detail, Shapes::ShapeRef.new(shape: CfnTemplateProviderDetail, location_name: "CfnTemplateProviderDetail"))
|
10283
|
+
TemplateProviderDetail.struct_class = Types::TemplateProviderDetail
|
10284
|
+
|
10285
|
+
TemplateProviderDetailList.member = Shapes::ShapeRef.new(shape: TemplateProviderDetail)
|
10286
|
+
|
10210
10287
|
TensorBoardAppSettings.add_member(:default_resource_spec, Shapes::ShapeRef.new(shape: ResourceSpec, location_name: "DefaultResourceSpec"))
|
10211
10288
|
TensorBoardAppSettings.struct_class = Types::TensorBoardAppSettings
|
10212
10289
|
|
@@ -10697,7 +10774,7 @@ module Aws::SageMaker
|
|
10697
10774
|
UpdateArtifactResponse.struct_class = Types::UpdateArtifactResponse
|
10698
10775
|
|
10699
10776
|
UpdateClusterRequest.add_member(:cluster_name, Shapes::ShapeRef.new(shape: ClusterNameOrArn, required: true, location_name: "ClusterName"))
|
10700
|
-
UpdateClusterRequest.add_member(:instance_groups, Shapes::ShapeRef.new(shape: ClusterInstanceGroupSpecifications,
|
10777
|
+
UpdateClusterRequest.add_member(:instance_groups, Shapes::ShapeRef.new(shape: ClusterInstanceGroupSpecifications, location_name: "InstanceGroups"))
|
10701
10778
|
UpdateClusterRequest.add_member(:node_recovery, Shapes::ShapeRef.new(shape: ClusterNodeRecovery, location_name: "NodeRecovery"))
|
10702
10779
|
UpdateClusterRequest.add_member(:instance_groups_to_delete, Shapes::ShapeRef.new(shape: ClusterInstanceGroupsToDelete, location_name: "InstanceGroupsToDelete"))
|
10703
10780
|
UpdateClusterRequest.struct_class = Types::UpdateClusterRequest
|
@@ -11023,6 +11100,7 @@ module Aws::SageMaker
|
|
11023
11100
|
UpdateProjectInput.add_member(:project_description, Shapes::ShapeRef.new(shape: EntityDescription, location_name: "ProjectDescription"))
|
11024
11101
|
UpdateProjectInput.add_member(:service_catalog_provisioning_update_details, Shapes::ShapeRef.new(shape: ServiceCatalogProvisioningUpdateDetails, location_name: "ServiceCatalogProvisioningUpdateDetails"))
|
11025
11102
|
UpdateProjectInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
11103
|
+
UpdateProjectInput.add_member(:template_providers_to_update, Shapes::ShapeRef.new(shape: UpdateTemplateProviderList, location_name: "TemplateProvidersToUpdate"))
|
11026
11104
|
UpdateProjectInput.struct_class = Types::UpdateProjectInput
|
11027
11105
|
|
11028
11106
|
UpdateProjectOutput.add_member(:project_arn, Shapes::ShapeRef.new(shape: ProjectArn, required: true, location_name: "ProjectArn"))
|
@@ -11037,6 +11115,11 @@ module Aws::SageMaker
|
|
11037
11115
|
UpdateSpaceResponse.add_member(:space_arn, Shapes::ShapeRef.new(shape: SpaceArn, location_name: "SpaceArn"))
|
11038
11116
|
UpdateSpaceResponse.struct_class = Types::UpdateSpaceResponse
|
11039
11117
|
|
11118
|
+
UpdateTemplateProvider.add_member(:cfn_template_provider, Shapes::ShapeRef.new(shape: CfnUpdateTemplateProvider, location_name: "CfnTemplateProvider"))
|
11119
|
+
UpdateTemplateProvider.struct_class = Types::UpdateTemplateProvider
|
11120
|
+
|
11121
|
+
UpdateTemplateProviderList.member = Shapes::ShapeRef.new(shape: UpdateTemplateProvider)
|
11122
|
+
|
11040
11123
|
UpdateTrainingJobRequest.add_member(:training_job_name, Shapes::ShapeRef.new(shape: TrainingJobName, required: true, location_name: "TrainingJobName"))
|
11041
11124
|
UpdateTrainingJobRequest.add_member(:profiler_config, Shapes::ShapeRef.new(shape: ProfilerConfigForUpdate, location_name: "ProfilerConfig"))
|
11042
11125
|
UpdateTrainingJobRequest.add_member(:profiler_rule_configurations, Shapes::ShapeRef.new(shape: ProfilerRuleConfigurations, location_name: "ProfilerRuleConfigurations"))
|
@@ -3661,6 +3661,181 @@ module Aws::SageMaker
|
|
3661
3661
|
include Aws::Structure
|
3662
3662
|
end
|
3663
3663
|
|
3664
|
+
# The CloudFormation template provider configuration for creating
|
3665
|
+
# infrastructure resources.
|
3666
|
+
#
|
3667
|
+
# @!attribute [rw] template_name
|
3668
|
+
# A unique identifier for the template within the project.
|
3669
|
+
# @return [String]
|
3670
|
+
#
|
3671
|
+
# @!attribute [rw] template_url
|
3672
|
+
# The Amazon S3 URL of the CloudFormation template.
|
3673
|
+
# @return [String]
|
3674
|
+
#
|
3675
|
+
# @!attribute [rw] role_arn
|
3676
|
+
# The IAM role that CloudFormation assumes when creating the stack.
|
3677
|
+
# @return [String]
|
3678
|
+
#
|
3679
|
+
# @!attribute [rw] parameters
|
3680
|
+
# An array of CloudFormation stack parameters.
|
3681
|
+
# @return [Array<Types::CfnStackCreateParameter>]
|
3682
|
+
#
|
3683
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CfnCreateTemplateProvider AWS API Documentation
|
3684
|
+
#
|
3685
|
+
class CfnCreateTemplateProvider < Struct.new(
|
3686
|
+
:template_name,
|
3687
|
+
:template_url,
|
3688
|
+
:role_arn,
|
3689
|
+
:parameters)
|
3690
|
+
SENSITIVE = []
|
3691
|
+
include Aws::Structure
|
3692
|
+
end
|
3693
|
+
|
3694
|
+
# A key-value pair that represents a parameter for the CloudFormation
|
3695
|
+
# stack.
|
3696
|
+
#
|
3697
|
+
# @!attribute [rw] key
|
3698
|
+
# The name of the CloudFormation parameter.
|
3699
|
+
# @return [String]
|
3700
|
+
#
|
3701
|
+
# @!attribute [rw] value
|
3702
|
+
# The value of the CloudFormation parameter.
|
3703
|
+
# @return [String]
|
3704
|
+
#
|
3705
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CfnStackCreateParameter AWS API Documentation
|
3706
|
+
#
|
3707
|
+
class CfnStackCreateParameter < Struct.new(
|
3708
|
+
:key,
|
3709
|
+
:value)
|
3710
|
+
SENSITIVE = []
|
3711
|
+
include Aws::Structure
|
3712
|
+
end
|
3713
|
+
|
3714
|
+
# Details about the CloudFormation stack.
|
3715
|
+
#
|
3716
|
+
# @!attribute [rw] name
|
3717
|
+
# The name of the CloudFormation stack.
|
3718
|
+
# @return [String]
|
3719
|
+
#
|
3720
|
+
# @!attribute [rw] id
|
3721
|
+
# The unique identifier of the CloudFormation stack.
|
3722
|
+
# @return [String]
|
3723
|
+
#
|
3724
|
+
# @!attribute [rw] status_message
|
3725
|
+
# A human-readable message about the stack's current status.
|
3726
|
+
# @return [String]
|
3727
|
+
#
|
3728
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CfnStackDetail AWS API Documentation
|
3729
|
+
#
|
3730
|
+
class CfnStackDetail < Struct.new(
|
3731
|
+
:name,
|
3732
|
+
:id,
|
3733
|
+
:status_message)
|
3734
|
+
SENSITIVE = []
|
3735
|
+
include Aws::Structure
|
3736
|
+
end
|
3737
|
+
|
3738
|
+
# A key-value pair representing a parameter used in the CloudFormation
|
3739
|
+
# stack.
|
3740
|
+
#
|
3741
|
+
# @!attribute [rw] key
|
3742
|
+
# The name of the CloudFormation parameter.
|
3743
|
+
# @return [String]
|
3744
|
+
#
|
3745
|
+
# @!attribute [rw] value
|
3746
|
+
# The value of the CloudFormation parameter.
|
3747
|
+
# @return [String]
|
3748
|
+
#
|
3749
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CfnStackParameter AWS API Documentation
|
3750
|
+
#
|
3751
|
+
class CfnStackParameter < Struct.new(
|
3752
|
+
:key,
|
3753
|
+
:value)
|
3754
|
+
SENSITIVE = []
|
3755
|
+
include Aws::Structure
|
3756
|
+
end
|
3757
|
+
|
3758
|
+
# A key-value pair representing a parameter used in the CloudFormation
|
3759
|
+
# stack.
|
3760
|
+
#
|
3761
|
+
# @!attribute [rw] key
|
3762
|
+
# The name of the CloudFormation parameter.
|
3763
|
+
# @return [String]
|
3764
|
+
#
|
3765
|
+
# @!attribute [rw] value
|
3766
|
+
# The value of the CloudFormation parameter.
|
3767
|
+
# @return [String]
|
3768
|
+
#
|
3769
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CfnStackUpdateParameter AWS API Documentation
|
3770
|
+
#
|
3771
|
+
class CfnStackUpdateParameter < Struct.new(
|
3772
|
+
:key,
|
3773
|
+
:value)
|
3774
|
+
SENSITIVE = []
|
3775
|
+
include Aws::Structure
|
3776
|
+
end
|
3777
|
+
|
3778
|
+
# Details about a CloudFormation template provider configuration and
|
3779
|
+
# associated provisioning information.
|
3780
|
+
#
|
3781
|
+
# @!attribute [rw] template_name
|
3782
|
+
# The unique identifier of the template within the project.
|
3783
|
+
# @return [String]
|
3784
|
+
#
|
3785
|
+
# @!attribute [rw] template_url
|
3786
|
+
# The Amazon S3 URL of the CloudFormation template.
|
3787
|
+
# @return [String]
|
3788
|
+
#
|
3789
|
+
# @!attribute [rw] role_arn
|
3790
|
+
# The IAM role used by CloudFormation to create the stack.
|
3791
|
+
# @return [String]
|
3792
|
+
#
|
3793
|
+
# @!attribute [rw] parameters
|
3794
|
+
# An array of CloudFormation stack parameters.
|
3795
|
+
# @return [Array<Types::CfnStackParameter>]
|
3796
|
+
#
|
3797
|
+
# @!attribute [rw] stack_detail
|
3798
|
+
# Information about the CloudFormation stack created by the template
|
3799
|
+
# provider.
|
3800
|
+
# @return [Types::CfnStackDetail]
|
3801
|
+
#
|
3802
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CfnTemplateProviderDetail AWS API Documentation
|
3803
|
+
#
|
3804
|
+
class CfnTemplateProviderDetail < Struct.new(
|
3805
|
+
:template_name,
|
3806
|
+
:template_url,
|
3807
|
+
:role_arn,
|
3808
|
+
:parameters,
|
3809
|
+
:stack_detail)
|
3810
|
+
SENSITIVE = []
|
3811
|
+
include Aws::Structure
|
3812
|
+
end
|
3813
|
+
|
3814
|
+
# Contains configuration details for updating an existing CloudFormation
|
3815
|
+
# template provider in the project.
|
3816
|
+
#
|
3817
|
+
# @!attribute [rw] template_name
|
3818
|
+
# The unique identifier of the template to update within the project.
|
3819
|
+
# @return [String]
|
3820
|
+
#
|
3821
|
+
# @!attribute [rw] template_url
|
3822
|
+
# The Amazon S3 URL of the CloudFormation template.
|
3823
|
+
# @return [String]
|
3824
|
+
#
|
3825
|
+
# @!attribute [rw] parameters
|
3826
|
+
# An array of CloudFormation stack parameters.
|
3827
|
+
# @return [Array<Types::CfnStackUpdateParameter>]
|
3828
|
+
#
|
3829
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CfnUpdateTemplateProvider AWS API Documentation
|
3830
|
+
#
|
3831
|
+
class CfnUpdateTemplateProvider < Struct.new(
|
3832
|
+
:template_name,
|
3833
|
+
:template_url,
|
3834
|
+
:parameters)
|
3835
|
+
SENSITIVE = []
|
3836
|
+
include Aws::Structure
|
3837
|
+
end
|
3838
|
+
|
3664
3839
|
# A channel is a named input source that training algorithms can
|
3665
3840
|
# consume.
|
3666
3841
|
#
|
@@ -10128,13 +10303,19 @@ module Aws::SageMaker
|
|
10128
10303
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
10129
10304
|
# @return [Array<Types::Tag>]
|
10130
10305
|
#
|
10306
|
+
# @!attribute [rw] template_providers
|
10307
|
+
# An array of template provider configurations for creating
|
10308
|
+
# infrastructure resources for the project.
|
10309
|
+
# @return [Array<Types::CreateTemplateProvider>]
|
10310
|
+
#
|
10131
10311
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateProjectInput AWS API Documentation
|
10132
10312
|
#
|
10133
10313
|
class CreateProjectInput < Struct.new(
|
10134
10314
|
:project_name,
|
10135
10315
|
:project_description,
|
10136
10316
|
:service_catalog_provisioning_details,
|
10137
|
-
:tags
|
10317
|
+
:tags,
|
10318
|
+
:template_providers)
|
10138
10319
|
SENSITIVE = []
|
10139
10320
|
include Aws::Structure
|
10140
10321
|
end
|
@@ -10255,6 +10436,22 @@ module Aws::SageMaker
|
|
10255
10436
|
include Aws::Structure
|
10256
10437
|
end
|
10257
10438
|
|
10439
|
+
# Contains configuration details for a template provider. Only one type
|
10440
|
+
# of template provider can be specified.
|
10441
|
+
#
|
10442
|
+
# @!attribute [rw] cfn_template_provider
|
10443
|
+
# The CloudFormation template provider configuration for creating
|
10444
|
+
# infrastructure resources.
|
10445
|
+
# @return [Types::CfnCreateTemplateProvider]
|
10446
|
+
#
|
10447
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateTemplateProvider AWS API Documentation
|
10448
|
+
#
|
10449
|
+
class CreateTemplateProvider < Struct.new(
|
10450
|
+
:cfn_template_provider)
|
10451
|
+
SENSITIVE = []
|
10452
|
+
include Aws::Structure
|
10453
|
+
end
|
10454
|
+
|
10258
10455
|
# @!attribute [rw] training_job_name
|
10259
10456
|
# The name of the training job. The name must be unique within an
|
10260
10457
|
# Amazon Web Services Region in an Amazon Web Services account.
|
@@ -18513,6 +18710,10 @@ module Aws::SageMaker
|
|
18513
18710
|
# The status of the project.
|
18514
18711
|
# @return [String]
|
18515
18712
|
#
|
18713
|
+
# @!attribute [rw] template_provider_details
|
18714
|
+
# An array of template providers associated with the project.
|
18715
|
+
# @return [Array<Types::TemplateProviderDetail>]
|
18716
|
+
#
|
18516
18717
|
# @!attribute [rw] created_by
|
18517
18718
|
# Information about the user who created or modified an experiment,
|
18518
18719
|
# trial, trial component, lineage group, project, or model card.
|
@@ -18541,6 +18742,7 @@ module Aws::SageMaker
|
|
18541
18742
|
:service_catalog_provisioning_details,
|
18542
18743
|
:service_catalog_provisioned_product_details,
|
18543
18744
|
:project_status,
|
18745
|
+
:template_provider_details,
|
18544
18746
|
:created_by,
|
18545
18747
|
:creation_time,
|
18546
18748
|
:last_modified_time,
|
@@ -28480,7 +28682,12 @@ module Aws::SageMaker
|
|
28480
28682
|
# @return [Time]
|
28481
28683
|
#
|
28482
28684
|
# @!attribute [rw] max_results
|
28483
|
-
#
|
28685
|
+
# Specifies the maximum number of clusters to evaluate for the
|
28686
|
+
# operation (not necessarily the number of matching items). After
|
28687
|
+
# SageMaker processes the number of clusters up to `MaxResults`, it
|
28688
|
+
# stops the operation and returns the matching clusters up to that
|
28689
|
+
# point. If all the matching clusters are desired, SageMaker will go
|
28690
|
+
# through all the clusters until `NextToken` is empty.
|
28484
28691
|
# @return [Integer]
|
28485
28692
|
#
|
28486
28693
|
# @!attribute [rw] name_contains
|
@@ -40134,6 +40341,10 @@ module Aws::SageMaker
|
|
40134
40341
|
# A timestamp specifying when the project was created.
|
40135
40342
|
# @return [Time]
|
40136
40343
|
#
|
40344
|
+
# @!attribute [rw] template_provider_details
|
40345
|
+
# An array of template providers associated with the project.
|
40346
|
+
# @return [Array<Types::TemplateProviderDetail>]
|
40347
|
+
#
|
40137
40348
|
# @!attribute [rw] tags
|
40138
40349
|
# An array of key-value pairs. You can use tags to categorize your
|
40139
40350
|
# Amazon Web Services resources in different ways, for example, by
|
@@ -40166,6 +40377,7 @@ module Aws::SageMaker
|
|
40166
40377
|
:project_status,
|
40167
40378
|
:created_by,
|
40168
40379
|
:creation_time,
|
40380
|
+
:template_provider_details,
|
40169
40381
|
:tags,
|
40170
40382
|
:last_modified_time,
|
40171
40383
|
:last_modified_by)
|
@@ -41825,32 +42037,6 @@ module Aws::SageMaker
|
|
41825
42037
|
#
|
41826
42038
|
# @!attribute [rw] instance_type
|
41827
42039
|
# The ML compute instance type.
|
41828
|
-
#
|
41829
|
-
# <note markdown="1"> SageMaker Training on Amazon Elastic Compute Cloud (EC2) P4de
|
41830
|
-
# instances is in preview release starting December 9th, 2022.
|
41831
|
-
#
|
41832
|
-
# [Amazon EC2 P4de instances][1] (currently in preview) are powered by
|
41833
|
-
# 8 NVIDIA A100 GPUs with 80GB high-performance HBM2e GPU memory,
|
41834
|
-
# which accelerate the speed of training ML models that need to be
|
41835
|
-
# trained on large datasets of high-resolution data. In this preview
|
41836
|
-
# release, Amazon SageMaker supports ML training jobs on P4de
|
41837
|
-
# instances (`ml.p4de.24xlarge`) to reduce model training time. The
|
41838
|
-
# `ml.p4de.24xlarge` instances are available in the following Amazon
|
41839
|
-
# Web Services Regions.
|
41840
|
-
#
|
41841
|
-
# * US East (N. Virginia) (us-east-1)
|
41842
|
-
#
|
41843
|
-
# * US West (Oregon) (us-west-2)
|
41844
|
-
#
|
41845
|
-
# To request quota limit increase and start using P4de instances,
|
41846
|
-
# contact the SageMaker Training service team through your account
|
41847
|
-
# team.
|
41848
|
-
#
|
41849
|
-
# </note>
|
41850
|
-
#
|
41851
|
-
#
|
41852
|
-
#
|
41853
|
-
# [1]: http://aws.amazon.com/ec2/instance-types/p4/
|
41854
42040
|
# @return [String]
|
41855
42041
|
#
|
41856
42042
|
# @!attribute [rw] instance_count
|
@@ -44964,6 +45150,22 @@ module Aws::SageMaker
|
|
44964
45150
|
include Aws::Structure
|
44965
45151
|
end
|
44966
45152
|
|
45153
|
+
# Details about a template provider configuration and associated
|
45154
|
+
# provisioning information.
|
45155
|
+
#
|
45156
|
+
# @!attribute [rw] cfn_template_provider_detail
|
45157
|
+
# Details about a CloudFormation template provider configuration and
|
45158
|
+
# associated provisioning information.
|
45159
|
+
# @return [Types::CfnTemplateProviderDetail]
|
45160
|
+
#
|
45161
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TemplateProviderDetail AWS API Documentation
|
45162
|
+
#
|
45163
|
+
class TemplateProviderDetail < Struct.new(
|
45164
|
+
:cfn_template_provider_detail)
|
45165
|
+
SENSITIVE = []
|
45166
|
+
include Aws::Structure
|
45167
|
+
end
|
45168
|
+
|
44967
45169
|
# The TensorBoard app settings.
|
44968
45170
|
#
|
44969
45171
|
# @!attribute [rw] default_resource_spec
|
@@ -49884,13 +50086,18 @@ module Aws::SageMaker
|
|
49884
50086
|
# [2]: https://docs.aws.amazon.com/servicecatalog/latest/adminguide/constraints-resourceupdate.html
|
49885
50087
|
# @return [Array<Types::Tag>]
|
49886
50088
|
#
|
50089
|
+
# @!attribute [rw] template_providers_to_update
|
50090
|
+
# The template providers to update in the project.
|
50091
|
+
# @return [Array<Types::UpdateTemplateProvider>]
|
50092
|
+
#
|
49887
50093
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateProjectInput AWS API Documentation
|
49888
50094
|
#
|
49889
50095
|
class UpdateProjectInput < Struct.new(
|
49890
50096
|
:project_name,
|
49891
50097
|
:project_description,
|
49892
50098
|
:service_catalog_provisioning_update_details,
|
49893
|
-
:tags
|
50099
|
+
:tags,
|
50100
|
+
:template_providers_to_update)
|
49894
50101
|
SENSITIVE = []
|
49895
50102
|
include Aws::Structure
|
49896
50103
|
end
|
@@ -49947,6 +50154,21 @@ module Aws::SageMaker
|
|
49947
50154
|
include Aws::Structure
|
49948
50155
|
end
|
49949
50156
|
|
50157
|
+
# Contains configuration details for updating an existing template
|
50158
|
+
# provider in the project.
|
50159
|
+
#
|
50160
|
+
# @!attribute [rw] cfn_template_provider
|
50161
|
+
# The CloudFormation template provider configuration to update.
|
50162
|
+
# @return [Types::CfnUpdateTemplateProvider]
|
50163
|
+
#
|
50164
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateTemplateProvider AWS API Documentation
|
50165
|
+
#
|
50166
|
+
class UpdateTemplateProvider < Struct.new(
|
50167
|
+
:cfn_template_provider)
|
50168
|
+
SENSITIVE = []
|
50169
|
+
include Aws::Structure
|
50170
|
+
end
|
50171
|
+
|
49950
50172
|
# @!attribute [rw] training_job_name
|
49951
50173
|
# The name of a training job to update the Debugger profiling
|
49952
50174
|
# configuration.
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -725,7 +725,7 @@ module Aws
|
|
725
725
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#create_cluster-instance_method
|
726
726
|
def create_cluster: (
|
727
727
|
cluster_name: ::String,
|
728
|
-
instance_groups: Array[
|
728
|
+
?instance_groups: Array[
|
729
729
|
{
|
730
730
|
instance_count: ::Integer,
|
731
731
|
instance_group_name: ::String,
|
@@ -3861,6 +3861,21 @@ module Aws
|
|
3861
3861
|
key: ::String,
|
3862
3862
|
value: ::String
|
3863
3863
|
},
|
3864
|
+
],
|
3865
|
+
?template_providers: Array[
|
3866
|
+
{
|
3867
|
+
cfn_template_provider: {
|
3868
|
+
template_name: ::String,
|
3869
|
+
template_url: ::String,
|
3870
|
+
role_arn: ::String?,
|
3871
|
+
parameters: Array[
|
3872
|
+
{
|
3873
|
+
key: ::String,
|
3874
|
+
value: ::String?
|
3875
|
+
},
|
3876
|
+
]?
|
3877
|
+
}?
|
3878
|
+
},
|
3864
3879
|
]
|
3865
3880
|
) -> _CreateProjectResponseSuccess
|
3866
3881
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProjectResponseSuccess
|
@@ -6271,6 +6286,7 @@ module Aws
|
|
6271
6286
|
def service_catalog_provisioning_details: () -> Types::ServiceCatalogProvisioningDetails
|
6272
6287
|
def service_catalog_provisioned_product_details: () -> Types::ServiceCatalogProvisionedProductDetails
|
6273
6288
|
def project_status: () -> ("Pending" | "CreateInProgress" | "CreateCompleted" | "CreateFailed" | "DeleteInProgress" | "DeleteFailed" | "DeleteCompleted" | "UpdateInProgress" | "UpdateCompleted" | "UpdateFailed")
|
6289
|
+
def template_provider_details: () -> ::Array[Types::TemplateProviderDetail]
|
6274
6290
|
def created_by: () -> Types::UserContext
|
6275
6291
|
def creation_time: () -> ::Time
|
6276
6292
|
def last_modified_time: () -> ::Time
|
@@ -8584,7 +8600,7 @@ module Aws
|
|
8584
8600
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#update_cluster-instance_method
|
8585
8601
|
def update_cluster: (
|
8586
8602
|
cluster_name: ::String,
|
8587
|
-
instance_groups: Array[
|
8603
|
+
?instance_groups: Array[
|
8588
8604
|
{
|
8589
8605
|
instance_count: ::Integer,
|
8590
8606
|
instance_group_name: ::String,
|
@@ -9843,6 +9859,20 @@ module Aws
|
|
9843
9859
|
key: ::String,
|
9844
9860
|
value: ::String
|
9845
9861
|
},
|
9862
|
+
],
|
9863
|
+
?template_providers_to_update: Array[
|
9864
|
+
{
|
9865
|
+
cfn_template_provider: {
|
9866
|
+
template_name: ::String,
|
9867
|
+
template_url: ::String,
|
9868
|
+
parameters: Array[
|
9869
|
+
{
|
9870
|
+
key: ::String,
|
9871
|
+
value: ::String?
|
9872
|
+
},
|
9873
|
+
]?
|
9874
|
+
}?
|
9875
|
+
},
|
9846
9876
|
]
|
9847
9877
|
) -> _UpdateProjectResponseSuccess
|
9848
9878
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProjectResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -644,6 +644,55 @@ module Aws::SageMaker
|
|
644
644
|
SENSITIVE: []
|
645
645
|
end
|
646
646
|
|
647
|
+
class CfnCreateTemplateProvider
|
648
|
+
attr_accessor template_name: ::String
|
649
|
+
attr_accessor template_url: ::String
|
650
|
+
attr_accessor role_arn: ::String
|
651
|
+
attr_accessor parameters: ::Array[Types::CfnStackCreateParameter]
|
652
|
+
SENSITIVE: []
|
653
|
+
end
|
654
|
+
|
655
|
+
class CfnStackCreateParameter
|
656
|
+
attr_accessor key: ::String
|
657
|
+
attr_accessor value: ::String
|
658
|
+
SENSITIVE: []
|
659
|
+
end
|
660
|
+
|
661
|
+
class CfnStackDetail
|
662
|
+
attr_accessor name: ::String
|
663
|
+
attr_accessor id: ::String
|
664
|
+
attr_accessor status_message: ::String
|
665
|
+
SENSITIVE: []
|
666
|
+
end
|
667
|
+
|
668
|
+
class CfnStackParameter
|
669
|
+
attr_accessor key: ::String
|
670
|
+
attr_accessor value: ::String
|
671
|
+
SENSITIVE: []
|
672
|
+
end
|
673
|
+
|
674
|
+
class CfnStackUpdateParameter
|
675
|
+
attr_accessor key: ::String
|
676
|
+
attr_accessor value: ::String
|
677
|
+
SENSITIVE: []
|
678
|
+
end
|
679
|
+
|
680
|
+
class CfnTemplateProviderDetail
|
681
|
+
attr_accessor template_name: ::String
|
682
|
+
attr_accessor template_url: ::String
|
683
|
+
attr_accessor role_arn: ::String
|
684
|
+
attr_accessor parameters: ::Array[Types::CfnStackParameter]
|
685
|
+
attr_accessor stack_detail: Types::CfnStackDetail
|
686
|
+
SENSITIVE: []
|
687
|
+
end
|
688
|
+
|
689
|
+
class CfnUpdateTemplateProvider
|
690
|
+
attr_accessor template_name: ::String
|
691
|
+
attr_accessor template_url: ::String
|
692
|
+
attr_accessor parameters: ::Array[Types::CfnStackUpdateParameter]
|
693
|
+
SENSITIVE: []
|
694
|
+
end
|
695
|
+
|
647
696
|
class Channel
|
648
697
|
attr_accessor channel_name: ::String
|
649
698
|
attr_accessor data_source: Types::DataSource
|
@@ -1911,6 +1960,7 @@ module Aws::SageMaker
|
|
1911
1960
|
attr_accessor project_description: ::String
|
1912
1961
|
attr_accessor service_catalog_provisioning_details: Types::ServiceCatalogProvisioningDetails
|
1913
1962
|
attr_accessor tags: ::Array[Types::Tag]
|
1963
|
+
attr_accessor template_providers: ::Array[Types::CreateTemplateProvider]
|
1914
1964
|
SENSITIVE: []
|
1915
1965
|
end
|
1916
1966
|
|
@@ -1949,6 +1999,11 @@ module Aws::SageMaker
|
|
1949
1999
|
SENSITIVE: []
|
1950
2000
|
end
|
1951
2001
|
|
2002
|
+
class CreateTemplateProvider
|
2003
|
+
attr_accessor cfn_template_provider: Types::CfnCreateTemplateProvider
|
2004
|
+
SENSITIVE: []
|
2005
|
+
end
|
2006
|
+
|
1952
2007
|
class CreateTrainingJobRequest
|
1953
2008
|
attr_accessor training_job_name: ::String
|
1954
2009
|
attr_accessor hyper_parameters: ::Hash[::String, ::String]
|
@@ -3930,6 +3985,7 @@ module Aws::SageMaker
|
|
3930
3985
|
attr_accessor service_catalog_provisioning_details: Types::ServiceCatalogProvisioningDetails
|
3931
3986
|
attr_accessor service_catalog_provisioned_product_details: Types::ServiceCatalogProvisionedProductDetails
|
3932
3987
|
attr_accessor project_status: ("Pending" | "CreateInProgress" | "CreateCompleted" | "CreateFailed" | "DeleteInProgress" | "DeleteFailed" | "DeleteCompleted" | "UpdateInProgress" | "UpdateCompleted" | "UpdateFailed")
|
3988
|
+
attr_accessor template_provider_details: ::Array[Types::TemplateProviderDetail]
|
3933
3989
|
attr_accessor created_by: Types::UserContext
|
3934
3990
|
attr_accessor creation_time: ::Time
|
3935
3991
|
attr_accessor last_modified_time: ::Time
|
@@ -8454,6 +8510,7 @@ module Aws::SageMaker
|
|
8454
8510
|
attr_accessor project_status: ("Pending" | "CreateInProgress" | "CreateCompleted" | "CreateFailed" | "DeleteInProgress" | "DeleteFailed" | "DeleteCompleted" | "UpdateInProgress" | "UpdateCompleted" | "UpdateFailed")
|
8455
8511
|
attr_accessor created_by: Types::UserContext
|
8456
8512
|
attr_accessor creation_time: ::Time
|
8513
|
+
attr_accessor template_provider_details: ::Array[Types::TemplateProviderDetail]
|
8457
8514
|
attr_accessor tags: ::Array[Types::Tag]
|
8458
8515
|
attr_accessor last_modified_time: ::Time
|
8459
8516
|
attr_accessor last_modified_by: Types::UserContext
|
@@ -9421,6 +9478,11 @@ module Aws::SageMaker
|
|
9421
9478
|
SENSITIVE: []
|
9422
9479
|
end
|
9423
9480
|
|
9481
|
+
class TemplateProviderDetail
|
9482
|
+
attr_accessor cfn_template_provider_detail: Types::CfnTemplateProviderDetail
|
9483
|
+
SENSITIVE: []
|
9484
|
+
end
|
9485
|
+
|
9424
9486
|
class TensorBoardAppSettings
|
9425
9487
|
attr_accessor default_resource_spec: Types::ResourceSpec
|
9426
9488
|
SENSITIVE: []
|
@@ -10435,6 +10497,7 @@ module Aws::SageMaker
|
|
10435
10497
|
attr_accessor project_description: ::String
|
10436
10498
|
attr_accessor service_catalog_provisioning_update_details: Types::ServiceCatalogProvisioningUpdateDetails
|
10437
10499
|
attr_accessor tags: ::Array[Types::Tag]
|
10500
|
+
attr_accessor template_providers_to_update: ::Array[Types::UpdateTemplateProvider]
|
10438
10501
|
SENSITIVE: []
|
10439
10502
|
end
|
10440
10503
|
|
@@ -10456,6 +10519,11 @@ module Aws::SageMaker
|
|
10456
10519
|
SENSITIVE: []
|
10457
10520
|
end
|
10458
10521
|
|
10522
|
+
class UpdateTemplateProvider
|
10523
|
+
attr_accessor cfn_template_provider: Types::CfnUpdateTemplateProvider
|
10524
|
+
SENSITIVE: []
|
10525
|
+
end
|
10526
|
+
|
10459
10527
|
class UpdateTrainingJobRequest
|
10460
10528
|
attr_accessor training_job_name: ::String
|
10461
10529
|
attr_accessor profiler_config: Types::ProfilerConfigForUpdate
|