aws-sdk-sagemaker 1.263.0 → 1.264.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eb7c00041681822d938ad418d25d473ff7a45ccc6cbd7727359d9df47a353723
4
- data.tar.gz: 2b6de40f96b69487ff135419afc14f057f8e69e9ae4783d9b9342f52de206fb3
3
+ metadata.gz: 9101d1947e1a071fa33db17462946db285a0016469d08d9b374953b07861f08e
4
+ data.tar.gz: c73065beb36d5acbeb941c8795af04421f070d819d500c1cdf69641ba1c6cbe5
5
5
  SHA512:
6
- metadata.gz: d1995265d9a71543d3ce5a7923550dc73b4530c504de332235d0e9ba61ec9bfdbca57cf328c9e75dc5dbb715e0b5b12ee4480da387241365339abc11ba24bb9b
7
- data.tar.gz: 76d899313ed9df568fc9ba07fc24c9f7bc9c97059ccd4f6e5ee22f9f2ed6219069aa29ecb0888af9c8829dae07c2fd6b363180a04fc4e7ba6f2c9d723447dc63
6
+ metadata.gz: 715cd837d8e66575b5dc38914f319c66391fa66a65b7e5b2cd27aa09ca61fa952580006240ab00afcda94ac172f7ce2da50916b6a292efd9a77aa947c31a034a
7
+ data.tar.gz: 6043befe8dfcb9a99880a5f21bb85c6139ca26613d0b9933f14f044daf5f1bc5ffeb321f03e76360a685419c8d1580946354104e81b1cbfe23819626863cfa7e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.264.0 (2024-09-20)
5
+ ------------------
6
+
7
+ * Feature - Amazon SageMaker now supports using manifest files to specify the location of uncompressed model artifacts within Model Packages
8
+
4
9
  1.263.0 (2024-09-19)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.263.0
1
+ 1.264.0
@@ -130,13 +130,15 @@ module Aws::SageMaker
130
130
  # locations will be searched for credentials:
131
131
  #
132
132
  # * `Aws.config[:credentials]`
133
- # * The `:access_key_id`, `:secret_access_key`, and `:session_token` options.
134
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
133
+ # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
134
+ # `:account_id` options.
135
+ # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
136
+ # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
135
137
  # * `~/.aws/credentials`
136
138
  # * `~/.aws/config`
137
139
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
138
140
  # are very aggressive. Construct and pass an instance of
139
- # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
141
+ # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
140
142
  # enable retries and extended timeouts. Instance profile credential
141
143
  # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
142
144
  # to true.
@@ -155,6 +157,8 @@ module Aws::SageMaker
155
157
  #
156
158
  # @option options [String] :access_key_id
157
159
  #
160
+ # @option options [String] :account_id
161
+ #
158
162
  # @option options [Boolean] :active_endpoint_cache (false)
159
163
  # When set to `true`, a thread polling for endpoints will be running in
160
164
  # the background every 60 secs (default). Defaults to `false`.
@@ -376,7 +380,9 @@ module Aws::SageMaker
376
380
  # sending the request.
377
381
  #
378
382
  # @option options [Aws::SageMaker::EndpointProvider] :endpoint_provider
379
- # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::SageMaker::EndpointParameters`
383
+ # The endpoint provider used to resolve endpoints. Any object that responds to
384
+ # `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
385
+ # `Aws::SageMaker::EndpointParameters`.
380
386
  #
381
387
  # @option options [Float] :http_continue_timeout (1)
382
388
  # The number of seconds to wait for a 100-continue response before sending the
@@ -668,6 +674,7 @@ module Aws::SageMaker
668
674
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
669
675
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
670
676
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].model_data_source.s3_data_source.hub_access_config.hub_content_arn #=> String
677
+ # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].model_data_source.s3_data_source.manifest_s3_uri #=> String
671
678
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].product_id #=> String
672
679
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].environment #=> Hash
673
680
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].environment["EnvironmentKey"] #=> String
@@ -929,6 +936,7 @@ module Aws::SageMaker
929
936
  # hub_access_config: {
930
937
  # hub_content_arn: "HubContentArn", # required
931
938
  # },
939
+ # manifest_s3_uri: "S3ModelUri",
932
940
  # },
933
941
  # },
934
942
  # product_id: "ProductId",
@@ -5815,6 +5823,7 @@ module Aws::SageMaker
5815
5823
  # hub_access_config: {
5816
5824
  # hub_content_arn: "HubContentArn", # required
5817
5825
  # },
