aws-sdk-glue 1.121.0 → 1.123.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c93ce0b7917d2bcee4ddf2ab91a94d52cb8c5d960c3c83c7c9d78cd238952eba
4
- data.tar.gz: d7a0ab3d4edef1183cbe34690cfd0c5bb5b1849fe68cc134b976ccc49d5d6893
3
+ metadata.gz: dbc5b917d8ad3d02d2618d804a4639eb0fcfb3a025c9733551012ad0d4def71e
4
+ data.tar.gz: e859ea73987ae4425a755b07ae6c30f24812fee239f8bd85d771d13a7a252376
5
5
  SHA512:
6
- metadata.gz: 630c3de4821ef1be108426c8d27254945bc75a204661abe97163271f8f02038077b62bbe35956e500e34ef9f6fbeaa4fbc283941459671895524b3a496393687
7
- data.tar.gz: a2fdf485dae077bf6d899d78910de7f828c99f3f2f59ebe1668e0214de2036f3f1b8bf4f6436d6b4e29bd70487d5a222f8a38b688bc64978a1b6407370d29276
6
+ metadata.gz: fb46acaaadfbb35208e1f47997e8dc501252d03578aafdabc0c662863df8a1bff426c80f6373bbd21b7f545db9ab62d00bccbc0b8cce7a6326e69f9b37a39aa3
7
+ data.tar.gz: 13534e2e4fce172c092598dd5bacadd0f9a02b1ee046095f193d536d03100e042dd0bb9f74841800565dbf130bb76fff7cde80042d705725b3bd91bf2a11b8d4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.123.0 (2022-11-11)
5
+ ------------------
6
+
7
+ * Feature - Added links related to enabling job bookmarks.
8
+
9
+ 1.122.0 (2022-10-27)
10
+ ------------------
11
+
12
+ * Feature - Added support for custom datatypes when using custom csv classifier.
13
+
4
14
  1.121.0 (2022-10-25)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.121.0
1
+ 1.123.0
@@ -2188,6 +2188,8 @@ module Aws::Glue
2188
2188
  # header: ["NameString"],
2189
2189
  # disable_value_trimming: false,
2190
2190
  # allow_single_column: false,
2191
+ # custom_datatype_configured: false,
2192
+ # custom_datatypes: ["NameString"],
2191
2193
  # },
2192
2194
  # })
2193
2195
  #
@@ -5779,6 +5781,9 @@ module Aws::Glue
5779
5781
  # resp.classifier.csv_classifier.header[0] #=> String
5780
5782
  # resp.classifier.csv_classifier.disable_value_trimming #=> Boolean
5781
5783
  # resp.classifier.csv_classifier.allow_single_column #=> Boolean
5784
+ # resp.classifier.csv_classifier.custom_datatype_configured #=> Boolean
5785
+ # resp.classifier.csv_classifier.custom_datatypes #=> Array
5786
+ # resp.classifier.csv_classifier.custom_datatypes[0] #=> String
5782
5787
  #
5783
5788
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetClassifier AWS API Documentation
5784
5789
  #
@@ -5843,6 +5848,9 @@ module Aws::Glue
5843
5848
  # resp.classifiers[0].csv_classifier.header[0] #=> String
5844
5849
  # resp.classifiers[0].csv_classifier.disable_value_trimming #=> Boolean
5845
5850
  # resp.classifiers[0].csv_classifier.allow_single_column #=> Boolean
5851
+ # resp.classifiers[0].csv_classifier.custom_datatype_configured #=> Boolean
5852
+ # resp.classifiers[0].csv_classifier.custom_datatypes #=> Array
5853
+ # resp.classifiers[0].csv_classifier.custom_datatypes[0] #=> String
5846
5854
  # resp.next_token #=> String
5847
5855
  #
5848
5856
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetClassifiers AWS API Documentation
@@ -6660,7 +6668,8 @@ module Aws::Glue
6660
6668
  req.send_request(options)
6661
6669
  end
6662
6670
 
6663
- # Retrieves all the development endpoints in this AWS account.
6671
+ # Retrieves all the development endpoints in this Amazon Web Services
6672
+ # account.
6664
6673
  #
6665
6674
  # <note markdown="1"> When you create a development endpoint in a virtual private cloud
6666
6675
  # (VPC), Glue returns only a private IP address and the public IP
@@ -7274,6 +7283,20 @@ module Aws::Glue
7274
7283
 
