aws-sdk-sagemaker 1.247.0 → 1.249.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: 2b1f58145580275ce836f162e0de524a21a8048631c4184cf660e54c8743b6b5
4
- data.tar.gz: 75513c5403e9e0dedd5c639e4b1336ab4c2d6b4861feb729d8adfbbf88194c57
3
+ metadata.gz: 9d976520a412b5b284f76d591a8c28ab98a4da40be6b1eb0fa3017986f1817d7
4
+ data.tar.gz: d74f328bd929771c0aff143c1dca9128cb885a8e24848c001cdd3c20b499dc0c
5
5
  SHA512:
6
- metadata.gz: f0b919ca1ec7bb5a83c29d79ebacfd6cbb83f117299cb46eef0b7f3ae72cba3e3aa146ff86d92ccb0d99df686195f1c803385be58b9fae5e866a6a71e774d6d1
7
- data.tar.gz: ad12912cc8d245d77f953afb78d702d1a52ff055ef853225500a6594380c6f4e630130ff49806e91b54115ff279917d8001c0dbd594077ffd946aa919769639a
6
+ metadata.gz: f905ba57a1f43c657d55c31eaa6dcd7833fa807934eb52852f32543666d2655cd2bb6399b515d2ff9eb8c7858dfc07e29864e93e7f2211683f9c512c5bc9235b
7
+ data.tar.gz: 6d5055d3c616f81a922303ea7abeafec900c6917431825f88ed4739361fa44f7de62fb4ca95295eee90d27c95e4fcb2ee458f27e4225e156ca633a61b07af41e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.249.0 (2024-06-24)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.248.0 (2024-06-20)
10
+ ------------------
11
+
12
+ * Feature - Adds support for model references in Hub service, and adds support for cross-account access of Hubs
13
+
4
14
  1.247.0 (2024-06-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.247.0
1
+ 1.249.0
@@ -89,6 +89,11 @@ module Aws::SageMaker
89
89
 
90
90
  # @overload initialize(options)
91
91
  # @param [Hash] options
92
+ #
93
+ # @option options [Array<Seahorse::Client::Plugin>] :plugins ([]])
94
+ # A list of plugins to apply to the client. Each plugin is either a
95
+ # class name or an instance of a plugin class.
96
+ #
92
97
  # @option options [required, Aws::CredentialProvider] :credentials
93
98
  # Your AWS credentials. This can be an instance of any one of the
94
99
  # following classes:
@@ -209,7 +214,6 @@ module Aws::SageMaker
209
214
  # 'https://example.com'
210
215
  # 'http://example.com:123'
211
216
  #
212
- #
213
217
  # @option options [Integer] :endpoint_cache_max_entries (1000)
214
218
  # Used for the maximum size limit of the LRU cache storing endpoints data
215
219
  # for endpoint discovery enabled operations. Defaults to 1000.
@@ -298,7 +302,6 @@ module Aws::SageMaker
298
302
  # throttling. This is a provisional mode that may change behavior
299
303
  # in the future.
300
304
  #
301
- #
302
305
  # @option options [String] :sdk_ua_app_id
303
306
  # A unique and opaque application ID that is appended to the
304
307
  # User-Agent header as app/sdk_ua_app_id. It should have a
@@ -640,6 +643,7 @@ module Aws::SageMaker
640
643
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].model_data_source.s3_data_source.s3_data_type #=> String, one of "S3Prefix", "S3Object"
641
644
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
642
645
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
646
+ # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].model_data_source.s3_data_source.hub_access_config.hub_content_arn #=> String
643
647
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].product_id #=> String
644
648
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].environment #=> Hash
645
649
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].environment["EnvironmentKey"] #=> String
@@ -898,6 +902,9 @@ module Aws::SageMaker
898
902
  # model_access_config: {
899
903
  # accept_eula: false, # required
900
904
  # },
905
+ # hub_access_config: {
906
+ # hub_content_arn: "HubContentArn", # required
907
+ # },
901
908
  # },
902
909
  # },
903
910
  # product_id: "ProductId",
@@ -3879,10 +3886,6 @@ module Aws::SageMaker
3879
3886
 
3880
3887
  # Create a hub.
3881
3888
  #
3882
- # <note markdown="1"> Hub APIs are only callable through SageMaker Studio.
3883
- #
3884
- # </note>
3885
- #
3886
3889
  # @option params [required, String] :hub_name
