aws-sdk-glue 1.269.0 → 1.270.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: 0be39b344efbb4870425779365c1cdc9427fe199a4ae2d32c5bdea13bb94eb3e
4
- data.tar.gz: 3441e7d1307ecc5da8756ea97f1990fc2e11b4af158e3b8075c9df194aafaf66
3
+ metadata.gz: 980a982aed185739c218842562e424cee39db86e1bd7cf2595ea39a41609c2fb
4
+ data.tar.gz: 7c8341a4ca3c111eb6c3161a09e365dd9f94730cb7e3c8f8bc8406c6481e1581
5
5
  SHA512:
6
- metadata.gz: f6322b25e8352683417722f12a2b9701ff9c886cc34ef630b350459224062f22e4b59cb76fdeceb143464e90e67a5c01ef970d90633cbb48bd2ef040a7c7eccc
7
- data.tar.gz: 55b1e31f03956ce804d577cc14a5d6f221c823b6face7c225298813fe8d699951eba725047a62095779e0761cd87a2104df010875245c73d6add2fb38697f6f3
6
+ metadata.gz: c67112a2cd2c349fd08e0823cf2f1ac6a70bc716c508d9e7d4c478f5866a8321c55d6a8d829d992ff113f0bb136c4cedb9a94a6dc5da839b77560cd5d782de43
7
+ data.tar.gz: 87f65dd1996117d9aec85591020ceaf0986495ee084930cde4bd656a811a73e3be0a8b5bae98135addc636fec43d2313b75f4e649c93f996eb8f47e7f75044b9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.270.0 (2026-08-14)
5
+ ------------------
6
+
7
+ * Feature - Added support for associating glossary terms with iterable form items, such as table columns.
8
+
4
9
  1.269.0 (2026-08-12)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.269.0
1
+ 1.270.0
@@ -487,6 +487,15 @@ module Aws::Glue
487
487
  # @option params [required, String] :asset_identifier
488
488
  # The unique identifier of the asset to associate glossary terms with.
489
489
  #
490
+ # @option params [String] :iterable_form_name
491
+ # The name of the iterable form. When specified along with
492
+ # `itemIdentifier`, the glossary terms are associated with an item
493
+ # within the iterable form rather than the asset itself.
494
+ #
495
+ # @option params [String] :item_identifier
496
+ # The identifier of the item within the iterable form. Required when
497
+ # `iterableFormName` is specified.
498
+ #
490
499
  # @option params [required, Array<String>] :glossary_term_identifiers
491
500
  # The list of glossary term identifiers to associate with the asset.
492
501
  #
@@ -500,12 +509,16 @@ module Aws::Glue
500
509
  # @return [Types::AssociateGlossaryTermsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
501
510
  #
502
511
  # * {Types::AssociateGlossaryTermsResponse#asset_identifier #asset_identifier} => String
512
+ # * {Types::AssociateGlossaryTermsResponse#iterable_form_name #iterable_form_name} => String
513
+ # * {Types::AssociateGlossaryTermsResponse#item_identifier #item_identifier} => String
503
514
  # * {Types::AssociateGlossaryTermsResponse#glossary_terms #glossary_terms} => Array&lt;String&gt;
504
515
  #
505
516
  # @example Request syntax with placeholder values
506
517
  #
507
518
  # resp = client.associate_glossary_terms({
508
519
  # asset_identifier: "AssetId", # required
520
+ # iterable_form_name: "IterableFormName",
521
+ # item_identifier: "ItemIdentifier",
509
522
  # glossary_term_identifiers: ["GlossaryTermId"], # required
510
523
  # client_token: "HashString",
511
524
  # })
@@ -513,6 +526,8 @@ module Aws::Glue
513
526
  # @example Response structure
514
527
  #
515
528
  # resp.asset_identifier #=> String
529
+ # resp.iterable_form_name #=> String
530
+ # resp.item_identifier #=> String
516
531
  # resp.glossary_terms #=> Array
517
532
  # resp.glossary_terms[0] #=> String
518
533
  #
@@ -5238,6 +5253,8 @@ module Aws::Glue
5238
5253
  # @return [Types::DeleteAttachmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5239
5254
  #
5240
5255
  # * {Types::DeleteAttachmentResponse#asset_identifier #asset_identifier} => String
5256
+ # * {Types::DeleteAttachmentResponse#iterable_form_name #iterable_form_name} => String
5257
+ # * {Types::DeleteAttachmentResponse#item_identifier #item_identifier} => String
5241
5258
  #
5242
5259
  # @example Request syntax with placeholder values
5243
5260
  #