5826
+ # manifest_s3_uri: "S3ModelUri",
5818
5827
  # },
5819
5828
  # },
5820
5829
  # additional_model_data_sources: [
@@ -5830,6 +5839,7 @@ module Aws::SageMaker
5830
5839
  # hub_access_config: {
5831
5840
  # hub_content_arn: "HubContentArn", # required
5832
5841
  # },
5842
+ # manifest_s3_uri: "S3ModelUri",
5833
5843
  # },
5834
5844
  # },
5835
5845
  # ],
@@ -5865,6 +5875,7 @@ module Aws::SageMaker
5865
5875
  # hub_access_config: {
5866
5876
  # hub_content_arn: "HubContentArn", # required
5867
5877
  # },
5878
+ # manifest_s3_uri: "S3ModelUri",
5868
5879
  # },
5869
5880
  # },
5870
5881
  # additional_model_data_sources: [
@@ -5880,6 +5891,7 @@ module Aws::SageMaker
5880
5891
  # hub_access_config: {
5881
5892
  # hub_content_arn: "HubContentArn", # required
5882
5893
  # },
5894
+ # manifest_s3_uri: "S3ModelUri",
5883
5895
  # },
5884
5896
  # },
5885
5897
  # ],
@@ -6557,6 +6569,7 @@ module Aws::SageMaker
6557
6569
  # hub_access_config: {
6558
6570
  # hub_content_arn: "HubContentArn", # required
6559
6571
  # },
6572
+ # manifest_s3_uri: "S3ModelUri",
6560
6573
  # },
6561
6574
  # },
6562
6575
  # product_id: "ProductId",
@@ -6634,6 +6647,7 @@ module Aws::SageMaker
6634
6647
  # hub_access_config: {
6635
6648
  # hub_content_arn: "HubContentArn", # required
6636
6649
  # },
6650
+ # manifest_s3_uri: "S3ModelUri",
6637
6651
  # },
6638
6652
  # },
6639
6653
  # algorithm_name: "ArnOrName", # required
@@ -6787,6 +6801,7 @@ module Aws::SageMaker
6787
6801
  # hub_access_config: {
6788
6802
  # hub_content_arn: "HubContentArn", # required
6789
6803
  # },
6804
+ # manifest_s3_uri: "S3ModelUri",
6790
6805
  # },
6791
6806
  # },
6792
6807
  # product_id: "ProductId",
@@ -11460,6 +11475,7 @@ module Aws::SageMaker
11460
11475
  # resp.inference_specification.containers[0].model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
11461
11476
  # resp.inference_specification.containers[0].model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
11462
11477
  # resp.inference_specification.containers[0].model_data_source.s3_data_source.hub_access_config.hub_content_arn #=> String
11478
+ # resp.inference_specification.containers[0].model_data_source.s3_data_source.manifest_s3_uri #=> String
11463
11479
  # resp.inference_specification.containers[0].product_id #=> String
11464
11480
  # resp.inference_specification.containers[0].environment #=> Hash
11465
11481
  # resp.inference_specification.containers[0].environment["EnvironmentKey"] #=> String
@@ -14636,6 +14652,7 @@ module Aws::SageMaker
14636
14652
  # resp.primary_container.model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
14637
14653
  # resp.primary_container.model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
14638
14654
  # resp.primary_container.model_data_source.s3_data_source.hub_access_config.hub_content_arn #=> String
14655
+ # resp.primary_container.model_data_source.s3_data_source.manifest_s3_uri #=> String
14639
14656
  # resp.primary_container.additional_model_data_sources #=> Array
14640
14657
  # resp.primary_container.additional_model_data_sources[0].channel_name #=> String
14641
14658
  # resp.primary_container.additional_model_data_sources[0].s3_data_source.s3_uri #=> String
@@ -14643,6 +14660,7 @@ module Aws::SageMaker
14643
14660
  # resp.primary_container.additional_model_data_sources[0].s3_data_source.compression_type #=> String, one of "None", "Gzip"
14644
14661
  # resp.primary_container.additional_model_data_sources[0].s3_data_source.model_access_config.accept_eula #=> Boolean
14645
14662
  # resp.primary_container.additional_model_data_sources[0].s3_data_source.hub_access_config.hub_content_arn #=> String
14663
+ # resp.primary_container.additional_model_data_sources[0].s3_data_source.manifest_s3_uri #=> String
14646
14664
  # resp.primary_container.environment #=> Hash
14647
14665
  # resp.primary_container.environment["EnvironmentKey"] #=> String
14648
14666
  # resp.primary_container.model_package_name #=> String