3887
3890
  # The name of the hub to create.
3888
3891
  #
@@ -3936,6 +3939,58 @@ module Aws::SageMaker
3936
3939
  req.send_request(options)
3937
3940
  end
3938
3941
 
3942
+ # Create a hub content reference in order to add a model in the
3943
+ # JumpStart public hub to a private hub.
3944
+ #
3945
+ # @option params [required, String] :hub_name
3946
+ # The name of the hub to add the hub content reference to.
3947
+ #
3948
+ # @option params [required, String] :sage_maker_public_hub_content_arn
3949
+ # The ARN of the public hub content to reference.
3950
+ #
3951
+ # @option params [String] :hub_content_name
3952
+ # The name of the hub content to reference.
3953
+ #
3954
+ # @option params [String] :min_version
3955
+ # The minimum version of the hub content to reference.
3956
+ #
3957
+ # @option params [Array<Types::Tag>] :tags
3958
+ # Any tags associated with the hub content to reference.
3959
+ #
3960
+ # @return [Types::CreateHubContentReferenceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3961
+ #
3962
+ # * {Types::CreateHubContentReferenceResponse#hub_arn #hub_arn} => String
3963
+ # * {Types::CreateHubContentReferenceResponse#hub_content_arn #hub_content_arn} => String
3964
+ #
3965
+ # @example Request syntax with placeholder values
3966
+ #
3967
+ # resp = client.create_hub_content_reference({
3968
+ # hub_name: "HubNameOrArn", # required
3969
+ # sage_maker_public_hub_content_arn: "SageMakerPublicHubContentArn", # required
3970
+ # hub_content_name: "HubContentName",
3971
+ # min_version: "HubContentVersion",
3972
+ # tags: [
3973
+ # {
3974
+ # key: "TagKey", # required
3975
+ # value: "TagValue", # required
3976
+ # },
3977
+ # ],
3978
+ # })
3979
+ #
3980
+ # @example Response structure
3981
+ #
3982
+ # resp.hub_arn #=> String
3983
+ # resp.hub_content_arn #=> String
3984
+ #
3985
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateHubContentReference AWS API Documentation
3986
+ #
3987
+ # @overload create_hub_content_reference(params = {})
3988
+ # @param [Hash] params ({})
3989
+ def create_hub_content_reference(params = {}, options = {})
3990
+ req = build_request(:create_hub_content_reference, params)
3991
+ req.send_request(options)
3992
+ end
3993
+
3939
3994
  # Defines the settings you will use for the human review workflow user
3940
3995
  # interface. Reviewers will see a three-panel interface with an
3941
3996
  # instruction area, the item to review, and an input area.
@@ -5616,6 +5671,9 @@ module Aws::SageMaker
5616
5671
  # model_access_config: {
5617
5672
  # accept_eula: false, # required
5618
5673
  # },
5674
+ # hub_access_config: {
5675
+ # hub_content_arn: "HubContentArn", # required
5676
+ # },
5619
5677
  # },
5620
5678
  # },
5621
5679
  # environment: {
@@ -5647,6 +5705,9 @@ module Aws::SageMaker
5647
5705
  # model_access_config: {
5648
5706
  # accept_eula: false, # required
5649
5707
  # },
5708
+ # hub_access_config: {
5709
+ # hub_content_arn: "HubContentArn", # required
5710
+ # },
5650
5711
  # },
5651
5712
  # },
5652
5713
  # environment: {
@@ -6320,6 +6381,9 @@ module Aws::SageMaker
6320
6381
  # model_access_config: {
6321
6382
  # accept_eula: false, # required
6322
6383
  # },
6384
+ # hub_access_config: {
6385
+ # hub_content_arn: "HubContentArn", # required
6386
+ # },
6323
6387
  # },
6324
6388
  # },
6325
6389
  # product_id: "ProductId",
@@ -6394,6 +6458,9 @@ module Aws::SageMaker
6394
6458
  # model_access_config: {
6395
6459
  # accept_eula: false, # required
6396
6460
  # },
6461
+ # hub_access_config: {
6462
+ # hub_content_arn: "HubContentArn", # required
6463
+ # },
6397
6464
  # },
6398
6465
  # },
6399
6466
  # algorithm_name: "ArnOrName", # required
@@ -6544,6 +6611,9 @@ module Aws::SageMaker
6544
6611
  # model_access_config: {
6545
6612
  # accept_eula: false, # required