@@ -5251,6 +5268,8 @@ module Aws::Glue
5251
5268
  # @example Response structure
5252
5269
  #
5253
5270
  # resp.asset_identifier #=> String
5271
+ # resp.iterable_form_name #=> String
5272
+ # resp.item_identifier #=> String
5254
5273
  #
5255
5274
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteAttachment AWS API Documentation
5256
5275
  #
@@ -7022,6 +7041,15 @@ module Aws::Glue
7022
7041
  # The unique identifier of the asset to disassociate glossary terms
7023
7042
  # from.
7024
7043
  #
7044
+ # @option params [String] :iterable_form_name
7045
+ # The name of the iterable form. When specified along with
7046
+ # `itemIdentifier`, the glossary terms are disassociated from an item
7047
+ # within the iterable form rather than the asset itself.
7048
+ #
7049
+ # @option params [String] :item_identifier
7050
+ # The identifier of the item within the iterable form. Required when
7051
+ # `iterableFormName` is specified.
7052
+ #
7025
7053
  # @option params [required, Array<String>] :glossary_term_identifiers
7026
7054
  # The list of glossary term identifiers to disassociate from the asset.
7027
7055
  #
@@ -7035,12 +7063,16 @@ module Aws::Glue
7035
7063
  # @return [Types::DisassociateGlossaryTermsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7036
7064
  #
7037
7065
  # * {Types::DisassociateGlossaryTermsResponse#asset_identifier #asset_identifier} => String
7066
+ # * {Types::DisassociateGlossaryTermsResponse#iterable_form_name #iterable_form_name} => String
7067
+ # * {Types::DisassociateGlossaryTermsResponse#item_identifier #item_identifier} => String
7038
7068
  # * {Types::DisassociateGlossaryTermsResponse#glossary_terms #glossary_terms} => Array&lt;String&gt;
7039
7069
  #
7040
7070
  # @example Request syntax with placeholder values
7041
7071
  #
7042
7072
  # resp = client.disassociate_glossary_terms({
7043
7073
  # asset_identifier: "AssetId", # required
7074
+ # iterable_form_name: "IterableFormName",
7075
+ # item_identifier: "ItemIdentifier",
7044
7076
  # glossary_term_identifiers: ["GlossaryTermId"], # required
7045
7077
  # client_token: "HashString",
7046
7078
  # })
@@ -7048,6 +7080,8 @@ module Aws::Glue
7048
7080
  # @example Response structure
7049
7081
  #
7050
7082
  # resp.asset_identifier #=> String
7083
+ # resp.iterable_form_name #=> String
7084
+ # resp.item_identifier #=> String
7051
7085
  # resp.glossary_terms #=> Array
7052
7086
  # resp.glossary_terms[0] #=> String
7053
7087
  #
@@ -21068,7 +21102,7 @@ module Aws::Glue
21068
21102
  tracer: tracer
21069
21103
  )
21070
21104
  context[:gem_name] = 'aws-sdk-glue'
21071
- context[:gem_version] = '1.269.0'
21105
+ context[:gem_version] = '1.270.0'
21072
21106
  Seahorse::Client::Request.new(handlers, context)
21073
21107
  end
21074
21108
 
@@ -1996,11 +1996,15 @@ module Aws::Glue
1996
1996
  AssetTypeItemList.member = Shapes::ShapeRef.new(shape: AssetTypeItem)
1997
1997
 
1998
1998
  AssociateGlossaryTermsRequest.add_member(:asset_identifier, Shapes::ShapeRef.new(shape: AssetId, required: true, location_name: "AssetIdentifier"))
1999
+ AssociateGlossaryTermsRequest.add_member(:iterable_form_name, Shapes::ShapeRef.new(shape: IterableFormName, location_name: "IterableFormName"))
2000
+ AssociateGlossaryTermsRequest.add_member(:item_identifier, Shapes::ShapeRef.new(shape: ItemIdentifier, location_name: "ItemIdentifier"))
1999
2001
  AssociateGlossaryTermsRequest.add_member(:glossary_term_identifiers, Shapes::ShapeRef.new(shape: GlossaryTermIdList, required: true, location_name: "GlossaryTermIdentifiers"))
2000
2002
  AssociateGlossaryTermsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: HashString, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
2001
2003
  AssociateGlossaryTermsRequest.struct_class = Types::AssociateGlossaryTermsRequest
2002
2004
 
2003
2005
  AssociateGlossaryTermsResponse.add_member(:asset_identifier, Shapes::ShapeRef.new(shape: AssetId, location_name: "AssetIdentifier"))