7275
7284
  # Returns information on a job bookmark entry.
7276
7285
  #
7286
+ # For more information about enabling and using job bookmarks, see:
7287
+ #
7288
+ # * [Tracking processed data using job bookmarks][1]
7289
+ #
7290
+ # * [Job parameters used by Glue][2]
7291
+ #
7292
+ # * [Job structure][3]
7293
+ #
7294
+ #
7295
+ #
7296
+ # [1]: https://docs.aws.amazon.com/glue/latest/dg/monitor-continuations.html
7297
+ # [2]: https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html
7298
+ # [3]: https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-jobs-job.html#aws-glue-api-jobs-job-Job
7299
+ #
7277
7300
  # @option params [required, String] :job_name
7278
7301
  # The name of the job in question.
7279
7302
  #
@@ -12117,6 +12140,20 @@ module Aws::Glue
12117
12140
 
12118
12141
  # Resets a bookmark entry.
12119
12142
  #
12143
+ # For more information about enabling and using job bookmarks, see:
12144
+ #
12145
+ # * [Tracking processed data using job bookmarks][1]
12146
+ #
12147
+ # * [Job parameters used by Glue][2]
12148
+ #
12149
+ # * [Job structure][3]
12150
+ #
12151
+ #
12152
+ #
12153
+ # [1]: https://docs.aws.amazon.com/glue/latest/dg/monitor-continuations.html
12154
+ # [2]: https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html
12155
+ # [3]: https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-jobs-job.html#aws-glue-api-jobs-job-Job
12156
+ #
12120
12157
  # @option params [required, String] :job_name
12121
12158
  # The name of the job in question.
12122
12159
  #
@@ -13175,6 +13212,8 @@ module Aws::Glue
13175
13212
  # header: ["NameString"],
13176
13213
  # disable_value_trimming: false,
13177
13214
  # allow_single_column: false,
13215
+ # custom_datatype_configured: false,
13216
+ # custom_datatypes: ["NameString"],
13178
13217
  # },
13179
13218
  # })
13180
13219
  #
@@ -15351,7 +15390,7 @@ module Aws::Glue
15351
15390
  params: params,
15352
15391
  config: config)
15353
15392
  context[:gem_name] = 'aws-sdk-glue'
15354
- context[:gem_version] = '1.121.0'
15393
+ context[:gem_version] = '1.123.0'
15355
15394
  Seahorse::Client::Request.new(handlers, context)
15356
15395
  end
15357
15396
 
@@ -255,6 +255,7 @@ module Aws::Glue
255
255
  CsvHeaderOption = Shapes::StringShape.new(name: 'CsvHeaderOption')
256
256
  CsvQuoteSymbol = Shapes::StringShape.new(name: 'CsvQuoteSymbol')
257
257
  CustomCode = Shapes::StructureShape.new(name: 'CustomCode')
258
+ CustomDatatypes = Shapes::ListShape.new(name: 'CustomDatatypes')
258
259
  CustomEntityType = Shapes::StructureShape.new(name: 'CustomEntityType')
259
260
  CustomEntityTypeNames = Shapes::ListShape.new(name: 'CustomEntityTypeNames')
260
261
  CustomEntityTypes = Shapes::ListShape.new(name: 'CustomEntityTypes')
@@ -1729,6 +1730,8 @@ module Aws::Glue
1729
1730
  CreateCsvClassifierRequest.add_member(:header, Shapes::ShapeRef.new(shape: CsvHeader, location_name: "Header"))
1730
1731
  CreateCsvClassifierRequest.add_member(:disable_value_trimming, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "DisableValueTrimming"))
1731
1732
  CreateCsvClassifierRequest.add_member(:allow_single_column, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "AllowSingleColumn"))
1733
+ CreateCsvClassifierRequest.add_member(:custom_datatype_configured, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "CustomDatatypeConfigured"))
1734
+ CreateCsvClassifierRequest.add_member(:custom_datatypes, Shapes::ShapeRef.new(shape: CustomDatatypes, location_name: "CustomDatatypes"))
1732
1735
  CreateCsvClassifierRequest.struct_class = Types::CreateCsvClassifierRequest
1733
1736
 
1734
1737
  CreateCustomEntityTypeRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
@@ -1984,6 +1987,8 @@ module Aws::Glue
1984
1987
  CsvClassifier.add_member(:header, Shapes::ShapeRef.new(shape: CsvHeader, location_name: "Header"))
