aws-sdk-sagemaker 1.262.0 → 1.264.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 +93 -68
- data/lib/aws-sdk-sagemaker/client_api.rb +1 -0
- data/lib/aws-sdk-sagemaker/plugins/endpoints.rb +8 -5
- data/lib/aws-sdk-sagemaker/types.rb +7 -1
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +62 -51
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +2 -1
- metadata +4 -4
@@ -9177,6 +9177,7 @@ module Aws::SageMaker
|
|
9177
9177
|
S3ModelDataSource.add_member(:compression_type, Shapes::ShapeRef.new(shape: ModelCompressionType, required: true, location_name: "CompressionType"))
|
9178
9178
|
S3ModelDataSource.add_member(:model_access_config, Shapes::ShapeRef.new(shape: ModelAccessConfig, location_name: "ModelAccessConfig"))
|
9179
9179
|
S3ModelDataSource.add_member(:hub_access_config, Shapes::ShapeRef.new(shape: InferenceHubAccessConfig, location_name: "HubAccessConfig"))
|
9180
|
+
S3ModelDataSource.add_member(:manifest_s3_uri, Shapes::ShapeRef.new(shape: S3ModelUri, location_name: "ManifestS3Uri"))
|
9180
9181
|
S3ModelDataSource.struct_class = Types::S3ModelDataSource
|
9181
9182
|
|
9182
9183
|
S3Presign.add_member(:iam_policy_constraints, Shapes::ShapeRef.new(shape: IamPolicyConstraints, location_name: "IamPolicyConstraints"))
|
@@ -15,11 +15,11 @@ module Aws::SageMaker
|
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::SageMaker::EndpointProvider',
|
17
17
|
rbs_type: 'untyped',
|
18
|
-
docstring:
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
18
|
+
docstring: <<~DOCS) do |_cfg|
|
19
|
+
The endpoint provider used to resolve endpoints. Any object that responds to
|
20
|
+
`#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
|
21
|
+
`Aws::SageMaker::EndpointParameters`.
|
22
|
+
DOCS
|
23
23
|
Aws::SageMaker::EndpointProvider.new
|
24
24
|
end
|
25
25
|
|
@@ -51,6 +51,9 @@ module Aws::SageMaker
|
|
51
51
|
if context[:auth_scheme] && context[:auth_scheme]['name'] == 'sigv4a'
|
52
52
|
metrics << 'SIGV4A_SIGNING'
|
53
53
|
end
|
54
|
+
if context.config.credentials&.credentials&.account_id
|
55
|
+
metrics << 'RESOLVED_ACCOUNT_ID'
|
56
|
+
end
|
54
57
|
Aws::Plugins::UserAgent.metric(*metrics, &block)
|
55
58
|
end
|
56
59
|
|
@@ -39979,6 +39979,11 @@ module Aws::SageMaker
|
|
39979
39979
|
# Configuration information for hub access.
|
39980
39980
|
# @return [Types::InferenceHubAccessConfig]
|
39981
39981
|
#
|
39982
|
+
# @!attribute [rw] manifest_s3_uri
|
39983
|
+
# The Amazon S3 URI of the manifest file. The manifest file is a CSV
|
39984
|
+
# file that stores the artifact locations.
|
39985
|
+
# @return [String]
|
39986
|
+
#
|
39982
39987
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/S3ModelDataSource AWS API Documentation
|
39983
39988
|
#
|
39984
39989
|
class S3ModelDataSource < Struct.new(
|
@@ -39986,7 +39991,8 @@ module Aws::SageMaker
|
|
39986
39991
|
:s3_data_type,
|
39987
39992
|
:compression_type,
|
39988
39993
|
:model_access_config,
|
39989
|
-
:hub_access_config
|
39994
|
+
:hub_access_config,
|
39995
|
+
:manifest_s3_uri)
|
39990
39996
|
SENSITIVE = []
|
39991
39997
|
include Aws::Structure
|
39992
39998
|
end
|