2006
+ AssociateGlossaryTermsResponse.add_member(:iterable_form_name, Shapes::ShapeRef.new(shape: IterableFormName, location_name: "IterableFormName"))
2007
+ AssociateGlossaryTermsResponse.add_member(:item_identifier, Shapes::ShapeRef.new(shape: ItemIdentifier, location_name: "ItemIdentifier"))
2004
2008
  AssociateGlossaryTermsResponse.add_member(:glossary_terms, Shapes::ShapeRef.new(shape: GlossaryTermIdList, location_name: "GlossaryTerms"))
2005
2009
  AssociateGlossaryTermsResponse.struct_class = Types::AssociateGlossaryTermsResponse
2006
2010
 
@@ -3833,6 +3837,8 @@ module Aws::Glue
3833
3837
  DeleteAttachmentRequest.struct_class = Types::DeleteAttachmentRequest
3834
3838
 
3835
3839
  DeleteAttachmentResponse.add_member(:asset_identifier, Shapes::ShapeRef.new(shape: AssetId, location_name: "AssetIdentifier"))
3840
+ DeleteAttachmentResponse.add_member(:iterable_form_name, Shapes::ShapeRef.new(shape: IterableFormName, location_name: "IterableFormName"))
3841
+ DeleteAttachmentResponse.add_member(:item_identifier, Shapes::ShapeRef.new(shape: ItemIdentifier, location_name: "ItemIdentifier"))
3836
3842
  DeleteAttachmentResponse.struct_class = Types::DeleteAttachmentResponse
3837
3843
 
3838
3844
  DeleteBlueprintRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
@@ -4201,11 +4207,15 @@ module Aws::Glue
4201
4207
  DirectSchemaChangePolicy.struct_class = Types::DirectSchemaChangePolicy
4202
4208
 
4203
4209
  DisassociateGlossaryTermsRequest.add_member(:asset_identifier, Shapes::ShapeRef.new(shape: AssetId, required: true, location_name: "AssetIdentifier"))
4210
+ DisassociateGlossaryTermsRequest.add_member(:iterable_form_name, Shapes::ShapeRef.new(shape: IterableFormName, location_name: "IterableFormName"))
4211
+ DisassociateGlossaryTermsRequest.add_member(:item_identifier, Shapes::ShapeRef.new(shape: ItemIdentifier, location_name: "ItemIdentifier"))
4204
4212
  DisassociateGlossaryTermsRequest.add_member(:glossary_term_identifiers, Shapes::ShapeRef.new(shape: GlossaryTermIdList, required: true, location_name: "GlossaryTermIdentifiers"))
4205
4213
  DisassociateGlossaryTermsRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: HashString, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
4206
4214
  DisassociateGlossaryTermsRequest.struct_class = Types::DisassociateGlossaryTermsRequest
4207
4215
 
4208
4216
  DisassociateGlossaryTermsResponse.add_member(:asset_identifier, Shapes::ShapeRef.new(shape: AssetId, location_name: "AssetIdentifier"))
4217
+ DisassociateGlossaryTermsResponse.add_member(:iterable_form_name, Shapes::ShapeRef.new(shape: IterableFormName, location_name: "IterableFormName"))
4218
+ DisassociateGlossaryTermsResponse.add_member(:item_identifier, Shapes::ShapeRef.new(shape: ItemIdentifier, location_name: "ItemIdentifier"))
4209
4219
  DisassociateGlossaryTermsResponse.add_member(:glossary_terms, Shapes::ShapeRef.new(shape: GlossaryTermIdList, location_name: "GlossaryTerms"))
4210
4220
  DisassociateGlossaryTermsResponse.struct_class = Types::DisassociateGlossaryTermsResponse
4211
4221
 
@@ -11976,6 +11986,7 @@ module Aws::Glue
11976
11986
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
11977
11987
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
11978
11988
  o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
11989
+ o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
11979
11990
  o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
11980
11991
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
11981
11992
  end)
@@ -512,6 +512,17 @@ module Aws::Glue
512
512
  # The unique identifier of the asset to associate glossary terms with.
513
513
  # @return [String]
514
514
  #
515
+ # @!attribute [rw] iterable_form_name
516
+ # The name of the iterable form. When specified along with
517
+ # `itemIdentifier`, the glossary terms are associated with an item
518
+ # within the iterable form rather than the asset itself.
519
+ # @return [String]
520
+ #
521
+ # @!attribute [rw] item_identifier
522
+ # The identifier of the item within the iterable form. Required when
523
+ # `iterableFormName` is specified.
524
+ # @return [String]
525
+ #
515
526
  # @!attribute [rw] glossary_term_identifiers
516
527
  # The list of glossary term identifiers to associate with the asset.
