aws-sdk-sagemaker 1.290.0 → 1.292.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 +249 -6
- data/lib/aws-sdk-sagemaker/client_api.rb +77 -0
- data/lib/aws-sdk-sagemaker/types.rb +359 -12
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +86 -5
- data/sig/types.rbs +66 -2
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -3263,12 +3263,13 @@ module Aws::SageMaker
|
|
3263
3263
|
attr_accessor hub_content_document: ::String
|
3264
3264
|
attr_accessor sage_maker_public_hub_content_arn: ::String
|
3265
3265
|
attr_accessor reference_min_version: ::String
|
3266
|
-
attr_accessor support_status: ("Supported" | "Deprecated")
|
3266
|
+
attr_accessor support_status: ("Supported" | "Deprecated" | "Restricted")
|
3267
3267
|
attr_accessor hub_content_search_keywords: ::Array[::String]
|
3268
3268
|
attr_accessor hub_content_dependencies: ::Array[Types::HubContentDependency]
|
3269
3269
|
attr_accessor hub_content_status: ("Available" | "Importing" | "Deleting" | "ImportFailed" | "DeleteFailed")
|
3270
3270
|
attr_accessor failure_reason: ::String
|
3271
3271
|
attr_accessor creation_time: ::Time
|
3272
|
+
attr_accessor last_modified_time: ::Time
|
3272
3273
|
SENSITIVE: []
|
3273
3274
|
end
|
3274
3275
|
|
@@ -3394,6 +3395,7 @@ module Aws::SageMaker
|
|
3394
3395
|
attr_accessor creation_time: ::Time
|
3395
3396
|
attr_accessor last_modified_time: ::Time
|
3396
3397
|
attr_accessor inference_component_status: ("InService" | "Creating" | "Updating" | "Failed" | "Deleting")
|
3398
|
+
attr_accessor last_deployment_config: Types::InferenceComponentDeploymentConfig
|
3397
3399
|
SENSITIVE: []
|
3398
3400
|
end
|
3399
3401
|
|
@@ -4844,6 +4846,11 @@ module Aws::SageMaker
|
|
4844
4846
|
SENSITIVE: []
|
4845
4847
|
end
|
4846
4848
|
|
4849
|
+
class HubAccessConfig
|
4850
|
+
attr_accessor hub_content_arn: ::String
|
4851
|
+
SENSITIVE: []
|
4852
|
+
end
|
4853
|
+
|
4847
4854
|
class HubContentDependency
|
4848
4855
|
attr_accessor dependency_origin_path: ::String
|
4849
4856
|
attr_accessor dependency_copy_path: ::String
|
@@ -4859,7 +4866,7 @@ module Aws::SageMaker
|
|
4859
4866
|
attr_accessor document_schema_version: ::String
|
4860
4867
|
attr_accessor hub_content_display_name: ::String
|
4861
4868
|
attr_accessor hub_content_description: ::String
|
4862
|
-
attr_accessor support_status: ("Supported" | "Deprecated")
|
4869
|
+
attr_accessor support_status: ("Supported" | "Deprecated" | "Restricted")
|
4863
4870
|
attr_accessor hub_content_search_keywords: ::Array[::String]
|
4864
4871
|
attr_accessor hub_content_status: ("Available" | "Importing" | "Deleting" | "ImportFailed" | "DeleteFailed")
|
4865
4872
|
attr_accessor creation_time: ::Time
|
@@ -5163,6 +5170,7 @@ module Aws::SageMaker
|
|
5163
5170
|
attr_accessor hub_content_description: ::String
|
5164
5171
|
attr_accessor hub_content_markdown: ::String
|
5165
5172
|
attr_accessor hub_content_document: ::String
|
5173
|
+
attr_accessor support_status: ("Supported" | "Deprecated" | "Restricted")
|
5166
5174
|
attr_accessor hub_content_search_keywords: ::Array[::String]
|
5167
5175
|
attr_accessor tags: ::Array[Types::Tag]
|
5168
5176
|
SENSITIVE: []
|
@@ -5174,6 +5182,12 @@ module Aws::SageMaker
|
|
5174
5182
|
SENSITIVE: []
|
5175
5183
|
end
|
5176
5184
|
|
5185
|
+
class InferenceComponentCapacitySize
|
5186
|
+
attr_accessor type: ("COPY_COUNT" | "CAPACITY_PERCENT")
|
5187
|
+
attr_accessor value: ::Integer
|
5188
|
+
SENSITIVE: []
|
5189
|
+
end
|
5190
|
+
|
5177
5191
|
class InferenceComponentComputeResourceRequirements
|
5178
5192
|
attr_accessor number_of_cpu_cores_required: ::Float
|
5179
5193
|
attr_accessor number_of_accelerator_devices_required: ::Float
|
@@ -5196,6 +5210,20 @@ module Aws::SageMaker
|
|
5196
5210
|
SENSITIVE: []
|
5197
5211
|
end
|
5198
5212
|
|
5213
|
+
class InferenceComponentDeploymentConfig
|
5214
|
+
attr_accessor rolling_update_policy: Types::InferenceComponentRollingUpdatePolicy
|
5215
|
+
attr_accessor auto_rollback_configuration: Types::AutoRollbackConfig
|
5216
|
+
SENSITIVE: []
|
5217
|
+
end
|
5218
|
+
|
5219
|
+
class InferenceComponentRollingUpdatePolicy
|
5220
|
+
attr_accessor maximum_batch_size: Types::InferenceComponentCapacitySize
|
5221
|
+
attr_accessor wait_interval_in_seconds: ::Integer
|
5222
|
+
attr_accessor maximum_execution_timeout_in_seconds: ::Integer
|
5223
|
+
attr_accessor rollback_maximum_batch_size: Types::InferenceComponentCapacitySize
|
5224
|
+
SENSITIVE: []
|
5225
|
+
end
|
5226
|
+
|
5199
5227
|
class InferenceComponentRuntimeConfig
|
5200
5228
|
attr_accessor copy_count: ::Integer
|
5201
5229
|
SENSITIVE: []
|
@@ -8778,6 +8806,8 @@ module Aws::SageMaker
|
|
8778
8806
|
attr_accessor s3_data_distribution_type: ("FullyReplicated" | "ShardedByS3Key")
|
8779
8807
|
attr_accessor attribute_names: ::Array[::String]
|
8780
8808
|
attr_accessor instance_group_names: ::Array[::String]
|
8809
|
+
attr_accessor model_access_config: Types::ModelAccessConfig
|
8810
|
+
attr_accessor hub_access_config: Types::HubAccessConfig
|
8781
8811
|
SENSITIVE: []
|
8782
8812
|
end
|
8783
8813
|
|
@@ -10034,6 +10064,39 @@ module Aws::SageMaker
|
|
10034
10064
|
SENSITIVE: []
|
10035
10065
|
end
|
10036
10066
|
|
10067
|
+
class UpdateHubContentReferenceRequest
|
10068
|
+
attr_accessor hub_name: ::String
|
10069
|
+
attr_accessor hub_content_name: ::String
|
10070
|
+
attr_accessor hub_content_type: ("Model" | "Notebook" | "ModelReference")
|
10071
|
+
attr_accessor min_version: ::String
|
10072
|
+
SENSITIVE: []
|
10073
|
+
end
|
10074
|
+
|
10075
|
+
class UpdateHubContentReferenceResponse
|
10076
|
+
attr_accessor hub_arn: ::String
|
10077
|
+
attr_accessor hub_content_arn: ::String
|
10078
|
+
SENSITIVE: []
|
10079
|
+
end
|
10080
|
+
|
10081
|
+
class UpdateHubContentRequest
|
10082
|
+
attr_accessor hub_name: ::String
|
10083
|
+
attr_accessor hub_content_name: ::String
|
10084
|
+
attr_accessor hub_content_type: ("Model" | "Notebook" | "ModelReference")
|
10085
|
+
attr_accessor hub_content_version: ::String
|
10086
|
+
attr_accessor hub_content_display_name: ::String
|
10087
|
+
attr_accessor hub_content_description: ::String
|
10088
|
+
attr_accessor hub_content_markdown: ::String
|
10089
|
+
attr_accessor hub_content_search_keywords: ::Array[::String]
|
10090
|
+
attr_accessor support_status: ("Supported" | "Deprecated" | "Restricted")
|
10091
|
+
SENSITIVE: []
|
10092
|
+
end
|
10093
|
+
|
10094
|
+
class UpdateHubContentResponse
|
10095
|
+
attr_accessor hub_arn: ::String
|
10096
|
+
attr_accessor hub_content_arn: ::String
|
10097
|
+
SENSITIVE: []
|
10098
|
+
end
|
10099
|
+
|
10037
10100
|
class UpdateHubRequest
|
10038
10101
|
attr_accessor hub_name: ::String
|
10039
10102
|
attr_accessor hub_description: ::String
|
@@ -10086,6 +10149,7 @@ module Aws::SageMaker
|
|
10086
10149
|
attr_accessor inference_component_name: ::String
|
10087
10150
|
attr_accessor specification: Types::InferenceComponentSpecification
|
10088
10151
|
attr_accessor runtime_config: Types::InferenceComponentRuntimeConfig
|
10152
|
+
attr_accessor deployment_config: Types::InferenceComponentDeploymentConfig
|
10089
10153
|
SENSITIVE: []
|
10090
10154
|
end
|
10091
10155
|
|
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.292.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: 2025-02-
|
11
|
+
date: 2025-02-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|