aws-sdk-glue 1.262.0 → 1.263.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 37fe9ffa9ff4705e564ff75b48d528f047f6a89a3035032c39644df6a9e108d2
4
- data.tar.gz: 7f7384941e322293ddb89796a8a3ab2451c16818c40d6650d80de432b4f840a9
3
+ metadata.gz: 76420d2b9db951a1c0939a63b56b7a9e1a0c6b77187552f88127dfde17c844fc
4
+ data.tar.gz: 93525dc4f15cd61ce9dc2b2370b547790d48d28b23a4db9a285146b6999667b2
5
5
  SHA512:
6
- metadata.gz: d739f42be2d8de2a7fad54747e7e2b235852b6ebc4d487409671acfc390baa22b9a35379171dcc093bb606d7f72a5b618a27e6c199730f8215ccef5413ce1431
7
- data.tar.gz: 530ee83c1ec6ce526a4031a8971a21d5d3bcf82d68c4cbbd7f001afa9932a7b762a17cf5d505d70d6e34053862879287265c799adb225ccb73d1f5f73cbd8720
6
+ metadata.gz: fb3e6f679a7b2fff5533d3df743becdd72bd0db4d5819c18b13899b952f58ffac4418b95c212312c11ad1ee6f9f24810005b68c98f6af99ff6803a32e65c0c05
7
+ data.tar.gz: d0c0687895cd16e2c16356bdd85d1e6ae46314f0ad9bc86c72fbe355c5a226c9f7cf9d55dcd55ddc861115dc75e9689f3034392da91a8957b04a0cf9252062af
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.263.0 (2026-06-19)
5
+ ------------------
6
+
7
+ * Feature - Adds the SearchAssets operation for discovering assets in the AWS Glue Data Catalog using full-text search and filters. Minor naming refinements across the Glossary Terms and Attachment APIs for consistency.
8
+
4
9
  1.262.0 (2026-06-17)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.262.0
1
+ 1.263.0
@@ -484,7 +484,7 @@ module Aws::Glue
484
484
  # Associates one or more glossary terms with an asset in Glue Data
485
485
  # Catalog.
486
486
  #
487
- # @option params [required, String] :identifier
487
+ # @option params [required, String] :asset_identifier
488
488
  # The unique identifier of the asset to associate glossary terms with.
489
489
  #
490
490
  # @option params [required, Array<String>] :glossary_term_identifiers
@@ -499,20 +499,20 @@ module Aws::Glue
499
499
  #
500
500
  # @return [Types::AssociateGlossaryTermsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
501
501
  #
502
- # * {Types::AssociateGlossaryTermsResponse#identifier #identifier} => String
502
+ # * {Types::AssociateGlossaryTermsResponse#asset_identifier #asset_identifier} => String
503
503
  # * {Types::AssociateGlossaryTermsResponse#glossary_terms #glossary_terms} => Array&lt;String&gt;
504
504
  #
505
505
  # @example Request syntax with placeholder values
506
506
  #
507
507
  # resp = client.associate_glossary_terms({
508
- # identifier: "AssetId", # required
508
+ # asset_identifier: "AssetId", # required
509
509
  # glossary_term_identifiers: ["GlossaryTermId"], # required
510
510
  # client_token: "HashString",
511
511
  # })
512
512
  #
513
513
  # @example Response structure
514
514
  #
515
- # resp.identifier #=> String
515
+ # resp.asset_identifier #=> String
516
516
  # resp.glossary_terms #=> Array
517
517
  # resp.glossary_terms[0] #=> String
518
518
  #
@@ -5109,27 +5109,38 @@ module Aws::Glue
5109
5109
 
5110
5110
  # Deletes a form attachment from an asset in Glue Data Catalog.
5111
5111
  #
5112
- # @option params [required, String] :identifier
5112
+ # @option params [required, String] :asset_identifier
5113
5113
  # The unique identifier of the asset from which to delete the
5114
5114
  # attachment.
5115
5115
  #
5116
+ # @option params [String] :iterable_form_name
5117
+ # The name of the iterable form. When specified along with
5118
+ # `itemIdentifier`, the attachment is deleted from an item within the
5119
+ # iterable form rather than from the asset itself.
5120
+ #
5121
+ # @option params [String] :item_identifier
5122
+ # The identifier of the item within the iterable form. Required when
5123
+ # `iterableFormName` is specified.
5124
+ #
5116
5125
  # @option params [required, String] :attachment_name
5117
5126
  # The name of the attachment to delete.
5118
5127
  #
5119
5128
  # @return [Types::DeleteAttachmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5120
5129
  #
5121
- # * {Types::DeleteAttachmentResponse#identifier #identifier} => String
5130
+ # * {Types::DeleteAttachmentResponse#asset_identifier #asset_identifier} => String
5122
5131
  #
5123
5132
  # @example Request syntax with placeholder values
5124
5133
  #
5125
5134
  # resp = client.delete_attachment({
5126
- # identifier: "AssetId", # required
5135
+ # asset_identifier: "AssetId", # required
5136
+ # iterable_form_name: "IterableFormName",
5137
+ # item_identifier: "ItemIdentifier",
5127
5138
  # attachment_name: "AttachmentName", # required
5128
5139
  # })
5129
5140
  #
5130
5141
  # @example Response structure
5131
5142
  #
5132
- # resp.identifier #=> String
5143
+ # resp.asset_identifier #=> String
5133
5144
  #
5134
5145
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteAttachment AWS API Documentation
5135
5146
  #
@@ -6849,7 +6860,7 @@ module Aws::Glue
6849
6860
  # Removes the association of one or more glossary terms from an asset in
