aws-sdk-sagemaker 1.197.0 → 1.198.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +107 -11
- data/lib/aws-sdk-sagemaker/client_api.rb +51 -4
- 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 +125 -7
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 90f841248e75de9cce3a779e74f75a8dc9aa7b17c86ebacf954aaa685aa3e063
|
4
|
+
data.tar.gz: '0868653ff7ac36ae896680dfe8f980c50555a3e4062f4ddd81f465c5ca65b370'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c3f1b1545ebdfd40ce003359c05ac0aeb160e1dc23971769e16587efdd80c42546ab56e5e07fe28ed2cb5ec71bf390d4b614a98a96d862c5fb4b6a88c4dc5d92
|
7
|
+
data.tar.gz: a1d8e29ff718d92ccfddda06000d238ab2e28c2d8f53669fd6c22b9fae8d0a1e2ae1b734946b19e438daf7daacfbd3e1a1603a94e52443842ff3753d88328203
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.198.0
|
@@ -11427,7 +11427,8 @@ module Aws::SageMaker
|
|
11427
11427
|
# identifier for each `FeatureGroup`, and more.
|
11428
11428
|
#
|
11429
11429
|
# @option params [required, String] :feature_group_name
|
11430
|
-
# The name of the `FeatureGroup` you want
|
11430
|
+
# The name or Amazon Resource Name (ARN) of the `FeatureGroup` you want
|
11431
|
+
# described.
|
11431
11432
|
#
|
11432
11433
|
# @option params [String] :next_token
|
11433
11434
|
# A token to resume pagination of the list of `Features`
|
@@ -11456,7 +11457,7 @@ module Aws::SageMaker
|
|
11456
11457
|
# @example Request syntax with placeholder values
|
11457
11458
|
#
|
11458
11459
|
# resp = client.describe_feature_group({
|
11459
|
-
# feature_group_name: "
|
11460
|
+
# feature_group_name: "FeatureGroupNameOrArn", # required
|
11460
11461
|
# next_token: "NextToken",
|
11461
11462
|
# })
|
11462
11463
|
#
|
@@ -11506,7 +11507,8 @@ module Aws::SageMaker
|
|
11506
11507
|
# Shows the metadata for a feature within a feature group.
|
11507
11508
|
#
|
11508
11509
|
# @option params [required, String] :feature_group_name
|
11509
|
-
# The name of the feature group containing
|
11510
|
+
# The name or Amazon Resource Name (ARN) of the feature group containing
|
11511
|
+
# the feature.
|
11510
11512
|
#
|
11511
11513
|
# @option params [required, String] :feature_name
|
11512
11514
|
# The name of the feature.
|
@@ -11525,7 +11527,7 @@ module Aws::SageMaker
|
|
11525
11527
|
# @example Request syntax with placeholder values
|
11526
11528
|
#
|
11527
11529
|
# resp = client.describe_feature_metadata({
|
11528
|
-
# feature_group_name: "
|
11530
|
+
# feature_group_name: "FeatureGroupNameOrArn", # required
|
11529
11531
|
# feature_name: "FeatureName", # required
|
11530
11532
|
# })
|
11531
11533
|
#
|
@@ -19433,6 +19435,70 @@ module Aws::SageMaker
|
|
19433
19435
|
req.send_request(options)
|
19434
19436
|
end
|
19435
19437
|
|
19438
|
+
# Lists Amazon SageMaker Catalogs based on given filters and orders. The
|
19439
|
+
# maximum number of `ResourceCatalog`s viewable is 1000.
|
19440
|
+
#
|
19441
|
+
# @option params [String] :name_contains
|
19442
|
+
# A string that partially matches one or more `ResourceCatalog`s names.
|
19443
|
+
# Filters `ResourceCatalog` by name.
|
19444
|
+
#
|
19445
|
+
# @option params [Time,DateTime,Date,Integer,String] :creation_time_after
|
19446
|
+
# Use this parameter to search for `ResourceCatalog`s created after a
|
19447
|
+
# specific date and time.
|
19448
|
+
#
|
19449
|
+
# @option params [Time,DateTime,Date,Integer,String] :creation_time_before
|
19450
|
+
# Use this parameter to search for `ResourceCatalog`s created before a
|
19451
|
+
# specific date and time.
|
19452
|
+
#
|
19453
|
+
# @option params [String] :sort_order
|
19454
|
+
# The order in which the resource catalogs are listed.
|
19455
|
+
#
|
19456
|
+
# @option params [String] :sort_by
|
19457
|
+
# The value on which the resource catalog list is sorted.
|
19458
|
+
#
|
19459
|
+
# @option params [Integer] :max_results
|
19460
|
+
# The maximum number of results returned by `ListResourceCatalogs`.
|
19461
|
+
#
|
19462
|
+
# @option params [String] :next_token
|
19463
|
+
# A token to resume pagination of `ListResourceCatalogs` results.
|
19464
|
+
#
|
19465
|
+
# @return [Types::ListResourceCatalogsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
19466
|
+
#
|
19467
|
+
# * {Types::ListResourceCatalogsResponse#resource_catalogs #resource_catalogs} => Array<Types::ResourceCatalog>
|
19468
|
+
# * {Types::ListResourceCatalogsResponse#next_token #next_token} => String
|
19469
|
+
#
|
19470
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
19471
|
+
#
|
19472
|
+
# @example Request syntax with placeholder values
|
19473
|
+
#
|
19474
|
+
# resp = client.list_resource_catalogs({
|
19475
|
+
# name_contains: "ResourceCatalogName",
|
19476
|
+
# creation_time_after: Time.now,
|
19477
|
+
# creation_time_before: Time.now,
|
19478
|
+
# sort_order: "Ascending", # accepts Ascending, Descending
|
19479
|
+
# sort_by: "CreationTime", # accepts CreationTime
|
19480
|
+
# max_results: 1,
|
19481
|
+
# next_token: "NextToken",
|
19482
|
+
# })
|
19483
|
+
#
|
19484
|
+
# @example Response structure
|
19485
|
+
#
|
19486
|
+
# resp.resource_catalogs #=> Array
|
19487
|
+
# resp.resource_catalogs[0].resource_catalog_arn #=> String
|
19488
|
+
# resp.resource_catalogs[0].resource_catalog_name #=> String
|
19489
|
+
# resp.resource_catalogs[0].description #=> String
|
19490
|
+
# resp.resource_catalogs[0].creation_time #=> Time
|
19491
|
+
# resp.next_token #=> String
|
19492
|
+
#
|
19493
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListResourceCatalogs AWS API Documentation
|
19494
|
+
#
|
19495
|
+
# @overload list_resource_catalogs(params = {})
|
19496
|
+
# @param [Hash] params ({})
|
19497
|
+
def list_resource_catalogs(params = {}, options = {})
|
19498
|
+
req = build_request(:list_resource_catalogs, params)
|
19499
|
+
req.send_request(options)
|
19500
|
+
end
|
19501
|
+
|
19436
19502
|
# Lists spaces.
|
19437
19503
|
#
|
19438
19504
|
# @option params [String] :next_token
|
@@ -20740,6 +20806,20 @@ module Aws::SageMaker
|
|
20740
20806
|
# @option params [Integer] :max_results
|
20741
20807
|
# The maximum number of results to return.
|
20742
20808
|
#
|
20809
|
+
# @option params [String] :cross_account_filter_option
|
20810
|
+
# A cross account filter option. When the value is `"CrossAccount"` the
|
20811
|
+
# search results will only include resources made discoverable to you
|
20812
|
+
# from other accounts. When the value is `"SameAccount"` or `null` the
|
20813
|
+
# search results will only include resources from your account. Default
|
20814
|
+
# is `null`. For more information on searching for resources made
|
20815
|
+
# discoverable to your account, see [ Search discoverable resources][1]
|
20816
|
+
# in the SageMaker Developer Guide. The maximum number of
|
20817
|
+
# `ResourceCatalog`s viewable is 1000.
|
20818
|
+
#
|
20819
|
+
#
|
20820
|
+
#
|
20821
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/feature-store-cross-account-discoverability-use.html
|
20822
|
+
#
|
20743
20823
|
# @return [Types::SearchResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
20744
20824
|
#
|
20745
20825
|
# * {Types::SearchResponse#results #results} => Array<Types::SearchRecord>
|
@@ -20782,6 +20862,7 @@ module Aws::SageMaker
|
|
20782
20862
|
# sort_order: "Ascending", # accepts Ascending, Descending
|
20783
20863
|
# next_token: "NextToken",
|
20784
20864
|
# max_results: 1,
|
20865
|
+
# cross_account_filter_option: "SameAccount", # accepts SameAccount, CrossAccount
|
20785
20866
|
# })
|
20786
20867
|
#
|
20787
20868
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Search AWS API Documentation
|
@@ -22203,10 +22284,25 @@ module Aws::SageMaker
|
|
22203
22284
|
req.send_request(options)
|
22204
22285
|
end
|
22205
22286
|
|
22206
|
-
# Updates the feature group
|
22287
|
+
# Updates the feature group by either adding features or updating the
|
22288
|
+
# online store configuration. Use one of the following request
|
22289
|
+
# parameters at a time while using the `UpdateFeatureGroup` API.
|
22290
|
+
#
|
22291
|
+
# You can add features for your feature group using the
|
22292
|
+
# `FeatureAdditions` request parameter. Features cannot be removed from
|
22293
|
+
# a feature group.
|
22294
|
+
#
|
22295
|
+
# You can update the online store configuration by using the
|
22296
|
+
# `OnlineStoreConfig` request parameter. If a `TtlDuration` is
|
22297
|
+
# specified, the default `TtlDuration` applies for all records added to
|
22298
|
+
# the feature group *after the feature group is updated*. If a record
|
22299
|
+
# level `TtlDuration` exists from using the `PutRecord` API, the record
|
22300
|
+
# level `TtlDuration` applies to that record instead of the default
|
22301
|
+
# `TtlDuration`.
|
22207
22302
|
#
|
22208
22303
|
# @option params [required, String] :feature_group_name
|
22209
|
-
# The name of the feature group that
|
22304
|
+
# The name or Amazon Resource Name (ARN) of the feature group that
|
22305
|
+
# you're updating.
|
22210
22306
|
#
|
22211
22307
|
# @option params [Array<Types::FeatureDefinition>] :feature_additions
|
22212
22308
|
# Updates the feature group. Updating a feature group is an asynchronous
|
@@ -22224,7 +22320,7 @@ module Aws::SageMaker
|
|
22224
22320
|
# @example Request syntax with placeholder values
|
22225
22321
|
#
|
22226
22322
|
# resp = client.update_feature_group({
|
22227
|
-
# feature_group_name: "
|
22323
|
+
# feature_group_name: "FeatureGroupNameOrArn", # required
|
22228
22324
|
# feature_additions: [
|
22229
22325
|
# {
|
22230
22326
|
# feature_name: "FeatureName",
|
@@ -22255,8 +22351,8 @@ module Aws::SageMaker
|
|
22255
22351
|
# Updates the description and parameters of the feature group.
|
22256
22352
|
#
|
22257
22353
|
# @option params [required, String] :feature_group_name
|
22258
|
-
# The name
|
22259
|
-
# updating.
|
22354
|
+
# The name or Amazon Resource Name (ARN) of the feature group containing
|
22355
|
+
# the feature that you're updating.
|
22260
22356
|
#
|
22261
22357
|
# @option params [required, String] :feature_name
|
22262
22358
|
# The name of the feature that you're updating.
|
@@ -22277,7 +22373,7 @@ module Aws::SageMaker
|
|
22277
22373
|
# @example Request syntax with placeholder values
|
22278
22374
|
#
|
22279
22375
|
# resp = client.update_feature_metadata({
|
22280
|
-
# feature_group_name: "
|
22376
|
+
# feature_group_name: "FeatureGroupNameOrArn", # required
|
22281
22377
|
# feature_name: "FeatureName", # required
|
22282
22378
|
# description: "FeatureDescription",
|
22283
22379
|
# parameter_additions: [
|
@@ -23901,7 +23997,7 @@ module Aws::SageMaker
|
|
23901
23997
|
params: params,
|
23902
23998
|
config: config)
|
23903
23999
|
context[:gem_name] = 'aws-sdk-sagemaker'
|
23904
|
-
context[:gem_version] = '1.
|
24000
|
+
context[:gem_version] = '1.198.0'
|
23905
24001
|
Seahorse::Client::Request.new(handlers, context)
|
23906
24002
|
end
|
23907
24003
|
|
@@ -401,6 +401,7 @@ module Aws::SageMaker
|
|
401
401
|
CreateWorkteamRequest = Shapes::StructureShape.new(name: 'CreateWorkteamRequest')
|
402
402
|
CreateWorkteamResponse = Shapes::StructureShape.new(name: 'CreateWorkteamResponse')
|
403
403
|
CreationTime = Shapes::TimestampShape.new(name: 'CreationTime')
|
404
|
+
CrossAccountFilterOption = Shapes::StringShape.new(name: 'CrossAccountFilterOption')
|
404
405
|
CsvContentType = Shapes::StringShape.new(name: 'CsvContentType')
|
405
406
|
CsvContentTypes = Shapes::ListShape.new(name: 'CsvContentTypes')
|
406
407
|
CustomImage = Shapes::StructureShape.new(name: 'CustomImage')
|
@@ -763,6 +764,7 @@ module Aws::SageMaker
|
|
763
764
|
FeatureGroupMaxResults = Shapes::IntegerShape.new(name: 'FeatureGroupMaxResults')
|
764
765
|
FeatureGroupName = Shapes::StringShape.new(name: 'FeatureGroupName')
|
765
766
|
FeatureGroupNameContains = Shapes::StringShape.new(name: 'FeatureGroupNameContains')
|
767
|
+
FeatureGroupNameOrArn = Shapes::StringShape.new(name: 'FeatureGroupNameOrArn')
|
766
768
|
FeatureGroupSortBy = Shapes::StringShape.new(name: 'FeatureGroupSortBy')
|
767
769
|
FeatureGroupSortOrder = Shapes::StringShape.new(name: 'FeatureGroupSortOrder')
|
768
770
|
FeatureGroupStatus = Shapes::StringShape.new(name: 'FeatureGroupStatus')
|
@@ -1163,6 +1165,8 @@ module Aws::SageMaker
|
|
1163
1165
|
ListProcessingJobsResponse = Shapes::StructureShape.new(name: 'ListProcessingJobsResponse')
|
1164
1166
|
ListProjectsInput = Shapes::StructureShape.new(name: 'ListProjectsInput')
|
1165
1167
|
ListProjectsOutput = Shapes::StructureShape.new(name: 'ListProjectsOutput')
|
1168
|
+
ListResourceCatalogsRequest = Shapes::StructureShape.new(name: 'ListResourceCatalogsRequest')
|
1169
|
+
ListResourceCatalogsResponse = Shapes::StructureShape.new(name: 'ListResourceCatalogsResponse')
|
1166
1170
|
ListSpacesRequest = Shapes::StructureShape.new(name: 'ListSpacesRequest')
|
1167
1171
|
ListSpacesResponse = Shapes::StructureShape.new(name: 'ListSpacesResponse')
|
1168
1172
|
ListStageDevicesRequest = Shapes::StructureShape.new(name: 'ListStageDevicesRequest')
|
@@ -1651,6 +1655,13 @@ module Aws::SageMaker
|
|
1651
1655
|
RepositoryUrl = Shapes::StringShape.new(name: 'RepositoryUrl')
|
1652
1656
|
ResolvedAttributes = Shapes::StructureShape.new(name: 'ResolvedAttributes')
|
1653
1657
|
ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
|
1658
|
+
ResourceCatalog = Shapes::StructureShape.new(name: 'ResourceCatalog')
|
1659
|
+
ResourceCatalogArn = Shapes::StringShape.new(name: 'ResourceCatalogArn')
|
1660
|
+
ResourceCatalogDescription = Shapes::StringShape.new(name: 'ResourceCatalogDescription')
|
1661
|
+
ResourceCatalogList = Shapes::ListShape.new(name: 'ResourceCatalogList')
|
1662
|
+
ResourceCatalogName = Shapes::StringShape.new(name: 'ResourceCatalogName')
|
1663
|
+
ResourceCatalogSortBy = Shapes::StringShape.new(name: 'ResourceCatalogSortBy')
|
1664
|
+
ResourceCatalogSortOrder = Shapes::StringShape.new(name: 'ResourceCatalogSortOrder')
|
1654
1665
|
ResourceConfig = Shapes::StructureShape.new(name: 'ResourceConfig')
|
1655
1666
|
ResourceConfigForUpdate = Shapes::StructureShape.new(name: 'ResourceConfigForUpdate')
|
1656
1667
|
ResourceId = Shapes::StringShape.new(name: 'ResourceId')
|
@@ -4040,7 +4051,7 @@ module Aws::SageMaker
|
|
4040
4051
|
DescribeExperimentResponse.add_member(:last_modified_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "LastModifiedBy"))
|
4041
4052
|
DescribeExperimentResponse.struct_class = Types::DescribeExperimentResponse
|
4042
4053
|
|
4043
|
-
DescribeFeatureGroupRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape:
|
4054
|
+
DescribeFeatureGroupRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupNameOrArn, required: true, location_name: "FeatureGroupName"))
|
4044
4055
|
DescribeFeatureGroupRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
4045
4056
|
DescribeFeatureGroupRequest.struct_class = Types::DescribeFeatureGroupRequest
|
4046
4057
|
|
@@ -4063,7 +4074,7 @@ module Aws::SageMaker
|
|
4063
4074
|
DescribeFeatureGroupResponse.add_member(:online_store_total_size_bytes, Shapes::ShapeRef.new(shape: OnlineStoreTotalSizeBytes, location_name: "OnlineStoreTotalSizeBytes"))
|
4064
4075
|
DescribeFeatureGroupResponse.struct_class = Types::DescribeFeatureGroupResponse
|
4065
4076
|
|
4066
|
-
DescribeFeatureMetadataRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape:
|
4077
|
+
DescribeFeatureMetadataRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupNameOrArn, required: true, location_name: "FeatureGroupName"))
|
4067
4078
|
DescribeFeatureMetadataRequest.add_member(:feature_name, Shapes::ShapeRef.new(shape: FeatureName, required: true, location_name: "FeatureName"))
|
4068
4079
|
DescribeFeatureMetadataRequest.struct_class = Types::DescribeFeatureMetadataRequest
|
4069
4080
|
|
@@ -6560,6 +6571,19 @@ module Aws::SageMaker
|
|
6560
6571
|
ListProjectsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
6561
6572
|
ListProjectsOutput.struct_class = Types::ListProjectsOutput
|
6562
6573
|
|
6574
|
+
ListResourceCatalogsRequest.add_member(:name_contains, Shapes::ShapeRef.new(shape: ResourceCatalogName, location_name: "NameContains"))
|
6575
|
+
ListResourceCatalogsRequest.add_member(:creation_time_after, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTimeAfter"))
|
6576
|
+
ListResourceCatalogsRequest.add_member(:creation_time_before, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTimeBefore"))
|
6577
|
+
ListResourceCatalogsRequest.add_member(:sort_order, Shapes::ShapeRef.new(shape: ResourceCatalogSortOrder, location_name: "SortOrder"))
|
6578
|
+
ListResourceCatalogsRequest.add_member(:sort_by, Shapes::ShapeRef.new(shape: ResourceCatalogSortBy, location_name: "SortBy"))
|
6579
|
+
ListResourceCatalogsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
6580
|
+
ListResourceCatalogsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
6581
|
+
ListResourceCatalogsRequest.struct_class = Types::ListResourceCatalogsRequest
|
6582
|
+
|
6583
|
+
ListResourceCatalogsResponse.add_member(:resource_catalogs, Shapes::ShapeRef.new(shape: ResourceCatalogList, location_name: "ResourceCatalogs"))
|
6584
|
+
ListResourceCatalogsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
6585
|
+
ListResourceCatalogsResponse.struct_class = Types::ListResourceCatalogsResponse
|
6586
|
+
|
6563
6587
|
ListSpacesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
6564
6588
|
ListSpacesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
6565
6589
|
ListSpacesRequest.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location_name: "SortOrder"))
|
@@ -7981,6 +8005,14 @@ module Aws::SageMaker
|
|
7981
8005
|
ResolvedAttributes.add_member(:completion_criteria, Shapes::ShapeRef.new(shape: AutoMLJobCompletionCriteria, location_name: "CompletionCriteria"))
|
7982
8006
|
ResolvedAttributes.struct_class = Types::ResolvedAttributes
|
7983
8007
|
|
8008
|
+
ResourceCatalog.add_member(:resource_catalog_arn, Shapes::ShapeRef.new(shape: ResourceCatalogArn, required: true, location_name: "ResourceCatalogArn"))
|
8009
|
+
ResourceCatalog.add_member(:resource_catalog_name, Shapes::ShapeRef.new(shape: ResourceCatalogName, required: true, location_name: "ResourceCatalogName"))
|
8010
|
+
ResourceCatalog.add_member(:description, Shapes::ShapeRef.new(shape: ResourceCatalogDescription, required: true, location_name: "Description"))
|
8011
|
+
ResourceCatalog.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
|
8012
|
+
ResourceCatalog.struct_class = Types::ResourceCatalog
|
8013
|
+
|
8014
|
+
ResourceCatalogList.member = Shapes::ShapeRef.new(shape: ResourceCatalog)
|
8015
|
+
|
7984
8016
|
ResourceConfig.add_member(:instance_type, Shapes::ShapeRef.new(shape: TrainingInstanceType, location_name: "InstanceType"))
|
7985
8017
|
ResourceConfig.add_member(:instance_count, Shapes::ShapeRef.new(shape: TrainingInstanceCount, location_name: "InstanceCount"))
|
7986
8018
|
ResourceConfig.add_member(:volume_size_in_gb, Shapes::ShapeRef.new(shape: VolumeSizeInGB, required: true, location_name: "VolumeSizeInGB"))
|
@@ -8090,6 +8122,7 @@ module Aws::SageMaker
|
|
8090
8122
|
SearchRequest.add_member(:sort_order, Shapes::ShapeRef.new(shape: SearchSortOrder, location_name: "SortOrder"))
|
8091
8123
|
SearchRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
8092
8124
|
SearchRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
8125
|
+
SearchRequest.add_member(:cross_account_filter_option, Shapes::ShapeRef.new(shape: CrossAccountFilterOption, location_name: "CrossAccountFilterOption"))
|
8093
8126
|
SearchRequest.struct_class = Types::SearchRequest
|
8094
8127
|
|
8095
8128
|
SearchResponse.add_member(:results, Shapes::ShapeRef.new(shape: SearchResultsList, location_name: "Results"))
|
@@ -8779,7 +8812,7 @@ module Aws::SageMaker
|
|
8779
8812
|
UpdateExperimentResponse.add_member(:experiment_arn, Shapes::ShapeRef.new(shape: ExperimentArn, location_name: "ExperimentArn"))
|
8780
8813
|
UpdateExperimentResponse.struct_class = Types::UpdateExperimentResponse
|
8781
8814
|
|
8782
|
-
UpdateFeatureGroupRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape:
|
8815
|
+
UpdateFeatureGroupRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupNameOrArn, required: true, location_name: "FeatureGroupName"))
|
8783
8816
|
UpdateFeatureGroupRequest.add_member(:feature_additions, Shapes::ShapeRef.new(shape: FeatureAdditions, location_name: "FeatureAdditions"))
|
8784
8817
|
UpdateFeatureGroupRequest.add_member(:online_store_config, Shapes::ShapeRef.new(shape: OnlineStoreConfigUpdate, location_name: "OnlineStoreConfig"))
|
8785
8818
|
UpdateFeatureGroupRequest.struct_class = Types::UpdateFeatureGroupRequest
|
@@ -8787,7 +8820,7 @@ module Aws::SageMaker
|
|
8787
8820
|
UpdateFeatureGroupResponse.add_member(:feature_group_arn, Shapes::ShapeRef.new(shape: FeatureGroupArn, required: true, location_name: "FeatureGroupArn"))
|
8788
8821
|
UpdateFeatureGroupResponse.struct_class = Types::UpdateFeatureGroupResponse
|
8789
8822
|
|
8790
|
-
UpdateFeatureMetadataRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape:
|
8823
|
+
UpdateFeatureMetadataRequest.add_member(:feature_group_name, Shapes::ShapeRef.new(shape: FeatureGroupNameOrArn, required: true, location_name: "FeatureGroupName"))
|
8791
8824
|
UpdateFeatureMetadataRequest.add_member(:feature_name, Shapes::ShapeRef.new(shape: FeatureName, required: true, location_name: "FeatureName"))
|
8792
8825
|
UpdateFeatureMetadataRequest.add_member(:description, Shapes::ShapeRef.new(shape: FeatureDescription, location_name: "Description"))
|
8793
8826
|
UpdateFeatureMetadataRequest.add_member(:parameter_additions, Shapes::ShapeRef.new(shape: FeatureParameterAdditions, location_name: "ParameterAdditions"))
|
@@ -11482,6 +11515,20 @@ module Aws::SageMaker
|
|
11482
11515
|
)
|
11483
11516
|
end)
|
11484
11517
|
|
11518
|
+
api.add_operation(:list_resource_catalogs, Seahorse::Model::Operation.new.tap do |o|
|
11519
|
+
o.name = "ListResourceCatalogs"
|
11520
|
+
o.http_method = "POST"
|
11521
|
+
o.http_request_uri = "/"
|
11522
|
+
o.input = Shapes::ShapeRef.new(shape: ListResourceCatalogsRequest)
|
11523
|
+
o.output = Shapes::ShapeRef.new(shape: ListResourceCatalogsResponse)
|
11524
|
+
o[:pager] = Aws::Pager.new(
|
11525
|
+
limit_key: "max_results",
|
11526
|
+
tokens: {
|
11527
|
+
"next_token" => "next_token"
|
11528
|
+
}
|
11529
|
+
)
|
11530
|
+
end)
|
11531
|
+
|
11485
11532
|
api.add_operation(:list_spaces, Seahorse::Model::Operation.new.tap do |o|
|
11486
11533
|
o.name = "ListSpaces"
|
11487
11534
|
o.http_method = "POST"
|
@@ -3218,6 +3218,20 @@ module Aws::SageMaker
|
|
3218
3218
|
end
|
3219
3219
|
end
|
3220
3220
|
|
3221
|
+
class ListResourceCatalogs
|
3222
|
+
def self.build(context)
|
3223
|
+
unless context.config.regional_endpoint
|
3224
|
+
endpoint = context.config.endpoint.to_s
|
3225
|
+
end
|
3226
|
+
Aws::SageMaker::EndpointParameters.new(
|
3227
|
+
region: context.config.region,
|
3228
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
3229
|
+
use_fips: context.config.use_fips_endpoint,
|
3230
|
+
endpoint: endpoint,
|
3231
|
+
)
|
3232
|
+
end
|
3233
|
+
end
|
3234
|
+
|
3221
3235
|
class ListSpaces
|
3222
3236
|
def self.build(context)
|
3223
3237
|
unless context.config.regional_endpoint
|
@@ -514,6 +514,8 @@ module Aws::SageMaker
|
|
514
514
|
Aws::SageMaker::Endpoints::ListProcessingJobs.build(context)
|
515
515
|
when :list_projects
|
516
516
|
Aws::SageMaker::Endpoints::ListProjects.build(context)
|
517
|
+
when :list_resource_catalogs
|
518
|
+
Aws::SageMaker::Endpoints::ListResourceCatalogs.build(context)
|
517
519
|
when :list_spaces
|
518
520
|
Aws::SageMaker::Endpoints::ListSpaces.build(context)
|
519
521
|
when :list_stage_devices
|
@@ -12099,7 +12099,8 @@ module Aws::SageMaker
|
|
12099
12099
|
end
|
12100
12100
|
|
12101
12101
|
# @!attribute [rw] feature_group_name
|
12102
|
-
# The name of the `FeatureGroup` you
|
12102
|
+
# The name or Amazon Resource Name (ARN) of the `FeatureGroup` you
|
12103
|
+
# want described.
|
12103
12104
|
# @return [String]
|
12104
12105
|
#
|
12105
12106
|
# @!attribute [rw] next_token
|
@@ -12240,7 +12241,8 @@ module Aws::SageMaker
|
|
12240
12241
|
end
|
12241
12242
|
|
12242
12243
|
# @!attribute [rw] feature_group_name
|
12243
|
-
# The name
|
12244
|
+
# The name or Amazon Resource Name (ARN) of the feature group
|
12245
|
+
# containing the feature.
|
12244
12246
|
# @return [String]
|
12245
12247
|
#
|
12246
12248
|
# @!attribute [rw] feature_name
|
@@ -17742,7 +17744,7 @@ module Aws::SageMaker
|
|
17742
17744
|
include Aws::Structure
|
17743
17745
|
end
|
17744
17746
|
|
17745
|
-
# The name,
|
17747
|
+
# The name, ARN, `CreationTime`, `FeatureGroup` values,
|
17746
17748
|
# `LastUpdatedTime` and `EnableOnlineStorage` status of a
|
17747
17749
|
# `FeatureGroup`.
|
17748
17750
|
#
|
@@ -26770,6 +26772,68 @@ module Aws::SageMaker
|
|
26770
26772
|
include Aws::Structure
|
26771
26773
|
end
|
26772
26774
|
|
26775
|
+
# @!attribute [rw] name_contains
|
26776
|
+
# A string that partially matches one or more `ResourceCatalog`s
|
26777
|
+
# names. Filters `ResourceCatalog` by name.
|
26778
|
+
# @return [String]
|
26779
|
+
#
|
26780
|
+
# @!attribute [rw] creation_time_after
|
26781
|
+
# Use this parameter to search for `ResourceCatalog`s created after a
|
26782
|
+
# specific date and time.
|
26783
|
+
# @return [Time]
|
26784
|
+
#
|
26785
|
+
# @!attribute [rw] creation_time_before
|
26786
|
+
# Use this parameter to search for `ResourceCatalog`s created before a
|
26787
|
+
# specific date and time.
|
26788
|
+
# @return [Time]
|
26789
|
+
#
|
26790
|
+
# @!attribute [rw] sort_order
|
26791
|
+
# The order in which the resource catalogs are listed.
|
26792
|
+
# @return [String]
|
26793
|
+
#
|
26794
|
+
# @!attribute [rw] sort_by
|
26795
|
+
# The value on which the resource catalog list is sorted.
|
26796
|
+
# @return [String]
|
26797
|
+
#
|
26798
|
+
# @!attribute [rw] max_results
|
26799
|
+
# The maximum number of results returned by `ListResourceCatalogs`.
|
26800
|
+
# @return [Integer]
|
26801
|
+
#
|
26802
|
+
# @!attribute [rw] next_token
|
26803
|
+
# A token to resume pagination of `ListResourceCatalogs` results.
|
26804
|
+
# @return [String]
|
26805
|
+
#
|
26806
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListResourceCatalogsRequest AWS API Documentation
|
26807
|
+
#
|
26808
|
+
class ListResourceCatalogsRequest < Struct.new(
|
26809
|
+
:name_contains,
|
26810
|
+
:creation_time_after,
|
26811
|
+
:creation_time_before,
|
26812
|
+
:sort_order,
|
26813
|
+
:sort_by,
|
26814
|
+
:max_results,
|
26815
|
+
:next_token)
|
26816
|
+
SENSITIVE = []
|
26817
|
+
include Aws::Structure
|
26818
|
+
end
|
26819
|
+
|
26820
|
+
# @!attribute [rw] resource_catalogs
|
26821
|
+
# A list of the requested `ResourceCatalog`s.
|
26822
|
+
# @return [Array<Types::ResourceCatalog>]
|
26823
|
+
#
|
26824
|
+
# @!attribute [rw] next_token
|
26825
|
+
# A token to resume pagination of `ListResourceCatalogs` results.
|
26826
|
+
# @return [String]
|
26827
|
+
#
|
26828
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListResourceCatalogsResponse AWS API Documentation
|
26829
|
+
#
|
26830
|
+
class ListResourceCatalogsResponse < Struct.new(
|
26831
|
+
:resource_catalogs,
|
26832
|
+
:next_token)
|
26833
|
+
SENSITIVE = []
|
26834
|
+
include Aws::Structure
|
26835
|
+
end
|
26836
|
+
|
26773
26837
|
# @!attribute [rw] next_token
|
26774
26838
|
# If the previous response was truncated, you will receive this token.
|
26775
26839
|
# Use it in your next request to receive the next set of results.
|
@@ -34727,6 +34791,43 @@ module Aws::SageMaker
|
|
34727
34791
|
include Aws::Structure
|
34728
34792
|
end
|
34729
34793
|
|
34794
|
+
# A resource catalog containing all of the resources of a specific
|
34795
|
+
# resource type within a resource owner account. For an example on
|
34796
|
+
# sharing the Amazon SageMaker Feature Store
|
34797
|
+
# `DefaultFeatureGroupCatalog`, see [Share Amazon SageMaker Catalog
|
34798
|
+
# resource type][1] in the Amazon SageMaker Developer Guide.
|
34799
|
+
#
|
34800
|
+
#
|
34801
|
+
#
|
34802
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/feature-store-cross-account-discoverability-share-sagemaker-catalog.html
|
34803
|
+
#
|
34804
|
+
# @!attribute [rw] resource_catalog_arn
|
34805
|
+
# The Amazon Resource Name (ARN) of the `ResourceCatalog`.
|
34806
|
+
# @return [String]
|
34807
|
+
#
|
34808
|
+
# @!attribute [rw] resource_catalog_name
|
34809
|
+
# The name of the `ResourceCatalog`.
|
34810
|
+
# @return [String]
|
34811
|
+
#
|
34812
|
+
# @!attribute [rw] description
|
34813
|
+
# A free form description of the `ResourceCatalog`.
|
34814
|
+
# @return [String]
|
34815
|
+
#
|
34816
|
+
# @!attribute [rw] creation_time
|
34817
|
+
# The time the `ResourceCatalog` was created.
|
34818
|
+
# @return [Time]
|
34819
|
+
#
|
34820
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ResourceCatalog AWS API Documentation
|
34821
|
+
#
|
34822
|
+
class ResourceCatalog < Struct.new(
|
34823
|
+
:resource_catalog_arn,
|
34824
|
+
:resource_catalog_name,
|
34825
|
+
:description,
|
34826
|
+
:creation_time)
|
34827
|
+
SENSITIVE = []
|
34828
|
+
include Aws::Structure
|
34829
|
+
end
|
34830
|
+
|
34730
34831
|
# Describes the resources, including machine learning (ML) compute
|
34731
34832
|
# instances and ML storage volumes, to use for model training.
|
34732
34833
|
#
|
@@ -35581,6 +35682,21 @@ module Aws::SageMaker
|
|
35581
35682
|
# The maximum number of results to return.
|
35582
35683
|
# @return [Integer]
|
35583
35684
|
#
|
35685
|
+
# @!attribute [rw] cross_account_filter_option
|
35686
|
+
# A cross account filter option. When the value is `"CrossAccount"`
|
35687
|
+
# the search results will only include resources made discoverable to
|
35688
|
+
# you from other accounts. When the value is `"SameAccount"` or `null`
|
35689
|
+
# the search results will only include resources from your account.
|
35690
|
+
# Default is `null`. For more information on searching for resources
|
35691
|
+
# made discoverable to your account, see [ Search discoverable
|
35692
|
+
# resources][1] in the SageMaker Developer Guide. The maximum number
|
35693
|
+
# of `ResourceCatalog`s viewable is 1000.
|
35694
|
+
#
|
35695
|
+
#
|
35696
|
+
#
|
35697
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/feature-store-cross-account-discoverability-use.html
|
35698
|
+
# @return [String]
|
35699
|
+
#
|
35584
35700
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SearchRequest AWS API Documentation
|
35585
35701
|
#
|
35586
35702
|
class SearchRequest < Struct.new(
|
@@ -35589,7 +35705,8 @@ module Aws::SageMaker
|
|
35589
35705
|
:sort_by,
|
35590
35706
|
:sort_order,
|
35591
35707
|
:next_token,
|
35592
|
-
:max_results
|
35708
|
+
:max_results,
|
35709
|
+
:cross_account_filter_option)
|
35593
35710
|
SENSITIVE = []
|
35594
35711
|
include Aws::Structure
|
35595
35712
|
end
|
@@ -39820,7 +39937,8 @@ module Aws::SageMaker
|
|
39820
39937
|
end
|
39821
39938
|
|
39822
39939
|
# @!attribute [rw] feature_group_name
|
39823
|
-
# The name of the feature group that
|
39940
|
+
# The name or Amazon Resource Name (ARN) of the feature group that
|
39941
|
+
# you're updating.
|
39824
39942
|
# @return [String]
|
39825
39943
|
#
|
39826
39944
|
# @!attribute [rw] feature_additions
|
@@ -39858,8 +39976,8 @@ module Aws::SageMaker
|
|
39858
39976
|
end
|
39859
39977
|
|
39860
39978
|
# @!attribute [rw] feature_group_name
|
39861
|
-
# The name
|
39862
|
-
# updating.
|
39979
|
+
# The name or Amazon Resource Name (ARN) of the feature group
|
39980
|
+
# containing the feature that you're updating.
|
39863
39981
|
# @return [String]
|
39864
39982
|
#
|
39865
39983
|
# @!attribute [rw] feature_name
|
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.198.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: 2023-07-
|
11
|
+
date: 2023-07-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|