6546
6613
  # },
6614
+ # hub_access_config: {
6615
+ # hub_content_arn: "HubContentArn", # required
6616
+ # },
6547
6617
  # },
6548
6618
  # },
6549
6619
  # product_id: "ProductId",
@@ -9953,10 +10023,6 @@ module Aws::SageMaker
9953
10023
 
9954
10024
  # Delete a hub.
9955
10025
  #
9956
- # <note markdown="1"> Hub APIs are only callable through SageMaker Studio.
9957
- #
9958
- # </note>
9959
- #
9960
10026
  # @option params [required, String] :hub_name
9961
10027
  # The name of the hub to delete.
9962
10028
  #
@@ -9965,7 +10031,7 @@ module Aws::SageMaker
9965
10031
  # @example Request syntax with placeholder values
9966
10032
  #
9967
10033
  # resp = client.delete_hub({
9968
- # hub_name: "HubName", # required
10034
+ # hub_name: "HubNameOrArn", # required
9969
10035
  # })
9970
10036
  #
9971
10037
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteHub AWS API Documentation
@@ -9979,10 +10045,6 @@ module Aws::SageMaker
9979
10045
 
9980
10046
  # Delete the contents of a hub.
9981
10047
  #
9982
- # <note markdown="1"> Hub APIs are only callable through SageMaker Studio.
9983
- #
9984
- # </note>
9985
- #
9986
10048
  # @option params [required, String] :hub_name
9987
10049
  # The name of the hub that you want to delete content in.
9988
10050
  #
@@ -10000,8 +10062,8 @@ module Aws::SageMaker
10000
10062
  # @example Request syntax with placeholder values
10001
10063
  #
10002
10064
  # resp = client.delete_hub_content({
10003
- # hub_name: "HubName", # required
10004
- # hub_content_type: "Model", # required, accepts Model, Notebook
10065
+ # hub_name: "HubNameOrArn", # required
10066
+ # hub_content_type: "Model", # required, accepts Model, Notebook, ModelReference
10005
10067
  # hub_content_name: "HubContentName", # required
10006
10068
  # hub_content_version: "HubContentVersion", # required
10007
10069
  # })
@@ -10015,6 +10077,37 @@ module Aws::SageMaker
10015
10077
  req.send_request(options)
10016
10078
  end
10017
10079
 
10080
+ # Delete a hub content reference in order to remove a model from a
10081
+ # private hub.
10082
+ #
10083
+ # @option params [required, String] :hub_name
10084
+ # The name of the hub to delete the hub content reference from.
10085
+ #
10086
+ # @option params [required, String] :hub_content_type
10087
+ # The type of hub content to delete.
10088
+ #
10089
+ # @option params [required, String] :hub_content_name
10090
+ # The name of the hub content to delete.
10091
+ #
10092
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
10093
+ #
10094
+ # @example Request syntax with placeholder values
10095
+ #
10096
+ # resp = client.delete_hub_content_reference({
10097
+ # hub_name: "HubNameOrArn", # required
10098
+ # hub_content_type: "Model", # required, accepts Model, Notebook, ModelReference
10099
+ # hub_content_name: "HubContentName", # required
10100
+ # })
10101
+ #
10102
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteHubContentReference AWS API Documentation
10103
+ #
10104
+ # @overload delete_hub_content_reference(params = {})
10105
+ # @param [Hash] params ({})
10106
+ def delete_hub_content_reference(params = {}, options = {})
10107
+ req = build_request(:delete_hub_content_reference, params)
10108
+ req.send_request(options)
10109
+ end
10110
+
10018
10111
  # Use this operation to delete a human task user interface (worker task
10019
10112
  # template).
10020
10113
  #
@@ -10967,6 +11060,7 @@ module Aws::SageMaker
10967
11060
  # resp.inference_specification.containers[0].model_data_source.s3_data_source.s3_data_type #=> String, one of "S3Prefix", "S3Object"
10968
11061
  # resp.inference_specification.containers[0].model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
10969
11062
  # resp.inference_specification.containers[0].model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
11063
+ # resp.inference_specification.containers[0].model_data_source.s3_data_source.hub_access_config.hub_content_arn #=> String
10970
11064
  # resp.inference_specification.containers[0].product_id #=> String
10971
11065
  # resp.inference_specification.containers[0].environment #=> Hash
10972
11066
  # resp.inference_specification.containers[0].environment["EnvironmentKey"] #=> String