517
528
  # @return [Array<String>]
@@ -528,6 +539,8 @@ module Aws::Glue
528
539
  #
529
540
  class AssociateGlossaryTermsRequest < Struct.new(
530
541
  :asset_identifier,
542
+ :iterable_form_name,
543
+ :item_identifier,
531
544
  :glossary_term_identifiers,
532
545
  :client_token)
533
546
  SENSITIVE = []
@@ -538,6 +551,14 @@ module Aws::Glue
538
551
  # The unique identifier of the asset.
539
552
  # @return [String]
540
553
  #
554
+ # @!attribute [rw] iterable_form_name
555
+ # The name of the iterable form, if the association targets an item.
556
+ # @return [String]
557
+ #
558
+ # @!attribute [rw] item_identifier
559
+ # The identifier of the item within the iterable form, if applicable.
560
+ # @return [String]
561
+ #
541
562
  # @!attribute [rw] glossary_terms
542
563
  # The glossary terms now associated with the asset.
543
564
  # @return [Array<String>]
@@ -546,6 +567,8 @@ module Aws::Glue
546
567
  #
547
568
  class AssociateGlossaryTermsResponse < Struct.new(
548
569
  :asset_identifier,
570
+ :iterable_form_name,
571
+ :item_identifier,
549
572
  :glossary_terms)
550
573
  SENSITIVE = []
551
574
  include Aws::Structure
@@ -9806,10 +9829,20 @@ module Aws::Glue
9806
9829
  # The unique identifier of the asset.
9807
9830
  # @return [String]
9808
9831
  #
9832
+ # @!attribute [rw] iterable_form_name
9833
+ # The name of the iterable form, if the deletion targets an item.
9834
+ # @return [String]
9835
+ #
9836
+ # @!attribute [rw] item_identifier
9837
+ # The identifier of the item within the iterable form, if applicable.
9838
+ # @return [String]
9839
+ #
9809
9840
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteAttachmentResponse AWS API Documentation
9810
9841
  #
9811
9842
  class DeleteAttachmentResponse < Struct.new(
9812
- :asset_identifier)
9843
+ :asset_identifier,
9844
+ :iterable_form_name,
9845
+ :item_identifier)
9813
9846
  SENSITIVE = []
9814
9847
  include Aws::Structure
9815
9848
  end
@@ -11454,6 +11487,17 @@ module Aws::Glue
11454
11487
  # from.
11455
11488
  # @return [String]
11456
11489
  #
11490
+ # @!attribute [rw] iterable_form_name
11491
+ # The name of the iterable form. When specified along with
11492
+ # `itemIdentifier`, the glossary terms are disassociated from an item
11493
+ # within the iterable form rather than the asset itself.
11494
+ # @return [String]
11495
+ #
11496
+ # @!attribute [rw] item_identifier
11497
+ # The identifier of the item within the iterable form. Required when
11498
+ # `iterableFormName` is specified.
11499
+ # @return [String]
11500
+ #
11457
11501
  # @!attribute [rw] glossary_term_identifiers
11458
11502
  # The list of glossary term identifiers to disassociate from the
11459
11503
  # asset.
@@ -11471,6 +11515,8 @@ module Aws::Glue
11471
11515
  #
11472
11516
  class DisassociateGlossaryTermsRequest < Struct.new(
11473
11517
  :asset_identifier,
11518
+ :iterable_form_name,
11519
+ :item_identifier,
11474
11520
  :glossary_term_identifiers,
11475
11521
  :client_token)
11476
11522
  SENSITIVE = []
@@ -11481,6 +11527,15 @@ module Aws::Glue
11481
11527
  # The unique identifier of the asset.
11482
11528
  # @return [String]
11483
11529
  #
11530
+ # @!attribute [rw] iterable_form_name
11531
+ # The name of the iterable form, if the disassociation targets an
11532
+ # item.
11533
+ # @return [String]
11534
+ #
11535
+ # @!attribute [rw] item_identifier
11536
+ # The identifier of the item within the iterable form, if applicable.
11537
+ # @return [String]
11538
+ #
11484
11539
  # @!attribute [rw] glossary_terms
11485
11540
  # The remaining glossary terms associated with the asset.
11486
11541
  # @return [Array<String>]
@@ -11489,6 +11544,8 @@ module Aws::Glue
11489
11544
  #
11490
11545
  class DisassociateGlossaryTermsResponse < Struct.new(
11491
11546
  :asset_identifier,
11547
+ :iterable_form_name,
11548
+ :item_identifier,
11492
11549
  :glossary_terms)
11493
11550
  SENSITIVE = []
