aws-sdk-sagemaker 1.369.0 → 1.370.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +438 -1
- data/lib/aws-sdk-sagemaker/client_api.rb +212 -0
- data/lib/aws-sdk-sagemaker/types.rb +490 -1
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +111 -0
- data/sig/types.rbs +135 -0
- metadata +1 -1
|
@@ -11551,6 +11551,69 @@ module Aws::SageMaker
|
|
|
11551
11551
|
include Aws::Structure
|
|
11552
11552
|
end
|
|
11553
11553
|
|
|
11554
|
+
# @!attribute [rw] job_name
|
|
11555
|
+
# The name of the job. The name must be unique within your account and
|
|
11556
|
+
# Amazon Web Services Region.
|
|
11557
|
+
# @return [String]
|
|
11558
|
+
#
|
|
11559
|
+
# @!attribute [rw] role_arn
|
|
11560
|
+
# The Amazon Resource Name (ARN) of the IAM role that Amazon SageMaker
|
|
11561
|
+
# assumes to perform the job. The role must have the necessary
|
|
11562
|
+
# permissions to access the resources required by the job
|
|
11563
|
+
# configuration.
|
|
11564
|
+
# @return [String]
|
|
11565
|
+
#
|
|
11566
|
+
# @!attribute [rw] job_category
|
|
11567
|
+
# The category of the job. The category determines the type of
|
|
11568
|
+
# workload that the job runs.
|
|
11569
|
+
# @return [String]
|
|
11570
|
+
#
|
|
11571
|
+
# @!attribute [rw] job_config_schema_version
|
|
11572
|
+
# The version of the configuration schema to use for the job
|
|
11573
|
+
# configuration document. Use `ListJobSchemaVersions` to get available
|
|
11574
|
+
# schema versions for a job category.
|
|
11575
|
+
# @return [String]
|
|
11576
|
+
#
|
|
11577
|
+
# @!attribute [rw] job_config_document
|
|
11578
|
+
# The JSON configuration document for the job. The document must
|
|
11579
|
+
# conform to the schema specified by `JobConfigSchemaVersion`. Use
|
|
11580
|
+
# `DescribeJobSchemaVersion` to retrieve the schema for validation.
|
|
11581
|
+
# @return [String]
|
|
11582
|
+
#
|
|
11583
|
+
# @!attribute [rw] tags
|
|
11584
|
+
# An array of key-value pairs to apply to the job as tags. For more
|
|
11585
|
+
# information, see [Tagging Amazon Web Services Resources][1].
|
|
11586
|
+
#
|
|
11587
|
+
#
|
|
11588
|
+
#
|
|
11589
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
|
11590
|
+
# @return [Array<Types::Tag>]
|
|
11591
|
+
#
|
|
11592
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateJobRequest AWS API Documentation
|
|
11593
|
+
#
|
|
11594
|
+
class CreateJobRequest < Struct.new(
|
|
11595
|
+
:job_name,
|
|
11596
|
+
:role_arn,
|
|
11597
|
+
:job_category,
|
|
11598
|
+
:job_config_schema_version,
|
|
11599
|
+
:job_config_document,
|
|
11600
|
+
:tags)
|
|
11601
|
+
SENSITIVE = []
|
|
11602
|
+
include Aws::Structure
|
|
11603
|
+
end
|
|
11604
|
+
|
|
11605
|
+
# @!attribute [rw] job_arn
|
|
11606
|
+
# The Amazon Resource Name (ARN) of the job.
|
|
11607
|
+
# @return [String]
|
|
11608
|
+
#
|
|
11609
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateJobResponse AWS API Documentation
|
|
11610
|
+
#
|
|
11611
|
+
class CreateJobResponse < Struct.new(
|
|
11612
|
+
:job_arn)
|
|
11613
|
+
SENSITIVE = []
|
|
11614
|
+
include Aws::Structure
|
|
11615
|
+
end
|
|
11616
|
+
|
|
11554
11617
|
# @!attribute [rw] labeling_job_name
|
|
11555
11618
|
# The name of the labeling job. This name is used to identify the job
|
|
11556
11619
|
# in a list of labeling jobs. Labeling job names must be unique within
|
|
@@ -16040,6 +16103,27 @@ module Aws::SageMaker
|
|
|
16040
16103
|
include Aws::Structure
|
|
16041
16104
|
end
|
|
16042
16105
|
|
|
16106
|
+
# @!attribute [rw] job_name
|
|
16107
|
+
# The name of the job to delete.
|
|
16108
|
+
# @return [String]
|
|
16109
|
+
#
|
|
16110
|
+
# @!attribute [rw] job_category
|
|
16111
|
+
# The category of the job to delete.
|
|
16112
|
+
# @return [String]
|
|
16113
|
+
#
|
|
16114
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteJobRequest AWS API Documentation
|
|
16115
|
+
#
|
|
16116
|
+
class DeleteJobRequest < Struct.new(
|
|
16117
|
+
:job_name,
|
|
16118
|
+
:job_category)
|
|
16119
|
+
SENSITIVE = []
|
|
16120
|
+
include Aws::Structure
|
|
16121
|
+
end
|
|
16122
|
+
|
|
16123
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteJobResponse AWS API Documentation
|
|
16124
|
+
#
|
|
16125
|
+
class DeleteJobResponse < Aws::EmptyStructure; end
|
|
16126
|
+
|
|
16043
16127
|
# @!attribute [rw] arn
|
|
16044
16128
|
# The ARN of the MLflow App to delete.
|
|
16045
16129
|
# @return [String]
|
|
@@ -20491,6 +20575,144 @@ module Aws::SageMaker
|
|
|
20491
20575
|
include Aws::Structure
|
|
20492
20576
|
end
|
|
20493
20577
|
|
|
20578
|
+
# @!attribute [rw] job_name
|
|
20579
|
+
# The name of the job to describe.
|
|
20580
|
+
# @return [String]
|
|
20581
|
+
#
|
|
20582
|
+
# @!attribute [rw] job_category
|
|
20583
|
+
# The category of the job.
|
|
20584
|
+
# @return [String]
|
|
20585
|
+
#
|
|
20586
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeJobRequest AWS API Documentation
|
|
20587
|
+
#
|
|
20588
|
+
class DescribeJobRequest < Struct.new(
|
|
20589
|
+
:job_name,
|
|
20590
|
+
:job_category)
|
|
20591
|
+
SENSITIVE = []
|
|
20592
|
+
include Aws::Structure
|
|
20593
|
+
end
|
|
20594
|
+
|
|
20595
|
+
# @!attribute [rw] job_name
|
|
20596
|
+
# The name of the job.
|
|
20597
|
+
# @return [String]
|
|
20598
|
+
#
|
|
20599
|
+
# @!attribute [rw] job_arn
|
|
20600
|
+
# The Amazon Resource Name (ARN) of the job.
|
|
20601
|
+
# @return [String]
|
|
20602
|
+
#
|
|
20603
|
+
# @!attribute [rw] role_arn
|
|
20604
|
+
# The ARN of the IAM role associated with the job.
|
|
20605
|
+
# @return [String]
|
|
20606
|
+
#
|
|
20607
|
+
# @!attribute [rw] job_category
|
|
20608
|
+
# The category of the job.
|
|
20609
|
+
# @return [String]
|
|
20610
|
+
#
|
|
20611
|
+
# @!attribute [rw] job_config_schema_version
|
|
20612
|
+
# The schema version used for the job configuration document.
|
|
20613
|
+
# @return [String]
|
|
20614
|
+
#
|
|
20615
|
+
# @!attribute [rw] job_config_document
|
|
20616
|
+
# The JSON configuration document for the job.
|
|
20617
|
+
# @return [String]
|
|
20618
|
+
#
|
|
20619
|
+
# @!attribute [rw] creation_time
|
|
20620
|
+
# The date and time that the job was created.
|
|
20621
|
+
# @return [Time]
|
|
20622
|
+
#
|
|
20623
|
+
# @!attribute [rw] last_modified_time
|
|
20624
|
+
# The date and time that the job was last modified.
|
|
20625
|
+
# @return [Time]
|
|
20626
|
+
#
|
|
20627
|
+
# @!attribute [rw] end_time
|
|
20628
|
+
# The date and time that the job ended.
|
|
20629
|
+
# @return [Time]
|
|
20630
|
+
#
|
|
20631
|
+
# @!attribute [rw] job_status
|
|
20632
|
+
# The current status of the job.
|
|
20633
|
+
# @return [String]
|
|
20634
|
+
#
|
|
20635
|
+
# @!attribute [rw] secondary_status
|
|
20636
|
+
# The detailed secondary status of the job, providing more granular
|
|
20637
|
+
# information about the job's progress. Secondary statuses may change
|
|
20638
|
+
# between releases.
|
|
20639
|
+
# @return [String]
|
|
20640
|
+
#
|
|
20641
|
+
# @!attribute [rw] secondary_status_transitions
|
|
20642
|
+
# A list of secondary status transitions for the job, with timestamps
|
|
20643
|
+
# and optional status messages.
|
|
20644
|
+
# @return [Array<Types::JobSecondaryStatusTransition>]
|
|
20645
|
+
#
|
|
20646
|
+
# @!attribute [rw] failure_reason
|
|
20647
|
+
# If the job failed, the reason it failed.
|
|
20648
|
+
# @return [String]
|
|
20649
|
+
#
|
|
20650
|
+
# @!attribute [rw] tags
|
|
20651
|
+
# The tags associated with the job.
|
|
20652
|
+
# @return [Array<Types::Tag>]
|
|
20653
|
+
#
|
|
20654
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeJobResponse AWS API Documentation
|
|
20655
|
+
#
|
|
20656
|
+
class DescribeJobResponse < Struct.new(
|
|
20657
|
+
:job_name,
|
|
20658
|
+
:job_arn,
|
|
20659
|
+
:role_arn,
|
|
20660
|
+
:job_category,
|
|
20661
|
+
:job_config_schema_version,
|
|
20662
|
+
:job_config_document,
|
|
20663
|
+
:creation_time,
|
|
20664
|
+
:last_modified_time,
|
|
20665
|
+
:end_time,
|
|
20666
|
+
:job_status,
|
|
20667
|
+
:secondary_status,
|
|
20668
|
+
:secondary_status_transitions,
|
|
20669
|
+
:failure_reason,
|
|
20670
|
+
:tags)
|
|
20671
|
+
SENSITIVE = []
|
|
20672
|
+
include Aws::Structure
|
|
20673
|
+
end
|
|
20674
|
+
|
|
20675
|
+
# @!attribute [rw] job_category
|
|
20676
|
+
# The category of the job schema to describe.
|
|
20677
|
+
# @return [String]
|
|
20678
|
+
#
|
|
20679
|
+
# @!attribute [rw] job_config_schema_version
|
|
20680
|
+
# The version of the schema to retrieve. If not specified, the latest
|
|
20681
|
+
# version is returned.
|
|
20682
|
+
# @return [String]
|
|
20683
|
+
#
|
|
20684
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeJobSchemaVersionRequest AWS API Documentation
|
|
20685
|
+
#
|
|
20686
|
+
class DescribeJobSchemaVersionRequest < Struct.new(
|
|
20687
|
+
:job_category,
|
|
20688
|
+
:job_config_schema_version)
|
|
20689
|
+
SENSITIVE = []
|
|
20690
|
+
include Aws::Structure
|
|
20691
|
+
end
|
|
20692
|
+
|
|
20693
|
+
# @!attribute [rw] job_category
|
|
20694
|
+
# The category of the job schema.
|
|
20695
|
+
# @return [String]
|
|
20696
|
+
#
|
|
20697
|
+
# @!attribute [rw] job_config_schema_version
|
|
20698
|
+
# The version of the schema.
|
|
20699
|
+
# @return [String]
|
|
20700
|
+
#
|
|
20701
|
+
# @!attribute [rw] job_config_schema
|
|
20702
|
+
# The JSON schema document that defines the structure of the job
|
|
20703
|
+
# configuration.
|
|
20704
|
+
# @return [String]
|
|
20705
|
+
#
|
|
20706
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeJobSchemaVersionResponse AWS API Documentation
|
|
20707
|
+
#
|
|
20708
|
+
class DescribeJobSchemaVersionResponse < Struct.new(
|
|
20709
|
+
:job_category,
|
|
20710
|
+
:job_config_schema_version,
|
|
20711
|
+
:job_config_schema)
|
|
20712
|
+
SENSITIVE = []
|
|
20713
|
+
include Aws::Structure
|
|
20714
|
+
end
|
|
20715
|
+
|
|
20494
20716
|
# @!attribute [rw] labeling_job_name
|
|
20495
20717
|
# The name of the labeling job to return information for.
|
|
20496
20718
|
# @return [String]
|
|
@@ -31957,6 +32179,119 @@ module Aws::SageMaker
|
|
|
31957
32179
|
include Aws::Structure
|
|
31958
32180
|
end
|
|
31959
32181
|
|
|
32182
|
+
# Provides summary information about a job configuration schema version.
|
|
32183
|
+
#
|
|
32184
|
+
# @!attribute [rw] job_config_schema_version
|
|
32185
|
+
# The version of the job configuration schema.
|
|
32186
|
+
# @return [String]
|
|
32187
|
+
#
|
|
32188
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/JobConfigSchemaVersionSummary AWS API Documentation
|
|
32189
|
+
#
|
|
32190
|
+
class JobConfigSchemaVersionSummary < Struct.new(
|
|
32191
|
+
:job_config_schema_version)
|
|
32192
|
+
SENSITIVE = []
|
|
32193
|
+
include Aws::Structure
|
|
32194
|
+
end
|
|
32195
|
+
|
|
32196
|
+
# Represents a secondary status transition for a job. Jobs progress
|
|
32197
|
+
# through multiple secondary statuses during execution. Each transition
|
|
32198
|
+
# records the status, start time, optional end time, and an optional
|
|
32199
|
+
# message with additional details.
|
|
32200
|
+
#
|
|
32201
|
+
# @!attribute [rw] status
|
|
32202
|
+
# The secondary status of the job at this transition point.
|
|
32203
|
+
# @return [String]
|
|
32204
|
+
#
|
|
32205
|
+
# @!attribute [rw] start_time
|
|
32206
|
+
# The date and time that the status transition started.
|
|
32207
|
+
# @return [Time]
|
|
32208
|
+
#
|
|
32209
|
+
# @!attribute [rw] end_time
|
|
32210
|
+
# The date and time that the status transition ended.
|
|
32211
|
+
# @return [Time]
|
|
32212
|
+
#
|
|
32213
|
+
# @!attribute [rw] status_message
|
|
32214
|
+
# A detailed message about the status transition.
|
|
32215
|
+
# @return [String]
|
|
32216
|
+
#
|
|
32217
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/JobSecondaryStatusTransition AWS API Documentation
|
|
32218
|
+
#
|
|
32219
|
+
class JobSecondaryStatusTransition < Struct.new(
|
|
32220
|
+
:status,
|
|
32221
|
+
:start_time,
|
|
32222
|
+
:end_time,
|
|
32223
|
+
:status_message)
|
|
32224
|
+
SENSITIVE = []
|
|
32225
|
+
include Aws::Structure
|
|
32226
|
+
end
|
|
32227
|
+
|
|
32228
|
+
# Metadata for a SageMaker job step.
|
|
32229
|
+
#
|
|
32230
|
+
# @!attribute [rw] arn
|
|
32231
|
+
# The Amazon Resource Name (ARN) of the SageMaker job that was run by
|
|
32232
|
+
# this step execution.
|
|
32233
|
+
# @return [String]
|
|
32234
|
+
#
|
|
32235
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/JobStepMetadata AWS API Documentation
|
|
32236
|
+
#
|
|
32237
|
+
class JobStepMetadata < Struct.new(
|
|
32238
|
+
:arn)
|
|
32239
|
+
SENSITIVE = []
|
|
32240
|
+
include Aws::Structure
|
|
32241
|
+
end
|
|
32242
|
+
|
|
32243
|
+
# Provides summary information about a job, returned by the `ListJobs`
|
|
32244
|
+
# operation. Use `DescribeJob` to get full details for a specific job.
|
|
32245
|
+
#
|
|
32246
|
+
# @!attribute [rw] job_arn
|
|
32247
|
+
# The Amazon Resource Name (ARN) of the job.
|
|
32248
|
+
# @return [String]
|
|
32249
|
+
#
|
|
32250
|
+
# @!attribute [rw] job_name
|
|
32251
|
+
# The name of the job.
|
|
32252
|
+
# @return [String]
|
|
32253
|
+
#
|
|
32254
|
+
# @!attribute [rw] job_category
|
|
32255
|
+
# The category of the job.
|
|
32256
|
+
# @return [String]
|
|
32257
|
+
#
|
|
32258
|
+
# @!attribute [rw] job_status
|
|
32259
|
+
# The current status of the job.
|
|
32260
|
+
# @return [String]
|
|
32261
|
+
#
|
|
32262
|
+
# @!attribute [rw] job_secondary_status
|
|
32263
|
+
# The secondary status of the job, providing more granular information
|
|
32264
|
+
# about the job's progress. Secondary statuses may change between
|
|
32265
|
+
# releases.
|
|
32266
|
+
# @return [String]
|
|
32267
|
+
#
|
|
32268
|
+
# @!attribute [rw] creation_time
|
|
32269
|
+
# The date and time that the job was created.
|
|
32270
|
+
# @return [Time]
|
|
32271
|
+
#
|
|
32272
|
+
# @!attribute [rw] last_modified_time
|
|
32273
|
+
# The date and time that the job was last modified.
|
|
32274
|
+
# @return [Time]
|
|
32275
|
+
#
|
|
32276
|
+
# @!attribute [rw] end_time
|
|
32277
|
+
# The date and time that the job ended.
|
|
32278
|
+
# @return [Time]
|
|
32279
|
+
#
|
|
32280
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/JobSummary AWS API Documentation
|
|
32281
|
+
#
|
|
32282
|
+
class JobSummary < Struct.new(
|
|
32283
|
+
:job_arn,
|
|
32284
|
+
:job_name,
|
|
32285
|
+
:job_category,
|
|
32286
|
+
:job_status,
|
|
32287
|
+
:job_secondary_status,
|
|
32288
|
+
:creation_time,
|
|
32289
|
+
:last_modified_time,
|
|
32290
|
+
:end_time)
|
|
32291
|
+
SENSITIVE = []
|
|
32292
|
+
include Aws::Structure
|
|
32293
|
+
end
|
|
32294
|
+
|
|
31960
32295
|
# The configuration for the file system and kernels in a SageMaker AI
|
|
31961
32296
|
# image running as a JupyterLab app. The `FileSystemConfig` object is
|
|
31962
32297
|
# not supported.
|
|
@@ -35991,6 +36326,134 @@ module Aws::SageMaker
|
|
|
35991
36326
|
include Aws::Structure
|
|
35992
36327
|
end
|
|
35993
36328
|
|
|
36329
|
+
# @!attribute [rw] job_category
|
|
36330
|
+
# The category of job schemas to list.
|
|
36331
|
+
# @return [String]
|
|
36332
|
+
#
|
|
36333
|
+
# @!attribute [rw] next_token
|
|
36334
|
+
# If the previous response was truncated, this token retrieves the
|
|
36335
|
+
# next set of results.
|
|
36336
|
+
# @return [String]
|
|
36337
|
+
#
|
|
36338
|
+
# @!attribute [rw] max_results
|
|
36339
|
+
# The maximum number of schema versions to return in the response. The
|
|
36340
|
+
# default value is 5.
|
|
36341
|
+
# @return [Integer]
|
|
36342
|
+
#
|
|
36343
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListJobSchemaVersionsRequest AWS API Documentation
|
|
36344
|
+
#
|
|
36345
|
+
class ListJobSchemaVersionsRequest < Struct.new(
|
|
36346
|
+
:job_category,
|
|
36347
|
+
:next_token,
|
|
36348
|
+
:max_results)
|
|
36349
|
+
SENSITIVE = []
|
|
36350
|
+
include Aws::Structure
|
|
36351
|
+
end
|
|
36352
|
+
|
|
36353
|
+
# @!attribute [rw] next_token
|
|
36354
|
+
# If the response is truncated, this token retrieves the next set of
|
|
36355
|
+
# results.
|
|
36356
|
+
# @return [String]
|
|
36357
|
+
#
|
|
36358
|
+
# @!attribute [rw] job_config_schemas
|
|
36359
|
+
# An array of `JobConfigSchemaVersionSummary` objects listing the
|
|
36360
|
+
# available schema versions.
|
|
36361
|
+
# @return [Array<Types::JobConfigSchemaVersionSummary>]
|
|
36362
|
+
#
|
|
36363
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListJobSchemaVersionsResponse AWS API Documentation
|
|
36364
|
+
#
|
|
36365
|
+
class ListJobSchemaVersionsResponse < Struct.new(
|
|
36366
|
+
:next_token,
|
|
36367
|
+
:job_config_schemas)
|
|
36368
|
+
SENSITIVE = []
|
|
36369
|
+
include Aws::Structure
|
|
36370
|
+
end
|
|
36371
|
+
|
|
36372
|
+
# @!attribute [rw] job_category
|
|
36373
|
+
# The category of jobs to list.
|
|
36374
|
+
# @return [String]
|
|
36375
|
+
#
|
|
36376
|
+
# @!attribute [rw] next_token
|
|
36377
|
+
# If the previous response was truncated, this token retrieves the
|
|
36378
|
+
# next set of results.
|
|
36379
|
+
# @return [String]
|
|
36380
|
+
#
|
|
36381
|
+
# @!attribute [rw] max_results
|
|
36382
|
+
# The maximum number of jobs to return in the response. The default
|
|
36383
|
+
# value is 50.
|
|
36384
|
+
# @return [Integer]
|
|
36385
|
+
#
|
|
36386
|
+
# @!attribute [rw] creation_time_after
|
|
36387
|
+
# A filter that returns only jobs created after the specified time.
|
|
36388
|
+
# @return [Time]
|
|
36389
|
+
#
|
|
36390
|
+
# @!attribute [rw] creation_time_before
|
|
36391
|
+
# A filter that returns only jobs created before the specified time.
|
|
36392
|
+
# @return [Time]
|
|
36393
|
+
#
|
|
36394
|
+
# @!attribute [rw] last_modified_time_after
|
|
36395
|
+
# A filter that returns only jobs modified after the specified time.
|
|
36396
|
+
# @return [Time]
|
|
36397
|
+
#
|
|
36398
|
+
# @!attribute [rw] last_modified_time_before
|
|
36399
|
+
# A filter that returns only jobs modified before the specified time.
|
|
36400
|
+
# @return [Time]
|
|
36401
|
+
#
|
|
36402
|
+
# @!attribute [rw] name_contains
|
|
36403
|
+
# A string in the job name to filter results. Only jobs whose name
|
|
36404
|
+
# contains the specified string are returned.
|
|
36405
|
+
# @return [String]
|
|
36406
|
+
#
|
|
36407
|
+
# @!attribute [rw] sort_by
|
|
36408
|
+
# The field to sort results by.
|
|
36409
|
+
# @return [String]
|
|
36410
|
+
#
|
|
36411
|
+
# @!attribute [rw] sort_order
|
|
36412
|
+
# The sort order for results. Valid values are `Ascending` and
|
|
36413
|
+
# `Descending`.
|
|
36414
|
+
# @return [String]
|
|
36415
|
+
#
|
|
36416
|
+
# @!attribute [rw] status_equals
|
|
36417
|
+
# A filter that returns only jobs with the specified status.
|
|
36418
|
+
# @return [String]
|
|
36419
|
+
#
|
|
36420
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListJobsRequest AWS API Documentation
|
|
36421
|
+
#
|
|
36422
|
+
class ListJobsRequest < Struct.new(
|
|
36423
|
+
:job_category,
|
|
36424
|
+
:next_token,
|
|
36425
|
+
:max_results,
|
|
36426
|
+
:creation_time_after,
|
|
36427
|
+
:creation_time_before,
|
|
36428
|
+
:last_modified_time_after,
|
|
36429
|
+
:last_modified_time_before,
|
|
36430
|
+
:name_contains,
|
|
36431
|
+
:sort_by,
|
|
36432
|
+
:sort_order,
|
|
36433
|
+
:status_equals)
|
|
36434
|
+
SENSITIVE = []
|
|
36435
|
+
include Aws::Structure
|
|
36436
|
+
end
|
|
36437
|
+
|
|
36438
|
+
# @!attribute [rw] next_token
|
|
36439
|
+
# If the response is truncated, this token retrieves the next set of
|
|
36440
|
+
# results.
|
|
36441
|
+
# @return [String]
|
|
36442
|
+
#
|
|
36443
|
+
# @!attribute [rw] job_summaries
|
|
36444
|
+
# An array of `JobSummary` objects that provide summary information
|
|
36445
|
+
# about the jobs.
|
|
36446
|
+
# @return [Array<Types::JobSummary>]
|
|
36447
|
+
#
|
|
36448
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListJobsResponse AWS API Documentation
|
|
36449
|
+
#
|
|
36450
|
+
class ListJobsResponse < Struct.new(
|
|
36451
|
+
:next_token,
|
|
36452
|
+
:job_summaries)
|
|
36453
|
+
SENSITIVE = []
|
|
36454
|
+
include Aws::Structure
|
|
36455
|
+
end
|
|
36456
|
+
|
|
35994
36457
|
# @!attribute [rw] workteam_arn
|
|
35995
36458
|
# The Amazon Resource Name (ARN) of the work team for which you want
|
|
35996
36459
|
# to see labeling jobs for.
|
|
@@ -44757,6 +45220,10 @@ module Aws::SageMaker
|
|
|
44757
45220
|
# The metadata of the lineage used in pipeline execution step.
|
|
44758
45221
|
# @return [Types::LineageMetadata]
|
|
44759
45222
|
#
|
|
45223
|
+
# @!attribute [rw] job
|
|
45224
|
+
# The metadata for a SageMaker job used in a pipeline execution step.
|
|
45225
|
+
# @return [Types::JobStepMetadata]
|
|
45226
|
+
#
|
|
44760
45227
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PipelineExecutionStepMetadata AWS API Documentation
|
|
44761
45228
|
#
|
|
44762
45229
|
class PipelineExecutionStepMetadata < Struct.new(
|
|
@@ -44781,7 +45248,8 @@ module Aws::SageMaker
|
|
|
44781
45248
|
:bedrock_provisioned_model_throughput,
|
|
44782
45249
|
:bedrock_model_import,
|
|
44783
45250
|
:inference_component,
|
|
44784
|
-
:lineage
|
|
45251
|
+
:lineage,
|
|
45252
|
+
:job)
|
|
44785
45253
|
SENSITIVE = []
|
|
44786
45254
|
include Aws::Structure
|
|
44787
45255
|
end
|
|
@@ -51026,6 +51494,27 @@ module Aws::SageMaker
|
|
|
51026
51494
|
include Aws::Structure
|
|
51027
51495
|
end
|
|
51028
51496
|
|
|
51497
|
+
# @!attribute [rw] job_name
|
|
51498
|
+
# The name of the job to stop.
|
|
51499
|
+
# @return [String]
|
|
51500
|
+
#
|
|
51501
|
+
# @!attribute [rw] job_category
|
|
51502
|
+
# The category of the job to stop.
|
|
51503
|
+
# @return [String]
|
|
51504
|
+
#
|
|
51505
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StopJobRequest AWS API Documentation
|
|
51506
|
+
#
|
|
51507
|
+
class StopJobRequest < Struct.new(
|
|
51508
|
+
:job_name,
|
|
51509
|
+
:job_category)
|
|
51510
|
+
SENSITIVE = []
|
|
51511
|
+
include Aws::Structure
|
|
51512
|
+
end
|
|
51513
|
+
|
|
51514
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StopJobResponse AWS API Documentation
|
|
51515
|
+
#
|
|
51516
|
+
class StopJobResponse < Aws::EmptyStructure; end
|
|
51517
|
+
|
|
51029
51518
|
# @!attribute [rw] labeling_job_name
|
|
51030
51519
|
# The name of the labeling job to stop.
|
|
51031
51520
|
# @return [String]
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -1661,6 +1661,26 @@ module Aws
|
|
|
1661
1661
|
) -> _CreateInferenceRecommendationsJobResponseSuccess
|
|
1662
1662
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInferenceRecommendationsJobResponseSuccess
|
|
1663
1663
|
|
|
1664
|
+
interface _CreateJobResponseSuccess
|
|
1665
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateJobResponse]
|
|
1666
|
+
def job_arn: () -> ::String
|
|
1667
|
+
end
|
|
1668
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#create_job-instance_method
|
|
1669
|
+
def create_job: (
|
|
1670
|
+
job_name: ::String,
|
|
1671
|
+
role_arn: ::String,
|
|
1672
|
+
job_category: ("AgentRFT" | "AgentRFTEvaluation"),
|
|
1673
|
+
job_config_schema_version: ::String,
|
|
1674
|
+
job_config_document: ::String,
|
|
1675
|
+
?tags: Array[
|
|
1676
|
+
{
|
|
1677
|
+
key: ::String,
|
|
1678
|
+
value: ::String
|
|
1679
|
+
}
|
|
1680
|
+
]
|
|
1681
|
+
) -> _CreateJobResponseSuccess
|
|
1682
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateJobResponseSuccess
|
|
1683
|
+
|
|
1664
1684
|
interface _CreateLabelingJobResponseSuccess
|
|
1665
1685
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateLabelingJobResponse]
|
|
1666
1686
|
def labeling_job_arn: () -> ::String
|
|
@@ -3247,6 +3267,16 @@ module Aws
|
|
|
3247
3267
|
) -> _DeleteInferenceExperimentResponseSuccess
|
|
3248
3268
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteInferenceExperimentResponseSuccess
|
|
3249
3269
|
|
|
3270
|
+
interface _DeleteJobResponseSuccess
|
|
3271
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteJobResponse]
|
|
3272
|
+
end
|
|
3273
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#delete_job-instance_method
|
|
3274
|
+
def delete_job: (
|
|
3275
|
+
job_name: ::String,
|
|
3276
|
+
job_category: ("AgentRFT" | "AgentRFTEvaluation")
|
|
3277
|
+
) -> _DeleteJobResponseSuccess
|
|
3278
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteJobResponseSuccess
|
|
3279
|
+
|
|
3250
3280
|
interface _DeleteMlflowAppResponseSuccess
|
|
3251
3281
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteMlflowAppResponse]
|
|
3252
3282
|
def arn: () -> ::String
|
|
@@ -4317,6 +4347,43 @@ module Aws
|
|
|
4317
4347
|
) -> _DescribeInferenceRecommendationsJobResponseSuccess
|
|
4318
4348
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInferenceRecommendationsJobResponseSuccess
|
|
4319
4349
|
|
|
4350
|
+
interface _DescribeJobResponseSuccess
|
|
4351
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeJobResponse]
|
|
4352
|
+
def job_name: () -> ::String
|
|
4353
|
+
def job_arn: () -> ::String
|
|
4354
|
+
def role_arn: () -> ::String
|
|
4355
|
+
def job_category: () -> ("AgentRFT" | "AgentRFTEvaluation")
|
|
4356
|
+
def job_config_schema_version: () -> ::String
|
|
4357
|
+
def job_config_document: () -> ::String
|
|
4358
|
+
def creation_time: () -> ::Time
|
|
4359
|
+
def last_modified_time: () -> ::Time
|
|
4360
|
+
def end_time: () -> ::Time
|
|
4361
|
+
def job_status: () -> ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting" | "DeleteFailed")
|
|
4362
|
+
def secondary_status: () -> ("Starting" | "Downloading" | "Training" | "Uploading" | "Stopping" | "Stopped" | "MaxRuntimeExceeded" | "Interrupted" | "Failed" | "Completed" | "Restarting" | "Pending" | "Evaluating" | "Deleting" | "DeleteFailed")
|
|
4363
|
+
def secondary_status_transitions: () -> ::Array[Types::JobSecondaryStatusTransition]
|
|
4364
|
+
def failure_reason: () -> ::String
|
|
4365
|
+
def tags: () -> ::Array[Types::Tag]
|
|
4366
|
+
end
|
|
4367
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_job-instance_method
|
|
4368
|
+
def describe_job: (
|
|
4369
|
+
job_name: ::String,
|
|
4370
|
+
job_category: ("AgentRFT" | "AgentRFTEvaluation")
|
|
4371
|
+
) -> _DescribeJobResponseSuccess
|
|
4372
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeJobResponseSuccess
|
|
4373
|
+
|
|
4374
|
+
interface _DescribeJobSchemaVersionResponseSuccess
|
|
4375
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeJobSchemaVersionResponse]
|
|
4376
|
+
def job_category: () -> ("AgentRFT" | "AgentRFTEvaluation")
|
|
4377
|
+
def job_config_schema_version: () -> ::String
|
|
4378
|
+
def job_config_schema: () -> ::String
|
|
4379
|
+
end
|
|
4380
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_job_schema_version-instance_method
|
|
4381
|
+
def describe_job_schema_version: (
|
|
4382
|
+
job_category: ("AgentRFT" | "AgentRFTEvaluation"),
|
|
4383
|
+
?job_config_schema_version: ::String
|
|
4384
|
+
) -> _DescribeJobSchemaVersionResponseSuccess
|
|
4385
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeJobSchemaVersionResponseSuccess
|
|
4386
|
+
|
|
4320
4387
|
interface _DescribeLabelingJobResponseSuccess
|
|
4321
4388
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLabelingJobResponse]
|
|
4322
4389
|
def labeling_job_status: () -> ("Initializing" | "InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
|
|
@@ -6045,6 +6112,40 @@ module Aws
|
|
|
6045
6112
|
) -> _ListInferenceRecommendationsJobsResponseSuccess
|
|
6046
6113
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListInferenceRecommendationsJobsResponseSuccess
|
|
6047
6114
|
|
|
6115
|
+
interface _ListJobSchemaVersionsResponseSuccess
|
|
6116
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListJobSchemaVersionsResponse]
|
|
6117
|
+
def next_token: () -> ::String
|
|
6118
|
+
def job_config_schemas: () -> ::Array[Types::JobConfigSchemaVersionSummary]
|
|
6119
|
+
end
|
|
6120
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#list_job_schema_versions-instance_method
|
|
6121
|
+
def list_job_schema_versions: (
|
|
6122
|
+
job_category: ("AgentRFT" | "AgentRFTEvaluation"),
|
|
6123
|
+
?next_token: ::String,
|
|
6124
|
+
?max_results: ::Integer
|
|
6125
|
+
) -> _ListJobSchemaVersionsResponseSuccess
|
|
6126
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListJobSchemaVersionsResponseSuccess
|
|
6127
|
+
|
|
6128
|
+
interface _ListJobsResponseSuccess
|
|
6129
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListJobsResponse]
|
|
6130
|
+
def next_token: () -> ::String
|
|
6131
|
+
def job_summaries: () -> ::Array[Types::JobSummary]
|
|
6132
|
+
end
|
|
6133
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#list_jobs-instance_method
|
|
6134
|
+
def list_jobs: (
|
|
6135
|
+
job_category: ("AgentRFT" | "AgentRFTEvaluation"),
|
|
6136
|
+
?next_token: ::String,
|
|
6137
|
+
?max_results: ::Integer,
|
|
6138
|
+
?creation_time_after: ::Time,
|
|
6139
|
+
?creation_time_before: ::Time,
|
|
6140
|
+
?last_modified_time_after: ::Time,
|
|
6141
|
+
?last_modified_time_before: ::Time,
|
|
6142
|
+
?name_contains: ::String,
|
|
6143
|
+
?sort_by: ("Name" | "CreationTime" | "Status"),
|
|
6144
|
+
?sort_order: ("Ascending" | "Descending"),
|
|
6145
|
+
?status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting" | "DeleteFailed")
|
|
6146
|
+
) -> _ListJobsResponseSuccess
|
|
6147
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListJobsResponseSuccess
|
|
6148
|
+
|
|
6048
6149
|
interface _ListLabelingJobsResponseSuccess
|
|
6049
6150
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListLabelingJobsResponse]
|
|
6050
6151
|
def labeling_job_summary_list: () -> ::Array[Types::LabelingJobSummary]
|
|
@@ -7194,6 +7295,16 @@ module Aws
|
|
|
7194
7295
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
7195
7296
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
7196
7297
|
|
|
7298
|
+
interface _StopJobResponseSuccess
|
|
7299
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopJobResponse]
|
|
7300
|
+
end
|
|
7301
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#stop_job-instance_method
|
|
7302
|
+
def stop_job: (
|
|
7303
|
+
job_name: ::String,
|
|
7304
|
+
job_category: ("AgentRFT" | "AgentRFTEvaluation")
|
|
7305
|
+
) -> _StopJobResponseSuccess
|
|
7306
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopJobResponseSuccess
|
|
7307
|
+
|
|
7197
7308
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#stop_labeling_job-instance_method
|
|
7198
7309
|
def stop_labeling_job: (
|
|
7199
7310
|
labeling_job_name: ::String
|