@@ -12998,11 +13092,7 @@ module Aws::SageMaker
12998
13092
  req.send_request(options)
12999
13093
  end
13000
13094
 
13001
- # Describe a hub.
13002
- #
13003
- # <note markdown="1"> Hub APIs are only callable through SageMaker Studio.
13004
- #
13005
- # </note>
13095
+ # Describes a hub.
13006
13096
  #
13007
13097
  # @option params [required, String] :hub_name
13008
13098
  # The name of the hub to describe.
@@ -13023,7 +13113,7 @@ module Aws::SageMaker
13023
13113
  # @example Request syntax with placeholder values
13024
13114
  #
13025
13115
  # resp = client.describe_hub({
13026
- # hub_name: "HubName", # required
13116
+ # hub_name: "HubNameOrArn", # required
13027
13117
  # })
13028
13118
  #
13029
13119
  # @example Response structure
@@ -13051,10 +13141,6 @@ module Aws::SageMaker
13051
13141
 
13052
13142
  # Describe the content of a hub.
13053
13143
  #
13054
- # <note markdown="1"> Hub APIs are only callable through SageMaker Studio.
13055
- #
13056
- # </note>
13057
- #
13058
13144
  # @option params [required, String] :hub_name
13059
13145
  # The name of the hub that contains the content to describe.
13060
13146
  #
@@ -13080,6 +13166,9 @@ module Aws::SageMaker
13080
13166
  # * {Types::DescribeHubContentResponse#hub_content_description #hub_content_description} => String
13081
13167
  # * {Types::DescribeHubContentResponse#hub_content_markdown #hub_content_markdown} => String
13082
13168
  # * {Types::DescribeHubContentResponse#hub_content_document #hub_content_document} => String
13169
+ # * {Types::DescribeHubContentResponse#sage_maker_public_hub_content_arn #sage_maker_public_hub_content_arn} => String
13170
+ # * {Types::DescribeHubContentResponse#reference_min_version #reference_min_version} => String
13171
+ # * {Types::DescribeHubContentResponse#support_status #support_status} => String
13083
13172
  # * {Types::DescribeHubContentResponse#hub_content_search_keywords #hub_content_search_keywords} => Array&lt;String&gt;
13084
13173
  # * {Types::DescribeHubContentResponse#hub_content_dependencies #hub_content_dependencies} => Array&lt;Types::HubContentDependency&gt;
13085
13174
  # * {Types::DescribeHubContentResponse#hub_content_status #hub_content_status} => String
@@ -13089,8 +13178,8 @@ module Aws::SageMaker
13089
13178
  # @example Request syntax with placeholder values
13090
13179
  #
13091
13180
  # resp = client.describe_hub_content({
13092
- # hub_name: "HubName", # required
13093
- # hub_content_type: "Model", # required, accepts Model, Notebook
13181
+ # hub_name: "HubNameOrArn", # required
13182
+ # hub_content_type: "Model", # required, accepts Model, Notebook, ModelReference
13094
13183
  # hub_content_name: "HubContentName", # required
13095
13184
  # hub_content_version: "HubContentVersion",
13096
13185
  # })
@@ -13100,7 +13189,7 @@ module Aws::SageMaker
13100
13189
  # resp.hub_content_name #=> String
13101
13190
  # resp.hub_content_arn #=> String
13102
13191
  # resp.hub_content_version #=> String
13103
- # resp.hub_content_type #=> String, one of "Model", "Notebook"
13192
+ # resp.hub_content_type #=> String, one of "Model", "Notebook", "ModelReference"
13104
13193
  # resp.document_schema_version #=> String
13105
13194
  # resp.hub_name #=> String
13106
13195
  # resp.hub_arn #=> String
@@ -13108,6 +13197,9 @@ module Aws::SageMaker
13108
13197
  # resp.hub_content_description #=> String
13109
13198
  # resp.hub_content_markdown #=> String
13110
13199
  # resp.hub_content_document #=> String
13200
+ # resp.sage_maker_public_hub_content_arn #=> String
13201
+ # resp.reference_min_version #=> String
13202
+ # resp.support_status #=> String, one of "Supported", "Deprecated"
13111
13203
  # resp.hub_content_search_keywords #=> Array
13112
13204
  # resp.hub_content_search_keywords[0] #=> String
13113
13205
  # resp.hub_content_dependencies #=> Array
