aws-sdk-sagemaker 1.304.0 → 1.305.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 +5 -6
- data/lib/aws-sdk-sagemaker/client_api.rb +253 -253
- data/lib/aws-sdk-sagemaker/types.rb +16 -14
- data/lib/aws-sdk-sagemaker/waiters.rb +76 -76
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/types.rbs +1 -1
- metadata +1 -1
@@ -2130,12 +2130,13 @@ module Aws::SageMaker
|
|
2130
2130
|
include Aws::Structure
|
2131
2131
|
end
|
2132
2132
|
|
2133
|
-
# <note markdown="1"> This data type is intended for use exclusively by
|
2133
|
+
# <note markdown="1"> This data type is intended for use exclusively by
|
2134
|
+
# SageMaker Canvas and
|
2134
2135
|
# cannot be used in other contexts at the moment.
|
2135
2136
|
#
|
2136
2137
|
# </note>
|
2137
2138
|
#
|
2138
|
-
#
|
2139
|
+
# Specifies the compute configuration for an AutoML job V2.
|
2139
2140
|
#
|
2140
2141
|
# @!attribute [rw] emr_serverless_compute_config
|
2141
2142
|
# The configuration for using [ EMR Serverless][1] to run the AutoML
|
@@ -20877,12 +20878,13 @@ module Aws::SageMaker
|
|
20877
20878
|
include Aws::Structure
|
20878
20879
|
end
|
20879
20880
|
|
20880
|
-
# <note markdown="1"> This data type is intended for use exclusively by
|
20881
|
+
# <note markdown="1"> This data type is intended for use exclusively by
|
20882
|
+
# SageMaker Canvas and
|
20881
20883
|
# cannot be used in other contexts at the moment.
|
20882
20884
|
#
|
20883
20885
|
# </note>
|
20884
20886
|
#
|
20885
|
-
#
|
20887
|
+
# Specifies the compute configuration for the EMR Serverless job.
|
20886
20888
|
#
|
20887
20889
|
# @!attribute [rw] execution_role_arn
|
20888
20890
|
# The ARN of the IAM role granting the AutoML job V2 the necessary
|
@@ -33606,14 +33608,6 @@ module Aws::SageMaker
|
|
33606
33608
|
# The name of the metric.
|
33607
33609
|
# @return [String]
|
33608
33610
|
#
|
33609
|
-
# @!attribute [rw] value
|
33610
|
-
# The value of the metric.
|
33611
|
-
# @return [Float]
|
33612
|
-
#
|
33613
|
-
# @!attribute [rw] set
|
33614
|
-
# The dataset split from which the AutoML job produced the metric.
|
33615
|
-
# @return [String]
|
33616
|
-
#
|
33617
33611
|
# @!attribute [rw] standard_metric_name
|
33618
33612
|
# The name of the standard metric.
|
33619
33613
|
#
|
@@ -33627,13 +33621,21 @@ module Aws::SageMaker
|
|
33627
33621
|
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-model-support-validation.html#autopilot-metrics
|
33628
33622
|
# @return [String]
|
33629
33623
|
#
|
33624
|
+
# @!attribute [rw] value
|
33625
|
+
# The value of the metric.
|
33626
|
+
# @return [Float]
|
33627
|
+
#
|
33628
|
+
# @!attribute [rw] set
|
33629
|
+
# The dataset split from which the AutoML job produced the metric.
|
33630
|
+
# @return [String]
|
33631
|
+
#
|
33630
33632
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MetricDatum AWS API Documentation
|
33631
33633
|
#
|
33632
33634
|
class MetricDatum < Struct.new(
|
33633
33635
|
:metric_name,
|
33636
|
+
:standard_metric_name,
|
33634
33637
|
:value,
|
33635
|
-
:set
|
33636
|
-
:standard_metric_name)
|
33638
|
+
:set)
|
33637
33639
|
SENSITIVE = []
|
33638
33640
|
include Aws::Structure
|
33639
33641
|
end
|
@@ -102,15 +102,15 @@ module Aws::SageMaker
|
|
102
102
|
operation_name: :describe_endpoint,
|
103
103
|
acceptors: [
|
104
104
|
{
|
105
|
-
"expected" => "ValidationException",
|
106
105
|
"matcher" => "error",
|
107
|
-
"state" => "success"
|
106
|
+
"state" => "success",
|
107
|
+
"expected" => "ValidationException"
|
108
108
|
},
|
109
109
|
{
|
110
|
-
"expected" => "Failed",
|
111
110
|
"matcher" => "path",
|
111
|
+
"argument" => "endpoint_status",
|
112
112
|
"state" => "failure",
|
113
|
-
"
|
113
|
+
"expected" => "Failed"
|
114
114
|
}
|
115
115
|
]
|
116
116
|
)
|
@@ -145,21 +145,21 @@ module Aws::SageMaker
|
|
145
145
|
operation_name: :describe_endpoint,
|
146
146
|
acceptors: [
|
147
147
|
{
|
148
|
-
"expected" => "InService",
|
149
148
|
"matcher" => "path",
|
149
|
+
"argument" => "endpoint_status",
|
150
150
|
"state" => "success",
|
151
|
-
"
|
151
|
+
"expected" => "InService"
|
152
152
|
},
|
153
153
|
{
|
154
|
-
"expected" => "Failed",
|
155
154
|
"matcher" => "path",
|
155
|
+
"argument" => "endpoint_status",
|
156
156
|
"state" => "failure",
|
157
|
-
"
|
157
|
+
"expected" => "Failed"
|
158
158
|
},
|
159
159
|
{
|
160
|
-
"expected" => "ValidationException",
|
161
160
|
"matcher" => "error",
|
162
|
-
"state" => "failure"
|
161
|
+
"state" => "failure",
|
162
|
+
"expected" => "ValidationException"
|
163
163
|
}
|
164
164
|
]
|
165
165
|
)
|
@@ -194,21 +194,21 @@ module Aws::SageMaker
|
|
194
194
|
operation_name: :describe_image,
|
195
195
|
acceptors: [
|
196
196
|
{
|
197
|
-
"expected" => "CREATED",
|
198
197
|
"matcher" => "path",
|
198
|
+
"argument" => "image_status",
|
199
199
|
"state" => "success",
|
200
|
-
"
|
200
|
+
"expected" => "CREATED"
|
201
201
|
},
|
202
202
|
{
|
203
|
-
"expected" => "CREATE_FAILED",
|
204
203
|
"matcher" => "path",
|
204
|
+
"argument" => "image_status",
|
205
205
|
"state" => "failure",
|
206
|
-
"
|
206
|
+
"expected" => "CREATE_FAILED"
|
207
207
|
},
|
208
208
|
{
|
209
|
-
"expected" => "ValidationException",
|
210
209
|
"matcher" => "error",
|
211
|
-
"state" => "failure"
|
210
|
+
"state" => "failure",
|
211
|
+
"expected" => "ValidationException"
|
212
212
|
}
|
213
213
|
]
|
214
214
|
)
|
@@ -243,20 +243,20 @@ module Aws::SageMaker
|
|
243
243
|
operation_name: :describe_image,
|
244
244
|
acceptors: [
|
245
245
|
{
|
246
|
-
"expected" => "ResourceNotFoundException",
|
247
246
|
"matcher" => "error",
|
248
|
-
"state" => "success"
|
247
|
+
"state" => "success",
|
248
|
+
"expected" => "ResourceNotFoundException"
|
249
249
|
},
|
250
250
|
{
|
251
|
-
"expected" => "DELETE_FAILED",
|
252
251
|
"matcher" => "path",
|
252
|
+
"argument" => "image_status",
|
253
253
|
"state" => "failure",
|
254
|
-
"
|
254
|
+
"expected" => "DELETE_FAILED"
|
255
255
|
},
|
256
256
|
{
|
257
|
-
"expected" => "ValidationException",
|
258
257
|
"matcher" => "error",
|
259
|
-
"state" => "failure"
|
258
|
+
"state" => "failure",
|
259
|
+
"expected" => "ValidationException"
|
260
260
|
}
|
261
261
|
]
|
262
262
|
)
|
@@ -291,21 +291,21 @@ module Aws::SageMaker
|
|
291
291
|
operation_name: :describe_image,
|
292
292
|
acceptors: [
|
293
293
|
{
|
294
|
-
"expected" => "CREATED",
|
295
294
|
"matcher" => "path",
|
295
|
+
"argument" => "image_status",
|
296
296
|
"state" => "success",
|
297
|
-
"
|
297
|
+
"expected" => "CREATED"
|
298
298
|
},
|
299
299
|
{
|
300
|
-
"expected" => "UPDATE_FAILED",
|
301
300
|
"matcher" => "path",
|
301
|
+
"argument" => "image_status",
|
302
302
|
"state" => "failure",
|
303
|
-
"
|
303
|
+
"expected" => "UPDATE_FAILED"
|
304
304
|
},
|
305
305
|
{
|
306
|
-
"expected" => "ValidationException",
|
307
306
|
"matcher" => "error",
|
308
|
-
"state" => "failure"
|
307
|
+
"state" => "failure",
|
308
|
+
"expected" => "ValidationException"
|
309
309
|
}
|
310
310
|
]
|
311
311
|
)
|
@@ -340,21 +340,21 @@ module Aws::SageMaker
|
|
340
340
|
operation_name: :describe_image_version,
|
341
341
|
acceptors: [
|
342
342
|
{
|
343
|
-
"expected" => "CREATED",
|
344
343
|
"matcher" => "path",
|
344
|
+
"argument" => "image_version_status",
|
345
345
|
"state" => "success",
|
346
|
-
"
|
346
|
+
"expected" => "CREATED"
|
347
347
|
},
|
348
348
|
{
|
349
|
-
"expected" => "CREATE_FAILED",
|
350
349
|
"matcher" => "path",
|
350
|
+
"argument" => "image_version_status",
|
351
351
|
"state" => "failure",
|
352
|
-
"
|
352
|
+
"expected" => "CREATE_FAILED"
|
353
353
|
},
|
354
354
|
{
|
355
|
-
"expected" => "ValidationException",
|
356
355
|
"matcher" => "error",
|
357
|
-
"state" => "failure"
|
356
|
+
"state" => "failure",
|
357
|
+
"expected" => "ValidationException"
|
358
358
|
}
|
359
359
|
]
|
360
360
|
)
|
@@ -389,20 +389,20 @@ module Aws::SageMaker
|
|
389
389
|
operation_name: :describe_image_version,
|
390
390
|
acceptors: [
|
391
391
|
{
|
392
|
-
"expected" => "ResourceNotFoundException",
|
393
392
|
"matcher" => "error",
|
394
|
-
"state" => "success"
|
393
|
+
"state" => "success",
|
394
|
+
"expected" => "ResourceNotFoundException"
|
395
395
|
},
|
396
396
|
{
|
397
|
-
"expected" => "DELETE_FAILED",
|
398
397
|
"matcher" => "path",
|
398
|
+
"argument" => "image_version_status",
|
399
399
|
"state" => "failure",
|
400
|
-
"
|
400
|
+
"expected" => "DELETE_FAILED"
|
401
401
|
},
|
402
402
|
{
|
403
|
-
"expected" => "ValidationException",
|
404
403
|
"matcher" => "error",
|
405
|
-
"state" => "failure"
|
404
|
+
"state" => "failure",
|
405
|
+
"expected" => "ValidationException"
|
406
406
|
}
|
407
407
|
]
|
408
408
|
)
|
@@ -437,15 +437,15 @@ module Aws::SageMaker
|
|
437
437
|
operation_name: :describe_notebook_instance,
|
438
438
|
acceptors: [
|
439
439
|
{
|
440
|
-
"expected" => "ValidationException",
|
441
440
|
"matcher" => "error",
|
442
|
-
"state" => "success"
|
441
|
+
"state" => "success",
|
442
|
+
"expected" => "ValidationException"
|
443
443
|
},
|
444
444
|
{
|
445
|
-
"expected" => "Failed",
|
446
445
|
"matcher" => "path",
|
446
|
+
"argument" => "notebook_instance_status",
|
447
447
|
"state" => "failure",
|
448
|
-
"
|
448
|
+
"expected" => "Failed"
|
449
449
|
}
|
450
450
|
]
|
451
451
|
)
|
@@ -480,16 +480,16 @@ module Aws::SageMaker
|
|
480
480
|
operation_name: :describe_notebook_instance,
|
481
481
|
acceptors: [
|
482
482
|
{
|
483
|
-
"expected" => "InService",
|
484
483
|
"matcher" => "path",
|
484
|
+
"argument" => "notebook_instance_status",
|
485
485
|
"state" => "success",
|
486
|
-
"
|
486
|
+
"expected" => "InService"
|
487
487
|
},
|
488
488
|
{
|
489
|
-
"expected" => "Failed",
|
490
489
|
"matcher" => "path",
|
490
|
+
"argument" => "notebook_instance_status",
|
491
491
|
"state" => "failure",
|
492
|
-
"
|
492
|
+
"expected" => "Failed"
|
493
493
|
}
|
494
494
|
]
|
495
495
|
)
|
@@ -524,16 +524,16 @@ module Aws::SageMaker
|
|
524
524
|
operation_name: :describe_notebook_instance,
|
525
525
|
acceptors: [
|
526
526
|
{
|
527
|
-
"expected" => "Stopped",
|
528
527
|
"matcher" => "path",
|
528
|
+
"argument" => "notebook_instance_status",
|
529
529
|
"state" => "success",
|
530
|
-
"
|
530
|
+
"expected" => "Stopped"
|
531
531
|
},
|
532
532
|
{
|
533
|
-
"expected" => "Failed",
|
534
533
|
"matcher" => "path",
|
534
|
+
"argument" => "notebook_instance_status",
|
535
535
|
"state" => "failure",
|
536
|
-
"
|
536
|
+
"expected" => "Failed"
|
537
537
|
}
|
538
538
|
]
|
539
539
|
)
|
@@ -568,27 +568,27 @@ module Aws::SageMaker
|
|
568
568
|
operation_name: :describe_processing_job,
|
569
569
|
acceptors: [
|
570
570
|
{
|
571
|
-
"expected" => "Completed",
|
572
571
|
"matcher" => "path",
|
572
|
+
"argument" => "processing_job_status",
|
573
573
|
"state" => "success",
|
574
|
-
"
|
574
|
+
"expected" => "Completed"
|
575
575
|
},
|
576
576
|
{
|
577
|
-
"expected" => "Stopped",
|
578
577
|
"matcher" => "path",
|
578
|
+
"argument" => "processing_job_status",
|
579
579
|
"state" => "success",
|
580
|
-
"
|
580
|
+
"expected" => "Stopped"
|
581
581
|
},
|
582
582
|
{
|
583
|
-
"expected" => "Failed",
|
584
583
|
"matcher" => "path",
|
584
|
+
"argument" => "processing_job_status",
|
585
585
|
"state" => "failure",
|
586
|
-
"
|
586
|
+
"expected" => "Failed"
|
587
587
|
},
|
588
588
|
{
|
589
|
-
"expected" => "ValidationException",
|
590
589
|
"matcher" => "error",
|
591
|
-
"state" => "failure"
|
590
|
+
"state" => "failure",
|
591
|
+
"expected" => "ValidationException"
|
592
592
|
}
|
593
593
|
]
|
594
594
|
)
|
@@ -623,27 +623,27 @@ module Aws::SageMaker
|
|
623
623
|
operation_name: :describe_training_job,
|
624
624
|
acceptors: [
|
625
625
|
{
|
626
|
-
"expected" => "Completed",
|
627
626
|
"matcher" => "path",
|
627
|
+
"argument" => "training_job_status",
|
628
628
|
"state" => "success",
|
629
|
-
"
|
629
|
+
"expected" => "Completed"
|
630
630
|
},
|
631
631
|
{
|
632
|
-
"expected" => "Stopped",
|
633
632
|
"matcher" => "path",
|
633
|
+
"argument" => "training_job_status",
|
634
634
|
"state" => "success",
|
635
|
-
"
|
635
|
+
"expected" => "Stopped"
|
636
636
|
},
|
637
637
|
{
|
638
|
-
"expected" => "Failed",
|
639
638
|
"matcher" => "path",
|
639
|
+
"argument" => "training_job_status",
|
640
640
|
"state" => "failure",
|
641
|
-
"
|
641
|
+
"expected" => "Failed"
|
642
642
|
},
|
643
643
|
{
|
644
|
-
"expected" => "ValidationException",
|
645
644
|
"matcher" => "error",
|
646
|
-
"state" => "failure"
|
645
|
+
"state" => "failure",
|
646
|
+
"expected" => "ValidationException"
|
647
647
|
}
|
648
648
|
]
|
649
649
|
)
|
@@ -678,27 +678,27 @@ module Aws::SageMaker
|
|
678
678
|
operation_name: :describe_transform_job,
|
679
679
|
acceptors: [
|
680
680
|
{
|
681
|
-
"expected" => "Completed",
|
682
681
|
"matcher" => "path",
|
682
|
+
"argument" => "transform_job_status",
|
683
683
|
"state" => "success",
|
684
|
-
"
|
684
|
+
"expected" => "Completed"
|
685
685
|
},
|
686
686
|
{
|
687
|
-
"expected" => "Stopped",
|
688
687
|
"matcher" => "path",
|
688
|
+
"argument" => "transform_job_status",
|
689
689
|
"state" => "success",
|
690
|
-
"
|
690
|
+
"expected" => "Stopped"
|
691
691
|
},
|
692
692
|
{
|
693
|
-
"expected" => "Failed",
|
694
693
|
"matcher" => "path",
|
694
|
+
"argument" => "transform_job_status",
|
695
695
|
"state" => "failure",
|
696
|
-
"
|
696
|
+
"expected" => "Failed"
|
697
697
|
},
|
698
698
|
{
|
699
|
-
"expected" => "ValidationException",
|
700
699
|
"matcher" => "error",
|
701
|
-
"state" => "failure"
|
700
|
+
"state" => "failure",
|
701
|
+
"expected" => "ValidationException"
|
702
702
|
}
|
703
703
|
]
|
704
704
|
)
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
data/sig/types.rbs
CHANGED
@@ -7074,9 +7074,9 @@ module Aws::SageMaker
|
|
7074
7074
|
|
7075
7075
|
class MetricDatum
|
7076
7076
|
attr_accessor metric_name: ("Accuracy" | "MSE" | "F1" | "F1macro" | "AUC" | "RMSE" | "BalancedAccuracy" | "R2" | "Recall" | "RecallMacro" | "Precision" | "PrecisionMacro" | "MAE" | "MAPE" | "MASE" | "WAPE" | "AverageWeightedQuantileLoss")
|
7077
|
+
attr_accessor standard_metric_name: ("Accuracy" | "MSE" | "F1" | "F1macro" | "AUC" | "RMSE" | "MAE" | "R2" | "BalancedAccuracy" | "Precision" | "PrecisionMacro" | "Recall" | "RecallMacro" | "LogLoss" | "InferenceLatency" | "MAPE" | "MASE" | "WAPE" | "AverageWeightedQuantileLoss" | "Rouge1" | "Rouge2" | "RougeL" | "RougeLSum" | "Perplexity" | "ValidationLoss" | "TrainingLoss")
|
7077
7078
|
attr_accessor value: ::Float
|
7078
7079
|
attr_accessor set: ("Train" | "Validation" | "Test")
|
7079
|
-
attr_accessor standard_metric_name: ("Accuracy" | "MSE" | "F1" | "F1macro" | "AUC" | "RMSE" | "MAE" | "R2" | "BalancedAccuracy" | "Precision" | "PrecisionMacro" | "Recall" | "RecallMacro" | "LogLoss" | "InferenceLatency" | "MAPE" | "MASE" | "WAPE" | "AverageWeightedQuantileLoss" | "Rouge1" | "Rouge2" | "RougeL" | "RougeLSum" | "Perplexity" | "ValidationLoss" | "TrainingLoss")
|
7080
7080
|
SENSITIVE: []
|
7081
7081
|
end
|
7082
7082
|
|