@@ -14660,6 +14678,7 @@ module Aws::SageMaker
14660
14678
  # resp.containers[0].model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
14661
14679
  # resp.containers[0].model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
14662
14680
  # resp.containers[0].model_data_source.s3_data_source.hub_access_config.hub_content_arn #=> String
14681
+ # resp.containers[0].model_data_source.s3_data_source.manifest_s3_uri #=> String
14663
14682
  # resp.containers[0].additional_model_data_sources #=> Array
14664
14683
  # resp.containers[0].additional_model_data_sources[0].channel_name #=> String
14665
14684
  # resp.containers[0].additional_model_data_sources[0].s3_data_source.s3_uri #=> String
@@ -14667,6 +14686,7 @@ module Aws::SageMaker
14667
14686
  # resp.containers[0].additional_model_data_sources[0].s3_data_source.compression_type #=> String, one of "None", "Gzip"
14668
14687
  # resp.containers[0].additional_model_data_sources[0].s3_data_source.model_access_config.accept_eula #=> Boolean
14669
14688
  # resp.containers[0].additional_model_data_sources[0].s3_data_source.hub_access_config.hub_content_arn #=> String
14689
+ # resp.containers[0].additional_model_data_sources[0].s3_data_source.manifest_s3_uri #=> String
14670
14690
  # resp.containers[0].environment #=> Hash
14671
14691
  # resp.containers[0].environment["EnvironmentKey"] #=> String
14672
14692
  # resp.containers[0].model_package_name #=> String
@@ -15065,6 +15085,7 @@ module Aws::SageMaker
15065
15085
  # resp.inference_specification.containers[0].model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
15066
15086
  # resp.inference_specification.containers[0].model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
15067
15087
  # resp.inference_specification.containers[0].model_data_source.s3_data_source.hub_access_config.hub_content_arn #=> String
15088
+ # resp.inference_specification.containers[0].model_data_source.s3_data_source.manifest_s3_uri #=> String
15068
15089
  # resp.inference_specification.containers[0].product_id #=> String
15069
15090
  # resp.inference_specification.containers[0].environment #=> Hash
15070
15091
  # resp.inference_specification.containers[0].environment["EnvironmentKey"] #=> String
@@ -15090,6 +15111,7 @@ module Aws::SageMaker
15090
15111
  # resp.source_algorithm_specification.source_algorithms[0].model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
15091
15112
  # resp.source_algorithm_specification.source_algorithms[0].model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
15092
15113
  # resp.source_algorithm_specification.source_algorithms[0].model_data_source.s3_data_source.hub_access_config.hub_content_arn #=> String
15114
+ # resp.source_algorithm_specification.source_algorithms[0].model_data_source.s3_data_source.manifest_s3_uri #=> String
15093
15115
  # resp.source_algorithm_specification.source_algorithms[0].algorithm_name #=> String
15094
15116
  # resp.validation_specification.validation_role #=> String
15095
15117
  # resp.validation_specification.validation_profiles #=> Array
@@ -15209,6 +15231,7 @@ module Aws::SageMaker
15209
15231
  # resp.additional_inference_specifications[0].containers[0].model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
15210
15232
  # resp.additional_inference_specifications[0].containers[0].model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
15211
15233
  # resp.additional_inference_specifications[0].containers[0].model_data_source.s3_data_source.hub_access_config.hub_content_arn #=> String
15234
+ # resp.additional_inference_specifications[0].containers[0].model_data_source.s3_data_source.manifest_s3_uri #=> String
15212
15235
  # resp.additional_inference_specifications[0].containers[0].product_id #=> String
15213
15236
  # resp.additional_inference_specifications[0].containers[0].environment #=> Hash
15214
15237
  # resp.additional_inference_specifications[0].containers[0].environment["EnvironmentKey"] #=> String
@@ -26305,6 +26328,7 @@ module Aws::SageMaker
26305
26328
  # hub_access_config: {
26306
26329
  # hub_content_arn: "HubContentArn", # required
26307
26330
  # },
26331
+ # manifest_s3_uri: "S3ModelUri",
26308
26332
  # },
26309
26333
  # },
26310
26334
  # product_id: "ProductId",
@@ -26348,6 +26372,7 @@ module Aws::SageMaker
26348
26372
  # hub_access_config: {
26349
26373
  # hub_content_arn: "HubContentArn", # required
26350
26374
  # },
26375
+ # manifest_s3_uri: "S3ModelUri",
26351
26376
  # },
26352
26377
  # },
26353
26378
  # product_id: "ProductId",
