aws-sdk-glue 1.109.0 → 1.110.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-glue/client.rb +155 -1
- data/lib/aws-sdk-glue/client_api.rb +131 -0
- data/lib/aws-sdk-glue/types.rb +195 -0
- data/lib/aws-sdk-glue.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: 7e9b80a404718fd45a16d159fb6757af8a725f009fd1b277c425699a7ade87a9
|
4
|
+
data.tar.gz: 705a3a07f1aee8322cb419661cb625ed552c7c0efd13c423b08cef31211c851a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 20956d1abe5f74687f444a8f77c92bb5dd4a306a52538f2d6077a8403a3c6623cacf892c5db3969cf9ac936a0f0938d354a43d17101470b97d9d1f756ff02be4
|
7
|
+
data.tar.gz: 723f78cd75599f8578151a31932d4d2c4d184ee0289e699b367a1b9b39d8b7f9d527b8daddddf514d4814adcaab0b72026de697401587c8c25afb3e1e9c4657f
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.110.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -815,6 +815,38 @@ module Aws::Glue
|
|
815
815
|
req.send_request(options)
|
816
816
|
end
|
817
817
|
|
818
|
+
# @option params [required, Array<String>] :names
|
819
|
+
#
|
820
|
+
# @return [Types::BatchGetCustomEntityTypesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
821
|
+
#
|
822
|
+
# * {Types::BatchGetCustomEntityTypesResponse#custom_entity_types #custom_entity_types} => Array<Types::CustomEntityType>
|
823
|
+
# * {Types::BatchGetCustomEntityTypesResponse#custom_entity_types_not_found #custom_entity_types_not_found} => Array<String>
|
824
|
+
#
|
825
|
+
# @example Request syntax with placeholder values
|
826
|
+
#
|
827
|
+
# resp = client.batch_get_custom_entity_types({
|
828
|
+
# names: ["NameString"], # required
|
829
|
+
# })
|
830
|
+
#
|
831
|
+
# @example Response structure
|
832
|
+
#
|
833
|
+
# resp.custom_entity_types #=> Array
|
834
|
+
# resp.custom_entity_types[0].name #=> String
|
835
|
+
# resp.custom_entity_types[0].regex_string #=> String
|
836
|
+
# resp.custom_entity_types[0].context_words #=> Array
|
837
|
+
# resp.custom_entity_types[0].context_words[0] #=> String
|
838
|
+
# resp.custom_entity_types_not_found #=> Array
|
839
|
+
# resp.custom_entity_types_not_found[0] #=> String
|
840
|
+
#
|
841
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/BatchGetCustomEntityTypes AWS API Documentation
|
842
|
+
#
|
843
|
+
# @overload batch_get_custom_entity_types(params = {})
|
844
|
+
# @param [Hash] params ({})
|
845
|
+
def batch_get_custom_entity_types(params = {}, options = {})
|
846
|
+
req = build_request(:batch_get_custom_entity_types, params)
|
847
|
+
req.send_request(options)
|
848
|
+
end
|
849
|
+
|
818
850
|
# Returns a list of resource metadata for a given list of development
|
819
851
|
# endpoint names. After calling the `ListDevEndpoints` operation, you
|
820
852
|
# can call this operation to access the data to which you have been
|
@@ -1861,6 +1893,37 @@ module Aws::Glue
|
|
1861
1893
|
req.send_request(options)
|
1862
1894
|
end
|
1863
1895
|
|
1896
|
+
# @option params [required, String] :name
|
1897
|
+
#
|
1898
|
+
# @option params [required, String] :regex_string
|
1899
|
+
#
|
1900
|
+
# @option params [Array<String>] :context_words
|
1901
|
+
#
|
1902
|
+
# @return [Types::CreateCustomEntityTypeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1903
|
+
#
|
1904
|
+
# * {Types::CreateCustomEntityTypeResponse#name #name} => String
|
1905
|
+
#
|
1906
|
+
# @example Request syntax with placeholder values
|
1907
|
+
#
|
1908
|
+
# resp = client.create_custom_entity_type({
|
1909
|
+
# name: "NameString", # required
|
1910
|
+
# regex_string: "NameString", # required
|
1911
|
+
# context_words: ["NameString"],
|
1912
|
+
# })
|
1913
|
+
#
|
1914
|
+
# @example Response structure
|
1915
|
+
#
|
1916
|
+
# resp.name #=> String
|
1917
|
+
#
|
1918
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateCustomEntityType AWS API Documentation
|
1919
|
+
#
|
1920
|
+
# @overload create_custom_entity_type(params = {})
|
1921
|
+
# @param [Hash] params ({})
|
1922
|
+
def create_custom_entity_type(params = {}, options = {})
|
1923
|
+
req = build_request(:create_custom_entity_type, params)
|
1924
|
+
req.send_request(options)
|
1925
|
+
end
|
1926
|
+
|
1864
1927
|
# Creates a new database in a Data Catalog.
|
1865
1928
|
#
|
1866
1929
|
# @option params [String] :catalog_id
|
@@ -3603,6 +3666,31 @@ module Aws::Glue
|
|
3603
3666
|
req.send_request(options)
|
3604
3667
|
end
|
3605
3668
|
|
3669
|
+
# @option params [required, String] :name
|
3670
|
+
#
|
3671
|
+
# @return [Types::DeleteCustomEntityTypeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3672
|
+
#
|
3673
|
+
# * {Types::DeleteCustomEntityTypeResponse#name #name} => String
|
3674
|
+
#
|
3675
|
+
# @example Request syntax with placeholder values
|
3676
|
+
#
|
3677
|
+
# resp = client.delete_custom_entity_type({
|
3678
|
+
# name: "NameString", # required
|
3679
|
+
# })
|
3680
|
+
#
|
3681
|
+
# @example Response structure
|
3682
|
+
#
|
3683
|
+
# resp.name #=> String
|
3684
|
+
#
|
3685
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteCustomEntityType AWS API Documentation
|
3686
|
+
#
|
3687
|
+
# @overload delete_custom_entity_type(params = {})
|
3688
|
+
# @param [Hash] params ({})
|
3689
|
+
def delete_custom_entity_type(params = {}, options = {})
|
3690
|
+
req = build_request(:delete_custom_entity_type, params)
|
3691
|
+
req.send_request(options)
|
3692
|
+
end
|
3693
|
+
|
3606
3694
|
# Removes a specified database from a Data Catalog.
|
3607
3695
|
#
|
3608
3696
|
# <note markdown="1"> After completing this operation, you no longer have access to the
|
@@ -5020,6 +5108,36 @@ module Aws::Glue
|
|
5020
5108
|
req.send_request(options)
|
5021
5109
|
end
|
5022
5110
|
|
5111
|
+
# @option params [required, String] :name
|
5112
|
+
#
|
5113
|
+
# @return [Types::GetCustomEntityTypeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5114
|
+
#
|
5115
|
+
# * {Types::GetCustomEntityTypeResponse#name #name} => String
|
5116
|
+
# * {Types::GetCustomEntityTypeResponse#regex_string #regex_string} => String
|
5117
|
+
# * {Types::GetCustomEntityTypeResponse#context_words #context_words} => Array<String>
|
5118
|
+
#
|
5119
|
+
# @example Request syntax with placeholder values
|
5120
|
+
#
|
5121
|
+
# resp = client.get_custom_entity_type({
|
5122
|
+
# name: "NameString", # required
|
5123
|
+
# })
|
5124
|
+
#
|
5125
|
+
# @example Response structure
|
5126
|
+
#
|
5127
|
+
# resp.name #=> String
|
5128
|
+
# resp.regex_string #=> String
|
5129
|
+
# resp.context_words #=> Array
|
5130
|
+
# resp.context_words[0] #=> String
|
5131
|
+
#
|
5132
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetCustomEntityType AWS API Documentation
|
5133
|
+
#
|
5134
|
+
# @overload get_custom_entity_type(params = {})
|
5135
|
+
# @param [Hash] params ({})
|
5136
|
+
def get_custom_entity_type(params = {}, options = {})
|
5137
|
+
req = build_request(:get_custom_entity_type, params)
|
5138
|
+
req.send_request(options)
|
5139
|
+
end
|
5140
|
+
|
5023
5141
|
# Retrieves the security configuration for a specified catalog.
|
5024
5142
|
#
|
5025
5143
|
# @option params [String] :catalog_id
|
@@ -8660,6 +8778,42 @@ module Aws::Glue
|
|
8660
8778
|
req.send_request(options)
|
8661
8779
|
end
|
8662
8780
|
|
8781
|
+
# @option params [String] :next_token
|
8782
|
+
#
|
8783
|
+
# @option params [Integer] :max_results
|
8784
|
+
#
|
8785
|
+
# @return [Types::ListCustomEntityTypesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8786
|
+
#
|
8787
|
+
# * {Types::ListCustomEntityTypesResponse#custom_entity_types #custom_entity_types} => Array<Types::CustomEntityType>
|
8788
|
+
# * {Types::ListCustomEntityTypesResponse#next_token #next_token} => String
|
8789
|
+
#
|
8790
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8791
|
+
#
|
8792
|
+
# @example Request syntax with placeholder values
|
8793
|
+
#
|
8794
|
+
# resp = client.list_custom_entity_types({
|
8795
|
+
# next_token: "PaginationToken",
|
8796
|
+
# max_results: 1,
|
8797
|
+
# })
|
8798
|
+
#
|
8799
|
+
# @example Response structure
|
8800
|
+
#
|
8801
|
+
# resp.custom_entity_types #=> Array
|
8802
|
+
# resp.custom_entity_types[0].name #=> String
|
8803
|
+
# resp.custom_entity_types[0].regex_string #=> String
|
8804
|
+
# resp.custom_entity_types[0].context_words #=> Array
|
8805
|
+
# resp.custom_entity_types[0].context_words[0] #=> String
|
8806
|
+
# resp.next_token #=> String
|
8807
|
+
#
|
8808
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListCustomEntityTypes AWS API Documentation
|
8809
|
+
#
|
8810
|
+
# @overload list_custom_entity_types(params = {})
|
8811
|
+
# @param [Hash] params ({})
|
8812
|
+
def list_custom_entity_types(params = {}, options = {})
|
8813
|
+
req = build_request(:list_custom_entity_types, params)
|
8814
|
+
req.send_request(options)
|
8815
|
+
end
|
8816
|
+
|
8663
8817
|
# Retrieves the names of all `DevEndpoint` resources in this Amazon Web
|
8664
8818
|
# Services account, or the resources with the specified tag. This
|
8665
8819
|
# operation allows you to see which resources are available in your
|
@@ -12007,7 +12161,7 @@ module Aws::Glue
|
|
12007
12161
|
params: params,
|
12008
12162
|
config: config)
|
12009
12163
|
context[:gem_name] = 'aws-sdk-glue'
|
12010
|
-
context[:gem_version] = '1.
|
12164
|
+
context[:gem_version] = '1.110.0'
|
12011
12165
|
Seahorse::Client::Request.new(handlers, context)
|
12012
12166
|
end
|
12013
12167
|
|
@@ -45,6 +45,8 @@ module Aws::Glue
|
|
45
45
|
BatchGetBlueprintsResponse = Shapes::StructureShape.new(name: 'BatchGetBlueprintsResponse')
|
46
46
|
BatchGetCrawlersRequest = Shapes::StructureShape.new(name: 'BatchGetCrawlersRequest')
|
47
47
|
BatchGetCrawlersResponse = Shapes::StructureShape.new(name: 'BatchGetCrawlersResponse')
|
48
|
+
BatchGetCustomEntityTypesRequest = Shapes::StructureShape.new(name: 'BatchGetCustomEntityTypesRequest')
|
49
|
+
BatchGetCustomEntityTypesResponse = Shapes::StructureShape.new(name: 'BatchGetCustomEntityTypesResponse')
|
48
50
|
BatchGetDevEndpointsRequest = Shapes::StructureShape.new(name: 'BatchGetDevEndpointsRequest')
|
49
51
|
BatchGetDevEndpointsResponse = Shapes::StructureShape.new(name: 'BatchGetDevEndpointsResponse')
|
50
52
|
BatchGetJobsRequest = Shapes::StructureShape.new(name: 'BatchGetJobsRequest')
|
@@ -154,6 +156,7 @@ module Aws::Glue
|
|
154
156
|
ConnectionPropertyKey = Shapes::StringShape.new(name: 'ConnectionPropertyKey')
|
155
157
|
ConnectionType = Shapes::StringShape.new(name: 'ConnectionType')
|
156
158
|
ConnectionsList = Shapes::StructureShape.new(name: 'ConnectionsList')
|
159
|
+
ContextWords = Shapes::ListShape.new(name: 'ContextWords')
|
157
160
|
Crawl = Shapes::StructureShape.new(name: 'Crawl')
|
158
161
|
CrawlList = Shapes::ListShape.new(name: 'CrawlList')
|
159
162
|
CrawlState = Shapes::StringShape.new(name: 'CrawlState')
|
@@ -180,6 +183,8 @@ module Aws::Glue
|
|
180
183
|
CreateCrawlerRequest = Shapes::StructureShape.new(name: 'CreateCrawlerRequest')
|
181
184
|
CreateCrawlerResponse = Shapes::StructureShape.new(name: 'CreateCrawlerResponse')
|
182
185
|
CreateCsvClassifierRequest = Shapes::StructureShape.new(name: 'CreateCsvClassifierRequest')
|
186
|
+
CreateCustomEntityTypeRequest = Shapes::StructureShape.new(name: 'CreateCustomEntityTypeRequest')
|
187
|
+
CreateCustomEntityTypeResponse = Shapes::StructureShape.new(name: 'CreateCustomEntityTypeResponse')
|
183
188
|
CreateDatabaseRequest = Shapes::StructureShape.new(name: 'CreateDatabaseRequest')
|
184
189
|
CreateDatabaseResponse = Shapes::StructureShape.new(name: 'CreateDatabaseResponse')
|
185
190
|
CreateDevEndpointRequest = Shapes::StructureShape.new(name: 'CreateDevEndpointRequest')
|
@@ -220,6 +225,9 @@ module Aws::Glue
|
|
220
225
|
CsvHeader = Shapes::ListShape.new(name: 'CsvHeader')
|
221
226
|
CsvHeaderOption = Shapes::StringShape.new(name: 'CsvHeaderOption')
|
222
227
|
CsvQuoteSymbol = Shapes::StringShape.new(name: 'CsvQuoteSymbol')
|
228
|
+
CustomEntityType = Shapes::StructureShape.new(name: 'CustomEntityType')
|
229
|
+
CustomEntityTypeNames = Shapes::ListShape.new(name: 'CustomEntityTypeNames')
|
230
|
+
CustomEntityTypes = Shapes::ListShape.new(name: 'CustomEntityTypes')
|
223
231
|
CustomPatterns = Shapes::StringShape.new(name: 'CustomPatterns')
|
224
232
|
DagEdges = Shapes::ListShape.new(name: 'DagEdges')
|
225
233
|
DagNodes = Shapes::ListShape.new(name: 'DagNodes')
|
@@ -249,6 +257,8 @@ module Aws::Glue
|
|
249
257
|
DeleteConnectionResponse = Shapes::StructureShape.new(name: 'DeleteConnectionResponse')
|
250
258
|
DeleteCrawlerRequest = Shapes::StructureShape.new(name: 'DeleteCrawlerRequest')
|
251
259
|
DeleteCrawlerResponse = Shapes::StructureShape.new(name: 'DeleteCrawlerResponse')
|
260
|
+
DeleteCustomEntityTypeRequest = Shapes::StructureShape.new(name: 'DeleteCustomEntityTypeRequest')
|
261
|
+
DeleteCustomEntityTypeResponse = Shapes::StructureShape.new(name: 'DeleteCustomEntityTypeResponse')
|
252
262
|
DeleteDatabaseRequest = Shapes::StructureShape.new(name: 'DeleteDatabaseRequest')
|
253
263
|
DeleteDatabaseResponse = Shapes::StructureShape.new(name: 'DeleteDatabaseResponse')
|
254
264
|
DeleteDevEndpointRequest = Shapes::StructureShape.new(name: 'DeleteDevEndpointRequest')
|
@@ -354,6 +364,8 @@ module Aws::Glue
|
|
354
364
|
GetCrawlerResponse = Shapes::StructureShape.new(name: 'GetCrawlerResponse')
|
355
365
|
GetCrawlersRequest = Shapes::StructureShape.new(name: 'GetCrawlersRequest')
|
356
366
|
GetCrawlersResponse = Shapes::StructureShape.new(name: 'GetCrawlersResponse')
|
367
|
+
GetCustomEntityTypeRequest = Shapes::StructureShape.new(name: 'GetCustomEntityTypeRequest')
|
368
|
+
GetCustomEntityTypeResponse = Shapes::StructureShape.new(name: 'GetCustomEntityTypeResponse')
|
357
369
|
GetDataCatalogEncryptionSettingsRequest = Shapes::StructureShape.new(name: 'GetDataCatalogEncryptionSettingsRequest')
|
358
370
|
GetDataCatalogEncryptionSettingsResponse = Shapes::StructureShape.new(name: 'GetDataCatalogEncryptionSettingsResponse')
|
359
371
|
GetDatabaseRequest = Shapes::StructureShape.new(name: 'GetDatabaseRequest')
|
@@ -510,6 +522,8 @@ module Aws::Glue
|
|
510
522
|
ListBlueprintsResponse = Shapes::StructureShape.new(name: 'ListBlueprintsResponse')
|
511
523
|
ListCrawlersRequest = Shapes::StructureShape.new(name: 'ListCrawlersRequest')
|
512
524
|
ListCrawlersResponse = Shapes::StructureShape.new(name: 'ListCrawlersResponse')
|
525
|
+
ListCustomEntityTypesRequest = Shapes::StructureShape.new(name: 'ListCustomEntityTypesRequest')
|
526
|
+
ListCustomEntityTypesResponse = Shapes::StructureShape.new(name: 'ListCustomEntityTypesResponse')
|
513
527
|
ListDevEndpointsRequest = Shapes::StructureShape.new(name: 'ListDevEndpointsRequest')
|
514
528
|
ListDevEndpointsResponse = Shapes::StructureShape.new(name: 'ListDevEndpointsResponse')
|
515
529
|
ListJobsRequest = Shapes::StructureShape.new(name: 'ListJobsRequest')
|
@@ -984,6 +998,13 @@ module Aws::Glue
|
|
984
998
|
BatchGetCrawlersResponse.add_member(:crawlers_not_found, Shapes::ShapeRef.new(shape: CrawlerNameList, location_name: "CrawlersNotFound"))
|
985
999
|
BatchGetCrawlersResponse.struct_class = Types::BatchGetCrawlersResponse
|
986
1000
|
|
1001
|
+
BatchGetCustomEntityTypesRequest.add_member(:names, Shapes::ShapeRef.new(shape: CustomEntityTypeNames, required: true, location_name: "Names"))
|
1002
|
+
BatchGetCustomEntityTypesRequest.struct_class = Types::BatchGetCustomEntityTypesRequest
|
1003
|
+
|
1004
|
+
BatchGetCustomEntityTypesResponse.add_member(:custom_entity_types, Shapes::ShapeRef.new(shape: CustomEntityTypes, location_name: "CustomEntityTypes"))
|
1005
|
+
BatchGetCustomEntityTypesResponse.add_member(:custom_entity_types_not_found, Shapes::ShapeRef.new(shape: CustomEntityTypeNames, location_name: "CustomEntityTypesNotFound"))
|
1006
|
+
BatchGetCustomEntityTypesResponse.struct_class = Types::BatchGetCustomEntityTypesResponse
|
1007
|
+
|
987
1008
|
BatchGetDevEndpointsRequest.add_member(:dev_endpoint_names, Shapes::ShapeRef.new(shape: DevEndpointNames, required: true, location_name: "DevEndpointNames"))
|
988
1009
|
BatchGetDevEndpointsRequest.struct_class = Types::BatchGetDevEndpointsRequest
|
989
1010
|
|
@@ -1301,6 +1322,8 @@ module Aws::Glue
|
|
1301
1322
|
ConnectionsList.add_member(:connections, Shapes::ShapeRef.new(shape: OrchestrationStringList, location_name: "Connections"))
|
1302
1323
|
ConnectionsList.struct_class = Types::ConnectionsList
|
1303
1324
|
|
1325
|
+
ContextWords.member = Shapes::ShapeRef.new(shape: NameString)
|
1326
|
+
|
1304
1327
|
Crawl.add_member(:state, Shapes::ShapeRef.new(shape: CrawlState, location_name: "State"))
|
1305
1328
|
Crawl.add_member(:started_on, Shapes::ShapeRef.new(shape: TimestampValue, location_name: "StartedOn"))
|
1306
1329
|
Crawl.add_member(:completed_on, Shapes::ShapeRef.new(shape: TimestampValue, location_name: "CompletedOn"))
|
@@ -1421,6 +1444,14 @@ module Aws::Glue
|
|
1421
1444
|
CreateCsvClassifierRequest.add_member(:allow_single_column, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "AllowSingleColumn"))
|
1422
1445
|
CreateCsvClassifierRequest.struct_class = Types::CreateCsvClassifierRequest
|
1423
1446
|
|
1447
|
+
CreateCustomEntityTypeRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
1448
|
+
CreateCustomEntityTypeRequest.add_member(:regex_string, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "RegexString"))
|
1449
|
+
CreateCustomEntityTypeRequest.add_member(:context_words, Shapes::ShapeRef.new(shape: ContextWords, location_name: "ContextWords"))
|
1450
|
+
CreateCustomEntityTypeRequest.struct_class = Types::CreateCustomEntityTypeRequest
|
1451
|
+
|
1452
|
+
CreateCustomEntityTypeResponse.add_member(:name, Shapes::ShapeRef.new(shape: NameString, location_name: "Name"))
|
1453
|
+
CreateCustomEntityTypeResponse.struct_class = Types::CreateCustomEntityTypeResponse
|
1454
|
+
|
1424
1455
|
CreateDatabaseRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
|
1425
1456
|
CreateDatabaseRequest.add_member(:database_input, Shapes::ShapeRef.new(shape: DatabaseInput, required: true, location_name: "DatabaseInput"))
|
1426
1457
|
CreateDatabaseRequest.struct_class = Types::CreateDatabaseRequest
|
@@ -1666,6 +1697,15 @@ module Aws::Glue
|
|
1666
1697
|
|
1667
1698
|
CsvHeader.member = Shapes::ShapeRef.new(shape: NameString)
|
1668
1699
|
|
1700
|
+
CustomEntityType.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
1701
|
+
CustomEntityType.add_member(:regex_string, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "RegexString"))
|
1702
|
+
CustomEntityType.add_member(:context_words, Shapes::ShapeRef.new(shape: ContextWords, location_name: "ContextWords"))
|
1703
|
+
CustomEntityType.struct_class = Types::CustomEntityType
|
1704
|
+
|
1705
|
+
CustomEntityTypeNames.member = Shapes::ShapeRef.new(shape: NameString)
|
1706
|
+
|
1707
|
+
CustomEntityTypes.member = Shapes::ShapeRef.new(shape: CustomEntityType)
|
1708
|
+
|
1669
1709
|
DagEdges.member = Shapes::ShapeRef.new(shape: CodeGenEdge)
|
1670
1710
|
|
1671
1711
|
DagNodes.member = Shapes::ShapeRef.new(shape: CodeGenNode)
|
@@ -1758,6 +1798,12 @@ module Aws::Glue
|
|
1758
1798
|
|
1759
1799
|
DeleteCrawlerResponse.struct_class = Types::DeleteCrawlerResponse
|
1760
1800
|
|
1801
|
+
DeleteCustomEntityTypeRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
1802
|
+
DeleteCustomEntityTypeRequest.struct_class = Types::DeleteCustomEntityTypeRequest
|
1803
|
+
|
1804
|
+
DeleteCustomEntityTypeResponse.add_member(:name, Shapes::ShapeRef.new(shape: NameString, location_name: "Name"))
|
1805
|
+
DeleteCustomEntityTypeResponse.struct_class = Types::DeleteCustomEntityTypeResponse
|
1806
|
+
|
1761
1807
|
DeleteDatabaseRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
|
1762
1808
|
DeleteDatabaseRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
1763
1809
|
DeleteDatabaseRequest.struct_class = Types::DeleteDatabaseRequest
|
@@ -2108,6 +2154,14 @@ module Aws::Glue
|
|
2108
2154
|
GetCrawlersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
|
2109
2155
|
GetCrawlersResponse.struct_class = Types::GetCrawlersResponse
|
2110
2156
|
|
2157
|
+
GetCustomEntityTypeRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
2158
|
+
GetCustomEntityTypeRequest.struct_class = Types::GetCustomEntityTypeRequest
|
2159
|
+
|
2160
|
+
GetCustomEntityTypeResponse.add_member(:name, Shapes::ShapeRef.new(shape: NameString, location_name: "Name"))
|
2161
|
+
GetCustomEntityTypeResponse.add_member(:regex_string, Shapes::ShapeRef.new(shape: NameString, location_name: "RegexString"))
|
2162
|
+
GetCustomEntityTypeResponse.add_member(:context_words, Shapes::ShapeRef.new(shape: ContextWords, location_name: "ContextWords"))
|
2163
|
+
GetCustomEntityTypeResponse.struct_class = Types::GetCustomEntityTypeResponse
|
2164
|
+
|
2111
2165
|
GetDataCatalogEncryptionSettingsRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
|
2112
2166
|
GetDataCatalogEncryptionSettingsRequest.struct_class = Types::GetDataCatalogEncryptionSettingsRequest
|
2113
2167
|
|
@@ -2789,6 +2843,14 @@ module Aws::Glue
|
|
2789
2843
|
ListCrawlersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: Token, location_name: "NextToken"))
|
2790
2844
|
ListCrawlersResponse.struct_class = Types::ListCrawlersResponse
|
2791
2845
|
|
2846
|
+
ListCustomEntityTypesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
|
2847
|
+
ListCustomEntityTypesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PageSize, location_name: "MaxResults"))
|
2848
|
+
ListCustomEntityTypesRequest.struct_class = Types::ListCustomEntityTypesRequest
|
2849
|
+
|
2850
|
+
ListCustomEntityTypesResponse.add_member(:custom_entity_types, Shapes::ShapeRef.new(shape: CustomEntityTypes, location_name: "CustomEntityTypes"))
|
2851
|
+
ListCustomEntityTypesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
|
2852
|
+
ListCustomEntityTypesResponse.struct_class = Types::ListCustomEntityTypesResponse
|
2853
|
+
|
2792
2854
|
ListDevEndpointsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: GenericString, location_name: "NextToken"))
|
2793
2855
|
ListDevEndpointsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: PageSize, location_name: "MaxResults"))
|
2794
2856
|
ListDevEndpointsRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
|
@@ -4064,6 +4126,17 @@ module Aws::Glue
|
|
4064
4126
|
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
4065
4127
|
end)
|
4066
4128
|
|
4129
|
+
api.add_operation(:batch_get_custom_entity_types, Seahorse::Model::Operation.new.tap do |o|
|
4130
|
+
o.name = "BatchGetCustomEntityTypes"
|
4131
|
+
o.http_method = "POST"
|
4132
|
+
o.http_request_uri = "/"
|
4133
|
+
o.input = Shapes::ShapeRef.new(shape: BatchGetCustomEntityTypesRequest)
|
4134
|
+
o.output = Shapes::ShapeRef.new(shape: BatchGetCustomEntityTypesResponse)
|
4135
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
4136
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
4137
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
4138
|
+
end)
|
4139
|
+
|
4067
4140
|
api.add_operation(:batch_get_dev_endpoints, Seahorse::Model::Operation.new.tap do |o|
|
4068
4141
|
o.name = "BatchGetDevEndpoints"
|
4069
4142
|
o.http_method = "POST"
|
@@ -4233,6 +4306,21 @@ module Aws::Glue
|
|
4233
4306
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNumberLimitExceededException)
|
4234
4307
|
end)
|
4235
4308
|
|
4309
|
+
api.add_operation(:create_custom_entity_type, Seahorse::Model::Operation.new.tap do |o|
|
4310
|
+
o.name = "CreateCustomEntityType"
|
4311
|
+
o.http_method = "POST"
|
4312
|
+
o.http_request_uri = "/"
|
4313
|
+
o.input = Shapes::ShapeRef.new(shape: CreateCustomEntityTypeRequest)
|
4314
|
+
o.output = Shapes::ShapeRef.new(shape: CreateCustomEntityTypeResponse)
|
4315
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4316
|
+
o.errors << Shapes::ShapeRef.new(shape: AlreadyExistsException)
|
4317
|
+
o.errors << Shapes::ShapeRef.new(shape: IdempotentParameterMismatchException)
|
4318
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
4319
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
4320
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
4321
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNumberLimitExceededException)
|
4322
|
+
end)
|
4323
|
+
|
4236
4324
|
api.add_operation(:create_database, Seahorse::Model::Operation.new.tap do |o|
|
4237
4325
|
o.name = "CreateDatabase"
|
4238
4326
|
o.http_method = "POST"
|
@@ -4524,6 +4612,19 @@ module Aws::Glue
|
|
4524
4612
|
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
4525
4613
|
end)
|
4526
4614
|
|
4615
|
+
api.add_operation(:delete_custom_entity_type, Seahorse::Model::Operation.new.tap do |o|
|
4616
|
+
o.name = "DeleteCustomEntityType"
|
4617
|
+
o.http_method = "POST"
|
4618
|
+
o.http_request_uri = "/"
|
4619
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteCustomEntityTypeRequest)
|
4620
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteCustomEntityTypeResponse)
|
4621
|
+
o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
|
4622
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
4623
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
4624
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
4625
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
4626
|
+
end)
|
4627
|
+
|
4527
4628
|
api.add_operation(:delete_database, Seahorse::Model::Operation.new.tap do |o|
|
4528
4629
|
o.name = "DeleteDatabase"
|
4529
4630
|
o.http_method = "POST"
|
@@ -4907,6 +5008,19 @@ module Aws::Glue
|
|
4907
5008
|
)
|
4908
5009
|
end)
|
4909
5010
|
|
5011
|
+
api.add_operation(:get_custom_entity_type, Seahorse::Model::Operation.new.tap do |o|
|
5012
|
+
o.name = "GetCustomEntityType"
|
5013
|
+
o.http_method = "POST"
|
5014
|
+
o.http_request_uri = "/"
|
5015
|
+
o.input = Shapes::ShapeRef.new(shape: GetCustomEntityTypeRequest)
|
5016
|
+
o.output = Shapes::ShapeRef.new(shape: GetCustomEntityTypeResponse)
|
5017
|
+
o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
|
5018
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
5019
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
5020
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
5021
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
5022
|
+
end)
|
5023
|
+
|
4910
5024
|
api.add_operation(:get_data_catalog_encryption_settings, Seahorse::Model::Operation.new.tap do |o|
|
4911
5025
|
o.name = "GetDataCatalogEncryptionSettings"
|
4912
5026
|
o.http_method = "POST"
|
@@ -5628,6 +5742,23 @@ module Aws::Glue
|
|
5628
5742
|
)
|
5629
5743
|
end)
|
5630
5744
|
|
5745
|
+
api.add_operation(:list_custom_entity_types, Seahorse::Model::Operation.new.tap do |o|
|
5746
|
+
o.name = "ListCustomEntityTypes"
|
5747
|
+
o.http_method = "POST"
|
5748
|
+
o.http_request_uri = "/"
|
5749
|
+
o.input = Shapes::ShapeRef.new(shape: ListCustomEntityTypesRequest)
|
5750
|
+
o.output = Shapes::ShapeRef.new(shape: ListCustomEntityTypesResponse)
|
5751
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
|
5752
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
|
5753
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
5754
|
+
o[:pager] = Aws::Pager.new(
|
5755
|
+
limit_key: "max_results",
|
5756
|
+
tokens: {
|
5757
|
+
"next_token" => "next_token"
|
5758
|
+
}
|
5759
|
+
)
|
5760
|
+
end)
|
5761
|
+
|
5631
5762
|
api.add_operation(:list_dev_endpoints, Seahorse::Model::Operation.new.tap do |o|
|
5632
5763
|
o.name = "ListDevEndpoints"
|
5633
5764
|
o.http_method = "POST"
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -597,6 +597,39 @@ module Aws::Glue
|
|
597
597
|
include Aws::Structure
|
598
598
|
end
|
599
599
|
|
600
|
+
# @note When making an API call, you may pass BatchGetCustomEntityTypesRequest
|
601
|
+
# data as a hash:
|
602
|
+
#
|
603
|
+
# {
|
604
|
+
# names: ["NameString"], # required
|
605
|
+
# }
|
606
|
+
#
|
607
|
+
# @!attribute [rw] names
|
608
|
+
# @return [Array<String>]
|
609
|
+
#
|
610
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/BatchGetCustomEntityTypesRequest AWS API Documentation
|
611
|
+
#
|
612
|
+
class BatchGetCustomEntityTypesRequest < Struct.new(
|
613
|
+
:names)
|
614
|
+
SENSITIVE = []
|
615
|
+
include Aws::Structure
|
616
|
+
end
|
617
|
+
|
618
|
+
# @!attribute [rw] custom_entity_types
|
619
|
+
# @return [Array<Types::CustomEntityType>]
|
620
|
+
#
|
621
|
+
# @!attribute [rw] custom_entity_types_not_found
|
622
|
+
# @return [Array<String>]
|
623
|
+
#
|
624
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/BatchGetCustomEntityTypesResponse AWS API Documentation
|
625
|
+
#
|
626
|
+
class BatchGetCustomEntityTypesResponse < Struct.new(
|
627
|
+
:custom_entity_types,
|
628
|
+
:custom_entity_types_not_found)
|
629
|
+
SENSITIVE = []
|
630
|
+
include Aws::Structure
|
631
|
+
end
|
632
|
+
|
600
633
|
# @note When making an API call, you may pass BatchGetDevEndpointsRequest
|
601
634
|
# data as a hash:
|
602
635
|
#
|
@@ -3301,6 +3334,45 @@ module Aws::Glue
|
|
3301
3334
|
include Aws::Structure
|
3302
3335
|
end
|
3303
3336
|
|
3337
|
+
# @note When making an API call, you may pass CreateCustomEntityTypeRequest
|
3338
|
+
# data as a hash:
|
3339
|
+
#
|
3340
|
+
# {
|
3341
|
+
# name: "NameString", # required
|
3342
|
+
# regex_string: "NameString", # required
|
3343
|
+
# context_words: ["NameString"],
|
3344
|
+
# }
|
3345
|
+
#
|
3346
|
+
# @!attribute [rw] name
|
3347
|
+
# @return [String]
|
3348
|
+
#
|
3349
|
+
# @!attribute [rw] regex_string
|
3350
|
+
# @return [String]
|
3351
|
+
#
|
3352
|
+
# @!attribute [rw] context_words
|
3353
|
+
# @return [Array<String>]
|
3354
|
+
#
|
3355
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateCustomEntityTypeRequest AWS API Documentation
|
3356
|
+
#
|
3357
|
+
class CreateCustomEntityTypeRequest < Struct.new(
|
3358
|
+
:name,
|
3359
|
+
:regex_string,
|
3360
|
+
:context_words)
|
3361
|
+
SENSITIVE = []
|
3362
|
+
include Aws::Structure
|
3363
|
+
end
|
3364
|
+
|
3365
|
+
# @!attribute [rw] name
|
3366
|
+
# @return [String]
|
3367
|
+
#
|
3368
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateCustomEntityTypeResponse AWS API Documentation
|
3369
|
+
#
|
3370
|
+
class CreateCustomEntityTypeResponse < Struct.new(
|
3371
|
+
:name)
|
3372
|
+
SENSITIVE = []
|
3373
|
+
include Aws::Structure
|
3374
|
+
end
|
3375
|
+
|
3304
3376
|
# @note When making an API call, you may pass CreateDatabaseRequest
|
3305
3377
|
# data as a hash:
|
3306
3378
|
#
|
@@ -5352,6 +5424,25 @@ module Aws::Glue
|
|
5352
5424
|
include Aws::Structure
|
5353
5425
|
end
|
5354
5426
|
|
5427
|
+
# @!attribute [rw] name
|
5428
|
+
# @return [String]
|
5429
|
+
#
|
5430
|
+
# @!attribute [rw] regex_string
|
5431
|
+
# @return [String]
|
5432
|
+
#
|
5433
|
+
# @!attribute [rw] context_words
|
5434
|
+
# @return [Array<String>]
|
5435
|
+
#
|
5436
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CustomEntityType AWS API Documentation
|
5437
|
+
#
|
5438
|
+
class CustomEntityType < Struct.new(
|
5439
|
+
:name,
|
5440
|
+
:regex_string,
|
5441
|
+
:context_words)
|
5442
|
+
SENSITIVE = []
|
5443
|
+
include Aws::Structure
|
5444
|
+
end
|
5445
|
+
|
5355
5446
|
# Contains configuration information for maintaining Data Catalog
|
5356
5447
|
# security.
|
5357
5448
|
#
|
@@ -5872,6 +5963,35 @@ module Aws::Glue
|
|
5872
5963
|
#
|
5873
5964
|
class DeleteCrawlerResponse < Aws::EmptyStructure; end
|
5874
5965
|
|
5966
|
+
# @note When making an API call, you may pass DeleteCustomEntityTypeRequest
|
5967
|
+
# data as a hash:
|
5968
|
+
#
|
5969
|
+
# {
|
5970
|
+
# name: "NameString", # required
|
5971
|
+
# }
|
5972
|
+
#
|
5973
|
+
# @!attribute [rw] name
|
5974
|
+
# @return [String]
|
5975
|
+
#
|
5976
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteCustomEntityTypeRequest AWS API Documentation
|
5977
|
+
#
|
5978
|
+
class DeleteCustomEntityTypeRequest < Struct.new(
|
5979
|
+
:name)
|
5980
|
+
SENSITIVE = []
|
5981
|
+
include Aws::Structure
|
5982
|
+
end
|
5983
|
+
|
5984
|
+
# @!attribute [rw] name
|
5985
|
+
# @return [String]
|
5986
|
+
#
|
5987
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteCustomEntityTypeResponse AWS API Documentation
|
5988
|
+
#
|
5989
|
+
class DeleteCustomEntityTypeResponse < Struct.new(
|
5990
|
+
:name)
|
5991
|
+
SENSITIVE = []
|
5992
|
+
include Aws::Structure
|
5993
|
+
end
|
5994
|
+
|
5875
5995
|
# @note When making an API call, you may pass DeleteDatabaseRequest
|
5876
5996
|
# data as a hash:
|
5877
5997
|
#
|
@@ -7916,6 +8036,43 @@ module Aws::Glue
|
|
7916
8036
|
include Aws::Structure
|
7917
8037
|
end
|
7918
8038
|
|
8039
|
+
# @note When making an API call, you may pass GetCustomEntityTypeRequest
|
8040
|
+
# data as a hash:
|
8041
|
+
#
|
8042
|
+
# {
|
8043
|
+
# name: "NameString", # required
|
8044
|
+
# }
|
8045
|
+
#
|
8046
|
+
# @!attribute [rw] name
|
8047
|
+
# @return [String]
|
8048
|
+
#
|
8049
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetCustomEntityTypeRequest AWS API Documentation
|
8050
|
+
#
|
8051
|
+
class GetCustomEntityTypeRequest < Struct.new(
|
8052
|
+
:name)
|
8053
|
+
SENSITIVE = []
|
8054
|
+
include Aws::Structure
|
8055
|
+
end
|
8056
|
+
|
8057
|
+
# @!attribute [rw] name
|
8058
|
+
# @return [String]
|
8059
|
+
#
|
8060
|
+
# @!attribute [rw] regex_string
|
8061
|
+
# @return [String]
|
8062
|
+
#
|
8063
|
+
# @!attribute [rw] context_words
|
8064
|
+
# @return [Array<String>]
|
8065
|
+
#
|
8066
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetCustomEntityTypeResponse AWS API Documentation
|
8067
|
+
#
|
8068
|
+
class GetCustomEntityTypeResponse < Struct.new(
|
8069
|
+
:name,
|
8070
|
+
:regex_string,
|
8071
|
+
:context_words)
|
8072
|
+
SENSITIVE = []
|
8073
|
+
include Aws::Structure
|
8074
|
+
end
|
8075
|
+
|
7919
8076
|
# @note When making an API call, you may pass GetDataCatalogEncryptionSettingsRequest
|
7920
8077
|
# data as a hash:
|
7921
8078
|
#
|
@@ -12150,6 +12307,44 @@ module Aws::Glue
|
|
12150
12307
|
include Aws::Structure
|
12151
12308
|
end
|
12152
12309
|
|
12310
|
+
# @note When making an API call, you may pass ListCustomEntityTypesRequest
|
12311
|
+
# data as a hash:
|
12312
|
+
#
|
12313
|
+
# {
|
12314
|
+
# next_token: "PaginationToken",
|
12315
|
+
# max_results: 1,
|
12316
|
+
# }
|
12317
|
+
#
|
12318
|
+
# @!attribute [rw] next_token
|
12319
|
+
# @return [String]
|
12320
|
+
#
|
12321
|
+
# @!attribute [rw] max_results
|
12322
|
+
# @return [Integer]
|
12323
|
+
#
|
12324
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListCustomEntityTypesRequest AWS API Documentation
|
12325
|
+
#
|
12326
|
+
class ListCustomEntityTypesRequest < Struct.new(
|
12327
|
+
:next_token,
|
12328
|
+
:max_results)
|
12329
|
+
SENSITIVE = []
|
12330
|
+
include Aws::Structure
|
12331
|
+
end
|
12332
|
+
|
12333
|
+
# @!attribute [rw] custom_entity_types
|
12334
|
+
# @return [Array<Types::CustomEntityType>]
|
12335
|
+
#
|
12336
|
+
# @!attribute [rw] next_token
|
12337
|
+
# @return [String]
|
12338
|
+
#
|
12339
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListCustomEntityTypesResponse AWS API Documentation
|
12340
|
+
#
|
12341
|
+
class ListCustomEntityTypesResponse < Struct.new(
|
12342
|
+
:custom_entity_types,
|
12343
|
+
:next_token)
|
12344
|
+
SENSITIVE = []
|
12345
|
+
include Aws::Structure
|
12346
|
+
end
|
12347
|
+
|
12153
12348
|
# @note When making an API call, you may pass ListDevEndpointsRequest
|
12154
12349
|
# data as a hash:
|
12155
12350
|
#
|
data/lib/aws-sdk-glue.rb
CHANGED
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.
|
4
|
+
version: 1.110.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: 2022-04-
|
11
|
+
date: 2022-04-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|