1985
1988
  CsvClassifier.add_member(:disable_value_trimming, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "DisableValueTrimming"))
1986
1989
  CsvClassifier.add_member(:allow_single_column, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "AllowSingleColumn"))
1990
+ CsvClassifier.add_member(:custom_datatype_configured, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "CustomDatatypeConfigured"))
1991
+ CsvClassifier.add_member(:custom_datatypes, Shapes::ShapeRef.new(shape: CustomDatatypes, location_name: "CustomDatatypes"))
1987
1992
  CsvClassifier.struct_class = Types::CsvClassifier
1988
1993
 
1989
1994
  CsvHeader.member = Shapes::ShapeRef.new(shape: NameString)
@@ -1995,6 +2000,8 @@ module Aws::Glue
1995
2000
  CustomCode.add_member(:output_schemas, Shapes::ShapeRef.new(shape: GlueSchemas, location_name: "OutputSchemas"))
1996
2001
  CustomCode.struct_class = Types::CustomCode
1997
2002
 
2003
+ CustomDatatypes.member = Shapes::ShapeRef.new(shape: NameString)
2004
+
1998
2005
  CustomEntityType.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
1999
2006
  CustomEntityType.add_member(:regex_string, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "RegexString"))
2000
2007
  CustomEntityType.add_member(:context_words, Shapes::ShapeRef.new(shape: ContextWords, location_name: "ContextWords"))
@@ -4603,6 +4610,8 @@ module Aws::Glue
4603
4610
  UpdateCsvClassifierRequest.add_member(:header, Shapes::ShapeRef.new(shape: CsvHeader, location_name: "Header"))
4604
4611
  UpdateCsvClassifierRequest.add_member(:disable_value_trimming, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "DisableValueTrimming"))
4605
4612
  UpdateCsvClassifierRequest.add_member(:allow_single_column, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "AllowSingleColumn"))
4613
+ UpdateCsvClassifierRequest.add_member(:custom_datatype_configured, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "CustomDatatypeConfigured"))
4614
+ UpdateCsvClassifierRequest.add_member(:custom_datatypes, Shapes::ShapeRef.new(shape: CustomDatatypes, location_name: "CustomDatatypes"))
4606
4615
  UpdateCsvClassifierRequest.struct_class = Types::UpdateCsvClassifierRequest
4607
4616
 
4608
4617
  UpdateDatabaseRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
@@ -4604,6 +4604,8 @@ module Aws::Glue
4604
4604
  # header: ["NameString"],
4605
4605
  # disable_value_trimming: false,
4606
4606
  # allow_single_column: false,
4607
+ # custom_datatype_configured: false,
4608
+ # custom_datatypes: ["NameString"],
4607
4609
  # },
4608
4610
  # }
4609
4611
  #
@@ -4895,6 +4897,8 @@ module Aws::Glue
4895
4897
  # header: ["NameString"],
4896
4898
  # disable_value_trimming: false,
4897
4899
  # allow_single_column: false,
4900
+ # custom_datatype_configured: false,
4901
+ # custom_datatypes: ["NameString"],
4898
4902
  # }
4899
4903
  #
4900
4904
  # @!attribute [rw] name
@@ -4928,6 +4932,14 @@ module Aws::Glue
4928
4932
  # Enables the processing of files that contain only one column.
4929
4933
  # @return [Boolean]
4930
4934
  #
4935
+ # @!attribute [rw] custom_datatype_configured
4936
+ # Enables the configuration of custom datatypes.
4937
+ # @return [Boolean]
4938
+ #
4939
+ # @!attribute [rw] custom_datatypes
4940
+ # Creates a list of supported custom datatypes.
4941
+ # @return [Array<String>]
4942
+ #
4931
4943
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateCsvClassifierRequest AWS API Documentation
4932
4944
  #
4933
4945
  class CreateCsvClassifierRequest < Struct.new(
@@ -4937,7 +4949,9 @@ module Aws::Glue
4937
4949
  :contains_header,
4938
4950
  :header,
4939
4951
  :disable_value_trimming,
4940
- :allow_single_column)
4952
+ :allow_single_column,
4953
+ :custom_datatype_configured,
4954
+ :custom_datatypes)
4941
4955
  SENSITIVE = []
4942
4956
  include Aws::Structure
4943
4957
  end
