aws-sdk-sagemaker 1.223.0 → 1.225.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 +851 -378
- data/lib/aws-sdk-sagemaker/client_api.rb +257 -71
- data/lib/aws-sdk-sagemaker/endpoints.rb +14 -0
- data/lib/aws-sdk-sagemaker/plugins/endpoints.rb +2 -0
- data/lib/aws-sdk-sagemaker/types.rb +837 -275
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +2 -2
@@ -964,6 +964,20 @@ module Aws::SageMaker
|
|
964
964
|
end
|
965
965
|
end
|
966
966
|
|
967
|
+
class DeleteCompilationJob
|
968
|
+
def self.build(context)
|
969
|
+
unless context.config.regional_endpoint
|
970
|
+
endpoint = context.config.endpoint.to_s
|
971
|
+
end
|
972
|
+
Aws::SageMaker::EndpointParameters.new(
|
973
|
+
region: context.config.region,
|
974
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
975
|
+
use_fips: context.config.use_fips_endpoint,
|
976
|
+
endpoint: endpoint,
|
977
|
+
)
|
978
|
+
end
|
979
|
+
end
|
980
|
+
|
967
981
|
class DeleteContext
|
968
982
|
def self.build(context)
|
969
983
|
unless context.config.regional_endpoint
|
@@ -193,6 +193,8 @@ module Aws::SageMaker
|
|
193
193
|
Aws::SageMaker::Endpoints::DeleteCluster.build(context)
|
194
194
|
when :delete_code_repository
|
195
195
|
Aws::SageMaker::Endpoints::DeleteCodeRepository.build(context)
|
196
|
+
when :delete_compilation_job
|
197
|
+
Aws::SageMaker::Endpoints::DeleteCompilationJob.build(context)
|
196
198
|
when :delete_context
|
197
199
|
Aws::SageMaker::Endpoints::DeleteContext.build(context)
|
198
200
|
when :delete_data_quality_job_definition
|