aws-sdk-sagemaker 1.177.0 → 1.179.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +40 -3
- data/lib/aws-sdk-sagemaker/client_api.rb +19 -0
- data/lib/aws-sdk-sagemaker/types.rb +108 -10
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5f41b686302579ebb3a0e6b8175acd6d78c6656eb125cf8e85fb5315484f6e76
|
4
|
+
data.tar.gz: b5cb5ebd11a722cebbb09a48933276c4e6ab3d0fbb5b9a71e84ea1b96078e669
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 65bdd9a23be09eb708f0fba08cb296a288de02d12a6625a63311f34fbb06596da008a07defb47cc691c0171d7cb4703c0e34faafa260634b9fc73066d9851d8f
|
7
|
+
data.tar.gz: ba3a27abf772d6f51ee39939769e11f9ad34cc013ab6009a916515727bf5bbf50bd9575fc1391b2a0c870ab40d447200bb454ec1d6d95813affb2e5a39821b2c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.179.0 (2023-05-23)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added ModelNameEquals, ModelPackageVersionArnEquals in request and ModelName, SamplePayloadUrl, ModelPackageVersionArn in response of ListInferenceRecommendationsJobs API. Added Invocation timestamps in response of DescribeInferenceRecommendationsJob API & ListInferenceRecommendationsJobSteps API.
|
8
|
+
|
9
|
+
1.178.0 (2023-05-09)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release includes support for (1) Provisioned Concurrency for Amazon SageMaker Serverless Inference and (2) UpdateEndpointWeightsAndCapacities API for Serverless endpoints.
|
13
|
+
|
4
14
|
1.177.0 (2023-05-04)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.179.0
|
@@ -2139,7 +2139,8 @@ module Aws::SageMaker
|
|
2139
2139
|
# inter-app communication in `VPCOnly` mode. Required when
|
2140
2140
|
# `CreateDomain.AppNetworkAccessType` is `VPCOnly` and
|
2141
2141
|
# `DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn`
|
2142
|
-
# is provided.
|
2142
|
+
# is provided. If setting up the domain for use with RStudio, this value
|
2143
|
+
# must be set to `Service`.
|
2143
2144
|
#
|
2144
2145
|
# @option params [Types::DomainSettings] :domain_settings
|
2145
2146
|
# A collection of `Domain` settings.
|
@@ -2826,6 +2827,7 @@ module Aws::SageMaker
|
|
2826
2827
|
# serverless_config: {
|
2827
2828
|
# memory_size_in_mb: 1, # required
|
2828
2829
|
# max_concurrency: 1, # required
|
2830
|
+
# provisioned_concurrency: 1,
|
2829
2831
|
# },
|
2830
2832
|
# volume_size_in_gb: 1,
|
2831
2833
|
# model_data_download_timeout_in_seconds: 1,
|
@@ -2917,6 +2919,7 @@ module Aws::SageMaker
|
|
2917
2919
|
# serverless_config: {
|
2918
2920
|
# memory_size_in_mb: 1, # required
|
2919
2921
|
# max_concurrency: 1, # required
|
2922
|
+
# provisioned_concurrency: 1,
|
2920
2923
|
# },
|
2921
2924
|
# volume_size_in_gb: 1,
|
2922
2925
|
# model_data_download_timeout_in_seconds: 1,
|
@@ -7049,6 +7052,9 @@ module Aws::SageMaker
|
|
7049
7052
|
# example, if you specify an EFS location, input data files are
|
7050
7053
|
# available as input streams. They do not need to be downloaded.
|
7051
7054
|
#
|
7055
|
+
# Your input must be in the same Amazon Web Services region as your
|
7056
|
+
# training job.
|
7057
|
+
#
|
7052
7058
|
# @option params [required, Types::OutputDataConfig] :output_data_config
|
7053
7059
|
# Specifies the path to the S3 location where you want to store model
|
7054
7060
|
# artifacts. SageMaker creates subfolders for the artifacts.
|
@@ -10833,8 +10839,10 @@ module Aws::SageMaker
|
|
10833
10839
|
# resp.production_variants[0].variant_status[0].start_time #=> Time
|
10834
10840
|
# resp.production_variants[0].current_serverless_config.memory_size_in_mb #=> Integer
|
10835
10841
|
# resp.production_variants[0].current_serverless_config.max_concurrency #=> Integer
|
10842
|
+
# resp.production_variants[0].current_serverless_config.provisioned_concurrency #=> Integer
|
10836
10843
|
# resp.production_variants[0].desired_serverless_config.memory_size_in_mb #=> Integer
|
10837
10844
|
# resp.production_variants[0].desired_serverless_config.max_concurrency #=> Integer
|
10845
|
+
# resp.production_variants[0].desired_serverless_config.provisioned_concurrency #=> Integer
|
10838
10846
|
# resp.data_capture_config.enable_capture #=> Boolean
|
10839
10847
|
# resp.data_capture_config.capture_status #=> String, one of "Started", "Stopped"
|
10840
10848
|
# resp.data_capture_config.current_sampling_percentage #=> Integer
|
@@ -10881,8 +10889,10 @@ module Aws::SageMaker
|
|
10881
10889
|
# resp.pending_deployment_summary.production_variants[0].variant_status[0].start_time #=> Time
|
10882
10890
|
# resp.pending_deployment_summary.production_variants[0].current_serverless_config.memory_size_in_mb #=> Integer
|
10883
10891
|
# resp.pending_deployment_summary.production_variants[0].current_serverless_config.max_concurrency #=> Integer
|
10892
|
+
# resp.pending_deployment_summary.production_variants[0].current_serverless_config.provisioned_concurrency #=> Integer
|
10884
10893
|
# resp.pending_deployment_summary.production_variants[0].desired_serverless_config.memory_size_in_mb #=> Integer
|
10885
10894
|
# resp.pending_deployment_summary.production_variants[0].desired_serverless_config.max_concurrency #=> Integer
|
10895
|
+
# resp.pending_deployment_summary.production_variants[0].desired_serverless_config.provisioned_concurrency #=> Integer
|
10886
10896
|
# resp.pending_deployment_summary.start_time #=> Time
|
10887
10897
|
# resp.pending_deployment_summary.shadow_production_variants #=> Array
|
10888
10898
|
# resp.pending_deployment_summary.shadow_production_variants[0].variant_name #=> String
|
@@ -10902,8 +10912,10 @@ module Aws::SageMaker
|
|
10902
10912
|
# resp.pending_deployment_summary.shadow_production_variants[0].variant_status[0].start_time #=> Time
|
10903
10913
|
# resp.pending_deployment_summary.shadow_production_variants[0].current_serverless_config.memory_size_in_mb #=> Integer
|
10904
10914
|
# resp.pending_deployment_summary.shadow_production_variants[0].current_serverless_config.max_concurrency #=> Integer
|
10915
|
+
# resp.pending_deployment_summary.shadow_production_variants[0].current_serverless_config.provisioned_concurrency #=> Integer
|
10905
10916
|
# resp.pending_deployment_summary.shadow_production_variants[0].desired_serverless_config.memory_size_in_mb #=> Integer
|
10906
10917
|
# resp.pending_deployment_summary.shadow_production_variants[0].desired_serverless_config.max_concurrency #=> Integer
|
10918
|
+
# resp.pending_deployment_summary.shadow_production_variants[0].desired_serverless_config.provisioned_concurrency #=> Integer
|
10907
10919
|
# resp.explainer_config.clarify_explainer_config.enable_explanations #=> String
|
10908
10920
|
# resp.explainer_config.clarify_explainer_config.inference_config.features_attribute #=> String
|
10909
10921
|
# resp.explainer_config.clarify_explainer_config.inference_config.content_template #=> String
|
@@ -10943,8 +10955,10 @@ module Aws::SageMaker
|
|
10943
10955
|
# resp.shadow_production_variants[0].variant_status[0].start_time #=> Time
|
10944
10956
|
# resp.shadow_production_variants[0].current_serverless_config.memory_size_in_mb #=> Integer
|
10945
10957
|
# resp.shadow_production_variants[0].current_serverless_config.max_concurrency #=> Integer
|
10958
|
+
# resp.shadow_production_variants[0].current_serverless_config.provisioned_concurrency #=> Integer
|
10946
10959
|
# resp.shadow_production_variants[0].desired_serverless_config.memory_size_in_mb #=> Integer
|
10947
10960
|
# resp.shadow_production_variants[0].desired_serverless_config.max_concurrency #=> Integer
|
10961
|
+
# resp.shadow_production_variants[0].desired_serverless_config.provisioned_concurrency #=> Integer
|
10948
10962
|
#
|
10949
10963
|
#
|
10950
10964
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -11000,6 +11014,7 @@ module Aws::SageMaker
|
|
11000
11014
|
# resp.production_variants[0].core_dump_config.kms_key_id #=> String
|
11001
11015
|
# resp.production_variants[0].serverless_config.memory_size_in_mb #=> Integer
|
11002
11016
|
# resp.production_variants[0].serverless_config.max_concurrency #=> Integer
|
11017
|
+
# resp.production_variants[0].serverless_config.provisioned_concurrency #=> Integer
|
11003
11018
|
# resp.production_variants[0].volume_size_in_gb #=> Integer
|
11004
11019
|
# resp.production_variants[0].model_data_download_timeout_in_seconds #=> Integer
|
11005
11020
|
# resp.production_variants[0].container_startup_health_check_timeout_in_seconds #=> Integer
|
@@ -11058,6 +11073,7 @@ module Aws::SageMaker
|
|
11058
11073
|
# resp.shadow_production_variants[0].core_dump_config.kms_key_id #=> String
|
11059
11074
|
# resp.shadow_production_variants[0].serverless_config.memory_size_in_mb #=> Integer
|
11060
11075
|
# resp.shadow_production_variants[0].serverless_config.max_concurrency #=> Integer
|
11076
|
+
# resp.shadow_production_variants[0].serverless_config.provisioned_concurrency #=> Integer
|
11061
11077
|
# resp.shadow_production_variants[0].volume_size_in_gb #=> Integer
|
11062
11078
|
# resp.shadow_production_variants[0].model_data_download_timeout_in_seconds #=> Integer
|
11063
11079
|
# resp.shadow_production_variants[0].container_startup_health_check_timeout_in_seconds #=> Integer
|
@@ -12056,6 +12072,8 @@ module Aws::SageMaker
|
|
12056
12072
|
# resp.inference_recommendations[0].model_configuration.environment_parameters[0].value #=> String
|
12057
12073
|
# resp.inference_recommendations[0].model_configuration.compilation_job_name #=> String
|
12058
12074
|
# resp.inference_recommendations[0].recommendation_id #=> String
|
12075
|
+
# resp.inference_recommendations[0].invocation_end_time #=> Time
|
12076
|
+
# resp.inference_recommendations[0].invocation_start_time #=> Time
|
12059
12077
|
# resp.endpoint_performances #=> Array
|
12060
12078
|
# resp.endpoint_performances[0].metrics.max_invocations #=> Integer
|
12061
12079
|
# resp.endpoint_performances[0].metrics.model_latency #=> Integer
|
@@ -17060,6 +17078,8 @@ module Aws::SageMaker
|
|
17060
17078
|
# resp.steps[0].inference_benchmark.failure_reason #=> String
|
17061
17079
|
# resp.steps[0].inference_benchmark.endpoint_metrics.max_invocations #=> Integer
|
17062
17080
|
# resp.steps[0].inference_benchmark.endpoint_metrics.model_latency #=> Integer
|
17081
|
+
# resp.steps[0].inference_benchmark.invocation_end_time #=> Time
|
17082
|
+
# resp.steps[0].inference_benchmark.invocation_start_time #=> Time
|
17063
17083
|
# resp.next_token #=> String
|
17064
17084
|
#
|
17065
17085
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListInferenceRecommendationsJobSteps AWS API Documentation
|
@@ -17112,6 +17132,13 @@ module Aws::SageMaker
|
|
17112
17132
|
# @option params [Integer] :max_results
|
17113
17133
|
# The maximum number of recommendations to return in the response.
|
17114
17134
|
#
|
17135
|
+
# @option params [String] :model_name_equals
|
17136
|
+
# A filter that returns only jobs that were created for this model.
|
17137
|
+
#
|
17138
|
+
# @option params [String] :model_package_version_arn_equals
|
17139
|
+
# A filter that returns only jobs that were created for this versioned
|
17140
|
+
# model package.
|
17141
|
+
#
|
17115
17142
|
# @return [Types::ListInferenceRecommendationsJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17116
17143
|
#
|
17117
17144
|
# * {Types::ListInferenceRecommendationsJobsResponse#inference_recommendations_jobs #inference_recommendations_jobs} => Array<Types::InferenceRecommendationsJob>
|
@@ -17132,6 +17159,8 @@ module Aws::SageMaker
|
|
17132
17159
|
# sort_order: "Ascending", # accepts Ascending, Descending
|
17133
17160
|
# next_token: "NextToken",
|
17134
17161
|
# max_results: 1,
|
17162
|
+
# model_name_equals: "ModelName",
|
17163
|
+
# model_package_version_arn_equals: "ModelPackageArn",
|
17135
17164
|
# })
|
17136
17165
|
#
|
17137
17166
|
# @example Response structure
|
@@ -17147,6 +17176,9 @@ module Aws::SageMaker
|
|
17147
17176
|
# resp.inference_recommendations_jobs[0].role_arn #=> String
|
17148
17177
|
# resp.inference_recommendations_jobs[0].last_modified_time #=> Time
|
17149
17178
|
# resp.inference_recommendations_jobs[0].failure_reason #=> String
|
17179
|
+
# resp.inference_recommendations_jobs[0].model_name #=> String
|
17180
|
+
# resp.inference_recommendations_jobs[0].sample_payload_url #=> String
|
17181
|
+
# resp.inference_recommendations_jobs[0].model_package_version_arn #=> String
|
17150
17182
|
# resp.next_token #=> String
|
17151
17183
|
#
|
17152
17184
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListInferenceRecommendationsJobs AWS API Documentation
|
@@ -21428,7 +21460,8 @@ module Aws::SageMaker
|
|
21428
21460
|
# inter-app communication in `VPCOnly` mode. Required when
|
21429
21461
|
# `CreateDomain.AppNetworkAccessType` is `VPCOnly` and
|
21430
21462
|
# `DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn`
|
21431
|
-
# is provided.
|
21463
|
+
# is provided. If setting up the domain for use with RStudio, this value
|
21464
|
+
# must be set to `Service`.
|
21432
21465
|
#
|
21433
21466
|
# @return [Types::UpdateDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
21434
21467
|
#
|
@@ -21731,6 +21764,10 @@ module Aws::SageMaker
|
|
21731
21764
|
# variant_name: "VariantName", # required
|
21732
21765
|
# desired_weight: 1.0,
|
21733
21766
|
# desired_instance_count: 1,
|
21767
|
+
# serverless_update_config: {
|
21768
|
+
# max_concurrency: 1,
|
21769
|
+
# provisioned_concurrency: 1,
|
21770
|
+
# },
|
21734
21771
|
# },
|
21735
21772
|
# ],
|
21736
21773
|
# })
|
@@ -23472,7 +23509,7 @@ module Aws::SageMaker
|
|
23472
23509
|
params: params,
|
23473
23510
|
config: config)
|
23474
23511
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
23475
|
-
context[:gem_version] = '1.
|
23512
|
+
context[:gem_version] = '1.179.0'
|
23476
23513
|
Seahorse::Client::Request.new(handlers, context)
|
23477
23514
|
end
|
23478
23515
|
|
@@ -958,6 +958,8 @@ module Aws::SageMaker
|
|
958
958
|
IntegerParameterRangeSpecification = Shapes::StructureShape.new(name: 'IntegerParameterRangeSpecification')
|
959
959
|
IntegerParameterRanges = Shapes::ListShape.new(name: 'IntegerParameterRanges')
|
960
960
|
IntegerValue = Shapes::IntegerShape.new(name: 'IntegerValue')
|
961
|
+
InvocationEndTime = Shapes::TimestampShape.new(name: 'InvocationEndTime')
|
962
|
+
InvocationStartTime = Shapes::TimestampShape.new(name: 'InvocationStartTime')
|
961
963
|
InvocationsMaxRetries = Shapes::IntegerShape.new(name: 'InvocationsMaxRetries')
|
962
964
|
InvocationsTimeoutInSeconds = Shapes::IntegerShape.new(name: 'InvocationsTimeoutInSeconds')
|
963
965
|
IotRoleAlias = Shapes::StringShape.new(name: 'IotRoleAlias')
|
@@ -1513,6 +1515,7 @@ module Aws::SageMaker
|
|
1513
1515
|
ProductionVariantModelDataDownloadTimeoutInSeconds = Shapes::IntegerShape.new(name: 'ProductionVariantModelDataDownloadTimeoutInSeconds')
|
1514
1516
|
ProductionVariantSSMAccess = Shapes::BooleanShape.new(name: 'ProductionVariantSSMAccess')
|
1515
1517
|
ProductionVariantServerlessConfig = Shapes::StructureShape.new(name: 'ProductionVariantServerlessConfig')
|
1518
|
+
ProductionVariantServerlessUpdateConfig = Shapes::StructureShape.new(name: 'ProductionVariantServerlessUpdateConfig')
|
1516
1519
|
ProductionVariantStatus = Shapes::StructureShape.new(name: 'ProductionVariantStatus')
|
1517
1520
|
ProductionVariantStatusList = Shapes::ListShape.new(name: 'ProductionVariantStatusList')
|
1518
1521
|
ProductionVariantSummary = Shapes::StructureShape.new(name: 'ProductionVariantSummary')
|
@@ -1673,6 +1676,7 @@ module Aws::SageMaker
|
|
1673
1676
|
SendPipelineExecutionStepSuccessResponse = Shapes::StructureShape.new(name: 'SendPipelineExecutionStepSuccessResponse')
|
1674
1677
|
ServerlessMaxConcurrency = Shapes::IntegerShape.new(name: 'ServerlessMaxConcurrency')
|
1675
1678
|
ServerlessMemorySizeInMB = Shapes::IntegerShape.new(name: 'ServerlessMemorySizeInMB')
|
1679
|
+
ServerlessProvisionedConcurrency = Shapes::IntegerShape.new(name: 'ServerlessProvisionedConcurrency')
|
1676
1680
|
ServiceCatalogEntityId = Shapes::StringShape.new(name: 'ServiceCatalogEntityId')
|
1677
1681
|
ServiceCatalogProvisionedProductDetails = Shapes::StructureShape.new(name: 'ServiceCatalogProvisionedProductDetails')
|
1678
1682
|
ServiceCatalogProvisioningDetails = Shapes::StructureShape.new(name: 'ServiceCatalogProvisioningDetails')
|
@@ -4624,6 +4628,7 @@ module Aws::SageMaker
|
|
4624
4628
|
DesiredWeightAndCapacity.add_member(:variant_name, Shapes::ShapeRef.new(shape: VariantName, required: true, location_name: "VariantName"))
|
4625
4629
|
DesiredWeightAndCapacity.add_member(:desired_weight, Shapes::ShapeRef.new(shape: VariantWeight, location_name: "DesiredWeight"))
|
4626
4630
|
DesiredWeightAndCapacity.add_member(:desired_instance_count, Shapes::ShapeRef.new(shape: TaskCount, location_name: "DesiredInstanceCount"))
|
4631
|
+
DesiredWeightAndCapacity.add_member(:serverless_update_config, Shapes::ShapeRef.new(shape: ProductionVariantServerlessUpdateConfig, location_name: "ServerlessUpdateConfig"))
|
4627
4632
|
DesiredWeightAndCapacity.struct_class = Types::DesiredWeightAndCapacity
|
4628
4633
|
|
4629
4634
|
DesiredWeightAndCapacityList.member = Shapes::ShapeRef.new(shape: DesiredWeightAndCapacity)
|
@@ -5430,6 +5435,8 @@ module Aws::SageMaker
|
|
5430
5435
|
InferenceRecommendation.add_member(:endpoint_configuration, Shapes::ShapeRef.new(shape: EndpointOutputConfiguration, required: true, location_name: "EndpointConfiguration"))
|
5431
5436
|
InferenceRecommendation.add_member(:model_configuration, Shapes::ShapeRef.new(shape: ModelConfiguration, required: true, location_name: "ModelConfiguration"))
|
5432
5437
|
InferenceRecommendation.add_member(:recommendation_id, Shapes::ShapeRef.new(shape: String, location_name: "RecommendationId"))
|
5438
|
+
InferenceRecommendation.add_member(:invocation_end_time, Shapes::ShapeRef.new(shape: InvocationEndTime, location_name: "InvocationEndTime"))
|
5439
|
+
InferenceRecommendation.add_member(:invocation_start_time, Shapes::ShapeRef.new(shape: InvocationStartTime, location_name: "InvocationStartTime"))
|
5433
5440
|
InferenceRecommendation.struct_class = Types::InferenceRecommendation
|
5434
5441
|
|
5435
5442
|
InferenceRecommendations.member = Shapes::ShapeRef.new(shape: InferenceRecommendation)
|
@@ -5444,6 +5451,9 @@ module Aws::SageMaker
|
|
5444
5451
|
InferenceRecommendationsJob.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "RoleArn"))
|
5445
5452
|
InferenceRecommendationsJob.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: LastModifiedTime, required: true, location_name: "LastModifiedTime"))
|
5446
5453
|
InferenceRecommendationsJob.add_member(:failure_reason, Shapes::ShapeRef.new(shape: FailureReason, location_name: "FailureReason"))
|
5454
|
+
InferenceRecommendationsJob.add_member(:model_name, Shapes::ShapeRef.new(shape: ModelName, location_name: "ModelName"))
|
5455
|
+
InferenceRecommendationsJob.add_member(:sample_payload_url, Shapes::ShapeRef.new(shape: S3Uri, location_name: "SamplePayloadUrl"))
|
5456
|
+
InferenceRecommendationsJob.add_member(:model_package_version_arn, Shapes::ShapeRef.new(shape: ModelPackageArn, location_name: "ModelPackageVersionArn"))
|
5447
5457
|
InferenceRecommendationsJob.struct_class = Types::InferenceRecommendationsJob
|
5448
5458
|
|
5449
5459
|
InferenceRecommendationsJobStep.add_member(:step_type, Shapes::ShapeRef.new(shape: RecommendationStepType, required: true, location_name: "StepType"))
|
@@ -6080,6 +6090,8 @@ module Aws::SageMaker
|
|
6080
6090
|
ListInferenceRecommendationsJobsRequest.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location_name: "SortOrder"))
|
6081
6091
|
ListInferenceRecommendationsJobsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
6082
6092
|
ListInferenceRecommendationsJobsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
6093
|
+
ListInferenceRecommendationsJobsRequest.add_member(:model_name_equals, Shapes::ShapeRef.new(shape: ModelName, location_name: "ModelNameEquals"))
|
6094
|
+
ListInferenceRecommendationsJobsRequest.add_member(:model_package_version_arn_equals, Shapes::ShapeRef.new(shape: ModelPackageArn, location_name: "ModelPackageVersionArnEquals"))
|
6083
6095
|
ListInferenceRecommendationsJobsRequest.struct_class = Types::ListInferenceRecommendationsJobsRequest
|
6084
6096
|
|
6085
6097
|
ListInferenceRecommendationsJobsResponse.add_member(:inference_recommendations_jobs, Shapes::ShapeRef.new(shape: InferenceRecommendationsJobs, required: true, location_name: "InferenceRecommendationsJobs"))
|
@@ -7542,8 +7554,13 @@ module Aws::SageMaker
|
|
7542
7554
|
|
7543
7555
|
ProductionVariantServerlessConfig.add_member(:memory_size_in_mb, Shapes::ShapeRef.new(shape: ServerlessMemorySizeInMB, required: true, location_name: "MemorySizeInMB"))
|
7544
7556
|
ProductionVariantServerlessConfig.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: ServerlessMaxConcurrency, required: true, location_name: "MaxConcurrency"))
|
7557
|
+
ProductionVariantServerlessConfig.add_member(:provisioned_concurrency, Shapes::ShapeRef.new(shape: ServerlessProvisionedConcurrency, location_name: "ProvisionedConcurrency"))
|
7545
7558
|
ProductionVariantServerlessConfig.struct_class = Types::ProductionVariantServerlessConfig
|
7546
7559
|
|
7560
|
+
ProductionVariantServerlessUpdateConfig.add_member(:max_concurrency, Shapes::ShapeRef.new(shape: ServerlessMaxConcurrency, location_name: "MaxConcurrency"))
|
7561
|
+
ProductionVariantServerlessUpdateConfig.add_member(:provisioned_concurrency, Shapes::ShapeRef.new(shape: ServerlessProvisionedConcurrency, location_name: "ProvisionedConcurrency"))
|
7562
|
+
ProductionVariantServerlessUpdateConfig.struct_class = Types::ProductionVariantServerlessUpdateConfig
|
7563
|
+
|
7547
7564
|
ProductionVariantStatus.add_member(:status, Shapes::ShapeRef.new(shape: VariantStatus, required: true, location_name: "Status"))
|
7548
7565
|
ProductionVariantStatus.add_member(:status_message, Shapes::ShapeRef.new(shape: VariantStatusMessage, location_name: "StatusMessage"))
|
7549
7566
|
ProductionVariantStatus.add_member(:start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "StartTime"))
|
@@ -7735,6 +7752,8 @@ module Aws::SageMaker
|
|
7735
7752
|
RecommendationJobInferenceBenchmark.add_member(:model_configuration, Shapes::ShapeRef.new(shape: ModelConfiguration, required: true, location_name: "ModelConfiguration"))
|
7736
7753
|
RecommendationJobInferenceBenchmark.add_member(:failure_reason, Shapes::ShapeRef.new(shape: RecommendationFailureReason, location_name: "FailureReason"))
|
7737
7754
|
RecommendationJobInferenceBenchmark.add_member(:endpoint_metrics, Shapes::ShapeRef.new(shape: InferenceMetrics, location_name: "EndpointMetrics"))
|
7755
|
+
RecommendationJobInferenceBenchmark.add_member(:invocation_end_time, Shapes::ShapeRef.new(shape: InvocationEndTime, location_name: "InvocationEndTime"))
|
7756
|
+
RecommendationJobInferenceBenchmark.add_member(:invocation_start_time, Shapes::ShapeRef.new(shape: InvocationStartTime, location_name: "InvocationStartTime"))
|
7738
7757
|
RecommendationJobInferenceBenchmark.struct_class = Types::RecommendationJobInferenceBenchmark
|
7739
7758
|
|
7740
7759
|
RecommendationJobInputConfig.add_member(:model_package_version_arn, Shapes::ShapeRef.new(shape: ModelPackageArn, location_name: "ModelPackageVersionArn"))
|
@@ -5022,7 +5022,8 @@ module Aws::SageMaker
|
|
5022
5022
|
# inter-app communication in `VPCOnly` mode. Required when
|
5023
5023
|
# `CreateDomain.AppNetworkAccessType` is `VPCOnly` and
|
5024
5024
|
# `DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn`
|
5025
|
-
# is provided.
|
5025
|
+
# is provided. If setting up the domain for use with RStudio, this
|
5026
|
+
# value must be set to `Service`.
|
5026
5027
|
# @return [String]
|
5027
5028
|
#
|
5028
5029
|
# @!attribute [rw] domain_settings
|
@@ -7804,6 +7805,9 @@ module Aws::SageMaker
|
|
7804
7805
|
# streams. For example, if you specify an EFS location, input data
|
7805
7806
|
# files are available as input streams. They do not need to be
|
7806
7807
|
# downloaded.
|
7808
|
+
#
|
7809
|
+
# Your input must be in the same Amazon Web Services region as your
|
7810
|
+
# training job.
|
7807
7811
|
# @return [Array<Types::Channel>]
|
7808
7812
|
#
|
7809
7813
|
# @!attribute [rw] output_data_config
|
@@ -15618,12 +15622,18 @@ module Aws::SageMaker
|
|
15618
15622
|
# The variant's capacity.
|
15619
15623
|
# @return [Integer]
|
15620
15624
|
#
|
15625
|
+
# @!attribute [rw] serverless_update_config
|
15626
|
+
# Specifies the serverless update concurrency configuration for an
|
15627
|
+
# endpoint variant.
|
15628
|
+
# @return [Types::ProductionVariantServerlessUpdateConfig]
|
15629
|
+
#
|
15621
15630
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DesiredWeightAndCapacity AWS API Documentation
|
15622
15631
|
#
|
15623
15632
|
class DesiredWeightAndCapacity < Struct.new(
|
15624
15633
|
:variant_name,
|
15625
15634
|
:desired_weight,
|
15626
|
-
:desired_instance_count
|
15635
|
+
:desired_instance_count,
|
15636
|
+
:serverless_update_config)
|
15627
15637
|
SENSITIVE = []
|
15628
15638
|
include Aws::Structure
|
15629
15639
|
end
|
@@ -15973,7 +15983,8 @@ module Aws::SageMaker
|
|
15973
15983
|
#
|
15974
15984
|
# @!attribute [rw] r_studio_server_pro_domain_settings_for_update
|
15975
15985
|
# A collection of `RStudioServerPro` Domain-level app settings to
|
15976
|
-
# update.
|
15986
|
+
# update. A single `RStudioServerPro` application is created for a
|
15987
|
+
# domain.
|
15977
15988
|
# @return [Types::RStudioServerProDomainSettingsForUpdate]
|
15978
15989
|
#
|
15979
15990
|
# @!attribute [rw] execution_role_identity_config
|
@@ -20914,13 +20925,23 @@ module Aws::SageMaker
|
|
20914
20925
|
# The recommendation ID which uniquely identifies each recommendation.
|
20915
20926
|
# @return [String]
|
20916
20927
|
#
|
20928
|
+
# @!attribute [rw] invocation_end_time
|
20929
|
+
# A timestamp that shows when the benchmark completed.
|
20930
|
+
# @return [Time]
|
20931
|
+
#
|
20932
|
+
# @!attribute [rw] invocation_start_time
|
20933
|
+
# A timestamp that shows when the benchmark started.
|
20934
|
+
# @return [Time]
|
20935
|
+
#
|
20917
20936
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceRecommendation AWS API Documentation
|
20918
20937
|
#
|
20919
20938
|
class InferenceRecommendation < Struct.new(
|
20920
20939
|
:metrics,
|
20921
20940
|
:endpoint_configuration,
|
20922
20941
|
:model_configuration,
|
20923
|
-
:recommendation_id
|
20942
|
+
:recommendation_id,
|
20943
|
+
:invocation_end_time,
|
20944
|
+
:invocation_start_time)
|
20924
20945
|
SENSITIVE = []
|
20925
20946
|
include Aws::Structure
|
20926
20947
|
end
|
@@ -20968,6 +20989,20 @@ module Aws::SageMaker
|
|
20968
20989
|
# If the job fails, provides information why the job failed.
|
20969
20990
|
# @return [String]
|
20970
20991
|
#
|
20992
|
+
# @!attribute [rw] model_name
|
20993
|
+
# The name of the created model.
|
20994
|
+
# @return [String]
|
20995
|
+
#
|
20996
|
+
# @!attribute [rw] sample_payload_url
|
20997
|
+
# The Amazon Simple Storage Service (Amazon S3) path where the sample
|
20998
|
+
# payload is stored. This path must point to a single gzip compressed
|
20999
|
+
# tar archive (.tar.gz suffix).
|
21000
|
+
# @return [String]
|
21001
|
+
#
|
21002
|
+
# @!attribute [rw] model_package_version_arn
|
21003
|
+
# The Amazon Resource Name (ARN) of a versioned model package.
|
21004
|
+
# @return [String]
|
21005
|
+
#
|
20971
21006
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceRecommendationsJob AWS API Documentation
|
20972
21007
|
#
|
20973
21008
|
class InferenceRecommendationsJob < Struct.new(
|
@@ -20980,7 +21015,10 @@ module Aws::SageMaker
|
|
20980
21015
|
:completion_time,
|
20981
21016
|
:role_arn,
|
20982
21017
|
:last_modified_time,
|
20983
|
-
:failure_reason
|
21018
|
+
:failure_reason,
|
21019
|
+
:model_name,
|
21020
|
+
:sample_payload_url,
|
21021
|
+
:model_package_version_arn)
|
20984
21022
|
SENSITIVE = []
|
20985
21023
|
include Aws::Structure
|
20986
21024
|
end
|
@@ -24468,6 +24506,15 @@ module Aws::SageMaker
|
|
24468
24506
|
# The maximum number of recommendations to return in the response.
|
24469
24507
|
# @return [Integer]
|
24470
24508
|
#
|
24509
|
+
# @!attribute [rw] model_name_equals
|
24510
|
+
# A filter that returns only jobs that were created for this model.
|
24511
|
+
# @return [String]
|
24512
|
+
#
|
24513
|
+
# @!attribute [rw] model_package_version_arn_equals
|
24514
|
+
# A filter that returns only jobs that were created for this versioned
|
24515
|
+
# model package.
|
24516
|
+
# @return [String]
|
24517
|
+
#
|
24471
24518
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListInferenceRecommendationsJobsRequest AWS API Documentation
|
24472
24519
|
#
|
24473
24520
|
class ListInferenceRecommendationsJobsRequest < Struct.new(
|
@@ -24480,7 +24527,9 @@ module Aws::SageMaker
|
|
24480
24527
|
:sort_by,
|
24481
24528
|
:sort_order,
|
24482
24529
|
:next_token,
|
24483
|
-
:max_results
|
24530
|
+
:max_results,
|
24531
|
+
:model_name_equals,
|
24532
|
+
:model_package_version_arn_equals)
|
24484
24533
|
SENSITIVE = []
|
24485
24534
|
include Aws::Structure
|
24486
24535
|
end
|
@@ -32378,11 +32427,40 @@ module Aws::SageMaker
|
|
32378
32427
|
# endpoint can process.
|
32379
32428
|
# @return [Integer]
|
32380
32429
|
#
|
32430
|
+
# @!attribute [rw] provisioned_concurrency
|
32431
|
+
# The amount of provisioned concurrency to allocate for the serverless
|
32432
|
+
# endpoint. Should be less than or equal to `MaxConcurrency`.
|
32433
|
+
# @return [Integer]
|
32434
|
+
#
|
32381
32435
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariantServerlessConfig AWS API Documentation
|
32382
32436
|
#
|
32383
32437
|
class ProductionVariantServerlessConfig < Struct.new(
|
32384
32438
|
:memory_size_in_mb,
|
32385
|
-
:max_concurrency
|
32439
|
+
:max_concurrency,
|
32440
|
+
:provisioned_concurrency)
|
32441
|
+
SENSITIVE = []
|
32442
|
+
include Aws::Structure
|
32443
|
+
end
|
32444
|
+
|
32445
|
+
# Specifies the serverless update concurrency configuration for an
|
32446
|
+
# endpoint variant.
|
32447
|
+
#
|
32448
|
+
# @!attribute [rw] max_concurrency
|
32449
|
+
# The updated maximum number of concurrent invocations your serverless
|
32450
|
+
# endpoint can process.
|
32451
|
+
# @return [Integer]
|
32452
|
+
#
|
32453
|
+
# @!attribute [rw] provisioned_concurrency
|
32454
|
+
# The updated amount of provisioned concurrency to allocate for the
|
32455
|
+
# serverless endpoint. Should be less than or equal to
|
32456
|
+
# `MaxConcurrency`.
|
32457
|
+
# @return [Integer]
|
32458
|
+
#
|
32459
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariantServerlessUpdateConfig AWS API Documentation
|
32460
|
+
#
|
32461
|
+
class ProductionVariantServerlessUpdateConfig < Struct.new(
|
32462
|
+
:max_concurrency,
|
32463
|
+
:provisioned_concurrency)
|
32386
32464
|
SENSITIVE = []
|
32387
32465
|
include Aws::Structure
|
32388
32466
|
end
|
@@ -33574,6 +33652,14 @@ module Aws::SageMaker
|
|
33574
33652
|
# Recommender job.
|
33575
33653
|
# @return [Types::InferenceMetrics]
|
33576
33654
|
#
|
33655
|
+
# @!attribute [rw] invocation_end_time
|
33656
|
+
# A timestamp that shows when the benchmark completed.
|
33657
|
+
# @return [Time]
|
33658
|
+
#
|
33659
|
+
# @!attribute [rw] invocation_start_time
|
33660
|
+
# A timestamp that shows when the benchmark started.
|
33661
|
+
# @return [Time]
|
33662
|
+
#
|
33577
33663
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RecommendationJobInferenceBenchmark AWS API Documentation
|
33578
33664
|
#
|
33579
33665
|
class RecommendationJobInferenceBenchmark < Struct.new(
|
@@ -33581,7 +33667,9 @@ module Aws::SageMaker
|
|
33581
33667
|
:endpoint_configuration,
|
33582
33668
|
:model_configuration,
|
33583
33669
|
:failure_reason,
|
33584
|
-
:endpoint_metrics
|
33670
|
+
:endpoint_metrics,
|
33671
|
+
:invocation_end_time,
|
33672
|
+
:invocation_start_time)
|
33585
33673
|
SENSITIVE = []
|
33586
33674
|
include Aws::Structure
|
33587
33675
|
end
|
@@ -34446,6 +34534,9 @@ module Aws::SageMaker
|
|
34446
34534
|
|
34447
34535
|
# Describes the S3 data source.
|
34448
34536
|
#
|
34537
|
+
# Your input bucket must be in the same Amazon Web Services region as
|
34538
|
+
# your training job.
|
34539
|
+
#
|
34449
34540
|
# @!attribute [rw] s3_data_type
|
34450
34541
|
# If you choose `S3Prefix`, `S3Uri` identifies a key name prefix.
|
34451
34542
|
# SageMaker uses all objects that match the specified key name prefix
|
@@ -34508,6 +34599,9 @@ module Aws::SageMaker
|
|
34508
34599
|
# the channel for this data source. The object that each `S3Uri`
|
34509
34600
|
# points to must be readable by the IAM role that SageMaker uses to
|
34510
34601
|
# perform tasks on your behalf.
|
34602
|
+
#
|
34603
|
+
# Your input bucket must be located in same Amazon Web Services region
|
34604
|
+
# as your training job.
|
34511
34605
|
# @return [String]
|
34512
34606
|
#
|
34513
34607
|
# @!attribute [rw] s3_data_distribution_type
|
@@ -35294,7 +35388,7 @@ module Aws::SageMaker
|
|
35294
35388
|
# compressed tar archive (`.tar.gz` suffix).
|
35295
35389
|
#
|
35296
35390
|
# <note markdown="1"> The model artifacts must be in an S3 bucket that is in the same
|
35297
|
-
# region as the algorithm.
|
35391
|
+
# Amazon Web Services region as the algorithm.
|
35298
35392
|
#
|
35299
35393
|
# </note>
|
35300
35394
|
# @return [String]
|
@@ -36332,6 +36426,9 @@ module Aws::SageMaker
|
|
36332
36426
|
# @!attribute [rw] input_data_config
|
36333
36427
|
# An array of `Channel` objects that describes each data input
|
36334
36428
|
# channel.
|
36429
|
+
#
|
36430
|
+
# Your input must be in the same Amazon Web Services region as your
|
36431
|
+
# training job.
|
36335
36432
|
# @return [Array<Types::Channel>]
|
36336
36433
|
#
|
36337
36434
|
# @!attribute [rw] output_data_config
|
@@ -38459,7 +38556,8 @@ module Aws::SageMaker
|
|
38459
38556
|
# inter-app communication in `VPCOnly` mode. Required when
|
38460
38557
|
# `CreateDomain.AppNetworkAccessType` is `VPCOnly` and
|
38461
38558
|
# `DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn`
|
38462
|
-
# is provided.
|
38559
|
+
# is provided. If setting up the domain for use with RStudio, this
|
38560
|
+
# value must be set to `Service`.
|
38463
38561
|
# @return [String]
|
38464
38562
|
#
|
38465
38563
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateDomainRequest AWS API Documentation
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-sagemaker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.179.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-05-
|
11
|
+
date: 2023-05-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|