6850
6861
  # Glue Data Catalog.
6851
6862
  #
6852
- # @option params [required, String] :identifier
6863
+ # @option params [required, String] :asset_identifier
6853
6864
  # The unique identifier of the asset to disassociate glossary terms
6854
6865
  # from.
6855
6866
  #
@@ -6865,20 +6876,20 @@ module Aws::Glue
6865
6876
  #
6866
6877
  # @return [Types::DisassociateGlossaryTermsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6867
6878
  #
6868
- # * {Types::DisassociateGlossaryTermsResponse#identifier #identifier} => String
6879
+ # * {Types::DisassociateGlossaryTermsResponse#asset_identifier #asset_identifier} => String
6869
6880
  # * {Types::DisassociateGlossaryTermsResponse#glossary_terms #glossary_terms} => Array&lt;String&gt;
6870
6881
  #
6871
6882
  # @example Request syntax with placeholder values
6872
6883
  #
6873
6884
  # resp = client.disassociate_glossary_terms({
6874
- # identifier: "AssetId", # required
6885
+ # asset_identifier: "AssetId", # required
6875
6886
  # glossary_term_identifiers: ["GlossaryTermId"], # required
6876
6887
  # client_token: "HashString",
6877
6888
  # })
6878
6889
  #
6879
6890
  # @example Response structure
6880
6891
  #
6881
- # resp.identifier #=> String
6892
+ # resp.asset_identifier #=> String
6882
6893
  # resp.glossary_terms #=> Array
6883
6894
  # resp.glossary_terms[0] #=> String
6884
6895
  #
@@ -15555,7 +15566,7 @@ module Aws::Glue
15555
15566
  #
15556
15567
  # @return [Types::PutAttachmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
15557
15568
  #
15558
- # * {Types::PutAttachmentResponse#asset_id #asset_id} => String
15569
+ # * {Types::PutAttachmentResponse#asset_identifier #asset_identifier} => String
15559
15570
  # * {Types::PutAttachmentResponse#iterable_form_name #iterable_form_name} => String
15560
15571
  # * {Types::PutAttachmentResponse#item_identifier #item_identifier} => String
15561
15572
  # * {Types::PutAttachmentResponse#attachment_name #attachment_name} => String
@@ -15575,7 +15586,7 @@ module Aws::Glue
15575
15586
  #
15576
15587
  # @example Response structure
15577
15588
  #
15578
- # resp.asset_id #=> String
15589
+ # resp.asset_identifier #=> String
15579
15590
  # resp.iterable_form_name #=> String
15580
15591
  # resp.item_identifier #=> String
15581
15592
  # resp.attachment_name #=> String
@@ -16722,16 +16733,16 @@ module Aws::Glue
16722
16733
  # The filter clause to apply to the search. Supports nested AND/OR logic
16723
16734
  # with attribute-level and map-level filters.
16724
16735
  #
16725
- # @return [Types::SearchOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
16736
+ # @return [Types::SearchAssetsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
16726
16737
  #
16727
- # * {Types::SearchOutput#items #items} => Array&lt;Types::SearchResultItem&gt;
16728
- # * {Types::SearchOutput#next_token #next_token} => String
16738
+ # * {Types::SearchAssetsOutput#items #items} => Array&lt;Types::SearchResultItem&gt;
16739
+ # * {Types::SearchAssetsOutput#next_token #next_token} => String
16729
16740
  #
16730
16741
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
16731
16742
  #
16732
16743
  # @example Request syntax with placeholder values
16733
16744
  #
16734
- # resp = client.search({
16745
+ # resp = client.search_assets({
16735
16746
  # search_text: "SearchText",
16736
16747
  # max_results: 1,
16737
16748
  # next_token: "SearchNextToken",
@@ -16778,12 +16789,12 @@ module Aws::Glue
16778
16789
  # resp.items[0].asset_type_id #=> String
16779
16790
  # resp.next_token #=> String
16780
16791
  #
16781
- # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/Search AWS API Documentation
16792
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/SearchAssets AWS API Documentation
16782
16793
  #
16783
- # @overload search(params = {})
16794
+ # @overload search_assets(params = {})
16784
16795
  # @param [Hash] params ({})
16785
- def search(params = {}, options = {})
16786
- req = build_request(:search, params)
16796
+ def search_assets(params = {}, options = {})
16797
+ req = build_request(:search_assets, params)
16787
16798
  req.send_request(options)
16788
16799
  end
16789
16800
 
@@ -20568,7 +20579,7 @@ module Aws::Glue
20568
20579
  tracer: tracer
20569
20580
  )
20570
20581
  context[:gem_name] = 'aws-sdk-glue'
20571
- context[:gem_version] = '1.262.0'
20582
+ context[:gem_version] = '1.263.0'
20572
20583
  Seahorse::Client::Request.new(handlers, context)
20573
20584
  end
20574
20585
 
@@ -1477,6 +1477,8 @@ module Aws::Glue
1477
1477
  SchemaVersionNumber = Shapes::StructureShape.new(name: 'SchemaVersionNumber')
1478
1478
  SchemaVersionStatus = Shapes::StringShape.new(name: 'SchemaVersionStatus')
1479
1479
  ScriptLocationString = Shapes::StringShape.new(name: 'ScriptLocationString')
1480
+ SearchAssetsInput = Shapes::StructureShape.new(name: 'SearchAssetsInput')
1481
+ SearchAssetsOutput = Shapes::StructureShape.new(name: 'SearchAssetsOutput')
1480
1482
  SearchAttribute = Shapes::StringShape.new(name: 'SearchAttribute')
