aws-sdk-sagemaker 1.246.0 → 1.248.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 +623 -61
- data/lib/aws-sdk-sagemaker/client_api.rb +299 -13
- data/lib/aws-sdk-sagemaker/endpoints.rb +140 -0
- data/lib/aws-sdk-sagemaker/plugins/endpoints.rb +20 -0
- data/lib/aws-sdk-sagemaker/types.rb +714 -11
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +205 -11
- data/sig/types.rbs +191 -7
- metadata +2 -2
@@ -390,6 +390,20 @@ module Aws::SageMaker
|
|
390
390
|
end
|
391
391
|
end
|
392
392
|
|
393
|
+
class CreateHubContentReference
|
394
|
+
def self.build(context)
|
395
|
+
unless context.config.regional_endpoint
|
396
|
+
endpoint = context.config.endpoint.to_s
|
397
|
+
end
|
398
|
+
Aws::SageMaker::EndpointParameters.new(
|
399
|
+
region: context.config.region,
|
400
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
401
|
+
use_fips: context.config.use_fips_endpoint,
|
402
|
+
endpoint: endpoint,
|
403
|
+
)
|
404
|
+
end
|
405
|
+
end
|
406
|
+
|
393
407
|
class CreateHumanTaskUi
|
394
408
|
def self.build(context)
|
395
409
|
unless context.config.regional_endpoint
|
@@ -502,6 +516,20 @@ module Aws::SageMaker
|
|
502
516
|
end
|
503
517
|
end
|
504
518
|
|
519
|
+
class CreateMlflowTrackingServer
|
520
|
+
def self.build(context)
|
521
|
+
unless context.config.regional_endpoint
|
522
|
+
endpoint = context.config.endpoint.to_s
|
523
|
+
end
|
524
|
+
Aws::SageMaker::EndpointParameters.new(
|
525
|
+
region: context.config.region,
|
526
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
527
|
+
use_fips: context.config.use_fips_endpoint,
|
528
|
+
endpoint: endpoint,
|
529
|
+
)
|
530
|
+
end
|
531
|
+
end
|
532
|
+
|
505
533
|
class CreateModel
|
506
534
|
def self.build(context)
|
507
535
|
unless context.config.regional_endpoint
|
@@ -684,6 +712,20 @@ module Aws::SageMaker
|
|
684
712
|
end
|
685
713
|
end
|
686
714
|
|
715
|
+
class CreatePresignedMlflowTrackingServerUrl
|
716
|
+
def self.build(context)
|
717
|
+
unless context.config.regional_endpoint
|
718
|
+
endpoint = context.config.endpoint.to_s
|
719
|
+
end
|
720
|
+
Aws::SageMaker::EndpointParameters.new(
|
721
|
+
region: context.config.region,
|
722
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
723
|
+
use_fips: context.config.use_fips_endpoint,
|
724
|
+
endpoint: endpoint,
|
725
|
+
)
|
726
|
+
end
|
727
|
+
end
|
728
|
+
|
687
729
|
class CreatePresignedNotebookInstanceUrl
|
688
730
|
def self.build(context)
|
689
731
|
unless context.config.regional_endpoint
|
@@ -1160,6 +1202,20 @@ module Aws::SageMaker
|
|
1160
1202
|
end
|
1161
1203
|
end
|
1162
1204
|
|
1205
|
+
class DeleteHubContentReference
|
1206
|
+
def self.build(context)
|
1207
|
+
unless context.config.regional_endpoint
|
1208
|
+
endpoint = context.config.endpoint.to_s
|
1209
|
+
end
|
1210
|
+
Aws::SageMaker::EndpointParameters.new(
|
1211
|
+
region: context.config.region,
|
1212
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1213
|
+
use_fips: context.config.use_fips_endpoint,
|
1214
|
+
endpoint: endpoint,
|
1215
|
+
)
|
1216
|
+
end
|
1217
|
+
end
|
1218
|
+
|
1163
1219
|
class DeleteHumanTaskUi
|
1164
1220
|
def self.build(context)
|
1165
1221
|
unless context.config.regional_endpoint
|
@@ -1244,6 +1300,20 @@ module Aws::SageMaker
|
|
1244
1300
|
end
|
1245
1301
|
end
|
1246
1302
|
|
1303
|
+
class DeleteMlflowTrackingServer
|
1304
|
+
def self.build(context)
|
1305
|
+
unless context.config.regional_endpoint
|
1306
|
+
endpoint = context.config.endpoint.to_s
|
1307
|
+
end
|
1308
|
+
Aws::SageMaker::EndpointParameters.new(
|
1309
|
+
region: context.config.region,
|
1310
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1311
|
+
use_fips: context.config.use_fips_endpoint,
|
1312
|
+
endpoint: endpoint,
|
1313
|
+
)
|
1314
|
+
end
|
1315
|
+
end
|
1316
|
+
|
1247
1317
|
class DeleteModel
|
1248
1318
|
def self.build(context)
|
1249
1319
|
unless context.config.regional_endpoint
|
@@ -2042,6 +2112,20 @@ module Aws::SageMaker
|
|
2042
2112
|
end
|
2043
2113
|
end
|
2044
2114
|
|
2115
|
+
class DescribeMlflowTrackingServer
|
2116
|
+
def self.build(context)
|
2117
|
+
unless context.config.regional_endpoint
|
2118
|
+
endpoint = context.config.endpoint.to_s
|
2119
|
+
end
|
2120
|
+
Aws::SageMaker::EndpointParameters.new(
|
2121
|
+
region: context.config.region,
|
2122
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
2123
|
+
use_fips: context.config.use_fips_endpoint,
|
2124
|
+
endpoint: endpoint,
|
2125
|
+
)
|
2126
|
+
end
|
2127
|
+
end
|
2128
|
+
|
2045
2129
|
class DescribeModel
|
2046
2130
|
def self.build(context)
|
2047
2131
|
unless context.config.regional_endpoint
|
@@ -3092,6 +3176,20 @@ module Aws::SageMaker
|
|
3092
3176
|
end
|
3093
3177
|
end
|
3094
3178
|
|
3179
|
+
class ListMlflowTrackingServers
|
3180
|
+
def self.build(context)
|
3181
|
+
unless context.config.regional_endpoint
|
3182
|
+
endpoint = context.config.endpoint.to_s
|
3183
|
+
end
|
3184
|
+
Aws::SageMaker::EndpointParameters.new(
|
3185
|
+
region: context.config.region,
|
3186
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
3187
|
+
use_fips: context.config.use_fips_endpoint,
|
3188
|
+
endpoint: endpoint,
|
3189
|
+
)
|
3190
|
+
end
|
3191
|
+
end
|
3192
|
+
|
3095
3193
|
class ListModelBiasJobDefinitions
|
3096
3194
|
def self.build(context)
|
3097
3195
|
unless context.config.regional_endpoint
|
@@ -3736,6 +3834,20 @@ module Aws::SageMaker
|
|
3736
3834
|
end
|
3737
3835
|
end
|
3738
3836
|
|
3837
|
+
class StartMlflowTrackingServer
|
3838
|
+
def self.build(context)
|
3839
|
+
unless context.config.regional_endpoint
|
3840
|
+
endpoint = context.config.endpoint.to_s
|
3841
|
+
end
|
3842
|
+
Aws::SageMaker::EndpointParameters.new(
|
3843
|
+
region: context.config.region,
|
3844
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
3845
|
+
use_fips: context.config.use_fips_endpoint,
|
3846
|
+
endpoint: endpoint,
|
3847
|
+
)
|
3848
|
+
end
|
3849
|
+
end
|
3850
|
+
|
3739
3851
|
class StartMonitoringSchedule
|
3740
3852
|
def self.build(context)
|
3741
3853
|
unless context.config.regional_endpoint
|
@@ -3890,6 +4002,20 @@ module Aws::SageMaker
|
|
3890
4002
|
end
|
3891
4003
|
end
|
3892
4004
|
|
4005
|
+
class StopMlflowTrackingServer
|
4006
|
+
def self.build(context)
|
4007
|
+
unless context.config.regional_endpoint
|
4008
|
+
endpoint = context.config.endpoint.to_s
|
4009
|
+
end
|
4010
|
+
Aws::SageMaker::EndpointParameters.new(
|
4011
|
+
region: context.config.region,
|
4012
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
4013
|
+
use_fips: context.config.use_fips_endpoint,
|
4014
|
+
endpoint: endpoint,
|
4015
|
+
)
|
4016
|
+
end
|
4017
|
+
end
|
4018
|
+
|
3893
4019
|
class StopMonitoringSchedule
|
3894
4020
|
def self.build(context)
|
3895
4021
|
unless context.config.regional_endpoint
|
@@ -4268,6 +4394,20 @@ module Aws::SageMaker
|
|
4268
4394
|
end
|
4269
4395
|
end
|
4270
4396
|
|
4397
|
+
class UpdateMlflowTrackingServer
|
4398
|
+
def self.build(context)
|
4399
|
+
unless context.config.regional_endpoint
|
4400
|
+
endpoint = context.config.endpoint.to_s
|
4401
|
+
end
|
4402
|
+
Aws::SageMaker::EndpointParameters.new(
|
4403
|
+
region: context.config.region,
|
4404
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
4405
|
+
use_fips: context.config.use_fips_endpoint,
|
4406
|
+
endpoint: endpoint,
|
4407
|
+
)
|
4408
|
+
end
|
4409
|
+
end
|
4410
|
+
|
4271
4411
|
class UpdateModelCard
|
4272
4412
|
def self.build(context)
|
4273
4413
|
unless context.config.regional_endpoint
|
@@ -112,6 +112,8 @@ module Aws::SageMaker
|
|
112
112
|
Aws::SageMaker::Endpoints::CreateFlowDefinition.build(context)
|
113
113
|
when :create_hub
|
114
114
|
Aws::SageMaker::Endpoints::CreateHub.build(context)
|
115
|
+
when :create_hub_content_reference
|
116
|
+
Aws::SageMaker::Endpoints::CreateHubContentReference.build(context)
|
115
117
|
when :create_human_task_ui
|
116
118
|
Aws::SageMaker::Endpoints::CreateHumanTaskUi.build(context)
|
117
119
|
when :create_hyper_parameter_tuning_job
|
@@ -128,6 +130,8 @@ module Aws::SageMaker
|
|
128
130
|
Aws::SageMaker::Endpoints::CreateInferenceRecommendationsJob.build(context)
|
129
131
|
when :create_labeling_job
|
130
132
|
Aws::SageMaker::Endpoints::CreateLabelingJob.build(context)
|
133
|
+
when :create_mlflow_tracking_server
|
134
|
+
Aws::SageMaker::Endpoints::CreateMlflowTrackingServer.build(context)
|
131
135
|
when :create_model
|
132
136
|
Aws::SageMaker::Endpoints::CreateModel.build(context)
|
133
137
|
when :create_model_bias_job_definition
|
@@ -154,6 +158,8 @@ module Aws::SageMaker
|
|
154
158
|
Aws::SageMaker::Endpoints::CreatePipeline.build(context)
|
155
159
|
when :create_presigned_domain_url
|
156
160
|
Aws::SageMaker::Endpoints::CreatePresignedDomainUrl.build(context)
|
161
|
+
when :create_presigned_mlflow_tracking_server_url
|
162
|
+
Aws::SageMaker::Endpoints::CreatePresignedMlflowTrackingServerUrl.build(context)
|
157
163
|
when :create_presigned_notebook_instance_url
|
158
164
|
Aws::SageMaker::Endpoints::CreatePresignedNotebookInstanceUrl.build(context)
|
159
165
|
when :create_processing_job
|
@@ -222,6 +228,8 @@ module Aws::SageMaker
|
|
222
228
|
Aws::SageMaker::Endpoints::DeleteHub.build(context)
|
223
229
|
when :delete_hub_content
|
224
230
|
Aws::SageMaker::Endpoints::DeleteHubContent.build(context)
|
231
|
+
when :delete_hub_content_reference
|
232
|
+
Aws::SageMaker::Endpoints::DeleteHubContentReference.build(context)
|
225
233
|
when :delete_human_task_ui
|
226
234
|
Aws::SageMaker::Endpoints::DeleteHumanTaskUi.build(context)
|
227
235
|
when :delete_hyper_parameter_tuning_job
|
@@ -234,6 +242,8 @@ module Aws::SageMaker
|
|
234
242
|
Aws::SageMaker::Endpoints::DeleteInferenceComponent.build(context)
|
235
243
|
when :delete_inference_experiment
|
236
244
|
Aws::SageMaker::Endpoints::DeleteInferenceExperiment.build(context)
|
245
|
+
when :delete_mlflow_tracking_server
|
246
|
+
Aws::SageMaker::Endpoints::DeleteMlflowTrackingServer.build(context)
|
237
247
|
when :delete_model
|
238
248
|
Aws::SageMaker::Endpoints::DeleteModel.build(context)
|
239
249
|
when :delete_model_bias_job_definition
|
@@ -348,6 +358,8 @@ module Aws::SageMaker
|
|
348
358
|
Aws::SageMaker::Endpoints::DescribeLabelingJob.build(context)
|
349
359
|
when :describe_lineage_group
|
350
360
|
Aws::SageMaker::Endpoints::DescribeLineageGroup.build(context)
|
361
|
+
when :describe_mlflow_tracking_server
|
362
|
+
Aws::SageMaker::Endpoints::DescribeMlflowTrackingServer.build(context)
|
351
363
|
when :describe_model
|
352
364
|
Aws::SageMaker::Endpoints::DescribeModel.build(context)
|
353
365
|
when :describe_model_bias_job_definition
|
@@ -498,6 +510,8 @@ module Aws::SageMaker
|
|
498
510
|
Aws::SageMaker::Endpoints::ListLabelingJobsForWorkteam.build(context)
|
499
511
|
when :list_lineage_groups
|
500
512
|
Aws::SageMaker::Endpoints::ListLineageGroups.build(context)
|
513
|
+
when :list_mlflow_tracking_servers
|
514
|
+
Aws::SageMaker::Endpoints::ListMlflowTrackingServers.build(context)
|
501
515
|
when :list_model_bias_job_definitions
|
502
516
|
Aws::SageMaker::Endpoints::ListModelBiasJobDefinitions.build(context)
|
503
517
|
when :list_model_card_export_jobs
|
@@ -590,6 +604,8 @@ module Aws::SageMaker
|
|
590
604
|
Aws::SageMaker::Endpoints::StartEdgeDeploymentStage.build(context)
|
591
605
|
when :start_inference_experiment
|
592
606
|
Aws::SageMaker::Endpoints::StartInferenceExperiment.build(context)
|
607
|
+
when :start_mlflow_tracking_server
|
608
|
+
Aws::SageMaker::Endpoints::StartMlflowTrackingServer.build(context)
|
593
609
|
when :start_monitoring_schedule
|
594
610
|
Aws::SageMaker::Endpoints::StartMonitoringSchedule.build(context)
|
595
611
|
when :start_notebook_instance
|
@@ -612,6 +628,8 @@ module Aws::SageMaker
|
|
612
628
|
Aws::SageMaker::Endpoints::StopInferenceRecommendationsJob.build(context)
|
613
629
|
when :stop_labeling_job
|
614
630
|
Aws::SageMaker::Endpoints::StopLabelingJob.build(context)
|
631
|
+
when :stop_mlflow_tracking_server
|
632
|
+
Aws::SageMaker::Endpoints::StopMlflowTrackingServer.build(context)
|
615
633
|
when :stop_monitoring_schedule
|
616
634
|
Aws::SageMaker::Endpoints::StopMonitoringSchedule.build(context)
|
617
635
|
when :stop_notebook_instance
|
@@ -666,6 +684,8 @@ module Aws::SageMaker
|
|
666
684
|
Aws::SageMaker::Endpoints::UpdateInferenceComponentRuntimeConfig.build(context)
|
667
685
|
when :update_inference_experiment
|
668
686
|
Aws::SageMaker::Endpoints::UpdateInferenceExperiment.build(context)
|
687
|
+
when :update_mlflow_tracking_server
|
688
|
+
Aws::SageMaker::Endpoints::UpdateMlflowTrackingServer.build(context)
|
669
689
|
when :update_model_card
|
670
690
|
Aws::SageMaker::Endpoints::UpdateModelCard.build(context)
|
671
691
|
when :update_model_package
|