@@ -14107,6 +14199,7 @@ module Aws::SageMaker
14107
14199
  # resp.primary_container.model_data_source.s3_data_source.s3_data_type #=> String, one of "S3Prefix", "S3Object"
14108
14200
  # resp.primary_container.model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
14109
14201
  # resp.primary_container.model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
14202
+ # resp.primary_container.model_data_source.s3_data_source.hub_access_config.hub_content_arn #=> String
14110
14203
  # resp.primary_container.environment #=> Hash
14111
14204
  # resp.primary_container.environment["EnvironmentKey"] #=> String
14112
14205
  # resp.primary_container.model_package_name #=> String
@@ -14123,6 +14216,7 @@ module Aws::SageMaker
14123
14216
  # resp.containers[0].model_data_source.s3_data_source.s3_data_type #=> String, one of "S3Prefix", "S3Object"
14124
14217
  # resp.containers[0].model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
14125
14218
  # resp.containers[0].model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
14219
+ # resp.containers[0].model_data_source.s3_data_source.hub_access_config.hub_content_arn #=> String
14126
14220
  # resp.containers[0].environment #=> Hash
14127
14221
  # resp.containers[0].environment["EnvironmentKey"] #=> String
14128
14222
  # resp.containers[0].model_package_name #=> String
@@ -14520,6 +14614,7 @@ module Aws::SageMaker
14520
14614
  # resp.inference_specification.containers[0].model_data_source.s3_data_source.s3_data_type #=> String, one of "S3Prefix", "S3Object"
14521
14615
  # resp.inference_specification.containers[0].model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
14522
14616
  # resp.inference_specification.containers[0].model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
14617
+ # resp.inference_specification.containers[0].model_data_source.s3_data_source.hub_access_config.hub_content_arn #=> String
14523
14618
  # resp.inference_specification.containers[0].product_id #=> String
14524
14619
  # resp.inference_specification.containers[0].environment #=> Hash
14525
14620
  # resp.inference_specification.containers[0].environment["EnvironmentKey"] #=> String
@@ -14544,6 +14639,7 @@ module Aws::SageMaker
14544
14639
  # resp.source_algorithm_specification.source_algorithms[0].model_data_source.s3_data_source.s3_data_type #=> String, one of "S3Prefix", "S3Object"
14545
14640
  # resp.source_algorithm_specification.source_algorithms[0].model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
14546
14641
  # resp.source_algorithm_specification.source_algorithms[0].model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
14642
+ # resp.source_algorithm_specification.source_algorithms[0].model_data_source.s3_data_source.hub_access_config.hub_content_arn #=> String
14547
14643
  # resp.source_algorithm_specification.source_algorithms[0].algorithm_name #=> String
14548
14644
  # resp.validation_specification.validation_role #=> String
14549
14645
  # resp.validation_specification.validation_profiles #=> Array
@@ -14662,6 +14758,7 @@ module Aws::SageMaker
14662
14758
  # resp.additional_inference_specifications[0].containers[0].model_data_source.s3_data_source.s3_data_type #=> String, one of "S3Prefix", "S3Object"
14663
14759
  # resp.additional_inference_specifications[0].containers[0].model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
14664
14760
  # resp.additional_inference_specifications[0].containers[0].model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
14761
+ # resp.additional_inference_specifications[0].containers[0].model_data_source.s3_data_source.hub_access_config.hub_content_arn #=> String
14665
14762
  # resp.additional_inference_specifications[0].containers[0].product_id #=> String
14666
14763
  # resp.additional_inference_specifications[0].containers[0].environment #=> Hash
14667
14764
  # resp.additional_inference_specifications[0].containers[0].environment["EnvironmentKey"] #=> String
@@ -16642,10 +16739,6 @@ module Aws::SageMaker
16642
16739
 
16643
16740
  # Import hub content.
16644
16741
  #
16645
- # <note markdown="1"> Hub APIs are only callable through SageMaker Studio.
16646
- #
16647
- # </note>
16648
- #
16649
16742
  # @option params [required, String] :hub_content_name
16650
16743
  # The name of the hub content to import.
16651
16744
  #
@@ -16691,9 +16784,9 @@ module Aws::SageMaker
16691
16784
  # resp = client.import_hub_content({
16692
16785
  # hub_content_name: "HubContentName", # required
16693
16786
  # hub_content_version: "HubContentVersion",