1481
1483
  SearchAttributeFilter = Shapes::StructureShape.new(name: 'SearchAttributeFilter')
1482
1484
  SearchFilterClause = Shapes::UnionShape.new(name: 'SearchFilterClause')
@@ -1485,13 +1487,11 @@ module Aws::Glue
1485
1487
  SearchFilterOperator = Shapes::StringShape.new(name: 'SearchFilterOperator')
1486
1488
  SearchFilterStringValue = Shapes::StringShape.new(name: 'SearchFilterStringValue')
1487
1489
  SearchFilterValue = Shapes::UnionShape.new(name: 'SearchFilterValue')
1488
- SearchInput = Shapes::StructureShape.new(name: 'SearchInput')
1489
1490
  SearchMapFilter = Shapes::StructureShape.new(name: 'SearchMapFilter')
1490
1491
  SearchMapFilterValue = Shapes::UnionShape.new(name: 'SearchMapFilterValue')
1491
1492
  SearchMapKey = Shapes::StringShape.new(name: 'SearchMapKey')
1492
1493
  SearchMaxResults = Shapes::IntegerShape.new(name: 'SearchMaxResults')
1493
1494
  SearchNextToken = Shapes::StringShape.new(name: 'SearchNextToken')
1494
- SearchOutput = Shapes::StructureShape.new(name: 'SearchOutput')
1495
1495
  SearchPropertyPredicates = Shapes::ListShape.new(name: 'SearchPropertyPredicates')
1496
1496
  SearchResultItem = Shapes::StructureShape.new(name: 'SearchResultItem')
1497
1497
  SearchResultItemList = Shapes::ListShape.new(name: 'SearchResultItemList')
@@ -1960,12 +1960,12 @@ module Aws::Glue
1960
1960
 
1961
1961
  AssetTypeItemList.member = Shapes::ShapeRef.new(shape: AssetTypeItem)
1962
1962
 
1963
- AssociateGlossaryTermsRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: AssetId, required: true, location_name: "Identifier"))
1963
+ AssociateGlossaryTermsRequest.add_member(:asset_identifier, Shapes::ShapeRef.new(shape: AssetId, required: true, location_name: "AssetIdentifier"))
1964
1964
  AssociateGlossaryTermsRequest.add_member(:glossary_term_identifiers, Shapes::ShapeRef.new(shape: GlossaryTermIdList, required: true, location_name: "GlossaryTermIdentifiers"))
1965
1965
  AssociateGlossaryTermsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: HashString, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
1966
1966
  AssociateGlossaryTermsRequest.struct_class = Types::AssociateGlossaryTermsRequest
1967
1967
 
1968
- AssociateGlossaryTermsResponse.add_member(:identifier, Shapes::ShapeRef.new(shape: AssetId, location_name: "Identifier"))
1968
+ AssociateGlossaryTermsResponse.add_member(:asset_identifier, Shapes::ShapeRef.new(shape: AssetId, location_name: "AssetIdentifier"))
1969
1969
  AssociateGlossaryTermsResponse.add_member(:glossary_terms, Shapes::ShapeRef.new(shape: GlossaryTermIdList, location_name: "GlossaryTerms"))
1970
1970
  AssociateGlossaryTermsResponse.struct_class = Types::AssociateGlossaryTermsResponse
1971
1971
 
@@ -3729,11 +3729,13 @@ module Aws::Glue
3729
3729
 
3730
3730
  DeleteAssetTypeResponse.struct_class = Types::DeleteAssetTypeResponse
3731
3731
 
3732
- DeleteAttachmentRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: AssetId, required: true, location_name: "Identifier"))
3732
+ DeleteAttachmentRequest.add_member(:asset_identifier, Shapes::ShapeRef.new(shape: AssetId, required: true, location_name: "AssetIdentifier"))
3733
+ DeleteAttachmentRequest.add_member(:iterable_form_name, Shapes::ShapeRef.new(shape: IterableFormName, location_name: "IterableFormName"))
3734
+ DeleteAttachmentRequest.add_member(:item_identifier, Shapes::ShapeRef.new(shape: ItemIdentifier, location_name: "ItemIdentifier"))
3733
3735
  DeleteAttachmentRequest.add_member(:attachment_name, Shapes::ShapeRef.new(shape: AttachmentName, required: true, location_name: "AttachmentName"))
3734
3736
  DeleteAttachmentRequest.struct_class = Types::DeleteAttachmentRequest
3735
3737
 
3736
- DeleteAttachmentResponse.add_member(:identifier, Shapes::ShapeRef.new(shape: AssetId, location_name: "Identifier"))
3738
+ DeleteAttachmentResponse.add_member(:asset_identifier, Shapes::ShapeRef.new(shape: AssetId, location_name: "AssetIdentifier"))
3737
3739
  DeleteAttachmentResponse.struct_class = Types::DeleteAttachmentResponse
3738
3740
 
3739
3741
  DeleteBlueprintRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
@@ -4101,12 +4103,12 @@ module Aws::Glue
4101
4103
  DirectSchemaChangePolicy.add_member(:database, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "Database"))
4102
4104
  DirectSchemaChangePolicy.struct_class = Types::DirectSchemaChangePolicy
4103
4105
 
