aws-sdk-sagemaker 1.311.0 → 1.312.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 +48 -1
- data/lib/aws-sdk-sagemaker/client_api.rb +83 -0
- data/lib/aws-sdk-sagemaker/types.rb +245 -28
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +30 -0
- 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: 77d7be6fc0e807681c879fad10cec3abe1859f6a4317b442681331267587e6bd
|
4
|
+
data.tar.gz: da8daf19d19d0ddecd47b07aadcfb98adcaa9d7d04f65673bb27ace13a6578d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c75ff3533b98e071bf43643f24abd99853cb944b7d68ecc64699d7d7233986ec40bbb384b89e4e5bc3543e32f2fe7346bb730e072f111955464f9d850fb24c75
|
7
|
+
data.tar.gz: fe7d02b9b16b85e15b70feb86c8e5ec890c26bf97325d1ef11cc9360bb2e4dfe8e611993b7274ef86f20da4950e8104b32c7fbe0c29acd9deb7658670721b78f
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.312.0
|
@@ -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
|
@@ -29094,6 +29124,9 @@ module Aws::SageMaker
|
|
29094
29124
|
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
29095
29125
|
# [2]: https://docs.aws.amazon.com/servicecatalog/latest/adminguide/constraints-resourceupdate.html
|
29096
29126
|
#
|
29127
|
+
# @option params [Array<Types::UpdateTemplateProvider>] :template_providers_to_update
|
29128
|
+
# The template providers to update in the project.
|
29129
|
+
#
|
29097
29130
|
# @return [Types::UpdateProjectOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
29098
29131
|
#
|
29099
29132
|
# * {Types::UpdateProjectOutput#project_arn #project_arn} => String
|
@@ -29118,6 +29151,20 @@ module Aws::SageMaker
|
|
29118
29151
|
# value: "TagValue", # required
|
29119
29152
|
# },
|
29120
29153
|
# ],
|
29154
|
+
# template_providers_to_update: [
|
29155
|
+
# {
|
29156
|
+
# cfn_template_provider: {
|
29157
|
+
# template_name: "CfnTemplateName", # required
|
29158
|
+
# template_url: "CfnTemplateURL", # required
|
29159
|
+
# parameters: [
|
29160
|
+
# {
|
29161
|
+
# key: "CfnStackParameterKey", # required
|
29162
|
+
# value: "CfnStackParameterValue",
|
29163
|
+
# },
|
29164
|
+
# ],
|
29165
|
+
# },
|
29166
|
+
# },
|
29167
|
+
# ],
|
29121
29168
|
# })
|
29122
29169
|
#
|
29123
29170
|
# @example Response structure
|
@@ -29975,7 +30022,7 @@ module Aws::SageMaker
|
|
29975
30022
|
tracer: tracer
|
29976
30023
|
)
|
29977
30024
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
29978
|
-
context[:gem_version] = '1.
|
30025
|
+
context[:gem_version] = '1.312.0'
|
29979
30026
|
Seahorse::Client::Request.new(handlers, context)
|
29980
30027
|
end
|
29981
30028
|
|
@@ -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"))
|
@@ -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
|
|
@@ -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,
|
@@ -40134,6 +40336,10 @@ module Aws::SageMaker
|
|
40134
40336
|
# A timestamp specifying when the project was created.
|
40135
40337
|
# @return [Time]
|
40136
40338
|
#
|
40339
|
+
# @!attribute [rw] template_provider_details
|
40340
|
+
# An array of template providers associated with the project.
|
40341
|
+
# @return [Array<Types::TemplateProviderDetail>]
|
40342
|
+
#
|
40137
40343
|
# @!attribute [rw] tags
|
40138
40344
|
# An array of key-value pairs. You can use tags to categorize your
|
40139
40345
|
# Amazon Web Services resources in different ways, for example, by
|
@@ -40166,6 +40372,7 @@ module Aws::SageMaker
|
|
40166
40372
|
:project_status,
|
40167
40373
|
:created_by,
|
40168
40374
|
:creation_time,
|
40375
|
+
:template_provider_details,
|
40169
40376
|
:tags,
|
40170
40377
|
:last_modified_time,
|
40171
40378
|
:last_modified_by)
|
@@ -41825,32 +42032,6 @@ module Aws::SageMaker
|
|
41825
42032
|
#
|
41826
42033
|
# @!attribute [rw] instance_type
|
41827
42034
|
# 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
42035
|
# @return [String]
|
41855
42036
|
#
|
41856
42037
|
# @!attribute [rw] instance_count
|
@@ -44964,6 +45145,22 @@ module Aws::SageMaker
|
|
44964
45145
|
include Aws::Structure
|
44965
45146
|
end
|
44966
45147
|
|
45148
|
+
# Details about a template provider configuration and associated
|
45149
|
+
# provisioning information.
|
45150
|
+
#
|
45151
|
+
# @!attribute [rw] cfn_template_provider_detail
|
45152
|
+
# Details about a CloudFormation template provider configuration and
|
45153
|
+
# associated provisioning information.
|
45154
|
+
# @return [Types::CfnTemplateProviderDetail]
|
45155
|
+
#
|
45156
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TemplateProviderDetail AWS API Documentation
|
45157
|
+
#
|
45158
|
+
class TemplateProviderDetail < Struct.new(
|
45159
|
+
:cfn_template_provider_detail)
|
45160
|
+
SENSITIVE = []
|
45161
|
+
include Aws::Structure
|
45162
|
+
end
|
45163
|
+
|
44967
45164
|
# The TensorBoard app settings.
|
44968
45165
|
#
|
44969
45166
|
# @!attribute [rw] default_resource_spec
|
@@ -49884,13 +50081,18 @@ module Aws::SageMaker
|
|
49884
50081
|
# [2]: https://docs.aws.amazon.com/servicecatalog/latest/adminguide/constraints-resourceupdate.html
|
49885
50082
|
# @return [Array<Types::Tag>]
|
49886
50083
|
#
|
50084
|
+
# @!attribute [rw] template_providers_to_update
|
50085
|
+
# The template providers to update in the project.
|
50086
|
+
# @return [Array<Types::UpdateTemplateProvider>]
|
50087
|
+
#
|
49887
50088
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateProjectInput AWS API Documentation
|
49888
50089
|
#
|
49889
50090
|
class UpdateProjectInput < Struct.new(
|
49890
50091
|
:project_name,
|
49891
50092
|
:project_description,
|
49892
50093
|
:service_catalog_provisioning_update_details,
|
49893
|
-
:tags
|
50094
|
+
:tags,
|
50095
|
+
:template_providers_to_update)
|
49894
50096
|
SENSITIVE = []
|
49895
50097
|
include Aws::Structure
|
49896
50098
|
end
|
@@ -49947,6 +50149,21 @@ module Aws::SageMaker
|
|
49947
50149
|
include Aws::Structure
|
49948
50150
|
end
|
49949
50151
|
|
50152
|
+
# Contains configuration details for updating an existing template
|
50153
|
+
# provider in the project.
|
50154
|
+
#
|
50155
|
+
# @!attribute [rw] cfn_template_provider
|
50156
|
+
# The CloudFormation template provider configuration to update.
|
50157
|
+
# @return [Types::CfnUpdateTemplateProvider]
|
50158
|
+
#
|
50159
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateTemplateProvider AWS API Documentation
|
50160
|
+
#
|
50161
|
+
class UpdateTemplateProvider < Struct.new(
|
50162
|
+
:cfn_template_provider)
|
50163
|
+
SENSITIVE = []
|
50164
|
+
include Aws::Structure
|
50165
|
+
end
|
50166
|
+
|
49950
50167
|
# @!attribute [rw] training_job_name
|
49951
50168
|
# The name of a training job to update the Debugger profiling
|
49952
50169
|
# configuration.
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -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
|
@@ -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
|