aws-sdk-sagemaker 1.245.0 → 1.247.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 +496 -10
- data/lib/aws-sdk-sagemaker/client_api.rb +234 -0
- data/lib/aws-sdk-sagemaker/endpoints.rb +112 -0
- data/lib/aws-sdk-sagemaker/plugins/endpoints.rb +16 -0
- data/lib/aws-sdk-sagemaker/types.rb +641 -26
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/sig/client.rbs +148 -7
- data/sig/types.rbs +151 -0
- metadata +2 -2
@@ -502,6 +502,20 @@ module Aws::SageMaker
|
|
502
502
|
end
|
503
503
|
end
|
504
504
|
|
505
|
+
class CreateMlflowTrackingServer
|
506
|
+
def self.build(context)
|
507
|
+
unless context.config.regional_endpoint
|
508
|
+
endpoint = context.config.endpoint.to_s
|
509
|
+
end
|
510
|
+
Aws::SageMaker::EndpointParameters.new(
|
511
|
+
region: context.config.region,
|
512
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
513
|
+
use_fips: context.config.use_fips_endpoint,
|
514
|
+
endpoint: endpoint,
|
515
|
+
)
|
516
|
+
end
|
517
|
+
end
|
518
|
+
|
505
519
|
class CreateModel
|
506
520
|
def self.build(context)
|
507
521
|
unless context.config.regional_endpoint
|
@@ -684,6 +698,20 @@ module Aws::SageMaker
|
|
684
698
|
end
|
685
699
|
end
|
686
700
|
|
701
|
+
class CreatePresignedMlflowTrackingServerUrl
|
702
|
+
def self.build(context)
|
703
|
+
unless context.config.regional_endpoint
|
704
|
+
endpoint = context.config.endpoint.to_s
|
705
|
+
end
|
706
|
+
Aws::SageMaker::EndpointParameters.new(
|
707
|
+
region: context.config.region,
|
708
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
709
|
+
use_fips: context.config.use_fips_endpoint,
|
710
|
+
endpoint: endpoint,
|
711
|
+
)
|
712
|
+
end
|
713
|
+
end
|
714
|
+
|
687
715
|
class CreatePresignedNotebookInstanceUrl
|
688
716
|
def self.build(context)
|
689
717
|
unless context.config.regional_endpoint
|
@@ -1244,6 +1272,20 @@ module Aws::SageMaker
|
|
1244
1272
|
end
|
1245
1273
|
end
|
1246
1274
|
|
1275
|
+
class DeleteMlflowTrackingServer
|
1276
|
+
def self.build(context)
|
1277
|
+
unless context.config.regional_endpoint
|
1278
|
+
endpoint = context.config.endpoint.to_s
|
1279
|
+
end
|
1280
|
+
Aws::SageMaker::EndpointParameters.new(
|
1281
|
+
region: context.config.region,
|
1282
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1283
|
+
use_fips: context.config.use_fips_endpoint,
|
1284
|
+
endpoint: endpoint,
|
1285
|
+
)
|
1286
|
+
end
|
1287
|
+
end
|
1288
|
+
|
1247
1289
|
class DeleteModel
|
1248
1290
|
def self.build(context)
|
1249
1291
|
unless context.config.regional_endpoint
|
@@ -2042,6 +2084,20 @@ module Aws::SageMaker
|
|
2042
2084
|
end
|
2043
2085
|
end
|
2044
2086
|
|
2087
|
+
class DescribeMlflowTrackingServer
|
2088
|
+
def self.build(context)
|
2089
|
+
unless context.config.regional_endpoint
|
2090
|
+
endpoint = context.config.endpoint.to_s
|
2091
|
+
end
|
2092
|
+
Aws::SageMaker::EndpointParameters.new(
|
2093
|
+
region: context.config.region,
|
2094
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
2095
|
+
use_fips: context.config.use_fips_endpoint,
|
2096
|
+
endpoint: endpoint,
|
2097
|
+
)
|
2098
|
+
end
|
2099
|
+
end
|
2100
|
+
|
2045
2101
|
class DescribeModel
|
2046
2102
|
def self.build(context)
|
2047
2103
|
unless context.config.regional_endpoint
|
@@ -3092,6 +3148,20 @@ module Aws::SageMaker
|
|
3092
3148
|
end
|
3093
3149
|
end
|
3094
3150
|
|
3151
|
+
class ListMlflowTrackingServers
|
3152
|
+
def self.build(context)
|
3153
|
+
unless context.config.regional_endpoint
|
3154
|
+
endpoint = context.config.endpoint.to_s
|
3155
|
+
end
|
3156
|
+
Aws::SageMaker::EndpointParameters.new(
|
3157
|
+
region: context.config.region,
|
3158
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
3159
|
+
use_fips: context.config.use_fips_endpoint,
|
3160
|
+
endpoint: endpoint,
|
3161
|
+
)
|
3162
|
+
end
|
3163
|
+
end
|
3164
|
+
|
3095
3165
|
class ListModelBiasJobDefinitions
|
3096
3166
|
def self.build(context)
|
3097
3167
|
unless context.config.regional_endpoint
|
@@ -3736,6 +3806,20 @@ module Aws::SageMaker
|
|
3736
3806
|
end
|
3737
3807
|
end
|
3738
3808
|
|
3809
|
+
class StartMlflowTrackingServer
|
3810
|
+
def self.build(context)
|
3811
|
+
unless context.config.regional_endpoint
|
3812
|
+
endpoint = context.config.endpoint.to_s
|
3813
|
+
end
|
3814
|
+
Aws::SageMaker::EndpointParameters.new(
|
3815
|
+
region: context.config.region,
|
3816
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
3817
|
+
use_fips: context.config.use_fips_endpoint,
|
3818
|
+
endpoint: endpoint,
|
3819
|
+
)
|
3820
|
+
end
|
3821
|
+
end
|
3822
|
+
|
3739
3823
|
class StartMonitoringSchedule
|
3740
3824
|
def self.build(context)
|
3741
3825
|
unless context.config.regional_endpoint
|
@@ -3890,6 +3974,20 @@ module Aws::SageMaker
|
|
3890
3974
|
end
|
3891
3975
|
end
|
3892
3976
|
|
3977
|
+
class StopMlflowTrackingServer
|
3978
|
+
def self.build(context)
|
3979
|
+
unless context.config.regional_endpoint
|
3980
|
+
endpoint = context.config.endpoint.to_s
|
3981
|
+
end
|
3982
|
+
Aws::SageMaker::EndpointParameters.new(
|
3983
|
+
region: context.config.region,
|
3984
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
3985
|
+
use_fips: context.config.use_fips_endpoint,
|
3986
|
+
endpoint: endpoint,
|
3987
|
+
)
|
3988
|
+
end
|
3989
|
+
end
|
3990
|
+
|
3893
3991
|
class StopMonitoringSchedule
|
3894
3992
|
def self.build(context)
|
3895
3993
|
unless context.config.regional_endpoint
|
@@ -4268,6 +4366,20 @@ module Aws::SageMaker
|
|
4268
4366
|
end
|
4269
4367
|
end
|
4270
4368
|
|
4369
|
+
class UpdateMlflowTrackingServer
|
4370
|
+
def self.build(context)
|
4371
|
+
unless context.config.regional_endpoint
|
4372
|
+
endpoint = context.config.endpoint.to_s
|
4373
|
+
end
|
4374
|
+
Aws::SageMaker::EndpointParameters.new(
|
4375
|
+
region: context.config.region,
|
4376
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
4377
|
+
use_fips: context.config.use_fips_endpoint,
|
4378
|
+
endpoint: endpoint,
|
4379
|
+
)
|
4380
|
+
end
|
4381
|
+
end
|
4382
|
+
|
4271
4383
|
class UpdateModelCard
|
4272
4384
|
def self.build(context)
|
4273
4385
|
unless context.config.regional_endpoint
|
@@ -128,6 +128,8 @@ module Aws::SageMaker
|
|
128
128
|
Aws::SageMaker::Endpoints::CreateInferenceRecommendationsJob.build(context)
|
129
129
|
when :create_labeling_job
|
130
130
|
Aws::SageMaker::Endpoints::CreateLabelingJob.build(context)
|
131
|
+
when :create_mlflow_tracking_server
|
132
|
+
Aws::SageMaker::Endpoints::CreateMlflowTrackingServer.build(context)
|
131
133
|
when :create_model
|
132
134
|
Aws::SageMaker::Endpoints::CreateModel.build(context)
|
133
135
|
when :create_model_bias_job_definition
|
@@ -154,6 +156,8 @@ module Aws::SageMaker
|
|
154
156
|
Aws::SageMaker::Endpoints::CreatePipeline.build(context)
|
155
157
|
when :create_presigned_domain_url
|
156
158
|
Aws::SageMaker::Endpoints::CreatePresignedDomainUrl.build(context)
|
159
|
+
when :create_presigned_mlflow_tracking_server_url
|
160
|
+
Aws::SageMaker::Endpoints::CreatePresignedMlflowTrackingServerUrl.build(context)
|
157
161
|
when :create_presigned_notebook_instance_url
|
158
162
|
Aws::SageMaker::Endpoints::CreatePresignedNotebookInstanceUrl.build(context)
|
159
163
|
when :create_processing_job
|
@@ -234,6 +238,8 @@ module Aws::SageMaker
|
|
234
238
|
Aws::SageMaker::Endpoints::DeleteInferenceComponent.build(context)
|
235
239
|
when :delete_inference_experiment
|
236
240
|
Aws::SageMaker::Endpoints::DeleteInferenceExperiment.build(context)
|
241
|
+
when :delete_mlflow_tracking_server
|
242
|
+
Aws::SageMaker::Endpoints::DeleteMlflowTrackingServer.build(context)
|
237
243
|
when :delete_model
|
238
244
|
Aws::SageMaker::Endpoints::DeleteModel.build(context)
|
239
245
|
when :delete_model_bias_job_definition
|
@@ -348,6 +354,8 @@ module Aws::SageMaker
|
|
348
354
|
Aws::SageMaker::Endpoints::DescribeLabelingJob.build(context)
|
349
355
|
when :describe_lineage_group
|
350
356
|
Aws::SageMaker::Endpoints::DescribeLineageGroup.build(context)
|
357
|
+
when :describe_mlflow_tracking_server
|
358
|
+
Aws::SageMaker::Endpoints::DescribeMlflowTrackingServer.build(context)
|
351
359
|
when :describe_model
|
352
360
|
Aws::SageMaker::Endpoints::DescribeModel.build(context)
|
353
361
|
when :describe_model_bias_job_definition
|
@@ -498,6 +506,8 @@ module Aws::SageMaker
|
|
498
506
|
Aws::SageMaker::Endpoints::ListLabelingJobsForWorkteam.build(context)
|
499
507
|
when :list_lineage_groups
|
500
508
|
Aws::SageMaker::Endpoints::ListLineageGroups.build(context)
|
509
|
+
when :list_mlflow_tracking_servers
|
510
|
+
Aws::SageMaker::Endpoints::ListMlflowTrackingServers.build(context)
|
501
511
|
when :list_model_bias_job_definitions
|
502
512
|
Aws::SageMaker::Endpoints::ListModelBiasJobDefinitions.build(context)
|
503
513
|
when :list_model_card_export_jobs
|
@@ -590,6 +600,8 @@ module Aws::SageMaker
|
|
590
600
|
Aws::SageMaker::Endpoints::StartEdgeDeploymentStage.build(context)
|
591
601
|
when :start_inference_experiment
|
592
602
|
Aws::SageMaker::Endpoints::StartInferenceExperiment.build(context)
|
603
|
+
when :start_mlflow_tracking_server
|
604
|
+
Aws::SageMaker::Endpoints::StartMlflowTrackingServer.build(context)
|
593
605
|
when :start_monitoring_schedule
|
594
606
|
Aws::SageMaker::Endpoints::StartMonitoringSchedule.build(context)
|
595
607
|
when :start_notebook_instance
|
@@ -612,6 +624,8 @@ module Aws::SageMaker
|
|
612
624
|
Aws::SageMaker::Endpoints::StopInferenceRecommendationsJob.build(context)
|
613
625
|
when :stop_labeling_job
|
614
626
|
Aws::SageMaker::Endpoints::StopLabelingJob.build(context)
|
627
|
+
when :stop_mlflow_tracking_server
|
628
|
+
Aws::SageMaker::Endpoints::StopMlflowTrackingServer.build(context)
|
615
629
|
when :stop_monitoring_schedule
|
616
630
|
Aws::SageMaker::Endpoints::StopMonitoringSchedule.build(context)
|
617
631
|
when :stop_notebook_instance
|
@@ -666,6 +680,8 @@ module Aws::SageMaker
|
|
666
680
|
Aws::SageMaker::Endpoints::UpdateInferenceComponentRuntimeConfig.build(context)
|
667
681
|
when :update_inference_experiment
|
668
682
|
Aws::SageMaker::Endpoints::UpdateInferenceExperiment.build(context)
|
683
|
+
when :update_mlflow_tracking_server
|
684
|
+
Aws::SageMaker::Endpoints::UpdateMlflowTrackingServer.build(context)
|
669
685
|
when :update_model_card
|
670
686
|
Aws::SageMaker::Endpoints::UpdateModelCard.build(context)
|
671
687
|
when :update_model_package
|