aws-sdk-glue 1.136.0 → 1.137.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: 8ae6e39aebc9b2269514d0071d68614d0a763efe035822543cb87333e3d557c2
4
- data.tar.gz: 91d8c57f5a437bf34fdb87eac13d230b0aa7a2f58431923f96e69bab5f2d7fad
3
+ metadata.gz: a5c0c69fee6c9e04e563848f0f4fbc2703e28acb2736305bb7ce4e3a7e3b8793
4
+ data.tar.gz: 49c3bcb7156e5d7104babfc011bc32d8d11237cbdfbe0c0e652c6903262e43a2
5
5
  SHA512:
6
- metadata.gz: ca02dacc6f0b87a826fc3d6e8371ca83152a5a5bcc9bc36b744ec60582d4c25ecbed2c423b26d1b533f726342e419ea9f0ffdf4cfb353ee7ec1a384ce698bdbe
7
- data.tar.gz: e255ae7253291389786ce28c5c5d1c2a521c1b8aebee03e08e57eb7787069c679ace61ee6234ece1a14725e2cbc7968b0855819ad55b9d3c00f450ba2620144c
6
+ metadata.gz: a7587242c2b02934cfcb4f31a92ab274cd792f882cf3f9e5a6fa2c78cf90acc3a0a06a794418d0de43fd0e0b5451fbcb7e647be57f3f25a4042c745964326dbf
7
+ data.tar.gz: 996f7227ce8a9b720e66f4d96dcb519dfd9ebc2a0434ee767b4b52f00c8257e8e44357280c4b428c89c61cd6831e37cb75a85880a60f1eff06cc3f371d34e1b4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.137.0 (2023-05-16)
5
+ ------------------
6
+
7
+ * Feature - Add Support for Tags for Custom Entity Types
8
+
4
9
  1.136.0 (2023-05-09)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.136.0
1
+ 1.137.0
@@ -2797,6 +2797,9 @@ module Aws::Glue
2797
2797
  #
2798
2798
  # If no context words are passed only a regular expression is checked.
2799
2799
  #
2800
+ # @option params [Hash<String,String>] :tags
2801
+ # A list of tags applied to the custom entity type.
2802
+ #
2800
2803
  # @return [Types::CreateCustomEntityTypeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2801
2804
  #
2802
2805
  # * {Types::CreateCustomEntityTypeResponse#name #name} => String
@@ -2807,6 +2810,9 @@ module Aws::Glue
2807
2810
  # name: "NameString", # required
2808
2811
  # regex_string: "NameString", # required
2809
2812
  # context_words: ["NameString"],
2813
+ # tags: {
2814
+ # "TagKey" => "TagValue",
2815
+ # },
2810
2816
  # })
2811
2817
  #
2812
2818
  # @example Response structure
@@ -11772,6 +11778,9 @@ module Aws::Glue
11772
11778
  # @option params [Integer] :max_results
11773
11779
  # The maximum number of results to return.
11774
11780
  #
11781
+ # @option params [Hash<String,String>] :tags
11782
+ # A list of key-value pair tags.
11783
+ #
11775
11784
  # @return [Types::ListCustomEntityTypesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11776
11785
  #
11777
11786
  # * {Types::ListCustomEntityTypesResponse#custom_entity_types #custom_entity_types} => Array&lt;Types::CustomEntityType&gt;
@@ -11784,6 +11793,9 @@ module Aws::Glue
11784
11793
  # resp = client.list_custom_entity_types({
11785
11794
  # next_token: "PaginationToken",
11786
11795
  # max_results: 1,
11796
+ # tags: {
11797
+ # "TagKey" => "TagValue",
11798
+ # },
11787
11799
  # })
11788
11800
  #
11789
11801
  # @example Response structure
@@ -15740,7 +15752,7 @@ module Aws::Glue
15740
15752
  params: params,
15741
15753
  config: config)
15742
15754
  context[:gem_name] = 'aws-sdk-glue'
15743
- context[:gem_version] = '1.136.0'
15755
+ context[:gem_version] = '1.137.0'
15744
15756
  Seahorse::Client::Request.new(handlers, context)
15745
15757
  end
15746
15758
 
@@ -1923,6 +1923,7 @@ module Aws::Glue
1923
1923
  CreateCustomEntityTypeRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
1924
1924
  CreateCustomEntityTypeRequest.add_member(:regex_string, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "RegexString"))
1925
1925
  CreateCustomEntityTypeRequest.add_member(:context_words, Shapes::ShapeRef.new(shape: ContextWords, location_name: "ContextWords"))
1926
+ CreateCustomEntityTypeRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
1926
1927
  CreateCustomEntityTypeRequest.struct_class = Types::CreateCustomEntityTypeRequest
1927
1928
 
1928
1929
  CreateCustomEntityTypeResponse.add_member(:name, Shapes::ShapeRef.new(shape: NameString, location_name: "Name"))
@@ -3794,6 +3795,7 @@ module Aws::Glue
3794
3795
 
3795
3796
  ListCustomEntityTypesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
3796
3797
  ListCustomEntityTypesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PageSize, location_name: "MaxResults"))
3798
+ ListCustomEntityTypesRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
3797
3799
  ListCustomEntityTypesRequest.struct_class = Types::ListCustomEntityTypesRequest
3798
3800
 
3799
3801
  ListCustomEntityTypesResponse.add_member(:custom_entity_types, Shapes::ShapeRef.new(shape: CustomEntityTypes, location_name: "CustomEntityTypes"))
@@ -3794,12 +3794,17 @@ module Aws::Glue
3794
3794
  # If no context words are passed only a regular expression is checked.
3795
3795
  # @return [Array<String>]
3796
3796
  #
3797
+ # @!attribute [rw] tags
3798
+ # A list of tags applied to the custom entity type.
3799
+ # @return [Hash<String,String>]
3800
+ #
3797
3801
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateCustomEntityTypeRequest AWS API Documentation
3798
3802
  #
3799
3803
  class CreateCustomEntityTypeRequest < Struct.new(
3800
3804
  :name,
3801
3805
  :regex_string,
3802
- :context_words)
3806
+ :context_words,
3807
+ :tags)
3803
3808
  SENSITIVE = []
3804
3809
  include Aws::Structure
3805
3810
  end
@@ -13520,11 +13525,16 @@ module Aws::Glue
13520
13525
  # The maximum number of results to return.
13521
13526
  # @return [Integer]
13522
13527
  #
13528
+ # @!attribute [rw] tags
13529
+ # A list of key-value pair tags.
13530
+ # @return [Hash<String,String>]
13531
+ #
13523
13532
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListCustomEntityTypesRequest AWS API Documentation
13524
13533
  #
13525
13534
  class ListCustomEntityTypesRequest < Struct.new(
13526
13535
  :next_token,
13527
- :max_results)
13536
+ :max_results,
13537
+ :tags)
13528
13538
  SENSITIVE = []
13529
13539
  include Aws::Structure
13530
13540
  end
data/lib/aws-sdk-glue.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-glue/customizations'
52
52
  # @!group service
53
53
  module Aws::Glue
54
54
 
55
- GEM_VERSION = '1.136.0'
55
+ GEM_VERSION = '1.137.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-glue
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.136.0
4
+ version: 1.137.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-05-09 00:00:00.000000000 Z
11
+ date: 2023-05-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core