@@ -27774,7 +27799,7 @@ module Aws::SageMaker
27774
27799
  tracer: tracer
27775
27800
  )
27776
27801
  context[:gem_name] = 'aws-sdk-sagemaker'
27777
- context[:gem_version] = '1.263.0'
27802
+ context[:gem_version] = '1.264.0'
27778
27803
  Seahorse::Client::Request.new(handlers, context)
27779
27804
  end
27780
27805
 
@@ -9177,6 +9177,7 @@ module Aws::SageMaker
9177
9177
  S3ModelDataSource.add_member(:compression_type, Shapes::ShapeRef.new(shape: ModelCompressionType, required: true, location_name: "CompressionType"))
9178
9178
  S3ModelDataSource.add_member(:model_access_config, Shapes::ShapeRef.new(shape: ModelAccessConfig, location_name: "ModelAccessConfig"))
9179
9179
  S3ModelDataSource.add_member(:hub_access_config, Shapes::ShapeRef.new(shape: InferenceHubAccessConfig, location_name: "HubAccessConfig"))
9180
+ S3ModelDataSource.add_member(:manifest_s3_uri, Shapes::ShapeRef.new(shape: S3ModelUri, location_name: "ManifestS3Uri"))
9180
9181
  S3ModelDataSource.struct_class = Types::S3ModelDataSource
9181
9182
 
9182
9183
  S3Presign.add_member(:iam_policy_constraints, Shapes::ShapeRef.new(shape: IamPolicyConstraints, location_name: "IamPolicyConstraints"))
@@ -15,11 +15,11 @@ module Aws::SageMaker
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::SageMaker::EndpointProvider',
17
17
  rbs_type: 'untyped',