4104
- DisassociateGlossaryTermsRequest.add_member(:identifier, Shapes::ShapeRef.new(shape: AssetId, required: true, location_name: "Identifier"))
4106
+ DisassociateGlossaryTermsRequest.add_member(:asset_identifier, Shapes::ShapeRef.new(shape: AssetId, required: true, location_name: "AssetIdentifier"))
4105
4107
  DisassociateGlossaryTermsRequest.add_member(:glossary_term_identifiers, Shapes::ShapeRef.new(shape: GlossaryTermIdList, required: true, location_name: "GlossaryTermIdentifiers"))
4106
4108
  DisassociateGlossaryTermsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: HashString, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
4107
4109
  DisassociateGlossaryTermsRequest.struct_class = Types::DisassociateGlossaryTermsRequest
4108
4110
 
4109
- DisassociateGlossaryTermsResponse.add_member(:identifier, Shapes::ShapeRef.new(shape: AssetId, location_name: "Identifier"))
4111
+ DisassociateGlossaryTermsResponse.add_member(:asset_identifier, Shapes::ShapeRef.new(shape: AssetId, location_name: "AssetIdentifier"))
4110
4112
  DisassociateGlossaryTermsResponse.add_member(:glossary_terms, Shapes::ShapeRef.new(shape: GlossaryTermIdList, location_name: "GlossaryTerms"))
4111
4113
  DisassociateGlossaryTermsResponse.struct_class = Types::DisassociateGlossaryTermsResponse
4112
4114
 
@@ -6696,7 +6698,7 @@ module Aws::Glue
6696
6698
  PutAttachmentRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: HashString, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
6697
6699
  PutAttachmentRequest.struct_class = Types::PutAttachmentRequest
6698
6700
 
6699
- PutAttachmentResponse.add_member(:asset_id, Shapes::ShapeRef.new(shape: AssetId, location_name: "AssetId"))
6701
+ PutAttachmentResponse.add_member(:asset_identifier, Shapes::ShapeRef.new(shape: AssetId, location_name: "AssetIdentifier"))
6700
6702
  PutAttachmentResponse.add_member(:iterable_form_name, Shapes::ShapeRef.new(shape: IterableFormName, location_name: "IterableFormName"))
6701
6703
  PutAttachmentResponse.add_member(:item_identifier, Shapes::ShapeRef.new(shape: ItemIdentifier, location_name: "ItemIdentifier"))
6702
6704
  PutAttachmentResponse.add_member(:attachment_name, Shapes::ShapeRef.new(shape: AttachmentName, location_name: "AttachmentName"))
@@ -7265,6 +7267,17 @@ module Aws::Glue
7265
7267
  SchemaVersionNumber.add_member(:version_number, Shapes::ShapeRef.new(shape: VersionLongNumber, location_name: "VersionNumber"))
7266
7268
  SchemaVersionNumber.struct_class = Types::SchemaVersionNumber
7267
7269
 
7270
+ SearchAssetsInput.add_member(:search_text, Shapes::ShapeRef.new(shape: SearchText, location_name: "SearchText"))
7271
+ SearchAssetsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: SearchMaxResults, location_name: "MaxResults"))
7272
+ SearchAssetsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: SearchNextToken, location_name: "NextToken"))
7273
+ SearchAssetsInput.add_member(:sort, Shapes::ShapeRef.new(shape: SearchSort, location_name: "Sort"))
7274
+ SearchAssetsInput.add_member(:filter_clause, Shapes::ShapeRef.new(shape: SearchFilterClause, location_name: "FilterClause"))
7275
+ SearchAssetsInput.struct_class = Types::SearchAssetsInput
7276
+
7277
+ SearchAssetsOutput.add_member(:items, Shapes::ShapeRef.new(shape: SearchResultItemList, location_name: "Items"))
7278
+ SearchAssetsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: SearchNextToken, location_name: "NextToken"))
7279
+ SearchAssetsOutput.struct_class = Types::SearchAssetsOutput
7280
+
7268
7281
  SearchAttributeFilter.add_member(:attribute, Shapes::ShapeRef.new(shape: SearchAttribute, required: true, location_name: "Attribute"))
7269
7282
  SearchAttributeFilter.add_member(:operator, Shapes::ShapeRef.new(shape: SearchFilterOperator, required: true, location_name: "Operator"))
7270
7283
  SearchAttributeFilter.add_member(:value, Shapes::ShapeRef.new(shape: SearchFilterValue, location_name: "Value"))
@@ -7292,13 +7305,6 @@ module Aws::Glue
7292
7305
  SearchFilterValue.add_member_subclass(:unknown, Types::SearchFilterValue::Unknown)
7293
7306
  SearchFilterValue.struct_class = Types::SearchFilterValue
7294
7307
 
7295
- SearchInput.add_member(:search_text, Shapes::ShapeRef.new(shape: SearchText, location_name: "SearchText"))
7296
- SearchInput.add_member(:max_results, Shapes::ShapeRef.new(shape: SearchMaxResults, location_name: "MaxResults"))
7297
- SearchInput.add_member(:next_token, Shapes::ShapeRef.new(shape: SearchNextToken, location_name: "NextToken"))
7298
- SearchInput.add_member(:sort, Shapes::ShapeRef.new(shape: SearchSort, location_name: "Sort"))
7299
- SearchInput.add_member(:filter_clause, Shapes::ShapeRef.new(shape: SearchFilterClause, location_name: "FilterClause"))
7300
- SearchInput.struct_class = Types::SearchInput
7301
-
7302
7308
  SearchMapFilter.add_member(:attribute, Shapes::ShapeRef.new(shape: SearchAttribute, required: true, location_name: "Attribute"))
7303
7309
  SearchMapFilter.add_member(:key, Shapes::ShapeRef.new(shape: SearchMapKey, required: true, location_name: "Key"))
7304
7310
  SearchMapFilter.add_member(:value, Shapes::ShapeRef.new(shape: SearchMapFilterValue, required: true, location_name: "Value"))
@@ -7310,10 +7316,6 @@ module Aws::Glue
7310
7316
  SearchMapFilterValue.add_member_subclass(:unknown, Types::SearchMapFilterValue::Unknown)
7311
7317
  SearchMapFilterValue.struct_class = Types::SearchMapFilterValue
7312
7318
 
7313
- SearchOutput.add_member(:items, Shapes::ShapeRef.new(shape: SearchResultItemList, location_name: "Items"))
7314
- SearchOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: SearchNextToken, location_name: "NextToken"))
7315
- SearchOutput.struct_class = Types::SearchOutput
7316
-
7317
7319
  SearchPropertyPredicates.member = Shapes::ShapeRef.new(shape: PropertyPredicate)
7318
7320
 
7319
7321
  SearchResultItem.add_member(:id, Shapes::ShapeRef.new(shape: AssetId, location_name: "Id"))
@@ -11951,12 +11953,12 @@ module Aws::Glue
11951
11953
  o.errors << Shapes::ShapeRef.new(shape: IllegalSessionStateException)
11952
11954
  end)
11953
11955
 
11954
- api.add_operation(:search, Seahorse::Model::Operation.new.tap do |o|
11955
- o.name = "Search"
11956
+ api.add_operation(:search_assets, Seahorse::Model::Operation.new.tap do |o|
11957
+ o.name = "SearchAssets"
11956
11958
  o.http_method = "POST"
11957
11959
  o.http_request_uri = "/"
11958
- o.input = Shapes::ShapeRef.new(shape: SearchInput)
11959
- o.output = Shapes::ShapeRef.new(shape: SearchOutput)
11960
+ o.input = Shapes::ShapeRef.new(shape: SearchAssetsInput)
11961
+ o.output = Shapes::ShapeRef.new(shape: SearchAssetsOutput)
11960
11962
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
11961
11963
  o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
11962
11964
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
@@ -508,7 +508,7 @@ module Aws::Glue
508
508
  include Aws::Structure
509
509
  end
510
510
 
511
- # @!attribute [rw] identifier
511
+ # @!attribute [rw] asset_identifier
512
512
  # The unique identifier of the asset to associate glossary terms with.
513
513
  # @return [String]
514
514
  #
@@ -527,14 +527,14 @@ module Aws::Glue
527
527
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/AssociateGlossaryTermsRequest AWS API Documentation
528
528
  #
529
529
  class AssociateGlossaryTermsRequest < Struct.new(
530
- :identifier,
530
+ :asset_identifier,
531
531
  :glossary_term_identifiers,
532
532
  :client_token)
533
533
  SENSITIVE = []
534
534
  include Aws::Structure
535
535
  end
536
536
 
537
- # @!attribute [rw] identifier
537
+ # @!attribute [rw] asset_identifier
538
538
  # The unique identifier of the asset.
539
539
  # @return [String]
540
540
  #
@@ -545,7 +545,7 @@ module Aws::Glue
545
545
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/AssociateGlossaryTermsResponse AWS API Documentation
546
546
  #
547
547
  class AssociateGlossaryTermsResponse < Struct.new(
548
- :identifier,
548
+ :asset_identifier,
549
549
  :glossary_terms)
550
550
  SENSITIVE = []
551
551
  include Aws::Structure
@@ -9502,11 +9502,22 @@ module Aws::Glue
9502
9502
  #
9503
9503
  class DeleteAssetTypeResponse < Aws::EmptyStructure; end
9504
9504
 
9505
- # @!attribute [rw] identifier
9505
+ # @!attribute [rw] asset_identifier
9506
9506
  # The unique identifier of the asset from which to delete the
9507
9507
  # attachment.
9508
9508
  # @return [String]
9509
9509
  #
9510
+ # @!attribute [rw] iterable_form_name
9511
+ # The name of the iterable form. When specified along with
9512
+ # `itemIdentifier`, the attachment is deleted from an item within the
9513
+ # iterable form rather than from the asset itself.
9514
+ # @return [String]
9515
+ #
9516
+ # @!attribute [rw] item_identifier
9517
+ # The identifier of the item within the iterable form. Required when
9518
+ # `iterableFormName` is specified.
9519
+ # @return [String]
9520
+ #
9510
9521
  # @!attribute [rw] attachment_name
9511
9522
  # The name of the attachment to delete.
9512
9523
  # @return [String]
@@ -9514,20 +9525,22 @@ module Aws::Glue
9514
9525
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteAttachmentRequest AWS API Documentation
9515
9526
  #
9516
9527
  class DeleteAttachmentRequest < Struct.new(
9517
- :identifier,
9528
+ :asset_identifier,
9529
+ :iterable_form_name,
9530
+ :item_identifier,
9518
9531
  :attachment_name)
9519
9532
  SENSITIVE = []
9520
9533
  include Aws::Structure
9521
9534
  end
9522
9535
 
9523
- # @!attribute [rw] identifier
9536
+ # @!attribute [rw] asset_identifier
9524
9537
  # The unique identifier of the asset.
9525
9538
  # @return [String]
9526
9539
  #
9527
9540
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteAttachmentResponse AWS API Documentation
9528
9541
  #
9529
9542
  class DeleteAttachmentResponse < Struct.new(
9530
- :identifier)
9543
+ :asset_identifier)
9531
9544
  SENSITIVE = []
9532
9545
  include Aws::Structure
9533
9546
  end
@@ -11167,7 +11180,7 @@ module Aws::Glue
11167
11180
  include Aws::Structure
11168
11181
  end
11169
11182
 
11170
- # @!attribute [rw] identifier
11183
+ # @!attribute [rw] asset_identifier
11171
11184
  # The unique identifier of the asset to disassociate glossary terms
11172
11185
  # from.
11173
11186
  # @return [String]
@@ -11188,14 +11201,14 @@ module Aws::Glue
11188
11201
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DisassociateGlossaryTermsRequest AWS API Documentation
11189
11202
  #
11190
11203
  class DisassociateGlossaryTermsRequest < Struct.new(
11191
- :identifier,
11204
+ :asset_identifier,
11192
11205
  :glossary_term_identifiers,
11193
11206
  :client_token)
11194
11207
  SENSITIVE = []
11195
11208
  include Aws::Structure
11196
11209
  end
11197
11210
 
11198
- # @!attribute [rw] identifier
11211
+ # @!attribute [rw] asset_identifier
11199
11212
  # The unique identifier of the asset.
11200
11213
  # @return [String]
11201
11214
  #
@@ -11206,7 +11219,7 @@ module Aws::Glue
11206
11219
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DisassociateGlossaryTermsResponse AWS API Documentation
11207
11220
  #
11208
11221
  class DisassociateGlossaryTermsResponse < Struct.new(
11209
- :identifier,
11222
+ :asset_identifier,
11210
11223
  :glossary_terms)
11211
11224
  SENSITIVE = []
11212
11225
  include Aws::Structure
@@ -24102,7 +24115,7 @@ module Aws::Glue
24102
24115
  include Aws::Structure
24103
24116
  end
24104
24117
 
24105
- # @!attribute [rw] asset_id
24118
+ # @!attribute [rw] asset_identifier
24106
24119
  # The unique identifier of the asset.
24107
24120
  # @return [String]
24108
24121
  #
@@ -24125,7 +24138,7 @@ module Aws::Glue
24125
24138
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/PutAttachmentResponse AWS API Documentation
24126
24139
  #
24127
24140
  class PutAttachmentResponse < Struct.new(
24128
- :asset_id,
24141
+ :asset_identifier,
24129
24142
  :iterable_form_name,
24130
24143
  :item_identifier,
24131
24144
  :attachment_name,
@@ -26938,6 +26951,58 @@ module Aws::Glue
26938
26951
  include Aws::Structure
26939
26952
  end
26940
26953
 
26954
+ # @!attribute [rw] search_text
26955
+ # The text to search for. At least one of `searchText` or
26956
+ # `filterClause` must be provided.
26957
+ # @return [String]
26958
+ #
26959
+ # @!attribute [rw] max_results
26960
+ # The maximum number of results to return in the response.
26961
+ # @return [Integer]
26962
+ #
26963
+ # @!attribute [rw] next_token
26964
+ # A continuation token, if this is a continuation call.
26965
+ # @return [String]
26966
+ #
26967
+ # @!attribute [rw] sort
26968
+ # The sort criteria for the search results.
26969
+ # @return [Types::SearchSort]
26970
+ #
26971
+ # @!attribute [rw] filter_clause
26972
+ # The filter clause to apply to the search. Supports nested AND/OR
26973
+ # logic with attribute-level and map-level filters.
26974
+ # @return [Types::SearchFilterClause]
26975
+ #
26976
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/SearchAssetsInput AWS API Documentation
26977
+ #
26978
+ class SearchAssetsInput < Struct.new(
26979
+ :search_text,
26980
+ :max_results,
26981
+ :next_token,
26982
+ :sort,
26983
+ :filter_clause)
26984
+ SENSITIVE = []
26985
+ include Aws::Structure
26986
+ end
26987
+
26988
+ # @!attribute [rw] items
26989
+ # The list of assets matching the search criteria.
26990
+ # @return [Array<Types::SearchResultItem>]
26991
+ #
26992
+ # @!attribute [rw] next_token
26993
+ # A continuation token, present if the current segment is not the
26994
+ # last.
26995
+ # @return [String]
26996
+ #
26997
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/SearchAssetsOutput AWS API Documentation
26998
+ #
26999
+ class SearchAssetsOutput < Struct.new(
27000
+ :items,
27001
+ :next_token)
27002
+ SENSITIVE = []
27003
+ include Aws::Structure
27004
+ end
27005
+
26941
27006
  # A filter that compares an attribute value using an operator.
26942
27007
  #
26943
27008
  # @!attribute [rw] attribute
@@ -27033,40 +27098,6 @@ module Aws::Glue
27033
27098
  class Unknown < SearchFilterValue; end
27034
27099
  end
27035
27100
 
27036
- # @!attribute [rw] search_text
27037
- # The text to search for. At least one of `searchText` or
27038
- # `filterClause` must be provided.
27039
- # @return [String]
27040
- #
27041
- # @!attribute [rw] max_results
27042
- # The maximum number of results to return in the response.
27043
- # @return [Integer]
27044
- #
27045
- # @!attribute [rw] next_token
27046
- # A continuation token, if this is a continuation call.
27047
- # @return [String]
27048
- #
27049
- # @!attribute [rw] sort
27050
- # The sort criteria for the search results.
27051
- # @return [Types::SearchSort]
27052
- #
27053
- # @!attribute [rw] filter_clause
27054
- # The filter clause to apply to the search. Supports nested AND/OR
27055
- # logic with attribute-level and map-level filters.
27056
- # @return [Types::SearchFilterClause]
27057
- #
27058
- # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/SearchInput AWS API Documentation
27059
- #
27060
- class SearchInput < Struct.new(
27061
- :search_text,
27062
- :max_results,
27063
- :next_token,
27064
- :sort,
27065
- :filter_clause)
27066
- SENSITIVE = []
27067
- include Aws::Structure
27068
- end
27069
-
27070
27101
  # A filter on a map attribute's key-value pair.
27071
27102
  #
27072
27103
  # @!attribute [rw] attribute
@@ -27112,24 +27143,6 @@ module Aws::Glue
27112
27143
  class Unknown < SearchMapFilterValue; end
27113
27144
  end
27114
27145
 
27115
- # @!attribute [rw] items
27116
- # The list of assets matching the search criteria.
27117
- # @return [Array<Types::SearchResultItem>]
27118
- #
27119
- # @!attribute [rw] next_token
27120
- # A continuation token, present if the current segment is not the
27121
- # last.
27122
- # @return [String]
27123
- #
27124
- # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/SearchOutput AWS API Documentation
27125
- #
27126
- class SearchOutput < Struct.new(
27127
- :items,
27128
- :next_token)
27129
- SENSITIVE = []
27130
- include Aws::Structure
27131
- end
27132
-
27133
27146
  # A single search result item representing a matched asset.
27134
27147
  #
27135
27148
  # @!attribute [rw] id
data/lib/aws-sdk-glue.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::Glue
54
54
  autoload :EndpointProvider, 'aws-sdk-glue/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-glue/endpoints'
56
56
 
57
- GEM_VERSION = '1.262.0'
57
+ GEM_VERSION = '1.263.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -81,12 +81,12 @@ module Aws
81
81
 
82
82
  interface _AssociateGlossaryTermsResponseSuccess
83
83
  include ::Seahorse::Client::_ResponseSuccess[Types::AssociateGlossaryTermsResponse]
84
- def identifier: () -> ::String
84
+ def asset_identifier: () -> ::String
85
85
  def glossary_terms: () -> ::Array[::String]
86
86
  end
87
87
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#associate_glossary_terms-instance_method
88
88
  def associate_glossary_terms: (
89
- identifier: ::String,
89
+ asset_identifier: ::String,
90
90
  glossary_term_identifiers: Array[::String],
91
91
  ?client_token: ::String
92
92
  ) -> _AssociateGlossaryTermsResponseSuccess
@@ -1124,11 +1124,13 @@ module Aws
1124
1124
 
1125
1125
  interface _DeleteAttachmentResponseSuccess
1126
1126
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAttachmentResponse]
1127
- def identifier: () -> ::String
1127
+ def asset_identifier: () -> ::String
1128
1128
  end
1129
1129
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#delete_attachment-instance_method
1130
1130
  def delete_attachment: (
1131
- identifier: ::String,
1131
+ asset_identifier: ::String,
1132
+ ?iterable_form_name: ::String,
1133
+ ?item_identifier: ::String,
1132
1134
  attachment_name: ::String
1133
1135
  ) -> _DeleteAttachmentResponseSuccess
1134
1136
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAttachmentResponseSuccess
@@ -1604,12 +1606,12 @@ module Aws
1604
1606
 
1605
1607
  interface _DisassociateGlossaryTermsResponseSuccess
1606
1608
  include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateGlossaryTermsResponse]
1607
- def identifier: () -> ::String
1609
+ def asset_identifier: () -> ::String
1608
1610
  def glossary_terms: () -> ::Array[::String]
1609
1611
  end
1610
1612
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#disassociate_glossary_terms-instance_method
1611
1613
  def disassociate_glossary_terms: (
1612
- identifier: ::String,
1614
+ asset_identifier: ::String,
1613
1615
  glossary_term_identifiers: Array[::String],
1614
1616
  ?client_token: ::String
1615
1617
  ) -> _DisassociateGlossaryTermsResponseSuccess
@@ -3527,7 +3529,7 @@ module Aws
3527
3529
 
3528
3530
  interface _PutAttachmentResponseSuccess
3529
3531
  include ::Seahorse::Client::_ResponseSuccess[Types::PutAttachmentResponse]
3530
- def asset_id: () -> ::String
3532
+ def asset_identifier: () -> ::String
3531
3533
  def iterable_form_name: () -> ::String
3532
3534
  def item_identifier: () -> ::String
3533
3535
  def attachment_name: () -> ::String
@@ -3836,23 +3838,23 @@ module Aws
3836
3838
  ) -> _RunStatementResponseSuccess
3837
3839
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RunStatementResponseSuccess
3838
3840
 
3839
- interface _SearchResponseSuccess
3840
- include ::Seahorse::Client::_ResponseSuccess[Types::SearchOutput]
3841
+ interface _SearchAssetsResponseSuccess
3842
+ include ::Seahorse::Client::_ResponseSuccess[Types::SearchAssetsOutput]
3841
3843
  def items: () -> ::Array[Types::SearchResultItem]