11494
11551
  include Aws::Structure
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.269.0'
57
+ GEM_VERSION = '1.270.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -82,11 +82,15 @@ module Aws
82
82
  interface _AssociateGlossaryTermsResponseSuccess
83
83
  include ::Seahorse::Client::_ResponseSuccess[Types::AssociateGlossaryTermsResponse]
84
84
  def asset_identifier: () -> ::String
85
+ def iterable_form_name: () -> ::String
86
+ def item_identifier: () -> ::String
85
87
  def glossary_terms: () -> ::Array[::String]
86
88
  end
87
89
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#associate_glossary_terms-instance_method
88
90
  def associate_glossary_terms: (
89
91
  asset_identifier: ::String,
92
+ ?iterable_form_name: ::String,
93
+ ?item_identifier: ::String,
90
94
  glossary_term_identifiers: Array[::String],
91
95
  ?client_token: ::String
92
96
  ) -> _AssociateGlossaryTermsResponseSuccess
@@ -1136,6 +1140,8 @@ module Aws
1136
1140
  interface _DeleteAttachmentResponseSuccess
1137
1141
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAttachmentResponse]
1138
1142
  def asset_identifier: () -> ::String
1143
+ def iterable_form_name: () -> ::String
1144
+ def item_identifier: () -> ::String
1139
1145
  end
1140
1146
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#delete_attachment-instance_method
1141
1147
  def delete_attachment: (
@@ -1618,11 +1624,15 @@ module Aws
1618
1624
  interface _DisassociateGlossaryTermsResponseSuccess
1619
1625
  include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateGlossaryTermsResponse]
1620
1626
  def asset_identifier: () -> ::String
1627
+ def iterable_form_name: () -> ::String
1628
+ def item_identifier: () -> ::String
1621
1629
  def glossary_terms: () -> ::Array[::String]
1622
1630
  end
1623
1631
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#disassociate_glossary_terms-instance_method
1624
1632
  def disassociate_glossary_terms: (
1625
1633
  asset_identifier: ::String,
1634
+ ?iterable_form_name: ::String,
1635
+ ?item_identifier: ::String,
1626
1636
  glossary_term_identifiers: Array[::String],
1627
1637
  ?client_token: ::String
1628
1638
  ) -> _DisassociateGlossaryTermsResponseSuccess
data/sig/types.rbs CHANGED
@@ -130,6 +130,8 @@ module Aws::Glue
130
130
 
131
131
  class AssociateGlossaryTermsRequest
132
132
  attr_accessor asset_identifier: ::String
133
+ attr_accessor iterable_form_name: ::String
134
+ attr_accessor item_identifier: ::String
133
135
  attr_accessor glossary_term_identifiers: ::Array[::String]
134
136
  attr_accessor client_token: ::String
135
137
  SENSITIVE: []
@@ -137,6 +139,8 @@ module Aws::Glue
137
139
 
138
140
  class AssociateGlossaryTermsResponse
139
141
  attr_accessor asset_identifier: ::String
142
+ attr_accessor iterable_form_name: ::String
143
+ attr_accessor item_identifier: ::String
140
144
  attr_accessor glossary_terms: ::Array[::String]
141
145
  SENSITIVE: []
142
146
  end
@@ -2281,6 +2285,8 @@ module Aws::Glue
2281
2285
 
2282
2286
  class DeleteAttachmentResponse
2283
2287
  attr_accessor asset_identifier: ::String
2288
+ attr_accessor iterable_form_name: ::String
2289
+ attr_accessor item_identifier: ::String
2284
2290
  SENSITIVE: []
2285
2291
  end
2286
2292
 
@@ -2792,6 +2798,8 @@ module Aws::Glue
2792
2798
 
2793
2799
  class DisassociateGlossaryTermsRequest
2794
2800
  attr_accessor asset_identifier: ::String
2801
+ attr_accessor iterable_form_name: ::String
2802
+ attr_accessor item_identifier: ::String
2795
2803
  attr_accessor glossary_term_identifiers: ::Array[::String]
2796
2804
  attr_accessor client_token: ::String
2797
2805
  SENSITIVE: []
@@ -2799,6 +2807,8 @@ module Aws::Glue
2799
2807
 
2800
2808
  class DisassociateGlossaryTermsResponse
2801
2809
  attr_accessor asset_identifier: ::String
2810
+ attr_accessor iterable_form_name: ::String
2811
+ attr_accessor item_identifier: ::String
2802
2812
  attr_accessor glossary_terms: ::Array[::String]
2803
2813
  SENSITIVE: []
2804
2814
  end
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.269.0
4
+ version: 1.270.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services