aws-sdk-sagemaker 1.228.0 → 1.229.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 +24 -24
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fb6d11b997345e5af7a1f8651fb81019709ee60407731362d3a8c833e0a5a52e
|
|
4
|
+
data.tar.gz: a6243d8a7590a29eabb2dbe8c001671fa0c14134354a27dae3b23f30851b4704
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d5b89bd011a2ecd22be8fe069a07c64ee86642ca3cd0f3342f99b1b6901bced3f24da7a8be5fa1e9c0ee0aecfc05bd237cbd5b3804407c29b9c074f18ca55ba0
|
|
7
|
+
data.tar.gz: 399bd1b86169a0bcb4f18fa600e9076970ccea381b10ad9549ddb9a6adbcc697e430d90f255e2d2a70525a3dc3c7e1b436943da60d5289b81d849ab62ac5420c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.229.0 (2024-01-14)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release will have ValidationException thrown if certain invalid app types are provided. The release will also throw ValidationException if more than 10 account ids are provided in VpcOnlyTrustedAccounts.
|
|
8
|
+
|
|
4
9
|
1.228.0 (2024-01-04)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.229.0
|
|
@@ -618,7 +618,7 @@ module Aws::SageMaker
|
|
|
618
618
|
# resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].framework #=> String
|
|
619
619
|
# resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].framework_version #=> String
|
|
620
620
|
# resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].nearest_model_name #=> String
|
|
621
|
-
# resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].additional_s3_data_source.s3_data_type #=> String, one of "S3Object"
|
|
621
|
+
# resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].additional_s3_data_source.s3_data_type #=> String, one of "S3Object", "S3Prefix"
|
|
622
622
|
# resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].additional_s3_data_source.s3_uri #=> String
|
|
623
623
|
# resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].additional_s3_data_source.compression_type #=> String, one of "None", "Gzip"
|
|
624
624
|
# resp.model_package_summaries["ModelPackageArn"].inference_specification.supported_transform_instance_types #=> Array
|
|
@@ -849,7 +849,7 @@ module Aws::SageMaker
|
|
|
849
849
|
# },
|
|
850
850
|
# ],
|
|
851
851
|
# additional_s3_data_source: {
|
|
852
|
-
# s3_data_type: "S3Object", # required, accepts S3Object
|
|
852
|
+
# s3_data_type: "S3Object", # required, accepts S3Object, S3Prefix
|
|
853
853
|
# s3_uri: "S3Uri", # required
|
|
854
854
|
# compression_type: "None", # accepts None, Gzip
|
|
855
855
|
# },
|
|
@@ -872,7 +872,7 @@ module Aws::SageMaker
|
|
|
872
872
|
# framework_version: "ModelPackageFrameworkVersion",
|
|
873
873
|
# nearest_model_name: "String",
|
|
874
874
|
# additional_s3_data_source: {
|
|
875
|
-
# s3_data_type: "S3Object", # required, accepts S3Object
|
|
875
|
+
# s3_data_type: "S3Object", # required, accepts S3Object, S3Prefix
|
|
876
876
|
# s3_uri: "S3Uri", # required
|
|
877
877
|
# compression_type: "None", # accepts None, Gzip
|
|
878
878
|
# },
|
|
@@ -1049,7 +1049,7 @@ module Aws::SageMaker
|
|
|
1049
1049
|
# domain_id: "DomainId", # required
|
|
1050
1050
|
# user_profile_name: "UserProfileName",
|
|
1051
1051
|
# space_name: "SpaceName",
|
|
1052
|
-
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, DetailedProfiler, TensorBoard,
|
|
1052
|
+
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, DetailedProfiler, TensorBoard, CodeEditor, JupyterLab, RStudioServerPro, RSessionGateway, Canvas
|
|
1053
1053
|
# app_name: "AppName", # required
|
|
1054
1054
|
# tags: [
|
|
1055
1055
|
# {
|
|
@@ -6082,7 +6082,7 @@ module Aws::SageMaker
|
|
|
6082
6082
|
# framework_version: "ModelPackageFrameworkVersion",
|
|
6083
6083
|
# nearest_model_name: "String",
|
|
6084
6084
|
# additional_s3_data_source: {
|
|
6085
|
-
# s3_data_type: "S3Object", # required, accepts S3Object
|
|
6085
|
+
# s3_data_type: "S3Object", # required, accepts S3Object, S3Prefix
|
|
6086
6086
|
# s3_uri: "S3Uri", # required
|
|
6087
6087
|
# compression_type: "None", # accepts None, Gzip
|
|
6088
6088
|
# },
|
|
@@ -6286,7 +6286,7 @@ module Aws::SageMaker
|
|
|
6286
6286
|
# framework_version: "ModelPackageFrameworkVersion",
|
|
6287
6287
|
# nearest_model_name: "String",
|
|
6288
6288
|
# additional_s3_data_source: {
|
|
6289
|
-
# s3_data_type: "S3Object", # required, accepts S3Object
|
|
6289
|
+
# s3_data_type: "S3Object", # required, accepts S3Object, S3Prefix
|
|
6290
6290
|
# s3_uri: "S3Uri", # required
|
|
6291
6291
|
# compression_type: "None", # accepts None, Gzip
|
|
6292
6292
|
# },
|
|
@@ -7571,7 +7571,7 @@ module Aws::SageMaker
|
|
|
7571
7571
|
# },
|
|
7572
7572
|
# ],
|
|
7573
7573
|
# },
|
|
7574
|
-
# app_type: "JupyterServer", # accepts JupyterServer, KernelGateway, DetailedProfiler, TensorBoard,
|
|
7574
|
+
# app_type: "JupyterServer", # accepts JupyterServer, KernelGateway, DetailedProfiler, TensorBoard, CodeEditor, JupyterLab, RStudioServerPro, RSessionGateway, Canvas
|
|
7575
7575
|
# space_storage_settings: {
|
|
7576
7576
|
# ebs_storage_settings: {
|
|
7577
7577
|
# ebs_volume_size_in_gb: 1, # required
|
|
@@ -7634,7 +7634,7 @@ module Aws::SageMaker
|
|
|
7634
7634
|
# resp = client.create_studio_lifecycle_config({
|
|
7635
7635
|
# studio_lifecycle_config_name: "StudioLifecycleConfigName", # required
|
|
7636
7636
|
# studio_lifecycle_config_content: "StudioLifecycleConfigContent", # required
|
|
7637
|
-
# studio_lifecycle_config_app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway,
|
|
7637
|
+
# studio_lifecycle_config_app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, CodeEditor, JupyterLab
|
|
7638
7638
|
# tags: [
|
|
7639
7639
|
# {
|
|
7640
7640
|
# key: "TagKey", # required
|
|
@@ -9088,7 +9088,7 @@ module Aws::SageMaker
|
|
|
9088
9088
|
# domain_id: "DomainId", # required
|
|
9089
9089
|
# user_profile_name: "UserProfileName",
|
|
9090
9090
|
# space_name: "SpaceName",
|
|
9091
|
-
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, DetailedProfiler, TensorBoard,
|
|
9091
|
+
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, DetailedProfiler, TensorBoard, CodeEditor, JupyterLab, RStudioServerPro, RSessionGateway, Canvas
|
|
9092
9092
|
# app_name: "AppName", # required
|
|
9093
9093
|
# })
|
|
9094
9094
|
#
|
|
@@ -10538,7 +10538,7 @@ module Aws::SageMaker
|
|
|
10538
10538
|
# resp.training_specification.supported_tuning_job_objective_metrics #=> Array
|
|
10539
10539
|
# resp.training_specification.supported_tuning_job_objective_metrics[0].type #=> String, one of "Maximize", "Minimize"
|
|
10540
10540
|
# resp.training_specification.supported_tuning_job_objective_metrics[0].metric_name #=> String
|
|
10541
|
-
# resp.training_specification.additional_s3_data_source.s3_data_type #=> String, one of "S3Object"
|
|
10541
|
+
# resp.training_specification.additional_s3_data_source.s3_data_type #=> String, one of "S3Object", "S3Prefix"
|
|
10542
10542
|
# resp.training_specification.additional_s3_data_source.s3_uri #=> String
|
|
10543
10543
|
# resp.training_specification.additional_s3_data_source.compression_type #=> String, one of "None", "Gzip"
|
|
10544
10544
|
# resp.inference_specification.containers #=> Array
|
|
@@ -10553,7 +10553,7 @@ module Aws::SageMaker
|
|
|
10553
10553
|
# resp.inference_specification.containers[0].framework #=> String
|
|
10554
10554
|
# resp.inference_specification.containers[0].framework_version #=> String
|
|
10555
10555
|
# resp.inference_specification.containers[0].nearest_model_name #=> String
|
|
10556
|
-
# resp.inference_specification.containers[0].additional_s3_data_source.s3_data_type #=> String, one of "S3Object"
|
|
10556
|
+
# resp.inference_specification.containers[0].additional_s3_data_source.s3_data_type #=> String, one of "S3Object", "S3Prefix"
|
|
10557
10557
|
# resp.inference_specification.containers[0].additional_s3_data_source.s3_uri #=> String
|
|
10558
10558
|
# resp.inference_specification.containers[0].additional_s3_data_source.compression_type #=> String, one of "None", "Gzip"
|
|
10559
10559
|
# resp.inference_specification.supported_transform_instance_types #=> Array
|
|
@@ -10680,14 +10680,14 @@ module Aws::SageMaker
|
|
|
10680
10680
|
# domain_id: "DomainId", # required
|
|
10681
10681
|
# user_profile_name: "UserProfileName",
|
|
10682
10682
|
# space_name: "SpaceName",
|
|
10683
|
-
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, DetailedProfiler, TensorBoard,
|
|
10683
|
+
# app_type: "JupyterServer", # required, accepts JupyterServer, KernelGateway, DetailedProfiler, TensorBoard, CodeEditor, JupyterLab, RStudioServerPro, RSessionGateway, Canvas
|
|
10684
10684
|
# app_name: "AppName", # required
|
|
10685
10685
|
# })
|
|
10686
10686
|
#
|
|
10687
10687
|
# @example Response structure
|
|
10688
10688
|
#
|
|
10689
10689
|
# resp.app_arn #=> String
|
|
10690
|
-
# resp.app_type #=> String, one of "JupyterServer", "KernelGateway", "DetailedProfiler", "TensorBoard", "
|
|
10690
|
+
# resp.app_type #=> String, one of "JupyterServer", "KernelGateway", "DetailedProfiler", "TensorBoard", "CodeEditor", "JupyterLab", "RStudioServerPro", "RSessionGateway", "Canvas"
|
|
10691
10691
|
# resp.app_name #=> String
|
|
10692
10692
|
# resp.domain_id #=> String
|
|
10693
10693
|
# resp.user_profile_name #=> String
|
|
@@ -13977,7 +13977,7 @@ module Aws::SageMaker
|
|
|
13977
13977
|
# resp.inference_specification.containers[0].framework #=> String
|
|
13978
13978
|
# resp.inference_specification.containers[0].framework_version #=> String
|
|
13979
13979
|
# resp.inference_specification.containers[0].nearest_model_name #=> String
|
|
13980
|
-
# resp.inference_specification.containers[0].additional_s3_data_source.s3_data_type #=> String, one of "S3Object"
|
|
13980
|
+
# resp.inference_specification.containers[0].additional_s3_data_source.s3_data_type #=> String, one of "S3Object", "S3Prefix"
|
|
13981
13981
|
# resp.inference_specification.containers[0].additional_s3_data_source.s3_uri #=> String
|
|
13982
13982
|
# resp.inference_specification.containers[0].additional_s3_data_source.compression_type #=> String, one of "None", "Gzip"
|
|
13983
13983
|
# resp.inference_specification.supported_transform_instance_types #=> Array
|
|
@@ -14111,7 +14111,7 @@ module Aws::SageMaker
|
|
|
14111
14111
|
# resp.additional_inference_specifications[0].containers[0].framework #=> String
|
|
14112
14112
|
# resp.additional_inference_specifications[0].containers[0].framework_version #=> String
|
|
14113
14113
|
# resp.additional_inference_specifications[0].containers[0].nearest_model_name #=> String
|
|
14114
|
-
# resp.additional_inference_specifications[0].containers[0].additional_s3_data_source.s3_data_type #=> String, one of "S3Object"
|
|
14114
|
+
# resp.additional_inference_specifications[0].containers[0].additional_s3_data_source.s3_data_type #=> String, one of "S3Object", "S3Prefix"
|
|
14115
14115
|
# resp.additional_inference_specifications[0].containers[0].additional_s3_data_source.s3_uri #=> String
|
|
14116
14116
|
# resp.additional_inference_specifications[0].containers[0].additional_s3_data_source.compression_type #=> String, one of "None", "Gzip"
|
|
14117
14117
|
# resp.additional_inference_specifications[0].supported_transform_instance_types #=> Array
|
|
@@ -14930,7 +14930,7 @@ module Aws::SageMaker
|
|
|
14930
14930
|
# resp.space_settings.jupyter_lab_app_settings.default_resource_spec.lifecycle_config_arn #=> String
|
|
14931
14931
|
# resp.space_settings.jupyter_lab_app_settings.code_repositories #=> Array
|
|
14932
14932
|
# resp.space_settings.jupyter_lab_app_settings.code_repositories[0].repository_url #=> String
|
|
14933
|
-
# resp.space_settings.app_type #=> String, one of "JupyterServer", "KernelGateway", "DetailedProfiler", "TensorBoard", "
|
|
14933
|
+
# resp.space_settings.app_type #=> String, one of "JupyterServer", "KernelGateway", "DetailedProfiler", "TensorBoard", "CodeEditor", "JupyterLab", "RStudioServerPro", "RSessionGateway", "Canvas"
|
|
14934
14934
|
# resp.space_settings.space_storage_settings.ebs_storage_settings.ebs_volume_size_in_gb #=> Integer
|
|
14935
14935
|
# resp.space_settings.custom_file_systems #=> Array
|
|
14936
14936
|
# resp.space_settings.custom_file_systems[0].efs_file_system.file_system_id #=> String
|
|
@@ -14976,7 +14976,7 @@ module Aws::SageMaker
|
|
|
14976
14976
|
# resp.creation_time #=> Time
|
|
14977
14977
|
# resp.last_modified_time #=> Time
|
|
14978
14978
|
# resp.studio_lifecycle_config_content #=> String
|
|
14979
|
-
# resp.studio_lifecycle_config_app_type #=> String, one of "JupyterServer", "KernelGateway", "
|
|
14979
|
+
# resp.studio_lifecycle_config_app_type #=> String, one of "JupyterServer", "KernelGateway", "CodeEditor", "JupyterLab"
|
|
14980
14980
|
#
|
|
14981
14981
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeStudioLifecycleConfig AWS API Documentation
|
|
14982
14982
|
#
|
|
@@ -16495,7 +16495,7 @@ module Aws::SageMaker
|
|
|
16495
16495
|
# resp.apps[0].domain_id #=> String
|
|
16496
16496
|
# resp.apps[0].user_profile_name #=> String
|
|
16497
16497
|
# resp.apps[0].space_name #=> String
|
|
16498
|
-
# resp.apps[0].app_type #=> String, one of "JupyterServer", "KernelGateway", "DetailedProfiler", "TensorBoard", "
|
|
16498
|
+
# resp.apps[0].app_type #=> String, one of "JupyterServer", "KernelGateway", "DetailedProfiler", "TensorBoard", "CodeEditor", "JupyterLab", "RStudioServerPro", "RSessionGateway", "Canvas"
|
|
16499
16499
|
# resp.apps[0].app_name #=> String
|
|
16500
16500
|
# resp.apps[0].status #=> String, one of "Deleted", "Deleting", "Failed", "InService", "Pending"
|
|
16501
16501
|
# resp.apps[0].creation_time #=> Time
|
|
@@ -21026,7 +21026,7 @@ module Aws::SageMaker
|
|
|
21026
21026
|
# resp.spaces[0].status #=> String, one of "Deleting", "Failed", "InService", "Pending", "Updating", "Update_Failed", "Delete_Failed"
|
|
21027
21027
|
# resp.spaces[0].creation_time #=> Time
|
|
21028
21028
|
# resp.spaces[0].last_modified_time #=> Time
|
|
21029
|
-
# resp.spaces[0].space_settings_summary.app_type #=> String, one of "JupyterServer", "KernelGateway", "DetailedProfiler", "TensorBoard", "
|
|
21029
|
+
# resp.spaces[0].space_settings_summary.app_type #=> String, one of "JupyterServer", "KernelGateway", "DetailedProfiler", "TensorBoard", "CodeEditor", "JupyterLab", "RStudioServerPro", "RSessionGateway", "Canvas"
|
|
21030
21030
|
# resp.spaces[0].space_settings_summary.space_storage_settings.ebs_storage_settings.ebs_volume_size_in_gb #=> Integer
|
|
21031
21031
|
# resp.spaces[0].space_sharing_settings_summary.sharing_type #=> String, one of "Private", "Shared"
|
|
21032
21032
|
# resp.spaces[0].ownership_settings_summary.owner_user_profile_name #=> String
|
|
@@ -21161,7 +21161,7 @@ module Aws::SageMaker
|
|
|
21161
21161
|
# max_results: 1,
|
|
21162
21162
|
# next_token: "NextToken",
|
|
21163
21163
|
# name_contains: "StudioLifecycleConfigName",
|
|
21164
|
-
# app_type_equals: "JupyterServer", # accepts JupyterServer, KernelGateway,
|
|
21164
|
+
# app_type_equals: "JupyterServer", # accepts JupyterServer, KernelGateway, CodeEditor, JupyterLab
|
|
21165
21165
|
# creation_time_before: Time.now,
|
|
21166
21166
|
# creation_time_after: Time.now,
|
|
21167
21167
|
# modified_time_before: Time.now,
|
|
@@ -21178,7 +21178,7 @@ module Aws::SageMaker
|
|
|
21178
21178
|
# resp.studio_lifecycle_configs[0].studio_lifecycle_config_name #=> String
|
|
21179
21179
|
# resp.studio_lifecycle_configs[0].creation_time #=> Time
|
|
21180
21180
|
# resp.studio_lifecycle_configs[0].last_modified_time #=> Time
|
|
21181
|
-
# resp.studio_lifecycle_configs[0].studio_lifecycle_config_app_type #=> String, one of "JupyterServer", "KernelGateway", "
|
|
21181
|
+
# resp.studio_lifecycle_configs[0].studio_lifecycle_config_app_type #=> String, one of "JupyterServer", "KernelGateway", "CodeEditor", "JupyterLab"
|
|
21182
21182
|
#
|
|
21183
21183
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListStudioLifecycleConfigs AWS API Documentation
|
|
21184
21184
|
#
|
|
@@ -24564,7 +24564,7 @@ module Aws::SageMaker
|
|
|
24564
24564
|
# framework_version: "ModelPackageFrameworkVersion",
|
|
24565
24565
|
# nearest_model_name: "String",
|
|
24566
24566
|
# additional_s3_data_source: {
|
|
24567
|
-
# s3_data_type: "S3Object", # required, accepts S3Object
|
|
24567
|
+
# s3_data_type: "S3Object", # required, accepts S3Object, S3Prefix
|
|
24568
24568
|
# s3_uri: "S3Uri", # required
|
|
24569
24569
|
# compression_type: "None", # accepts None, Gzip
|
|
24570
24570
|
# },
|
|
@@ -25231,7 +25231,7 @@ module Aws::SageMaker
|
|
|
25231
25231
|
# },
|
|
25232
25232
|
# ],
|
|
25233
25233
|
# },
|
|
25234
|
-
# app_type: "JupyterServer", # accepts JupyterServer, KernelGateway, DetailedProfiler, TensorBoard,
|
|
25234
|
+
# app_type: "JupyterServer", # accepts JupyterServer, KernelGateway, DetailedProfiler, TensorBoard, CodeEditor, JupyterLab, RStudioServerPro, RSessionGateway, Canvas
|
|
25235
25235
|
# space_storage_settings: {
|
|
25236
25236
|
# ebs_storage_settings: {
|
|
25237
25237
|
# ebs_volume_size_in_gb: 1, # required
|
|
@@ -25896,7 +25896,7 @@ module Aws::SageMaker
|
|
|
25896
25896
|
params: params,
|
|
25897
25897
|
config: config)
|
|
25898
25898
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
|
25899
|
-
context[:gem_version] = '1.
|
|
25899
|
+
context[:gem_version] = '1.229.0'
|
|
25900
25900
|
Seahorse::Client::Request.new(handlers, context)
|
|
25901
25901
|
end
|
|
25902
25902
|
|
data/lib/aws-sdk-sagemaker.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-sagemaker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.229.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-01-
|
|
11
|
+
date: 2024-01-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -73,7 +73,7 @@ licenses:
|
|
|
73
73
|
metadata:
|
|
74
74
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-sagemaker
|
|
75
75
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-sagemaker/CHANGELOG.md
|
|
76
|
-
post_install_message:
|
|
76
|
+
post_install_message:
|
|
77
77
|
rdoc_options: []
|
|
78
78
|
require_paths:
|
|
79
79
|
- lib
|
|
@@ -88,8 +88,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
89
|
version: '0'
|
|
90
90
|
requirements: []
|
|
91
|
-
rubygems_version: 3.
|
|
92
|
-
signing_key:
|
|
91
|
+
rubygems_version: 3.4.10
|
|
92
|
+
signing_key:
|
|
93
93
|
specification_version: 4
|
|
94
94
|
summary: AWS SDK for Ruby - SageMaker
|
|
95
95
|
test_files: []
|