3842
3844
  def next_token: () -> ::String
3843
3845
  end
3844
- # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#search-instance_method
3845
- def search: (
3846
- ?search_text: ::String,
3847
- ?max_results: ::Integer,
3848
- ?next_token: ::String,
3849
- ?sort: {
3850
- attribute: ::String,
3851
- order: ("ASCENDING" | "DESCENDING")?
3852
- },
3853
- ?filter_clause: Params::search_filter_clause
3854
- ) -> _SearchResponseSuccess
3855
- | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchResponseSuccess
3846
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#search_assets-instance_method
3847
+ def search_assets: (
3848
+ ?search_text: ::String,
3849
+ ?max_results: ::Integer,
3850
+ ?next_token: ::String,
3851
+ ?sort: {
3852
+ attribute: ::String,
3853
+ order: ("ASCENDING" | "DESCENDING")?
3854
+ },
3855
+ ?filter_clause: Params::search_filter_clause
3856
+ ) -> _SearchAssetsResponseSuccess
3857
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchAssetsResponseSuccess
3856
3858
 
3857
3859
  interface _SearchTablesResponseSuccess
3858
3860
  include ::Seahorse::Client::_ResponseSuccess[Types::SearchTablesResponse]
data/sig/types.rbs CHANGED
@@ -129,14 +129,14 @@ module Aws::Glue
129
129
  end