18
- docstring: 'The endpoint provider used to resolve endpoints. Any '\
19
- 'object that responds to `#resolve_endpoint(parameters)` '\
20
- 'where `parameters` is a Struct similar to '\
21
- '`Aws::SageMaker::EndpointParameters`'
22
- ) do |cfg|
18
+ docstring: <<~DOCS) do |_cfg|
19
+ The endpoint provider used to resolve endpoints. Any object that responds to
20
+ `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
21
+ `Aws::SageMaker::EndpointParameters`.
22
+ DOCS
23
23
  Aws::SageMaker::EndpointProvider.new
24
24
  end
25
25
 
@@ -51,6 +51,9 @@ module Aws::SageMaker
51
51
  if context[:auth_scheme] && context[:auth_scheme]['name'] == 'sigv4a'
52
52
  metrics << 'SIGV4A_SIGNING'
53
53
  end
54
+ if context.config.credentials&.credentials&.account_id
55
+ metrics << 'RESOLVED_ACCOUNT_ID'
56
+ end
54
57
  Aws::Plugins::UserAgent.metric(*metrics, &block)
55
58
  end
56
59
 
@@ -39979,6 +39979,11 @@ module Aws::SageMaker
39979
39979
  # Configuration information for hub access.
39980
39980
  # @return [Types::InferenceHubAccessConfig]
39981
39981
  #
39982
+ # @!attribute [rw] manifest_s3_uri
39983
+ # The Amazon S3 URI of the manifest file. The manifest file is a CSV
39984
+ # file that stores the artifact locations.
39985
+ # @return [String]
39986
+ #
39982
39987
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/S3ModelDataSource AWS API Documentation
39983
39988
  #
39984
39989
  class S3ModelDataSource < Struct.new(
@@ -39986,7 +39991,8 @@ module Aws::SageMaker
39986
39991
  :s3_data_type,
39987
39992
  :compression_type,
39988
39993
  :model_access_config,
39989
- :hub_access_config)
39994
+ :hub_access_config,
39995
+ :manifest_s3_uri)
39990
39996
  SENSITIVE = []
39991
39997
  include Aws::Structure
39992
39998
  end
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
53
53
  # @!group service
54
54
  module Aws::SageMaker
55
55
 
56
- GEM_VERSION = '1.263.0'
56
+ GEM_VERSION = '1.264.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -15,6 +15,7 @@ module Aws
15
15
  ?credentials: untyped,
16
16
  ?region: String,
17
17
  ?access_key_id: String,
18
+ ?account_id: String,
18
19
  ?active_endpoint_cache: bool,
19
20
  ?adaptive_retry_wait_to_fill: bool,
20
21
  ?client_side_monitoring: bool,
@@ -239,7 +240,8 @@ module Aws
239
240
  }?,
240
241
  hub_access_config: {
241
242
  hub_content_arn: ::String
242
- }?
243
+ }?,
244
+ manifest_s3_uri: ::String?
243
245
  }?
244
246
  }?,
245
247
  product_id: ::String?,
@@ -2453,7 +2455,8 @@ module Aws
2453
2455
  }?,
2454
2456
  hub_access_config: {
2455
2457
  hub_content_arn: ::String
2456
- }?
2458
+ }?,
2459
+ manifest_s3_uri: ::String?
2457
2460
  }?
2458
2461
  }?,
2459
2462
  additional_model_data_sources: Array[
@@ -2468,7 +2471,8 @@ module Aws
2468
2471
  }?,
2469
2472
  hub_access_config: {
2470
2473
  hub_content_arn: ::String
2471
- }?
2474
+ }?,
2475
+ manifest_s3_uri: ::String?
2472
2476
  }
2473
2477
  },
2474
2478
  ]?,
@@ -2501,7 +2505,8 @@ module Aws
2501
2505
  }?,
2502
2506
  hub_access_config: {
2503
2507
  hub_content_arn: ::String
2504
- }?
2508
+ }?,
2509
+ manifest_s3_uri: ::String?
2505
2510
  }?
2506
2511
  }?,
2507
2512
  additional_model_data_sources: Array[
@@ -2516,7 +2521,8 @@ module Aws
2516
2521
  }?,
2517
2522
  hub_access_config: {
2518
2523
  hub_content_arn: ::String
2519
- }?
2524
+ }?,
2525
+ manifest_s3_uri: ::String?
2520
2526
  }
2521
2527
  },
2522
2528
  ]?,
@@ -2805,7 +2811,8 @@ module Aws
2805
2811
  }?,
2806
2812
  hub_access_config: {
2807
2813
  hub_content_arn: ::String
2808
- }?
2814
+ }?,
2815
+ manifest_s3_uri: ::String?
2809
2816
  }?
2810
2817
  }?,
2811
2818
  product_id: ::String?,
@@ -2878,7 +2885,8 @@ module Aws
2878
2885
  }?,
2879
2886
  hub_access_config: {
2880
2887
  hub_content_arn: ::String
2881
- }?
2888
+ }?,
2889
+ manifest_s3_uri: ::String?
2882
2890
  }?
2883
2891
  }?,
2884
2892
  algorithm_name: ::String
@@ -3029,7 +3037,8 @@ module Aws
3029
3037
  }?,
3030
3038
  hub_access_config: {
3031
3039
  hub_content_arn: ::String
3032
- }?
3040
+ }?,
3041
+ manifest_s3_uri: ::String?
3033
3042
  }?
3034
3043
  }?,
3035
3044
  product_id: ::String?,
@@ -8799,7 +8808,8 @@ module Aws
8799
8808
  }?,
8800
8809
  hub_access_config: {
8801
8810
  hub_content_arn: ::String
8802
- }?
8811
+ }?,
8812
+ manifest_s3_uri: ::String?
8803
8813
  }?
8804
8814
  }?,
8805
8815
  product_id: ::String?,
@@ -8840,7 +8850,8 @@ module Aws
8840
8850
  }?,
8841
8851
  hub_access_config: {
8842
8852
  hub_content_arn: ::String
8843
- }?
8853
+ }?,
8854
+ manifest_s3_uri: ::String?
8844
8855
  }?
8845
8856
  }?,
8846
8857
  product_id: ::String?,
data/sig/resource.rbs CHANGED
@@ -15,6 +15,7 @@ module Aws
15
15
  ?credentials: untyped,
16
16
  ?region: String,
17
17
  ?access_key_id: String,
18
+ ?account_id: String,
18
19
  ?active_endpoint_cache: bool,
19
20
  ?adaptive_retry_wait_to_fill: bool,
20
21
  ?client_side_monitoring: bool,
data/sig/types.rbs CHANGED
@@ -8339,6 +8339,7 @@ module Aws::SageMaker
8339
8339
  attr_accessor compression_type: ("None" | "Gzip")
8340
8340
  attr_accessor model_access_config: Types::ModelAccessConfig
8341
8341
  attr_accessor hub_access_config: Types::InferenceHubAccessConfig
8342
+ attr_accessor manifest_s3_uri: ::String
8342
8343
  SENSITIVE: []
8343
8344
  end
8344
8345
 
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.263.0
4
+ version: 1.264.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-19 00:00:00.000000000 Z
11
+ date: 2024-09-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.205.0
22
+ version: 3.207.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.205.0
32
+ version: 3.207.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement