aws-sdk-sagemaker 1.314.0 → 1.316.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 +347 -23
- data/lib/aws-sdk-sagemaker/client_api.rb +167 -4
- data/lib/aws-sdk-sagemaker/types.rb +777 -91
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +181 -13
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +142 -5
- metadata +3 -3
@@ -95,7 +95,7 @@ module Aws::SageMaker
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::SageMaker
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::SageMaker
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::SageMaker
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -374,7 +384,7 @@ module Aws::SageMaker
|
|
374
384
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
375
385
|
#
|
376
386
|
# @option options [Aws::TokenProvider] :token_provider
|
377
|
-
#
|
387
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
378
388
|
# following classes:
|
379
389
|
#
|
380
390
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -685,7 +695,7 @@ module Aws::SageMaker
|
|
685
695
|
# The name of the SageMaker HyperPod cluster from which to delete the
|
686
696
|
# specified nodes.
|
687
697
|
#
|
688
|
-
# @option params [
|
698
|
+
# @option params [Array<String>] :node_ids
|
689
699
|
# A list of node IDs to be deleted from the specified cluster.
|
690
700
|
#
|
691
701
|
# <note markdown="1"> * For SageMaker HyperPod clusters using the Slurm workload manager,
|
@@ -710,7 +720,7 @@ module Aws::SageMaker
|
|
710
720
|
#
|
711
721
|
# resp = client.batch_delete_cluster_nodes({
|
712
722
|
# cluster_name: "ClusterNameOrArn", # required
|
713
|
-
# node_ids: ["ClusterNodeId"],
|
723
|
+
# node_ids: ["ClusterNodeId"],
|
714
724
|
# })
|
715
725
|
#
|
716
726
|
# @example Response structure
|
@@ -1977,6 +1987,10 @@ module Aws::SageMaker
|
|
1977
1987
|
# @option params [Array<Types::ClusterInstanceGroupSpecification>] :instance_groups
|
1978
1988
|
# The instance groups to be created in the SageMaker HyperPod cluster.
|
1979
1989
|
#
|
1990
|
+
# @option params [Array<Types::ClusterRestrictedInstanceGroupSpecification>] :restricted_instance_groups
|
1991
|
+
# The specialized instance groups for training models like Amazon Nova
|
1992
|
+
# to be created in the SageMaker HyperPod cluster.
|
1993
|
+
#
|
1980
1994
|
# @option params [Types::VpcConfig] :vpc_config
|
1981
1995
|
# Specifies the Amazon Virtual Private Cloud (VPC) that is associated
|
1982
1996
|
# with the Amazon SageMaker HyperPod cluster. You can control access to
|
@@ -2061,7 +2075,7 @@ module Aws::SageMaker
|
|
2061
2075
|
# instance_storage_configs: [
|
2062
2076
|
# {
|
2063
2077
|
# ebs_volume_config: {
|
2064
|
-
# volume_size_in_gb: 1,
|
2078
|
+
# volume_size_in_gb: 1,
|
2065
2079
|
# },
|
2066
2080
|
# },
|
2067
2081
|
# ],
|
@@ -2094,6 +2108,55 @@ module Aws::SageMaker
|
|
2094
2108
|
# },
|
2095
2109
|
# },
|
2096
2110
|
# ],
|
2111
|
+
# restricted_instance_groups: [
|
2112
|
+
# {
|
2113
|
+
# instance_count: 1, # required
|
2114
|
+
# instance_group_name: "ClusterInstanceGroupName", # required
|
2115
|
+
# instance_type: "ml.p4d.24xlarge", # required, accepts ml.p4d.24xlarge, ml.p4de.24xlarge, ml.p5.48xlarge, ml.trn1.32xlarge, ml.trn1n.32xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.12xlarge, ml.g5.16xlarge, ml.g5.24xlarge, ml.g5.48xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.c5n.large, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.g6.xlarge, ml.g6.2xlarge, ml.g6.4xlarge, ml.g6.8xlarge, ml.g6.16xlarge, ml.g6.12xlarge, ml.g6.24xlarge, ml.g6.48xlarge, ml.gr6.4xlarge, ml.gr6.8xlarge, ml.g6e.xlarge, ml.g6e.2xlarge, ml.g6e.4xlarge, ml.g6e.8xlarge, ml.g6e.16xlarge, ml.g6e.12xlarge, ml.g6e.24xlarge, ml.g6e.48xlarge, ml.p5e.48xlarge, ml.p5en.48xlarge, ml.p6-b200.48xlarge, ml.trn2.48xlarge, ml.c6i.large, ml.c6i.xlarge, ml.c6i.2xlarge, ml.c6i.4xlarge, ml.c6i.8xlarge, ml.c6i.12xlarge, ml.c6i.16xlarge, ml.c6i.24xlarge, ml.c6i.32xlarge, ml.m6i.large, ml.m6i.xlarge, ml.m6i.2xlarge, ml.m6i.4xlarge, ml.m6i.8xlarge, ml.m6i.12xlarge, ml.m6i.16xlarge, ml.m6i.24xlarge, ml.m6i.32xlarge, ml.r6i.large, ml.r6i.xlarge, ml.r6i.2xlarge, ml.r6i.4xlarge, ml.r6i.8xlarge, ml.r6i.12xlarge, ml.r6i.16xlarge, ml.r6i.24xlarge, ml.r6i.32xlarge, ml.i3en.large, ml.i3en.xlarge, ml.i3en.2xlarge, ml.i3en.3xlarge, ml.i3en.6xlarge, ml.i3en.12xlarge, ml.i3en.24xlarge, ml.m7i.large, ml.m7i.xlarge, ml.m7i.2xlarge, ml.m7i.4xlarge, ml.m7i.8xlarge, ml.m7i.12xlarge, ml.m7i.16xlarge, ml.m7i.24xlarge, ml.m7i.48xlarge, ml.r7i.large, ml.r7i.xlarge, ml.r7i.2xlarge, ml.r7i.4xlarge, ml.r7i.8xlarge, ml.r7i.12xlarge, ml.r7i.16xlarge, ml.r7i.24xlarge, ml.r7i.48xlarge
|
2116
|
+
# execution_role: "RoleArn", # required
|
2117
|
+
# threads_per_core: 1,
|
2118
|
+
# instance_storage_configs: [
|
2119
|
+
# {
|
2120
|
+
# ebs_volume_config: {
|
2121
|
+
# volume_size_in_gb: 1,
|
2122
|
+
# },
|
2123
|
+
# },
|
2124
|
+
# ],
|
2125
|
+
# on_start_deep_health_checks: ["InstanceStress"], # accepts InstanceStress, InstanceConnectivity
|
2126
|
+
# training_plan_arn: "TrainingPlanArn",
|
2127
|
+
# override_vpc_config: {
|
2128
|
+
# security_group_ids: ["SecurityGroupId"], # required
|
2129
|
+
# subnets: ["SubnetId"], # required
|
2130
|
+
# },
|
2131
|
+
# scheduled_update_config: {
|
2132
|
+
# schedule_expression: "CronScheduleExpression", # required
|
2133
|
+
# deployment_config: {
|
2134
|
+
# rolling_update_policy: {
|
2135
|
+
# maximum_batch_size: { # required
|
2136
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENTAGE
|
2137
|
+
# value: 1, # required
|
2138
|
+
# },
|
2139
|
+
# rollback_maximum_batch_size: {
|
2140
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENTAGE
|
2141
|
+
# value: 1, # required
|
2142
|
+
# },
|
2143
|
+
# },
|
2144
|
+
# wait_interval_in_seconds: 1,
|
2145
|
+
# auto_rollback_configuration: [
|
2146
|
+
# {
|
2147
|
+
# alarm_name: "AlarmName", # required
|
2148
|
+
# },
|
2149
|
+
# ],
|
2150
|
+
# },
|
2151
|
+
# },
|
2152
|
+
# environment_config: { # required
|
2153
|
+
# f_sx_lustre_config: {
|
2154
|
+
# size_in_gi_b: 1, # required
|
2155
|
+
# per_unit_storage_throughput: 1, # required
|
2156
|
+
# },
|
2157
|
+
# },
|
2158
|
+
# },
|
2159
|
+
# ],
|
2097
2160
|
# vpc_config: {
|
2098
2161
|
# security_group_ids: ["SecurityGroupId"], # required
|
2099
2162
|
# subnets: ["SubnetId"], # required
|
@@ -2464,7 +2527,7 @@ module Aws::SageMaker
|
|
2464
2527
|
# compute_quota_resources: [
|
2465
2528
|
# {
|
2466
2529
|
# instance_type: "ml.p4d.24xlarge", # required, accepts ml.p4d.24xlarge, ml.p4de.24xlarge, ml.p5.48xlarge, ml.trn1.32xlarge, ml.trn1n.32xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.12xlarge, ml.g5.16xlarge, ml.g5.24xlarge, ml.g5.48xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.c5n.large, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.g6.xlarge, ml.g6.2xlarge, ml.g6.4xlarge, ml.g6.8xlarge, ml.g6.16xlarge, ml.g6.12xlarge, ml.g6.24xlarge, ml.g6.48xlarge, ml.gr6.4xlarge, ml.gr6.8xlarge, ml.g6e.xlarge, ml.g6e.2xlarge, ml.g6e.4xlarge, ml.g6e.8xlarge, ml.g6e.16xlarge, ml.g6e.12xlarge, ml.g6e.24xlarge, ml.g6e.48xlarge, ml.p5e.48xlarge, ml.p5en.48xlarge, ml.p6-b200.48xlarge, ml.trn2.48xlarge, ml.c6i.large, ml.c6i.xlarge, ml.c6i.2xlarge, ml.c6i.4xlarge, ml.c6i.8xlarge, ml.c6i.12xlarge, ml.c6i.16xlarge, ml.c6i.24xlarge, ml.c6i.32xlarge, ml.m6i.large, ml.m6i.xlarge, ml.m6i.2xlarge, ml.m6i.4xlarge, ml.m6i.8xlarge, ml.m6i.12xlarge, ml.m6i.16xlarge, ml.m6i.24xlarge, ml.m6i.32xlarge, ml.r6i.large, ml.r6i.xlarge, ml.r6i.2xlarge, ml.r6i.4xlarge, ml.r6i.8xlarge, ml.r6i.12xlarge, ml.r6i.16xlarge, ml.r6i.24xlarge, ml.r6i.32xlarge, ml.i3en.large, ml.i3en.xlarge, ml.i3en.2xlarge, ml.i3en.3xlarge, ml.i3en.6xlarge, ml.i3en.12xlarge, ml.i3en.24xlarge, ml.m7i.large, ml.m7i.xlarge, ml.m7i.2xlarge, ml.m7i.4xlarge, ml.m7i.8xlarge, ml.m7i.12xlarge, ml.m7i.16xlarge, ml.m7i.24xlarge, ml.m7i.48xlarge, ml.r7i.large, ml.r7i.xlarge, ml.r7i.2xlarge, ml.r7i.4xlarge, ml.r7i.8xlarge, ml.r7i.12xlarge, ml.r7i.16xlarge, ml.r7i.24xlarge, ml.r7i.48xlarge
|
2467
|
-
# count: 1,
|
2530
|
+
# count: 1,
|
2468
2531
|
# },
|
2469
2532
|
# ],
|
2470
2533
|
# resource_sharing_config: {
|
@@ -2865,10 +2928,18 @@ module Aws::SageMaker
|
|
2865
2928
|
# @option params [Array<String>] :subnet_ids
|
2866
2929
|
# The VPC subnets that the domain uses for communication.
|
2867
2930
|
#
|
2931
|
+
# The field is optional when the `AppNetworkAccessType` parameter is set
|
2932
|
+
# to `PublicInternetOnly` for domains created from Amazon SageMaker
|
2933
|
+
# Unified Studio.
|
2934
|
+
#
|
2868
2935
|
# @option params [String] :vpc_id
|
2869
2936
|
# The ID of the Amazon Virtual Private Cloud (VPC) that the domain uses
|
2870
2937
|
# for communication.
|
2871
2938
|
#
|
2939
|
+
# The field is optional when the `AppNetworkAccessType` parameter is set
|
2940
|
+
# to `PublicInternetOnly` for domains created from Amazon SageMaker
|
2941
|
+
# Unified Studio.
|
2942
|
+
#
|
2872
2943
|
# @option params [Array<Types::Tag>] :tags
|
2873
2944
|
# Tags to associated with the Domain. Each tag consists of a key and an
|
2874
2945
|
# optional value. Tag keys must be unique per resource. Tags are
|
@@ -3107,6 +3178,10 @@ module Aws::SageMaker
|
|
3107
3178
|
# file_system_id: "FileSystemId", # required
|
3108
3179
|
# file_system_path: "FileSystemPath",
|
3109
3180
|
# },
|
3181
|
+
# s3_file_system_config: {
|
3182
|
+
# mount_path: "String1024",
|
3183
|
+
# s3_uri: "S3SchemaUri",
|
3184
|
+
# },
|
3110
3185
|
# },
|
3111
3186
|
# ],
|
3112
3187
|
# studio_web_portal_settings: {
|
@@ -3259,6 +3334,10 @@ module Aws::SageMaker
|
|
3259
3334
|
# file_system_id: "FileSystemId", # required
|
3260
3335
|
# file_system_path: "FileSystemPath",
|
3261
3336
|
# },
|
3337
|
+
# s3_file_system_config: {
|
3338
|
+
# mount_path: "String1024",
|
3339
|
+
# s3_uri: "S3SchemaUri",
|
3340
|
+
# },
|
3262
3341
|
# },
|
3263
3342
|
# ],
|
3264
3343
|
# },
|
@@ -9006,6 +9085,9 @@ module Aws::SageMaker
|
|
9006
9085
|
# f_sx_lustre_file_system: {
|
9007
9086
|
# file_system_id: "FileSystemId", # required
|
9008
9087
|
# },
|
9088
|
+
# s3_file_system: {
|
9089
|
+
# s3_uri: "S3SchemaUri",
|
9090
|
+
# },
|
9009
9091
|
# },
|
9010
9092
|
# ],
|
9011
9093
|
# remote_access: "ENABLED", # accepts ENABLED, DISABLED
|
@@ -10366,6 +10448,10 @@ module Aws::SageMaker
|
|
10366
10448
|
# file_system_id: "FileSystemId", # required
|
10367
10449
|
# file_system_path: "FileSystemPath",
|
10368
10450
|
# },
|
10451
|
+
# s3_file_system_config: {
|
10452
|
+
# mount_path: "String1024",
|
10453
|
+
# s3_uri: "S3SchemaUri",
|
10454
|
+
# },
|
10369
10455
|
# },
|
10370
10456
|
# ],
|
10371
10457
|
# studio_web_portal_settings: {
|
@@ -10461,6 +10547,10 @@ module Aws::SageMaker
|
|
10461
10547
|
# @option params [Types::WorkforceVpcConfigRequest] :workforce_vpc_config
|
10462
10548
|
# Use this parameter to configure a workforce using VPC.
|
10463
10549
|
#
|
10550
|
+
# @option params [String] :ip_address_type
|
10551
|
+
# Use this parameter to specify whether you want `IPv4` only or
|
10552
|
+
# `dualstack` (`IPv4` and `IPv6`) to support your labeling workforce.
|
10553
|
+
#
|
10464
10554
|
# @return [Types::CreateWorkforceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10465
10555
|
#
|
10466
10556
|
# * {Types::CreateWorkforceResponse#workforce_arn #workforce_arn} => String
|
@@ -10501,6 +10591,7 @@ module Aws::SageMaker
|
|
10501
10591
|
# security_group_ids: ["WorkforceSecurityGroupId"],
|
10502
10592
|
# subnets: ["WorkforceSubnetId"],
|
10503
10593
|
# },
|
10594
|
+
# ip_address_type: "ipv4", # accepts ipv4, dualstack
|
10504
10595
|
# })
|
10505
10596
|
#
|
10506
10597
|
# @example Response structure
|
@@ -12999,6 +13090,7 @@ module Aws::SageMaker
|
|
12999
13090
|
# * {Types::DescribeClusterResponse#creation_time #creation_time} => Time
|
13000
13091
|
# * {Types::DescribeClusterResponse#failure_message #failure_message} => String
|
13001
13092
|
# * {Types::DescribeClusterResponse#instance_groups #instance_groups} => Array<Types::ClusterInstanceGroupDetails>
|
13093
|
+
# * {Types::DescribeClusterResponse#restricted_instance_groups #restricted_instance_groups} => Array<Types::ClusterRestrictedInstanceGroupDetails>
|
13002
13094
|
# * {Types::DescribeClusterResponse#vpc_config #vpc_config} => Types::VpcConfig
|
13003
13095
|
# * {Types::DescribeClusterResponse#orchestrator #orchestrator} => Types::ClusterOrchestrator
|
13004
13096
|
# * {Types::DescribeClusterResponse#node_recovery #node_recovery} => String
|
@@ -13044,6 +13136,35 @@ module Aws::SageMaker
|
|
13044
13136
|
# resp.instance_groups[0].scheduled_update_config.deployment_config.wait_interval_in_seconds #=> Integer
|
13045
13137
|
# resp.instance_groups[0].scheduled_update_config.deployment_config.auto_rollback_configuration #=> Array
|
13046
13138
|
# resp.instance_groups[0].scheduled_update_config.deployment_config.auto_rollback_configuration[0].alarm_name #=> String
|
13139
|
+
# resp.restricted_instance_groups #=> Array
|
13140
|
+
# resp.restricted_instance_groups[0].current_count #=> Integer
|
13141
|
+
# resp.restricted_instance_groups[0].target_count #=> Integer
|
13142
|
+
# resp.restricted_instance_groups[0].instance_group_name #=> String
|
13143
|
+
# resp.restricted_instance_groups[0].instance_type #=> String, one of "ml.p4d.24xlarge", "ml.p4de.24xlarge", "ml.p5.48xlarge", "ml.trn1.32xlarge", "ml.trn1n.32xlarge", "ml.g5.xlarge", "ml.g5.2xlarge", "ml.g5.4xlarge", "ml.g5.8xlarge", "ml.g5.12xlarge", "ml.g5.16xlarge", "ml.g5.24xlarge", "ml.g5.48xlarge", "ml.c5.large", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.12xlarge", "ml.c5.18xlarge", "ml.c5.24xlarge", "ml.c5n.large", "ml.c5n.2xlarge", "ml.c5n.4xlarge", "ml.c5n.9xlarge", "ml.c5n.18xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.8xlarge", "ml.m5.12xlarge", "ml.m5.16xlarge", "ml.m5.24xlarge", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "ml.g6.xlarge", "ml.g6.2xlarge", "ml.g6.4xlarge", "ml.g6.8xlarge", "ml.g6.16xlarge", "ml.g6.12xlarge", "ml.g6.24xlarge", "ml.g6.48xlarge", "ml.gr6.4xlarge", "ml.gr6.8xlarge", "ml.g6e.xlarge", "ml.g6e.2xlarge", "ml.g6e.4xlarge", "ml.g6e.8xlarge", "ml.g6e.16xlarge", "ml.g6e.12xlarge", "ml.g6e.24xlarge", "ml.g6e.48xlarge", "ml.p5e.48xlarge", "ml.p5en.48xlarge", "ml.p6-b200.48xlarge", "ml.trn2.48xlarge", "ml.c6i.large", "ml.c6i.xlarge", "ml.c6i.2xlarge", "ml.c6i.4xlarge", "ml.c6i.8xlarge", "ml.c6i.12xlarge", "ml.c6i.16xlarge", "ml.c6i.24xlarge", "ml.c6i.32xlarge", "ml.m6i.large", "ml.m6i.xlarge", "ml.m6i.2xlarge", "ml.m6i.4xlarge", "ml.m6i.8xlarge", "ml.m6i.12xlarge", "ml.m6i.16xlarge", "ml.m6i.24xlarge", "ml.m6i.32xlarge", "ml.r6i.large", "ml.r6i.xlarge", "ml.r6i.2xlarge", "ml.r6i.4xlarge", "ml.r6i.8xlarge", "ml.r6i.12xlarge", "ml.r6i.16xlarge", "ml.r6i.24xlarge", "ml.r6i.32xlarge", "ml.i3en.large", "ml.i3en.xlarge", "ml.i3en.2xlarge", "ml.i3en.3xlarge", "ml.i3en.6xlarge", "ml.i3en.12xlarge", "ml.i3en.24xlarge", "ml.m7i.large", "ml.m7i.xlarge", "ml.m7i.2xlarge", "ml.m7i.4xlarge", "ml.m7i.8xlarge", "ml.m7i.12xlarge", "ml.m7i.16xlarge", "ml.m7i.24xlarge", "ml.m7i.48xlarge", "ml.r7i.large", "ml.r7i.xlarge", "ml.r7i.2xlarge", "ml.r7i.4xlarge", "ml.r7i.8xlarge", "ml.r7i.12xlarge", "ml.r7i.16xlarge", "ml.r7i.24xlarge", "ml.r7i.48xlarge"
|
13144
|
+
# resp.restricted_instance_groups[0].execution_role #=> String
|
13145
|
+
# resp.restricted_instance_groups[0].threads_per_core #=> Integer
|
13146
|
+
# resp.restricted_instance_groups[0].instance_storage_configs #=> Array
|
13147
|
+
# resp.restricted_instance_groups[0].instance_storage_configs[0].ebs_volume_config.volume_size_in_gb #=> Integer
|
13148
|
+
# resp.restricted_instance_groups[0].on_start_deep_health_checks #=> Array
|
13149
|
+
# resp.restricted_instance_groups[0].on_start_deep_health_checks[0] #=> String, one of "InstanceStress", "InstanceConnectivity"
|
13150
|
+
# resp.restricted_instance_groups[0].status #=> String, one of "InService", "Creating", "Updating", "Failed", "Degraded", "SystemUpdating", "Deleting"
|
13151
|
+
# resp.restricted_instance_groups[0].training_plan_arn #=> String
|
13152
|
+
# resp.restricted_instance_groups[0].training_plan_status #=> String
|
13153
|
+
# resp.restricted_instance_groups[0].override_vpc_config.security_group_ids #=> Array
|
13154
|
+
# resp.restricted_instance_groups[0].override_vpc_config.security_group_ids[0] #=> String
|
13155
|
+
# resp.restricted_instance_groups[0].override_vpc_config.subnets #=> Array
|
13156
|
+
# resp.restricted_instance_groups[0].override_vpc_config.subnets[0] #=> String
|
13157
|
+
# resp.restricted_instance_groups[0].scheduled_update_config.schedule_expression #=> String
|
13158
|
+
# resp.restricted_instance_groups[0].scheduled_update_config.deployment_config.rolling_update_policy.maximum_batch_size.type #=> String, one of "INSTANCE_COUNT", "CAPACITY_PERCENTAGE"
|
13159
|
+
# resp.restricted_instance_groups[0].scheduled_update_config.deployment_config.rolling_update_policy.maximum_batch_size.value #=> Integer
|
13160
|
+
# resp.restricted_instance_groups[0].scheduled_update_config.deployment_config.rolling_update_policy.rollback_maximum_batch_size.type #=> String, one of "INSTANCE_COUNT", "CAPACITY_PERCENTAGE"
|
13161
|
+
# resp.restricted_instance_groups[0].scheduled_update_config.deployment_config.rolling_update_policy.rollback_maximum_batch_size.value #=> Integer
|
13162
|
+
# resp.restricted_instance_groups[0].scheduled_update_config.deployment_config.wait_interval_in_seconds #=> Integer
|
13163
|
+
# resp.restricted_instance_groups[0].scheduled_update_config.deployment_config.auto_rollback_configuration #=> Array
|
13164
|
+
# resp.restricted_instance_groups[0].scheduled_update_config.deployment_config.auto_rollback_configuration[0].alarm_name #=> String
|
13165
|
+
# resp.restricted_instance_groups[0].environment_config.f_sx_lustre_config.size_in_gi_b #=> Integer
|
13166
|
+
# resp.restricted_instance_groups[0].environment_config.f_sx_lustre_config.per_unit_storage_throughput #=> Integer
|
13167
|
+
# resp.restricted_instance_groups[0].environment_config.s3_output_path #=> String
|
13047
13168
|
# resp.vpc_config.security_group_ids #=> Array
|
13048
13169
|
# resp.vpc_config.security_group_ids[0] #=> String
|
13049
13170
|
# resp.vpc_config.subnets #=> Array
|
@@ -13067,7 +13188,7 @@ module Aws::SageMaker
|
|
13067
13188
|
# The string name or the Amazon Resource Name (ARN) of the SageMaker
|
13068
13189
|
# HyperPod cluster in which the node is.
|
13069
13190
|
#
|
13070
|
-
# @option params [
|
13191
|
+
# @option params [String] :node_id
|
13071
13192
|
# The ID of the SageMaker HyperPod cluster node.
|
13072
13193
|
#
|
13073
13194
|
# @return [Types::DescribeClusterNodeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -13078,7 +13199,7 @@ module Aws::SageMaker
|
|
13078
13199
|
#
|
13079
13200
|
# resp = client.describe_cluster_node({
|
13080
13201
|
# cluster_name: "ClusterNameOrArn", # required
|
13081
|
-
# node_id: "ClusterNodeId",
|
13202
|
+
# node_id: "ClusterNodeId",
|
13082
13203
|
# })
|
13083
13204
|
#
|
13084
13205
|
# @example Response structure
|
@@ -13800,6 +13921,8 @@ module Aws::SageMaker
|
|
13800
13921
|
# resp.default_user_settings.custom_file_system_configs[0].efs_file_system_config.file_system_path #=> String
|
13801
13922
|
# resp.default_user_settings.custom_file_system_configs[0].f_sx_lustre_file_system_config.file_system_id #=> String
|
13802
13923
|
# resp.default_user_settings.custom_file_system_configs[0].f_sx_lustre_file_system_config.file_system_path #=> String
|
13924
|
+
# resp.default_user_settings.custom_file_system_configs[0].s3_file_system_config.mount_path #=> String
|
13925
|
+
# resp.default_user_settings.custom_file_system_configs[0].s3_file_system_config.s3_uri #=> String
|
13803
13926
|
# resp.default_user_settings.studio_web_portal_settings.hidden_ml_tools #=> Array
|
13804
13927
|
# resp.default_user_settings.studio_web_portal_settings.hidden_ml_tools[0] #=> String, one of "DataWrangler", "FeatureStore", "EmrClusters", "AutoMl", "Experiments", "Training", "ModelEvaluation", "Pipelines", "Models", "JumpStart", "InferenceRecommender", "Endpoints", "Projects", "InferenceOptimization", "PerformanceEvaluation", "LakeraGuard", "Comet", "DeepchecksLLMEvaluation", "Fiddler", "HyperPodClusters"
|
13805
13928
|
# resp.default_user_settings.studio_web_portal_settings.hidden_app_types #=> Array
|
@@ -13898,6 +14021,8 @@ module Aws::SageMaker
|
|
13898
14021
|
# resp.default_space_settings.custom_file_system_configs[0].efs_file_system_config.file_system_path #=> String
|
13899
14022
|
# resp.default_space_settings.custom_file_system_configs[0].f_sx_lustre_file_system_config.file_system_id #=> String
|
13900
14023
|
# resp.default_space_settings.custom_file_system_configs[0].f_sx_lustre_file_system_config.file_system_path #=> String
|
14024
|
+
# resp.default_space_settings.custom_file_system_configs[0].s3_file_system_config.mount_path #=> String
|
14025
|
+
# resp.default_space_settings.custom_file_system_configs[0].s3_file_system_config.s3_uri #=> String
|
13901
14026
|
#
|
13902
14027
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDomain AWS API Documentation
|
13903
14028
|
#
|
@@ -16943,6 +17068,9 @@ module Aws::SageMaker
|
|
16943
17068
|
# @option params [required, String] :pipeline_name
|
16944
17069
|
# The name or Amazon Resource Name (ARN) of the pipeline to describe.
|
16945
17070
|
#
|
17071
|
+
# @option params [Integer] :pipeline_version_id
|
17072
|
+
# The ID of the pipeline version to describe.
|
17073
|
+
#
|
16946
17074
|
# @return [Types::DescribePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
16947
17075
|
#
|
16948
17076
|
# * {Types::DescribePipelineResponse#pipeline_arn #pipeline_arn} => String
|
@@ -16958,11 +17086,14 @@ module Aws::SageMaker
|
|
16958
17086
|
# * {Types::DescribePipelineResponse#created_by #created_by} => Types::UserContext
|
16959
17087
|
# * {Types::DescribePipelineResponse#last_modified_by #last_modified_by} => Types::UserContext
|
16960
17088
|
# * {Types::DescribePipelineResponse#parallelism_configuration #parallelism_configuration} => Types::ParallelismConfiguration
|
17089
|
+
# * {Types::DescribePipelineResponse#pipeline_version_display_name #pipeline_version_display_name} => String
|
17090
|
+
# * {Types::DescribePipelineResponse#pipeline_version_description #pipeline_version_description} => String
|
16961
17091
|
#
|
16962
17092
|
# @example Request syntax with placeholder values
|
16963
17093
|
#
|
16964
17094
|
# resp = client.describe_pipeline({
|
16965
17095
|
# pipeline_name: "PipelineNameOrArn", # required
|
17096
|
+
# pipeline_version_id: 1,
|
16966
17097
|
# })
|
16967
17098
|
#
|
16968
17099
|
# @example Response structure
|
@@ -16990,6 +17121,8 @@ module Aws::SageMaker
|
|
16990
17121
|
# resp.last_modified_by.iam_identity.principal_id #=> String
|
16991
17122
|
# resp.last_modified_by.iam_identity.source_identity #=> String
|
16992
17123
|
# resp.parallelism_configuration.max_parallel_execution_steps #=> Integer
|
17124
|
+
# resp.pipeline_version_display_name #=> String
|
17125
|
+
# resp.pipeline_version_description #=> String
|
16993
17126
|
#
|
16994
17127
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipeline AWS API Documentation
|
16995
17128
|
#
|
@@ -17050,6 +17183,7 @@ module Aws::SageMaker
|
|
17050
17183
|
# * {Types::DescribePipelineExecutionResponse#last_modified_by #last_modified_by} => Types::UserContext
|
17051
17184
|
# * {Types::DescribePipelineExecutionResponse#parallelism_configuration #parallelism_configuration} => Types::ParallelismConfiguration
|
17052
17185
|
# * {Types::DescribePipelineExecutionResponse#selective_execution_config #selective_execution_config} => Types::SelectiveExecutionConfig
|
17186
|
+
# * {Types::DescribePipelineExecutionResponse#pipeline_version_id #pipeline_version_id} => Integer
|
17053
17187
|
#
|
17054
17188
|
# @example Request syntax with placeholder values
|
17055
17189
|
#
|
@@ -17085,6 +17219,7 @@ module Aws::SageMaker
|
|
17085
17219
|
# resp.selective_execution_config.source_pipeline_execution_arn #=> String
|
17086
17220
|
# resp.selective_execution_config.selected_steps #=> Array
|
17087
17221
|
# resp.selective_execution_config.selected_steps[0].step_name #=> String
|
17222
|
+
# resp.pipeline_version_id #=> Integer
|
17088
17223
|
#
|
17089
17224
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribePipelineExecution AWS API Documentation
|
17090
17225
|
#
|
@@ -17376,6 +17511,7 @@ module Aws::SageMaker
|
|
17376
17511
|
# resp.space_settings.custom_file_systems #=> Array
|
17377
17512
|
# resp.space_settings.custom_file_systems[0].efs_file_system.file_system_id #=> String
|
17378
17513
|
# resp.space_settings.custom_file_systems[0].f_sx_lustre_file_system.file_system_id #=> String
|
17514
|
+
# resp.space_settings.custom_file_systems[0].s3_file_system.s3_uri #=> String
|
17379
17515
|
# resp.space_settings.remote_access #=> String, one of "ENABLED", "DISABLED"
|
17380
17516
|
# resp.ownership_settings.owner_user_profile_name #=> String
|
17381
17517
|
# resp.space_sharing_settings.sharing_type #=> String, one of "Private", "Shared"
|
@@ -17736,7 +17872,7 @@ module Aws::SageMaker
|
|
17736
17872
|
# resp.target_resources[0] #=> String, one of "training-job", "hyperpod-cluster"
|
17737
17873
|
# resp.reserved_capacity_summaries #=> Array
|
17738
17874
|
# resp.reserved_capacity_summaries[0].reserved_capacity_arn #=> String
|
17739
|
-
# resp.reserved_capacity_summaries[0].instance_type #=> String, one of "ml.p4d.24xlarge", "ml.p5.48xlarge", "ml.p5e.48xlarge", "ml.p5en.48xlarge", "ml.trn1.32xlarge", "ml.trn2.48xlarge", "ml.p6-b200.48xlarge"
|
17875
|
+
# resp.reserved_capacity_summaries[0].instance_type #=> String, one of "ml.p4d.24xlarge", "ml.p5.48xlarge", "ml.p5e.48xlarge", "ml.p5en.48xlarge", "ml.trn1.32xlarge", "ml.trn2.48xlarge", "ml.p6-b200.48xlarge", "ml.p4de.24xlarge"
|
17740
17876
|
# resp.reserved_capacity_summaries[0].total_instance_count #=> Integer
|
17741
17877
|
# resp.reserved_capacity_summaries[0].status #=> String, one of "Pending", "Active", "Scheduled", "Expired", "Failed"
|
17742
17878
|
# resp.reserved_capacity_summaries[0].availability_zone #=> String
|
@@ -18148,6 +18284,8 @@ module Aws::SageMaker
|
|
18148
18284
|
# resp.user_settings.custom_file_system_configs[0].efs_file_system_config.file_system_path #=> String
|
18149
18285
|
# resp.user_settings.custom_file_system_configs[0].f_sx_lustre_file_system_config.file_system_id #=> String
|
18150
18286
|
# resp.user_settings.custom_file_system_configs[0].f_sx_lustre_file_system_config.file_system_path #=> String
|
18287
|
+
# resp.user_settings.custom_file_system_configs[0].s3_file_system_config.mount_path #=> String
|
18288
|
+
# resp.user_settings.custom_file_system_configs[0].s3_file_system_config.s3_uri #=> String
|
18151
18289
|
# resp.user_settings.studio_web_portal_settings.hidden_ml_tools #=> Array
|
18152
18290
|
# resp.user_settings.studio_web_portal_settings.hidden_ml_tools[0] #=> String, one of "DataWrangler", "FeatureStore", "EmrClusters", "AutoMl", "Experiments", "Training", "ModelEvaluation", "Pipelines", "Models", "JumpStart", "InferenceRecommender", "Endpoints", "Projects", "InferenceOptimization", "PerformanceEvaluation", "LakeraGuard", "Comet", "DeepchecksLLMEvaluation", "Fiddler", "HyperPodClusters"
|
18153
18291
|
# resp.user_settings.studio_web_portal_settings.hidden_app_types #=> Array
|
@@ -18224,6 +18362,7 @@ module Aws::SageMaker
|
|
18224
18362
|
# resp.workforce.workforce_vpc_config.vpc_endpoint_id #=> String
|
18225
18363
|
# resp.workforce.status #=> String, one of "Initializing", "Updating", "Deleting", "Failed", "Active"
|
18226
18364
|
# resp.workforce.failure_reason #=> String
|
18365
|
+
# resp.workforce.ip_address_type #=> String, one of "ipv4", "dualstack"
|
18227
18366
|
#
|
18228
18367
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeWorkforce AWS API Documentation
|
18229
18368
|
#
|
@@ -18598,7 +18737,7 @@ module Aws::SageMaker
|
|
18598
18737
|
# @example Request syntax with placeholder values
|
18599
18738
|
#
|
18600
18739
|
# resp = client.get_search_suggestions({
|
18601
|
-
# resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, Model, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, FeatureMetadata, Image, ImageVersion, Project, HyperParameterTuningJob, ModelCard
|
18740
|
+
# resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, Model, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, FeatureMetadata, Image, ImageVersion, Project, HyperParameterTuningJob, ModelCard, PipelineVersion
|
18602
18741
|
# suggestion_query: {
|
18603
18742
|
# property_name_query: {
|
18604
18743
|
# property_name_hint: "PropertyNameHint", # required
|
@@ -23693,6 +23832,68 @@ module Aws::SageMaker
|
|
23693
23832
|
req.send_request(options)
|
23694
23833
|
end
|
23695
23834
|
|
23835
|
+
# Gets a list of all versions of the pipeline.
|
23836
|
+
#
|
23837
|
+
# @option params [required, String] :pipeline_name
|
23838
|
+
# The Amazon Resource Name (ARN) of the pipeline.
|
23839
|
+
#
|
23840
|
+
# @option params [Time,DateTime,Date,Integer,String] :created_after
|
23841
|
+
# A filter that returns the pipeline versions that were created after a
|
23842
|
+
# specified time.
|
23843
|
+
#
|
23844
|
+
# @option params [Time,DateTime,Date,Integer,String] :created_before
|
23845
|
+
# A filter that returns the pipeline versions that were created before a
|
23846
|
+
# specified time.
|
23847
|
+
#
|
23848
|
+
# @option params [String] :sort_order
|
23849
|
+
# The sort order for the results.
|
23850
|
+
#
|
23851
|
+
# @option params [String] :next_token
|
23852
|
+
# If the result of the previous `ListPipelineVersions` request was
|
23853
|
+
# truncated, the response includes a `NextToken`. To retrieve the next
|
23854
|
+
# set of pipeline versions, use this token in your next request.
|
23855
|
+
#
|
23856
|
+
# @option params [Integer] :max_results
|
23857
|
+
# The maximum number of pipeline versions to return in the response.
|
23858
|
+
#
|
23859
|
+
# @return [Types::ListPipelineVersionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
23860
|
+
#
|
23861
|
+
# * {Types::ListPipelineVersionsResponse#pipeline_version_summaries #pipeline_version_summaries} => Array<Types::PipelineVersionSummary>
|
23862
|
+
# * {Types::ListPipelineVersionsResponse#next_token #next_token} => String
|
23863
|
+
#
|
23864
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
23865
|
+
#
|
23866
|
+
# @example Request syntax with placeholder values
|
23867
|
+
#
|
23868
|
+
# resp = client.list_pipeline_versions({
|
23869
|
+
# pipeline_name: "PipelineNameOrArn", # required
|
23870
|
+
# created_after: Time.now,
|
23871
|
+
# created_before: Time.now,
|
23872
|
+
# sort_order: "Ascending", # accepts Ascending, Descending
|
23873
|
+
# next_token: "NextToken",
|
23874
|
+
# max_results: 1,
|
23875
|
+
# })
|
23876
|
+
#
|
23877
|
+
# @example Response structure
|
23878
|
+
#
|
23879
|
+
# resp.pipeline_version_summaries #=> Array
|
23880
|
+
# resp.pipeline_version_summaries[0].pipeline_arn #=> String
|
23881
|
+
# resp.pipeline_version_summaries[0].pipeline_version_id #=> Integer
|
23882
|
+
# resp.pipeline_version_summaries[0].creation_time #=> Time
|
23883
|
+
# resp.pipeline_version_summaries[0].pipeline_version_description #=> String
|
23884
|
+
# resp.pipeline_version_summaries[0].pipeline_version_display_name #=> String
|
23885
|
+
# resp.pipeline_version_summaries[0].last_execution_pipeline_execution_arn #=> String
|
23886
|
+
# resp.next_token #=> String
|
23887
|
+
#
|
23888
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListPipelineVersions AWS API Documentation
|
23889
|
+
#
|
23890
|
+
# @overload list_pipeline_versions(params = {})
|
23891
|
+
# @param [Hash] params ({})
|
23892
|
+
def list_pipeline_versions(params = {}, options = {})
|
23893
|
+
req = build_request(:list_pipeline_versions, params)
|
23894
|
+
req.send_request(options)
|
23895
|
+
end
|
23896
|
+
|
23696
23897
|
# Gets a list of pipelines.
|
23697
23898
|
#
|
23698
23899
|
# @option params [String] :pipeline_name_prefix
|
@@ -24560,7 +24761,7 @@ module Aws::SageMaker
|
|
24560
24761
|
# resp.training_plan_summaries[0].target_resources[0] #=> String, one of "training-job", "hyperpod-cluster"
|
24561
24762
|
# resp.training_plan_summaries[0].reserved_capacity_summaries #=> Array
|
24562
24763
|
# resp.training_plan_summaries[0].reserved_capacity_summaries[0].reserved_capacity_arn #=> String
|
24563
|
-
# resp.training_plan_summaries[0].reserved_capacity_summaries[0].instance_type #=> String, one of "ml.p4d.24xlarge", "ml.p5.48xlarge", "ml.p5e.48xlarge", "ml.p5en.48xlarge", "ml.trn1.32xlarge", "ml.trn2.48xlarge", "ml.p6-b200.48xlarge"
|
24764
|
+
# resp.training_plan_summaries[0].reserved_capacity_summaries[0].instance_type #=> String, one of "ml.p4d.24xlarge", "ml.p5.48xlarge", "ml.p5e.48xlarge", "ml.p5en.48xlarge", "ml.trn1.32xlarge", "ml.trn2.48xlarge", "ml.p6-b200.48xlarge", "ml.p4de.24xlarge"
|
24564
24765
|
# resp.training_plan_summaries[0].reserved_capacity_summaries[0].total_instance_count #=> Integer
|
24565
24766
|
# resp.training_plan_summaries[0].reserved_capacity_summaries[0].status #=> String, one of "Pending", "Active", "Scheduled", "Expired", "Failed"
|
24566
24767
|
# resp.training_plan_summaries[0].reserved_capacity_summaries[0].availability_zone #=> String
|
@@ -24978,6 +25179,7 @@ module Aws::SageMaker
|
|
24978
25179
|
# resp.workforces[0].workforce_vpc_config.vpc_endpoint_id #=> String
|
24979
25180
|
# resp.workforces[0].status #=> String, one of "Initializing", "Updating", "Deleting", "Failed", "Active"
|
24980
25181
|
# resp.workforces[0].failure_reason #=> String
|
25182
|
+
# resp.workforces[0].ip_address_type #=> String, one of "ipv4", "dualstack"
|
24981
25183
|
# resp.next_token #=> String
|
24982
25184
|
#
|
24983
25185
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListWorkforces AWS API Documentation
|
@@ -25424,7 +25626,7 @@ module Aws::SageMaker
|
|
25424
25626
|
# @example Request syntax with placeholder values
|
25425
25627
|
#
|
25426
25628
|
# resp = client.search({
|
25427
|
-
# resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, Model, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, FeatureMetadata, Image, ImageVersion, Project, HyperParameterTuningJob, ModelCard
|
25629
|
+
# resource: "TrainingJob", # required, accepts TrainingJob, Experiment, ExperimentTrial, ExperimentTrialComponent, Endpoint, Model, ModelPackage, ModelPackageGroup, Pipeline, PipelineExecution, FeatureGroup, FeatureMetadata, Image, ImageVersion, Project, HyperParameterTuningJob, ModelCard, PipelineVersion
|
25428
25630
|
# search_expression: {
|
25429
25631
|
# filters: [
|
25430
25632
|
# {
|
@@ -25532,7 +25734,7 @@ module Aws::SageMaker
|
|
25532
25734
|
# @example Request syntax with placeholder values
|
25533
25735
|
#
|
25534
25736
|
# resp = client.search_training_plan_offerings({
|
25535
|
-
# instance_type: "ml.p4d.24xlarge", # accepts ml.p4d.24xlarge, ml.p5.48xlarge, ml.p5e.48xlarge, ml.p5en.48xlarge, ml.trn1.32xlarge, ml.trn2.48xlarge, ml.p6-b200.48xlarge
|
25737
|
+
# instance_type: "ml.p4d.24xlarge", # accepts ml.p4d.24xlarge, ml.p5.48xlarge, ml.p5e.48xlarge, ml.p5en.48xlarge, ml.trn1.32xlarge, ml.trn2.48xlarge, ml.p6-b200.48xlarge, ml.p4de.24xlarge
|
25536
25738
|
# instance_count: 1,
|
25537
25739
|
# start_time_after: Time.now,
|
25538
25740
|
# end_time_before: Time.now,
|
@@ -25553,7 +25755,7 @@ module Aws::SageMaker
|
|
25553
25755
|
# resp.training_plan_offerings[0].upfront_fee #=> String
|
25554
25756
|
# resp.training_plan_offerings[0].currency_code #=> String
|
25555
25757
|
# resp.training_plan_offerings[0].reserved_capacity_offerings #=> Array
|
25556
|
-
# resp.training_plan_offerings[0].reserved_capacity_offerings[0].instance_type #=> String, one of "ml.p4d.24xlarge", "ml.p5.48xlarge", "ml.p5e.48xlarge", "ml.p5en.48xlarge", "ml.trn1.32xlarge", "ml.trn2.48xlarge", "ml.p6-b200.48xlarge"
|
25758
|
+
# resp.training_plan_offerings[0].reserved_capacity_offerings[0].instance_type #=> String, one of "ml.p4d.24xlarge", "ml.p5.48xlarge", "ml.p5e.48xlarge", "ml.p5en.48xlarge", "ml.trn1.32xlarge", "ml.trn2.48xlarge", "ml.p6-b200.48xlarge", "ml.p4de.24xlarge"
|
25557
25759
|
# resp.training_plan_offerings[0].reserved_capacity_offerings[0].instance_count #=> Integer
|
25558
25760
|
# resp.training_plan_offerings[0].reserved_capacity_offerings[0].availability_zone #=> String
|
25559
25761
|
# resp.training_plan_offerings[0].reserved_capacity_offerings[0].duration_hours #=> Integer
|
@@ -25827,6 +26029,9 @@ module Aws::SageMaker
|
|
25827
26029
|
# @option params [Types::SelectiveExecutionConfig] :selective_execution_config
|
25828
26030
|
# The selective execution configuration applied to the pipeline run.
|
25829
26031
|
#
|
26032
|
+
# @option params [Integer] :pipeline_version_id
|
26033
|
+
# The ID of the pipeline version to start execution from.
|
26034
|
+
#
|
25830
26035
|
# @return [Types::StartPipelineExecutionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
25831
26036
|
#
|
25832
26037
|
# * {Types::StartPipelineExecutionResponse#pipeline_execution_arn #pipeline_execution_arn} => String
|
@@ -25855,6 +26060,7 @@ module Aws::SageMaker
|
|
25855
26060
|
# },
|
25856
26061
|
# ],
|
25857
26062
|
# },
|
26063
|
+
# pipeline_version_id: 1,
|
25858
26064
|
# })
|
25859
26065
|
#
|
25860
26066
|
# @example Response structure
|
@@ -26575,6 +26781,10 @@ module Aws::SageMaker
|
|
26575
26781
|
# @option params [Array<Types::ClusterInstanceGroupSpecification>] :instance_groups
|
26576
26782
|
# Specify the instance groups to update.
|
26577
26783
|
#
|
26784
|
+
# @option params [Array<Types::ClusterRestrictedInstanceGroupSpecification>] :restricted_instance_groups
|
26785
|
+
# The specialized instance groups for training models like Amazon Nova
|
26786
|
+
# to be created in the SageMaker HyperPod cluster.
|
26787
|
+
#
|
26578
26788
|
# @option params [String] :node_recovery
|
26579
26789
|
# The node recovery mode to be applied to the SageMaker HyperPod
|
26580
26790
|
# cluster.
|
@@ -26605,7 +26815,7 @@ module Aws::SageMaker
|
|
26605
26815
|
# instance_storage_configs: [
|
26606
26816
|
# {
|
26607
26817
|
# ebs_volume_config: {
|
26608
|
-
# volume_size_in_gb: 1,
|
26818
|
+
# volume_size_in_gb: 1,
|
26609
26819
|
# },
|
26610
26820
|
# },
|
26611
26821
|
# ],
|
@@ -26638,6 +26848,55 @@ module Aws::SageMaker
|
|
26638
26848
|
# },
|
26639
26849
|
# },
|
26640
26850
|
# ],
|
26851
|
+
# restricted_instance_groups: [
|
26852
|
+
# {
|
26853
|
+
# instance_count: 1, # required
|
26854
|
+
# instance_group_name: "ClusterInstanceGroupName", # required
|
26855
|
+
# instance_type: "ml.p4d.24xlarge", # required, accepts ml.p4d.24xlarge, ml.p4de.24xlarge, ml.p5.48xlarge, ml.trn1.32xlarge, ml.trn1n.32xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.12xlarge, ml.g5.16xlarge, ml.g5.24xlarge, ml.g5.48xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.c5n.large, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.g6.xlarge, ml.g6.2xlarge, ml.g6.4xlarge, ml.g6.8xlarge, ml.g6.16xlarge, ml.g6.12xlarge, ml.g6.24xlarge, ml.g6.48xlarge, ml.gr6.4xlarge, ml.gr6.8xlarge, ml.g6e.xlarge, ml.g6e.2xlarge, ml.g6e.4xlarge, ml.g6e.8xlarge, ml.g6e.16xlarge, ml.g6e.12xlarge, ml.g6e.24xlarge, ml.g6e.48xlarge, ml.p5e.48xlarge, ml.p5en.48xlarge, ml.p6-b200.48xlarge, ml.trn2.48xlarge, ml.c6i.large, ml.c6i.xlarge, ml.c6i.2xlarge, ml.c6i.4xlarge, ml.c6i.8xlarge, ml.c6i.12xlarge, ml.c6i.16xlarge, ml.c6i.24xlarge, ml.c6i.32xlarge, ml.m6i.large, ml.m6i.xlarge, ml.m6i.2xlarge, ml.m6i.4xlarge, ml.m6i.8xlarge, ml.m6i.12xlarge, ml.m6i.16xlarge, ml.m6i.24xlarge, ml.m6i.32xlarge, ml.r6i.large, ml.r6i.xlarge, ml.r6i.2xlarge, ml.r6i.4xlarge, ml.r6i.8xlarge, ml.r6i.12xlarge, ml.r6i.16xlarge, ml.r6i.24xlarge, ml.r6i.32xlarge, ml.i3en.large, ml.i3en.xlarge, ml.i3en.2xlarge, ml.i3en.3xlarge, ml.i3en.6xlarge, ml.i3en.12xlarge, ml.i3en.24xlarge, ml.m7i.large, ml.m7i.xlarge, ml.m7i.2xlarge, ml.m7i.4xlarge, ml.m7i.8xlarge, ml.m7i.12xlarge, ml.m7i.16xlarge, ml.m7i.24xlarge, ml.m7i.48xlarge, ml.r7i.large, ml.r7i.xlarge, ml.r7i.2xlarge, ml.r7i.4xlarge, ml.r7i.8xlarge, ml.r7i.12xlarge, ml.r7i.16xlarge, ml.r7i.24xlarge, ml.r7i.48xlarge
|
26856
|
+
# execution_role: "RoleArn", # required
|
26857
|
+
# threads_per_core: 1,
|
26858
|
+
# instance_storage_configs: [
|
26859
|
+
# {
|
26860
|
+
# ebs_volume_config: {
|
26861
|
+
# volume_size_in_gb: 1,
|
26862
|
+
# },
|
26863
|
+
# },
|
26864
|
+
# ],
|
26865
|
+
# on_start_deep_health_checks: ["InstanceStress"], # accepts InstanceStress, InstanceConnectivity
|
26866
|
+
# training_plan_arn: "TrainingPlanArn",
|
26867
|
+
# override_vpc_config: {
|
26868
|
+
# security_group_ids: ["SecurityGroupId"], # required
|
26869
|
+
# subnets: ["SubnetId"], # required
|
26870
|
+
# },
|
26871
|
+
# scheduled_update_config: {
|
26872
|
+
# schedule_expression: "CronScheduleExpression", # required
|
26873
|
+
# deployment_config: {
|
26874
|
+
# rolling_update_policy: {
|
26875
|
+
# maximum_batch_size: { # required
|
26876
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENTAGE
|
26877
|
+
# value: 1, # required
|
26878
|
+
# },
|
26879
|
+
# rollback_maximum_batch_size: {
|
26880
|
+
# type: "INSTANCE_COUNT", # required, accepts INSTANCE_COUNT, CAPACITY_PERCENTAGE
|
26881
|
+
# value: 1, # required
|
26882
|
+
# },
|
26883
|
+
# },
|
26884
|
+
# wait_interval_in_seconds: 1,
|
26885
|
+
# auto_rollback_configuration: [
|
26886
|
+
# {
|
26887
|
+
# alarm_name: "AlarmName", # required
|
26888
|
+
# },
|
26889
|
+
# ],
|
26890
|
+
# },
|
26891
|
+
# },
|
26892
|
+
# environment_config: { # required
|
26893
|
+
# f_sx_lustre_config: {
|
26894
|
+
# size_in_gi_b: 1, # required
|
26895
|
+
# per_unit_storage_throughput: 1, # required
|
26896
|
+
# },
|
26897
|
+
# },
|
26898
|
+
# },
|
26899
|
+
# ],
|
26641
26900
|
# node_recovery: "Automatic", # accepts Automatic, None
|
26642
26901
|
# instance_groups_to_delete: ["ClusterInstanceGroupName"],
|
26643
26902
|
# })
|
@@ -26852,7 +27111,7 @@ module Aws::SageMaker
|
|
26852
27111
|
# compute_quota_resources: [
|
26853
27112
|
# {
|
26854
27113
|
# instance_type: "ml.p4d.24xlarge", # required, accepts ml.p4d.24xlarge, ml.p4de.24xlarge, ml.p5.48xlarge, ml.trn1.32xlarge, ml.trn1n.32xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.12xlarge, ml.g5.16xlarge, ml.g5.24xlarge, ml.g5.48xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.c5n.large, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.g6.xlarge, ml.g6.2xlarge, ml.g6.4xlarge, ml.g6.8xlarge, ml.g6.16xlarge, ml.g6.12xlarge, ml.g6.24xlarge, ml.g6.48xlarge, ml.gr6.4xlarge, ml.gr6.8xlarge, ml.g6e.xlarge, ml.g6e.2xlarge, ml.g6e.4xlarge, ml.g6e.8xlarge, ml.g6e.16xlarge, ml.g6e.12xlarge, ml.g6e.24xlarge, ml.g6e.48xlarge, ml.p5e.48xlarge, ml.p5en.48xlarge, ml.p6-b200.48xlarge, ml.trn2.48xlarge, ml.c6i.large, ml.c6i.xlarge, ml.c6i.2xlarge, ml.c6i.4xlarge, ml.c6i.8xlarge, ml.c6i.12xlarge, ml.c6i.16xlarge, ml.c6i.24xlarge, ml.c6i.32xlarge, ml.m6i.large, ml.m6i.xlarge, ml.m6i.2xlarge, ml.m6i.4xlarge, ml.m6i.8xlarge, ml.m6i.12xlarge, ml.m6i.16xlarge, ml.m6i.24xlarge, ml.m6i.32xlarge, ml.r6i.large, ml.r6i.xlarge, ml.r6i.2xlarge, ml.r6i.4xlarge, ml.r6i.8xlarge, ml.r6i.12xlarge, ml.r6i.16xlarge, ml.r6i.24xlarge, ml.r6i.32xlarge, ml.i3en.large, ml.i3en.xlarge, ml.i3en.2xlarge, ml.i3en.3xlarge, ml.i3en.6xlarge, ml.i3en.12xlarge, ml.i3en.24xlarge, ml.m7i.large, ml.m7i.xlarge, ml.m7i.2xlarge, ml.m7i.4xlarge, ml.m7i.8xlarge, ml.m7i.12xlarge, ml.m7i.16xlarge, ml.m7i.24xlarge, ml.m7i.48xlarge, ml.r7i.large, ml.r7i.xlarge, ml.r7i.2xlarge, ml.r7i.4xlarge, ml.r7i.8xlarge, ml.r7i.12xlarge, ml.r7i.16xlarge, ml.r7i.24xlarge, ml.r7i.48xlarge
|
26855
|
-
# count: 1,
|
27114
|
+
# count: 1,
|
26856
27115
|
# },
|
26857
27116
|
# ],
|
26858
27117
|
# resource_sharing_config: {
|
@@ -27249,6 +27508,10 @@ module Aws::SageMaker
|
|
27249
27508
|
# file_system_id: "FileSystemId", # required
|
27250
27509
|
# file_system_path: "FileSystemPath",
|
27251
27510
|
# },
|
27511
|
+
# s3_file_system_config: {
|
27512
|
+
# mount_path: "String1024",
|
27513
|
+
# s3_uri: "S3SchemaUri",
|
27514
|
+
# },
|
27252
27515
|
# },
|
27253
27516
|
# ],
|
27254
27517
|
# studio_web_portal_settings: {
|
@@ -27389,6 +27652,10 @@ module Aws::SageMaker
|
|
27389
27652
|
# file_system_id: "FileSystemId", # required
|
27390
27653
|
# file_system_path: "FileSystemPath",
|
27391
27654
|
# },
|
27655
|
+
# s3_file_system_config: {
|
27656
|
+
# mount_path: "String1024",
|
27657
|
+
# s3_uri: "S3SchemaUri",
|
27658
|
+
# },
|
27392
27659
|
# },
|
27393
27660
|
# ],
|
27394
27661
|
# },
|
@@ -29125,6 +29392,7 @@ module Aws::SageMaker
|
|
29125
29392
|
# @return [Types::UpdatePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
29126
29393
|
#
|
29127
29394
|
# * {Types::UpdatePipelineResponse#pipeline_arn #pipeline_arn} => String
|
29395
|
+
# * {Types::UpdatePipelineResponse#pipeline_version_id #pipeline_version_id} => Integer
|
29128
29396
|
#
|
29129
29397
|
# @example Request syntax with placeholder values
|
29130
29398
|
#
|
@@ -29147,6 +29415,7 @@ module Aws::SageMaker
|
|
29147
29415
|
# @example Response structure
|
29148
29416
|
#
|
29149
29417
|
# resp.pipeline_arn #=> String
|
29418
|
+
# resp.pipeline_version_id #=> Integer
|
29150
29419
|
#
|
29151
29420
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdatePipeline AWS API Documentation
|
29152
29421
|
#
|
@@ -29200,6 +29469,48 @@ module Aws::SageMaker
|
|
29200
29469
|
req.send_request(options)
|
29201
29470
|
end
|
29202
29471
|
|
29472
|
+
# Updates a pipeline version.
|
29473
|
+
#
|
29474
|
+
# @option params [required, String] :pipeline_arn
|
29475
|
+
# The Amazon Resource Name (ARN) of the pipeline.
|
29476
|
+
#
|
29477
|
+
# @option params [required, Integer] :pipeline_version_id
|
29478
|
+
# The pipeline version ID to update.
|
29479
|
+
#
|
29480
|
+
# @option params [String] :pipeline_version_display_name
|
29481
|
+
# The display name of the pipeline version.
|
29482
|
+
#
|
29483
|
+
# @option params [String] :pipeline_version_description
|
29484
|
+
# The description of the pipeline version.
|
29485
|
+
#
|
29486
|
+
# @return [Types::UpdatePipelineVersionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
29487
|
+
#
|
29488
|
+
# * {Types::UpdatePipelineVersionResponse#pipeline_arn #pipeline_arn} => String
|
29489
|
+
# * {Types::UpdatePipelineVersionResponse#pipeline_version_id #pipeline_version_id} => Integer
|
29490
|
+
#
|
29491
|
+
# @example Request syntax with placeholder values
|
29492
|
+
#
|
29493
|
+
# resp = client.update_pipeline_version({
|
29494
|
+
# pipeline_arn: "PipelineArn", # required
|
29495
|
+
# pipeline_version_id: 1, # required
|
29496
|
+
# pipeline_version_display_name: "PipelineVersionName",
|
29497
|
+
# pipeline_version_description: "PipelineVersionDescription",
|
29498
|
+
# })
|
29499
|
+
#
|
29500
|
+
# @example Response structure
|
29501
|
+
#
|
29502
|
+
# resp.pipeline_arn #=> String
|
29503
|
+
# resp.pipeline_version_id #=> Integer
|
29504
|
+
#
|
29505
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdatePipelineVersion AWS API Documentation
|
29506
|
+
#
|
29507
|
+
# @overload update_pipeline_version(params = {})
|
29508
|
+
# @param [Hash] params ({})
|
29509
|
+
def update_pipeline_version(params = {}, options = {})
|
29510
|
+
req = build_request(:update_pipeline_version, params)
|
29511
|
+
req.send_request(options)
|
29512
|
+
end
|
29513
|
+
|
29203
29514
|
# Updates a machine learning (ML) project that is created from a
|
29204
29515
|
# template that sets up an ML pipeline from training to deploying an
|
29205
29516
|
# approved model.
|
@@ -29406,6 +29717,9 @@ module Aws::SageMaker
|
|
29406
29717
|
# f_sx_lustre_file_system: {
|
29407
29718
|
# file_system_id: "FileSystemId", # required
|
29408
29719
|
# },
|
29720
|
+
# s3_file_system: {
|
29721
|
+
# s3_uri: "S3SchemaUri",
|
29722
|
+
# },
|
29409
29723
|
# },
|
29410
29724
|
# ],
|
29411
29725
|
# remote_access: "ENABLED", # accepts ENABLED, DISABLED
|
@@ -29843,6 +30157,10 @@ module Aws::SageMaker
|
|
29843
30157
|
# file_system_id: "FileSystemId", # required
|
29844
30158
|
# file_system_path: "FileSystemPath",
|
29845
30159
|
# },
|
30160
|
+
# s3_file_system_config: {
|
30161
|
+
# mount_path: "String1024",
|
30162
|
+
# s3_uri: "S3SchemaUri",
|
30163
|
+
# },
|
29846
30164
|
# },
|
29847
30165
|
# ],
|
29848
30166
|
# studio_web_portal_settings: {
|
@@ -29938,6 +30256,10 @@ module Aws::SageMaker
|
|
29938
30256
|
# @option params [Types::WorkforceVpcConfigRequest] :workforce_vpc_config
|
29939
30257
|
# Use this parameter to update your VPC configuration for a workforce.
|
29940
30258
|
#
|
30259
|
+
# @option params [String] :ip_address_type
|
30260
|
+
# Use this parameter to specify whether you want `IPv4` only or
|
30261
|
+
# `dualstack` (`IPv4` and `IPv6`) to support your labeling workforce.
|
30262
|
+
#
|
29941
30263
|
# @return [Types::UpdateWorkforceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
29942
30264
|
#
|
29943
30265
|
# * {Types::UpdateWorkforceResponse#workforce #workforce} => Types::Workforce
|
@@ -29968,6 +30290,7 @@ module Aws::SageMaker
|
|
29968
30290
|
# security_group_ids: ["WorkforceSecurityGroupId"],
|
29969
30291
|
# subnets: ["WorkforceSubnetId"],
|
29970
30292
|
# },
|
30293
|
+
# ip_address_type: "ipv4", # accepts ipv4, dualstack
|
29971
30294
|
# })
|
29972
30295
|
#
|
29973
30296
|
# @example Response structure
|
@@ -29999,6 +30322,7 @@ module Aws::SageMaker
|
|
29999
30322
|
# resp.workforce.workforce_vpc_config.vpc_endpoint_id #=> String
|
30000
30323
|
# resp.workforce.status #=> String, one of "Initializing", "Updating", "Deleting", "Failed", "Active"
|
30001
30324
|
# resp.workforce.failure_reason #=> String
|
30325
|
+
# resp.workforce.ip_address_type #=> String, one of "ipv4", "dualstack"
|
30002
30326
|
#
|
30003
30327
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateWorkforce AWS API Documentation
|
30004
30328
|
#
|
@@ -30141,7 +30465,7 @@ module Aws::SageMaker
|
|
30141
30465
|
tracer: tracer
|
30142
30466
|
)
|
30143
30467
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
30144
|
-
context[:gem_version] = '1.
|
30468
|
+
context[:gem_version] = '1.316.0'
|
30145
30469
|
Seahorse::Client::Request.new(handlers, context)
|
30146
30470
|
end
|
30147
30471
|
|