16694
- # hub_content_type: "Model", # required, accepts Model, Notebook
16787
+ # hub_content_type: "Model", # required, accepts Model, Notebook, ModelReference
16695
16788
  # document_schema_version: "DocumentSchemaVersion", # required
16696
- # hub_name: "HubName", # required
16789
+ # hub_name: "HubNameOrArn", # required
16697
16790
  # hub_content_display_name: "HubContentDisplayName",
16698
16791
  # hub_content_description: "HubContentDescription",
16699
16792
  # hub_content_markdown: "HubContentMarkdown",
@@ -18646,10 +18739,6 @@ module Aws::SageMaker
18646
18739
 
18647
18740
  # List hub content versions.
18648
18741
  #
18649
- # <note markdown="1"> Hub APIs are only callable through SageMaker Studio.
18650
- #
18651
- # </note>
18652
- #
18653
18742
  # @option params [required, String] :hub_name
18654
18743
  # The name of the hub to list the content versions of.
18655
18744
  #
@@ -18695,8 +18784,8 @@ module Aws::SageMaker
18695
18784
  # @example Request syntax with placeholder values
18696
18785
  #
18697
18786
  # resp = client.list_hub_content_versions({
18698
- # hub_name: "HubName", # required
18699
- # hub_content_type: "Model", # required, accepts Model, Notebook
18787
+ # hub_name: "HubNameOrArn", # required
18788
+ # hub_content_type: "Model", # required, accepts Model, Notebook, ModelReference
18700
18789
  # hub_content_name: "HubContentName", # required
18701
18790
  # min_version: "HubContentVersion",
18702
18791
  # max_schema_version: "DocumentSchemaVersion",
@@ -18713,15 +18802,18 @@ module Aws::SageMaker
18713
18802
  # resp.hub_content_summaries #=> Array
18714
18803
  # resp.hub_content_summaries[0].hub_content_name #=> String
18715
18804
  # resp.hub_content_summaries[0].hub_content_arn #=> String
18805
+ # resp.hub_content_summaries[0].sage_maker_public_hub_content_arn #=> String
18716
18806
  # resp.hub_content_summaries[0].hub_content_version #=> String
18717
- # resp.hub_content_summaries[0].hub_content_type #=> String, one of "Model", "Notebook"
18807
+ # resp.hub_content_summaries[0].hub_content_type #=> String, one of "Model", "Notebook", "ModelReference"
18718
18808
  # resp.hub_content_summaries[0].document_schema_version #=> String
18719
18809
  # resp.hub_content_summaries[0].hub_content_display_name #=> String
18720
18810
  # resp.hub_content_summaries[0].hub_content_description #=> String
18811
+ # resp.hub_content_summaries[0].support_status #=> String, one of "Supported", "Deprecated"
18721
18812
  # resp.hub_content_summaries[0].hub_content_search_keywords #=> Array
18722
18813
  # resp.hub_content_summaries[0].hub_content_search_keywords[0] #=> String
18723
18814
  # resp.hub_content_summaries[0].hub_content_status #=> String, one of "Available", "Importing", "Deleting", "ImportFailed", "DeleteFailed"
18724
18815
  # resp.hub_content_summaries[0].creation_time #=> Time
18816
+ # resp.hub_content_summaries[0].original_creation_time #=> Time
18725
18817
  # resp.next_token #=> String
18726
18818
  #
18727
18819
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListHubContentVersions AWS API Documentation
@@ -18735,10 +18827,6 @@ module Aws::SageMaker
18735
18827
 
18736
18828
  # List the contents of a hub.
18737
18829
  #
18738
- # <note markdown="1"> Hub APIs are only callable through SageMaker Studio.
18739
- #
18740
- # </note>
18741
- #
18742
18830
  # @option params [required, String] :hub_name
18743
18831
  # The name of the hub to list the contents of.
18744
18832
  #
@@ -18779,8 +18867,8 @@ module Aws::SageMaker
18779
18867
  # @example Request syntax with placeholder values
18780
18868
  #
18781
18869
  # resp = client.list_hub_contents({
18782
- # hub_name: "HubName", # required
18783
- # hub_content_type: "Model", # required, accepts Model, Notebook
18870
+ # hub_name: "HubNameOrArn", # required
18871
+ # hub_content_type: "Model", # required, accepts Model, Notebook, ModelReference
18784
18872
  # name_contains: "NameContains",
18785
18873
  # max_schema_version: "DocumentSchemaVersion",