130
130
 
131
131
  class AssociateGlossaryTermsRequest
132
- attr_accessor identifier: ::String
132
+ attr_accessor asset_identifier: ::String
133
133
  attr_accessor glossary_term_identifiers: ::Array[::String]
134
134
  attr_accessor client_token: ::String
135
135
  SENSITIVE: []
136
136
  end
137
137
 
138
138
  class AssociateGlossaryTermsResponse
139
- attr_accessor identifier: ::String
139
+ attr_accessor asset_identifier: ::String
140
140
  attr_accessor glossary_terms: ::Array[::String]
141
141
  SENSITIVE: []
142
142
  end
@@ -2207,13 +2207,15 @@ module Aws::Glue
2207
2207
  end
2208
2208
 
2209
2209
  class DeleteAttachmentRequest
2210
- attr_accessor identifier: ::String
2210
+ attr_accessor asset_identifier: ::String
2211
+ attr_accessor iterable_form_name: ::String
2212
+ attr_accessor item_identifier: ::String
2211
2213
  attr_accessor attachment_name: ::String
2212
2214
  SENSITIVE: []
2213
2215
  end
2214
2216
 
2215
2217
  class DeleteAttachmentResponse
2216
- attr_accessor identifier: ::String
2218
+ attr_accessor asset_identifier: ::String
2217
2219
  SENSITIVE: []
2218
2220
  end
2219
2221
 
@@ -2724,14 +2726,14 @@ module Aws::Glue
2724
2726
  end
2725
2727
 
2726
2728
  class DisassociateGlossaryTermsRequest
2727
- attr_accessor identifier: ::String
2729
+ attr_accessor asset_identifier: ::String
2728
2730
  attr_accessor glossary_term_identifiers: ::Array[::String]
2729
2731
  attr_accessor client_token: ::String
2730
2732
  SENSITIVE: []
2731
2733
  end
2732
2734
 
2733
2735
  class DisassociateGlossaryTermsResponse
2734
- attr_accessor identifier: ::String
2736
+ attr_accessor asset_identifier: ::String
2735
2737
  attr_accessor glossary_terms: ::Array[::String]
2736
2738
  SENSITIVE: []
2737
2739
  end
@@ -5931,7 +5933,7 @@ module Aws::Glue
5931
5933
  end
5932
5934
 
5933
5935
  class PutAttachmentResponse
5934
- attr_accessor asset_id: ::String
5936
+ attr_accessor asset_identifier: ::String
5935
5937
  attr_accessor iterable_form_name: ::String
5936
5938
  attr_accessor item_identifier: ::String
5937
5939
  attr_accessor attachment_name: ::String
@@ -6645,6 +6647,21 @@ module Aws::Glue
6645
6647
  SENSITIVE: []
6646
6648
  end
6647
6649
 
6650
+ class SearchAssetsInput
6651
+ attr_accessor search_text: ::String
6652
+ attr_accessor max_results: ::Integer
6653
+ attr_accessor next_token: ::String
6654
+ attr_accessor sort: Types::SearchSort
6655
+ attr_accessor filter_clause: Types::SearchFilterClause
6656
+ SENSITIVE: []
6657
+ end
6658
+
6659
+ class SearchAssetsOutput
6660
+ attr_accessor items: ::Array[Types::SearchResultItem]
6661
+ attr_accessor next_token: ::String
6662
+ SENSITIVE: []
6663
+ end
6664
+
6648
6665
  class SearchAttributeFilter
6649
6666
  attr_accessor attribute: ::String
6650
6667
  attr_accessor operator: ("equals" | "greaterThan" | "greaterThanOrEquals" | "lessThan" | "lessThanOrEquals" | "notExists")
@@ -6686,15 +6703,6 @@ module Aws::Glue
6686
6703
  end
6687
6704
  end
6688
6705
 
6689
- class SearchInput
6690
- attr_accessor search_text: ::String
6691
- attr_accessor max_results: ::Integer
6692
- attr_accessor next_token: ::String
6693
- attr_accessor sort: Types::SearchSort
6694
- attr_accessor filter_clause: Types::SearchFilterClause
6695
- SENSITIVE: []
6696
- end
6697
-
6698
6706
  class SearchMapFilter
6699
6707
  attr_accessor attribute: ::String
6700
6708
  attr_accessor key: ::String
@@ -6713,12 +6721,6 @@ module Aws::Glue
6713
6721
  end
6714
6722
  end
6715
6723
 
6716
- class SearchOutput
6717
- attr_accessor items: ::Array[Types::SearchResultItem]
6718
- attr_accessor next_token: ::String
6719
- SENSITIVE: []
6720
- end
6721
-
6722
6724
  class SearchResultItem
6723
6725
  attr_accessor id: ::String
6724
6726
  attr_accessor asset_name: ::String
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-glue
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.262.0
4
+ version: 1.263.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services