@@ -5288,7 +5302,8 @@ module Aws::Glue
5288
5302
  # @return [Integer]
5289
5303
  #
5290
5304
  # @!attribute [rw] availability_zone
5291
- # The AWS Availability Zone where this `DevEndpoint` is located.
5305
+ # The Amazon Web Services Availability Zone where this `DevEndpoint`
5306
+ # is located.
5292
5307
  # @return [String]
5293
5308
  #
5294
5309
  # @!attribute [rw] vpc_id
@@ -7768,6 +7783,16 @@ module Aws::Glue
7768
7783
  # Enables the processing of files that contain only one column.
7769
7784
  # @return [Boolean]
7770
7785
  #
7786
+ # @!attribute [rw] custom_datatype_configured
7787
+ # Enables the custom datatype to be configured.
7788
+ # @return [Boolean]
7789
+ #
7790
+ # @!attribute [rw] custom_datatypes
7791
+ # A list of custom datatypes including "BINARY", "BOOLEAN",
7792
+ # "DATE", "DECIMAL", "DOUBLE", "FLOAT", "INT", "LONG",
7793
+ # "SHORT", "STRING", "TIMESTAMP".
7794
+ # @return [Array<String>]
7795
+ #
7771
7796
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CsvClassifier AWS API Documentation
7772
7797
  #
7773
7798
  class CsvClassifier < Struct.new(
@@ -7780,7 +7805,9 @@ module Aws::Glue
7780
7805
  :contains_header,
7781
7806
  :header,
7782
7807
  :disable_value_trimming,
7783
- :allow_single_column)
7808
+ :allow_single_column,
7809
+ :custom_datatype_configured,
7810
+ :custom_datatypes)
7784
7811
  SENSITIVE = []
7785
7812
  include Aws::Structure
7786
7813
  end
@@ -9204,7 +9231,8 @@ module Aws::Glue
9204
9231
  # @return [Integer]
9205
9232
  #
9206
9233
  # @!attribute [rw] availability_zone
9207
- # The AWS Availability Zone where this `DevEndpoint` is located.
9234
+ # The Amazon Web Services Availability Zone where this `DevEndpoint`
9235
+ # is located.
9208
9236
  # @return [String]
9209
9237
  #
9210
9238
  # @!attribute [rw] vpc_id
@@ -24098,6 +24126,8 @@ module Aws::Glue
24098
24126
  # header: ["NameString"],
24099
24127
  # disable_value_trimming: false,
24100
24128
  # allow_single_column: false,
24129
+ # custom_datatype_configured: false,
24130
+ # custom_datatypes: ["NameString"],
24101
24131
  # },
24102
24132
  # }
24103
24133
  #
@@ -24627,6 +24657,8 @@ module Aws::Glue
24627
24657
  # header: ["NameString"],
24628
24658
  # disable_value_trimming: false,
24629
24659
  # allow_single_column: false,
24660
+ # custom_datatype_configured: false,
24661
+ # custom_datatypes: ["NameString"],
24630
24662
  # }
24631
24663
  #
24632
24664
  # @!attribute [rw] name
@@ -24660,6 +24692,14 @@ module Aws::Glue
24660
24692
  # Enables the processing of files that contain only one column.
24661
24693
  # @return [Boolean]
24662
24694
  #
24695
+ # @!attribute [rw] custom_datatype_configured
24696
+ # Specifies the configuration of custom datatypes.
24697
+ # @return [Boolean]
24698
+ #
24699
+ # @!attribute [rw] custom_datatypes
24700
+ # Specifies a list of supported custom datatypes.
24701
+ # @return [Array<String>]
24702
+ #
24663
24703
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateCsvClassifierRequest AWS API Documentation
24664
24704
  #
24665
24705
  class UpdateCsvClassifierRequest < Struct.new(
@@ -24669,7 +24709,9 @@ module Aws::Glue
24669
24709
  :contains_header,
24670
24710
  :header,
24671
24711
  :disable_value_trimming,
24672
- :allow_single_column)
24712
+ :allow_single_column,
24713
+ :custom_datatype_configured,
24714
+ :custom_datatypes)
24673
24715
  SENSITIVE = []
24674
24716
  include Aws::Structure
24675
24717
  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.121.0'
55
+ GEM_VERSION = '1.123.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.121.0
4
+ version: 1.123.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-10-25 00:00:00.000000000 Z
11
+ date: 2022-11-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core