18786
18874
  # creation_time_before: Time.now,
@@ -18796,15 +18884,18 @@ module Aws::SageMaker
18796
18884
  # resp.hub_content_summaries #=> Array
18797
18885
  # resp.hub_content_summaries[0].hub_content_name #=> String
18798
18886
  # resp.hub_content_summaries[0].hub_content_arn #=> String
18887
+ # resp.hub_content_summaries[0].sage_maker_public_hub_content_arn #=> String
18799
18888
  # resp.hub_content_summaries[0].hub_content_version #=> String
18800
- # resp.hub_content_summaries[0].hub_content_type #=> String, one of "Model", "Notebook"
18889
+ # resp.hub_content_summaries[0].hub_content_type #=> String, one of "Model", "Notebook", "ModelReference"
18801
18890
  # resp.hub_content_summaries[0].document_schema_version #=> String
18802
18891
  # resp.hub_content_summaries[0].hub_content_display_name #=> String
18803
18892
  # resp.hub_content_summaries[0].hub_content_description #=> String
18893
+ # resp.hub_content_summaries[0].support_status #=> String, one of "Supported", "Deprecated"
18804
18894
  # resp.hub_content_summaries[0].hub_content_search_keywords #=> Array
18805
18895
  # resp.hub_content_summaries[0].hub_content_search_keywords[0] #=> String
18806
18896
  # resp.hub_content_summaries[0].hub_content_status #=> String, one of "Available", "Importing", "Deleting", "ImportFailed", "DeleteFailed"
18807
18897
  # resp.hub_content_summaries[0].creation_time #=> Time
18898
+ # resp.hub_content_summaries[0].original_creation_time #=> Time
18808
18899
  # resp.next_token #=> String
18809
18900
  #
18810
18901
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListHubContents AWS API Documentation
@@ -18818,10 +18909,6 @@ module Aws::SageMaker
18818
18909
 
18819
18910
  # List all existing hubs.
18820
18911
  #
18821
- # <note markdown="1"> Hub APIs are only callable through SageMaker Studio.
18822
- #
18823
- # </note>
18824
- #
18825
18912
  # @option params [String] :name_contains
18826
18913
  # Only list hubs with names that contain the specified string.
18827
18914
  #
@@ -24925,10 +25012,6 @@ module Aws::SageMaker
24925
25012
 
24926
25013
  # Update a hub.
24927
25014
  #
24928
- # <note markdown="1"> Hub APIs are only callable through SageMaker Studio.
24929
- #
24930
- # </note>
24931
- #
24932
25015
  # @option params [required, String] :hub_name
24933
25016
  # The name of the hub to update.
24934
25017
  #
@@ -24948,7 +25031,7 @@ module Aws::SageMaker
24948
25031
  # @example Request syntax with placeholder values
24949
25032
  #
24950
25033
  # resp = client.update_hub({
24951
- # hub_name: "HubName", # required
25034
+ # hub_name: "HubNameOrArn", # required
24952
25035
  # hub_description: "HubDescription",
24953
25036
  # hub_display_name: "HubDisplayName",
24954
25037
  # hub_search_keywords: ["HubSearchKeyword"],
@@ -25505,6 +25588,9 @@ module Aws::SageMaker
25505
25588
  # model_access_config: {
25506
25589
  # accept_eula: false, # required
25507
25590
  # },
25591
+ # hub_access_config: {
25592
+ # hub_content_arn: "HubContentArn", # required
25593
+ # },
25508
25594
  # },
25509
25595
  # },
25510
25596
  # product_id: "ProductId",
@@ -25545,6 +25631,9 @@ module Aws::SageMaker
25545
25631
  # model_access_config: {
25546
25632
  # accept_eula: false, # required
25547
25633
  # },
25634
+ # hub_access_config: {
25635
+ # hub_content_arn: "HubContentArn", # required
25636
+ # },
25548
25637
  # },
25549
25638
  # },
25550
25639
  # product_id: "ProductId",
@@ -26927,7 +27016,7 @@ module Aws::SageMaker
26927
27016
  params: params,
26928
27017
  config: config)
26929
27018
  context[:gem_name] = 'aws-sdk-sagemaker'
26930
- context[:gem_version] = '1.247.0'
27019
+ context[:gem_version] = '1.249.0'
26931
27020
  Seahorse::Client::Request.new(handlers, context)
26932
27021
  end
26933
27022