aws-sdk-glue 1.110.0 → 1.111.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 +34 -1
- data/lib/aws-sdk-glue/types.rb +52 -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: fb8cb95950b6d6a9972f2a9541132902f48c0c91748f27c131aeff085551408a
|
4
|
+
data.tar.gz: 13f30fe689ab7b4d538ef986d8d28c53a9567d632627b189793c3e2b920d1cc1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d2fa62fd700042459a6c24cb87b074fd24ffef25807aba99d64e89e97c3f60645ba3646942c8aa6c0e341e7cdb7128dfbe7f198286aa18939c505a97af2b3d4b
|
7
|
+
data.tar.gz: 272228381a639cab45a86d47af800387ab529ac77d19b59adeb4292b59301b438824fb1cb36749ea10d22d3e02bef1f7a46537b2b165991a2494fec1d65b1889
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.111.0 (2022-04-26)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds documentation for the APIs to create, read, delete, list, and batch read of AWS Glue custom patterns, and for Lake Formation configuration settings in the AWS Glue crawler.
|
8
|
+
|
4
9
|
1.110.0 (2022-04-21)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.111.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -815,7 +815,11 @@ module Aws::Glue
|
|
815
815
|
req.send_request(options)
|
816
816
|
end
|
817
817
|
|
818
|
+
# Retrieves the details for the custom patterns specified by a list of
|
819
|
+
# names.
|
820
|
+
#
|
818
821
|
# @option params [required, Array<String>] :names
|
822
|
+
# A list of names of the custom patterns that you want to retrieve.
|
819
823
|
#
|
820
824
|
# @return [Types::BatchGetCustomEntityTypesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
821
825
|
#
|
@@ -1781,6 +1785,7 @@ module Aws::Glue
|
|
1781
1785
|
# Specifies data lineage configuration settings for the crawler.
|
1782
1786
|
#
|
1783
1787
|
# @option params [Types::LakeFormationConfiguration] :lake_formation_configuration
|
1788
|
+
# Specifies AWS Lake Formation configuration settings for the crawler.
|
1784
1789
|
#
|
1785
1790
|
# @option params [String] :configuration
|
1786
1791
|
# Crawler configuration information. This versioned JSON string allows
|
@@ -1893,11 +1898,28 @@ module Aws::Glue
|
|
1893
1898
|
req.send_request(options)
|
1894
1899
|
end
|
1895
1900
|
|
1901
|
+
# Creates a custom pattern that is used to detect sensitive data across
|
1902
|
+
# the columns and rows of your structured data.
|
1903
|
+
#
|
1904
|
+
# Each custom pattern you create specifies a regular expression and an
|
1905
|
+
# optional list of context words. If no context words are passed only a
|
1906
|
+
# regular expression is checked.
|
1907
|
+
#
|
1896
1908
|
# @option params [required, String] :name
|
1909
|
+
# A name for the custom pattern that allows it to be retrieved or
|
1910
|
+
# deleted later. This name must be unique per Amazon Web Services
|
1911
|
+
# account.
|
1897
1912
|
#
|
1898
1913
|
# @option params [required, String] :regex_string
|
1914
|
+
# A regular expression string that is used for detecting sensitive data
|
1915
|
+
# in a custom pattern.
|
1899
1916
|
#
|
1900
1917
|
# @option params [Array<String>] :context_words
|
1918
|
+
# A list of context words. If none of these context words are found
|
1919
|
+
# within the vicinity of the regular expression the data will not be
|
1920
|
+
# detected as sensitive data.
|
1921
|
+
#
|
1922
|
+
# If no context words are passed only a regular expression is checked.
|
1901
1923
|
#
|
1902
1924
|
# @return [Types::CreateCustomEntityTypeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1903
1925
|
#
|
@@ -3666,7 +3688,10 @@ module Aws::Glue
|
|
3666
3688
|
req.send_request(options)
|
3667
3689
|
end
|
3668
3690
|
|
3691
|
+
# Deletes a custom pattern by specifying its name.
|
3692
|
+
#
|
3669
3693
|
# @option params [required, String] :name
|
3694
|
+
# The name of the custom pattern that you want to delete.
|
3670
3695
|
#
|
3671
3696
|
# @return [Types::DeleteCustomEntityTypeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3672
3697
|
#
|
@@ -5108,7 +5133,10 @@ module Aws::Glue
|
|
5108
5133
|
req.send_request(options)
|
5109
5134
|
end
|
5110
5135
|
|
5136
|
+
# Retrieves the details of a custom pattern by specifying its name.
|
5137
|
+
#
|
5111
5138
|
# @option params [required, String] :name
|
5139
|
+
# The name of the custom pattern that you want to retrieve.
|
5112
5140
|
#
|
5113
5141
|
# @return [Types::GetCustomEntityTypeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5114
5142
|
#
|
@@ -8778,9 +8806,13 @@ module Aws::Glue
|
|
8778
8806
|
req.send_request(options)
|
8779
8807
|
end
|
8780
8808
|
|
8809
|
+
# Lists all the custom patterns that have been created.
|
8810
|
+
#
|
8781
8811
|
# @option params [String] :next_token
|
8812
|
+
# A paginated token to offset the results.
|
8782
8813
|
#
|
8783
8814
|
# @option params [Integer] :max_results
|
8815
|
+
# The maximum number of results to return.
|
8784
8816
|
#
|
8785
8817
|
# @return [Types::ListCustomEntityTypesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8786
8818
|
#
|
@@ -11183,6 +11215,7 @@ module Aws::Glue
|
|
11183
11215
|
# Specifies data lineage configuration settings for the crawler.
|
11184
11216
|
#
|
11185
11217
|
# @option params [Types::LakeFormationConfiguration] :lake_formation_configuration
|
11218
|
+
# Specifies AWS Lake Formation configuration settings for the crawler.
|
11186
11219
|
#
|
11187
11220
|
# @option params [String] :configuration
|
11188
11221
|
# Crawler configuration information. This versioned JSON string allows
|
@@ -12161,7 +12194,7 @@ module Aws::Glue
|
|
12161
12194
|
params: params,
|
12162
12195
|
config: config)
|
12163
12196
|
context[:gem_name] = 'aws-sdk-glue'
|
12164
|
-
context[:gem_version] = '1.
|
12197
|
+
context[:gem_version] = '1.111.0'
|
12165
12198
|
Seahorse::Client::Request.new(handlers, context)
|
12166
12199
|
end
|
12167
12200
|
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -605,6 +605,7 @@ module Aws::Glue
|
|
605
605
|
# }
|
606
606
|
#
|
607
607
|
# @!attribute [rw] names
|
608
|
+
# A list of names of the custom patterns that you want to retrieve.
|
608
609
|
# @return [Array<String>]
|
609
610
|
#
|
610
611
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/BatchGetCustomEntityTypesRequest AWS API Documentation
|
@@ -616,9 +617,12 @@ module Aws::Glue
|
|
616
617
|
end
|
617
618
|
|
618
619
|
# @!attribute [rw] custom_entity_types
|
620
|
+
# A list of `CustomEntityType` objects representing the custom
|
621
|
+
# patterns that have been created.
|
619
622
|
# @return [Array<Types::CustomEntityType>]
|
620
623
|
#
|
621
624
|
# @!attribute [rw] custom_entity_types_not_found
|
625
|
+
# A list of the names of custom patterns that were not found.
|
622
626
|
# @return [Array<String>]
|
623
627
|
#
|
624
628
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/BatchGetCustomEntityTypesResponse AWS API Documentation
|
@@ -2695,6 +2699,8 @@ module Aws::Glue
|
|
2695
2699
|
# @return [String]
|
2696
2700
|
#
|
2697
2701
|
# @!attribute [rw] lake_formation_configuration
|
2702
|
+
# Specifies whether the crawler should use AWS Lake Formation
|
2703
|
+
# credentials for the crawler instead of the IAM role credentials.
|
2698
2704
|
# @return [Types::LakeFormationConfiguration]
|
2699
2705
|
#
|
2700
2706
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/Crawler AWS API Documentation
|
@@ -3221,6 +3227,7 @@ module Aws::Glue
|
|
3221
3227
|
# @return [Types::LineageConfiguration]
|
3222
3228
|
#
|
3223
3229
|
# @!attribute [rw] lake_formation_configuration
|
3230
|
+
# Specifies AWS Lake Formation configuration settings for the crawler.
|
3224
3231
|
# @return [Types::LakeFormationConfiguration]
|
3225
3232
|
#
|
3226
3233
|
# @!attribute [rw] configuration
|
@@ -3344,12 +3351,22 @@ module Aws::Glue
|
|
3344
3351
|
# }
|
3345
3352
|
#
|
3346
3353
|
# @!attribute [rw] name
|
3354
|
+
# A name for the custom pattern that allows it to be retrieved or
|
3355
|
+
# deleted later. This name must be unique per Amazon Web Services
|
3356
|
+
# account.
|
3347
3357
|
# @return [String]
|
3348
3358
|
#
|
3349
3359
|
# @!attribute [rw] regex_string
|
3360
|
+
# A regular expression string that is used for detecting sensitive
|
3361
|
+
# data in a custom pattern.
|
3350
3362
|
# @return [String]
|
3351
3363
|
#
|
3352
3364
|
# @!attribute [rw] context_words
|
3365
|
+
# A list of context words. If none of these context words are found
|
3366
|
+
# within the vicinity of the regular expression the data will not be
|
3367
|
+
# detected as sensitive data.
|
3368
|
+
#
|
3369
|
+
# If no context words are passed only a regular expression is checked.
|
3353
3370
|
# @return [Array<String>]
|
3354
3371
|
#
|
3355
3372
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateCustomEntityTypeRequest AWS API Documentation
|
@@ -3363,6 +3380,7 @@ module Aws::Glue
|
|
3363
3380
|
end
|
3364
3381
|
|
3365
3382
|
# @!attribute [rw] name
|
3383
|
+
# The name of the custom pattern you created.
|
3366
3384
|
# @return [String]
|
3367
3385
|
#
|
3368
3386
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateCustomEntityTypeResponse AWS API Documentation
|
@@ -5424,13 +5442,26 @@ module Aws::Glue
|
|
5424
5442
|
include Aws::Structure
|
5425
5443
|
end
|
5426
5444
|
|
5445
|
+
# An object representing a custom pattern for detecting sensitive data
|
5446
|
+
# across the columns and rows of your structured data.
|
5447
|
+
#
|
5427
5448
|
# @!attribute [rw] name
|
5449
|
+
# A name for the custom pattern that allows it to be retrieved or
|
5450
|
+
# deleted later. This name must be unique per Amazon Web Services
|
5451
|
+
# account.
|
5428
5452
|
# @return [String]
|
5429
5453
|
#
|
5430
5454
|
# @!attribute [rw] regex_string
|
5455
|
+
# A regular expression string that is used for detecting sensitive
|
5456
|
+
# data in a custom pattern.
|
5431
5457
|
# @return [String]
|
5432
5458
|
#
|
5433
5459
|
# @!attribute [rw] context_words
|
5460
|
+
# A list of context words. If none of these context words are found
|
5461
|
+
# within the vicinity of the regular expression the data will not be
|
5462
|
+
# detected as sensitive data.
|
5463
|
+
#
|
5464
|
+
# If no context words are passed only a regular expression is checked.
|
5434
5465
|
# @return [Array<String>]
|
5435
5466
|
#
|
5436
5467
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CustomEntityType AWS API Documentation
|
@@ -5971,6 +6002,7 @@ module Aws::Glue
|
|
5971
6002
|
# }
|
5972
6003
|
#
|
5973
6004
|
# @!attribute [rw] name
|
6005
|
+
# The name of the custom pattern that you want to delete.
|
5974
6006
|
# @return [String]
|
5975
6007
|
#
|
5976
6008
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteCustomEntityTypeRequest AWS API Documentation
|
@@ -5982,6 +6014,7 @@ module Aws::Glue
|
|
5982
6014
|
end
|
5983
6015
|
|
5984
6016
|
# @!attribute [rw] name
|
6017
|
+
# The name of the custom pattern you deleted.
|
5985
6018
|
# @return [String]
|
5986
6019
|
#
|
5987
6020
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DeleteCustomEntityTypeResponse AWS API Documentation
|
@@ -8044,6 +8077,7 @@ module Aws::Glue
|
|
8044
8077
|
# }
|
8045
8078
|
#
|
8046
8079
|
# @!attribute [rw] name
|
8080
|
+
# The name of the custom pattern that you want to retrieve.
|
8047
8081
|
# @return [String]
|
8048
8082
|
#
|
8049
8083
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetCustomEntityTypeRequest AWS API Documentation
|
@@ -8055,12 +8089,19 @@ module Aws::Glue
|
|
8055
8089
|
end
|
8056
8090
|
|
8057
8091
|
# @!attribute [rw] name
|
8092
|
+
# The name of the custom pattern that you retrieved.
|
8058
8093
|
# @return [String]
|
8059
8094
|
#
|
8060
8095
|
# @!attribute [rw] regex_string
|
8096
|
+
# A regular expression string that is used for detecting sensitive
|
8097
|
+
# data in a custom pattern.
|
8061
8098
|
# @return [String]
|
8062
8099
|
#
|
8063
8100
|
# @!attribute [rw] context_words
|
8101
|
+
# A list of context words if specified when you created the custom
|
8102
|
+
# pattern. If none of these context words are found within the
|
8103
|
+
# vicinity of the regular expression the data will not be detected as
|
8104
|
+
# sensitive data.
|
8064
8105
|
# @return [Array<String>]
|
8065
8106
|
#
|
8066
8107
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetCustomEntityTypeResponse AWS API Documentation
|
@@ -12079,6 +12120,8 @@ module Aws::Glue
|
|
12079
12120
|
include Aws::Structure
|
12080
12121
|
end
|
12081
12122
|
|
12123
|
+
# Specifies AWS Lake Formation configuration settings for the crawler.
|
12124
|
+
#
|
12082
12125
|
# @note When making an API call, you may pass LakeFormationConfiguration
|
12083
12126
|
# data as a hash:
|
12084
12127
|
#
|
@@ -12088,9 +12131,13 @@ module Aws::Glue
|
|
12088
12131
|
# }
|
12089
12132
|
#
|
12090
12133
|
# @!attribute [rw] use_lake_formation_credentials
|
12134
|
+
# Specifies whether to use AWS Lake Formation credentials for the
|
12135
|
+
# crawler instead of the IAM role credentials.
|
12091
12136
|
# @return [Boolean]
|
12092
12137
|
#
|
12093
12138
|
# @!attribute [rw] account_id
|
12139
|
+
# Required for cross account crawls. For same account crawls as the
|
12140
|
+
# target data, this can be left as null.
|
12094
12141
|
# @return [String]
|
12095
12142
|
#
|
12096
12143
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/LakeFormationConfiguration AWS API Documentation
|
@@ -12316,9 +12363,11 @@ module Aws::Glue
|
|
12316
12363
|
# }
|
12317
12364
|
#
|
12318
12365
|
# @!attribute [rw] next_token
|
12366
|
+
# A paginated token to offset the results.
|
12319
12367
|
# @return [String]
|
12320
12368
|
#
|
12321
12369
|
# @!attribute [rw] max_results
|
12370
|
+
# The maximum number of results to return.
|
12322
12371
|
# @return [Integer]
|
12323
12372
|
#
|
12324
12373
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListCustomEntityTypesRequest AWS API Documentation
|
@@ -12331,9 +12380,11 @@ module Aws::Glue
|
|
12331
12380
|
end
|
12332
12381
|
|
12333
12382
|
# @!attribute [rw] custom_entity_types
|
12383
|
+
# A list of `CustomEntityType` objects representing custom patterns.
|
12334
12384
|
# @return [Array<Types::CustomEntityType>]
|
12335
12385
|
#
|
12336
12386
|
# @!attribute [rw] next_token
|
12387
|
+
# A pagination token, if more results are available.
|
12337
12388
|
# @return [String]
|
12338
12389
|
#
|
12339
12390
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListCustomEntityTypesResponse AWS API Documentation
|
@@ -17955,6 +18006,7 @@ module Aws::Glue
|
|
17955
18006
|
# @return [Types::LineageConfiguration]
|
17956
18007
|
#
|
17957
18008
|
# @!attribute [rw] lake_formation_configuration
|
18009
|
+
# Specifies AWS Lake Formation configuration settings for the crawler.
|
17958
18010
|
# @return [Types::LakeFormationConfiguration]
|
17959
18011
|
#
|
17960
18012
|
# @!attribute [rw] configuration
|
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.111.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-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|