aws-sdk-glue 1.113.0 → 1.114.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: 6065e9a0fc007d0334336d2f6f42742413791ef331a14b1a23b73ebc8f312146
4
- data.tar.gz: 00c6f62650b2bb5ef96b1728b0a385abee42537f729797af10a1a1ffca31bf87
3
+ metadata.gz: bcfa56b8cdba015e48dc7dbb296a7788bc4f27f0ce2dcf2b75ffd43ee985aec8
4
+ data.tar.gz: 3315e38ba3ce18441c027c647362ba2091840c95fcf6dcc4b700e85aecac5041
5
5
  SHA512:
6
- metadata.gz: e619fd7f484606b16cd9f19af05c4e5eca57c54f84674bab7c7bca929ffebcf86b340da331e0c948b33d81a51483104ff41e178c28ba03e3b7af6459133100cf
7
- data.tar.gz: 8017c1b8673ba22d72ef3df8fc1f47d12223da5a0a1f1b06d3c9f6df2224aea860bc6e57de0b8d2782ba8fce522948ce1d59dcec126f47a222eb36837a44238f
6
+ metadata.gz: e0474da3349777456d91faad39f885ae8c1c319d0b571c4c61b7ad0cf1338ec5674adc11cce99ab2f37177a1f9625c384645d3f11e12a2a9e7405255457bdfcd
7
+ data.tar.gz: 0751d158410025a1d3fe4a611042973d2a644e3c7aa19d8f7422159c9918827139ea0c35ea23aab9e3246559a8385a7636111690da04bdd751171ac924c25578
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.114.0 (2022-06-30)
5
+ ------------------
6
+
7
+ * Feature - This release adds tag as an input of CreateDatabase
8
+
4
9
  1.113.0 (2022-06-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.113.0
1
+ 1.114.0
@@ -2435,6 +2435,9 @@ module Aws::Glue
2435
2435
  # @option params [required, Types::DatabaseInput] :database_input
2436
2436
  # The metadata for the database.
2437
2437
  #
2438
+ # @option params [Hash<String,String>] :tags
2439
+ # The tags you assign to the database.
2440
+ #
2438
2441
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2439
2442
  #
2440
2443
  # @example Request syntax with placeholder values
@@ -2461,6 +2464,9 @@ module Aws::Glue
2461
2464
  # database_name: "NameString",
2462
2465
  # },
2463
2466
  # },
2467
+ # tags: {
2468
+ # "TagKey" => "TagValue",
2469
+ # },
2464
2470
  # })
2465
2471
  #
2466
2472
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateDatabase AWS API Documentation
@@ -5941,11 +5947,11 @@ module Aws::Glue
5941
5947
  #
5942
5948
  # @option params [Boolean] :hide_password
5943
5949
  # Allows you to retrieve the connection metadata without returning the
5944
- # password. For instance, the AWS Glue console uses this flag to
5945
- # retrieve the connection, and does not display the password. Set this
5946
- # parameter when the caller might not have permission to use the KMS key
5947
- # to decrypt the password, but it does have permission to access the
5948
- # rest of the connection properties.
5950
+ # password. For instance, the Glue console uses this flag to retrieve
5951
+ # the connection, and does not display the password. Set this parameter
5952
+ # when the caller might not have permission to use the KMS key to
5953
+ # decrypt the password, but it does have permission to access the rest
5954
+ # of the connection properties.
5949
5955
  #
5950
5956
  # @return [Types::GetConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5951
5957
  #
@@ -5996,11 +6002,11 @@ module Aws::Glue
5996
6002
  #
5997
6003
  # @option params [Boolean] :hide_password
5998
6004
  # Allows you to retrieve the connection metadata without returning the
5999
- # password. For instance, the AWS Glue console uses this flag to
6000
- # retrieve the connection, and does not display the password. Set this
6001
- # parameter when the caller might not have permission to use the KMS key
6002
- # to decrypt the password, but it does have permission to access the
6003
- # rest of the connection properties.
6005
+ # password. For instance, the Glue console uses this flag to retrieve
6006
+ # the connection, and does not display the password. Set this parameter
6007
+ # when the caller might not have permission to use the KMS key to
6008
+ # decrypt the password, but it does have permission to access the rest
6009
+ # of the connection properties.
6004
6010
  #
6005
6011
  # @option params [String] :next_token
6006
6012
  # A continuation token, if this is a continuation call.
@@ -14749,6 +14755,7 @@ module Aws::Glue
14749
14755
  # The transaction ID at which to update the table contents.
14750
14756
  #
14751
14757
  # @option params [String] :version_id
14758
+ # The version ID at which to update the table contents.
14752
14759
  #
14753
14760
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
14754
14761
  #
@@ -15050,7 +15057,7 @@ module Aws::Glue
15050
15057
  params: params,
15051
15058
  config: config)
15052
15059
  context[:gem_name] = 'aws-sdk-glue'
15053
- context[:gem_version] = '1.113.0'
15060
+ context[:gem_version] = '1.114.0'
15054
15061
  Seahorse::Client::Request.new(handlers, context)
15055
15062
  end
15056
15063
 
@@ -1729,6 +1729,7 @@ module Aws::Glue
1729
1729
 
1730
1730
  CreateDatabaseRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
1731
1731
  CreateDatabaseRequest.add_member(:database_input, Shapes::ShapeRef.new(shape: DatabaseInput, required: true, location_name: "DatabaseInput"))
1732
+ CreateDatabaseRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
1732
1733
  CreateDatabaseRequest.struct_class = Types::CreateDatabaseRequest
1733
1734
 
1734
1735
  CreateDatabaseResponse.struct_class = Types::CreateDatabaseResponse
@@ -3752,6 +3752,18 @@ module Aws::Glue
3752
3752
  # * `CONNECTION_URL` - The URL for connecting to a general (non-JDBC)
3753
3753
  # data source.
3754
3754
  #
3755
+ # * `SECRET_ID` - The secret ID used for the secret manager of
3756
+ # credentials.
3757
+ #
3758
+ # * `CONNECTOR_URL` - The connector URL for a MARKETPLACE or CUSTOM
3759
+ # connection.
3760
+ #
3761
+ # * `CONNECTOR_TYPE` - The connector type for a MARKETPLACE or CUSTOM
3762
+ # connection.
3763
+ #
3764
+ # * `CONNECTOR_CLASS_NAME` - The connector class name for a
3765
+ # MARKETPLACE or CUSTOM connection.
3766
+ #
3755
3767
  # * `KAFKA_BOOTSTRAP_SERVERS` - A comma-separated list of host and
3756
3768
  # port pairs that are the addresses of the Apache Kafka brokers in a
3757
3769
  # Kafka cluster to which a Kafka client will connect to and
@@ -3768,18 +3780,6 @@ module Aws::Glue
3768
3780
  # algorithms: SHA256withRSA, SHA384withRSA and SHA512withRSA.
3769
3781
  # Default value is "false".
3770
3782
  #
3771
- # * `SECRET_ID` - The secret ID used for the secret manager of
3772
- # credentials.
3773
- #
3774
- # * `CONNECTOR_URL` - The connector URL for a MARKETPLACE or CUSTOM
3775
- # connection.
3776
- #
3777
- # * `CONNECTOR_TYPE` - The connector type for a MARKETPLACE or CUSTOM
3778
- # connection.
3779
- #
3780
- # * `CONNECTOR_CLASS_NAME` - The connector class name for a
3781
- # MARKETPLACE or CUSTOM connection.
3782
- #
3783
3783
  # * `KAFKA_CLIENT_KEYSTORE` - The Amazon S3 location of the client
3784
3784
  # keystore file for Kafka client side authentication (Optional).
3785
3785
  #
@@ -3797,6 +3797,45 @@ module Aws::Glue
3797
3797
  # * `ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD` - The encrypted version of
3798
3798
  # the Kafka client key password (if the user has the Glue encrypt
3799
3799
  # passwords setting selected).
3800
+ #
3801
+ # * `KAFKA_SASL_MECHANISM` - `"SCRAM-SHA-512"` or `"GSSAPI"`. These
3802
+ # are the two supported [SASL Mechanisms][1].
3803
+ #
3804
+ # * `KAFKA_SASL_SCRAM_USERNAME` - A plaintext username used to
3805
+ # authenticate with the "SCRAM-SHA-512" mechanism.
3806
+ #
3807
+ # * `KAFKA_SASL_SCRAM_PASSWORD` - A plaintext password used to
3808
+ # authenticate with the "SCRAM-SHA-512" mechanism.
3809
+ #
3810
+ # * `ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD` - The encrypted version of
3811
+ # the Kafka SASL SCRAM password (if the user has the Glue encrypt
3812
+ # passwords setting selected).
3813
+ #
3814
+ # * `KAFKA_SASL_GSSAPI_KEYTAB` - The S3 location of a Kerberos
3815
+ # `keytab` file. A keytab stores long-term keys for one or more
3816
+ # principals. For more information, see [MIT Kerberos Documentation:
3817
+ # Keytab][2].
3818
+ #
3819
+ # * `KAFKA_SASL_GSSAPI_KRB5_CONF` - The S3 location of a Kerberos
3820
+ # `krb5.conf` file. A krb5.conf stores Kerberos configuration
3821
+ # information, such as the location of the KDC server. For more
3822
+ # information, see [MIT Kerberos Documentation: krb5.conf][3].
3823
+ #
3824
+ # * `KAFKA_SASL_GSSAPI_SERVICE` - The Kerberos service name, as set
3825
+ # with `sasl.kerberos.service.name` in your [Kafka
3826
+ # Configuration][4].
3827
+ #
3828
+ # * `KAFKA_SASL_GSSAPI_PRINCIPAL` - The name of the Kerberos princial
3829
+ # used by Glue. For more information, see [Kafka Documentation:
3830
+ # Configuring Kafka Brokers][5].
3831
+ #
3832
+ #
3833
+ #
3834
+ # [1]: https://www.iana.org/assignments/sasl-mechanisms/sasl-mechanisms.xhtml
3835
+ # [2]: https://web.mit.edu/kerberos/krb5-latest/doc/basic/keytab_def.html
3836
+ # [3]: https://web.mit.edu/kerberos/krb5-1.12/doc/admin/conf_files/krb5_conf.html
3837
+ # [4]: https://kafka.apache.org/documentation/#brokerconfigs_sasl.kerberos.service.name
3838
+ # [5]: https://kafka.apache.org/documentation/#security_sasl_kerberos_clientconfig
3800
3839
  # @return [Hash<String,String>]
3801
3840
  #
3802
3841
  # @!attribute [rw] physical_connection_requirements
@@ -4960,6 +4999,9 @@ module Aws::Glue
4960
4999
  # database_name: "NameString",
4961
5000
  # },
4962
5001
  # },
5002
+ # tags: {
5003
+ # "TagKey" => "TagValue",
5004
+ # },
4963
5005
  # }
4964
5006
  #
4965
5007
  # @!attribute [rw] catalog_id
@@ -4971,11 +5013,16 @@ module Aws::Glue
4971
5013
  # The metadata for the database.
4972
5014
  # @return [Types::DatabaseInput]
4973
5015
  #
5016
+ # @!attribute [rw] tags
5017
+ # The tags you assign to the database.
5018
+ # @return [Hash<String,String>]
5019
+ #
4974
5020
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateDatabaseRequest AWS API Documentation
4975
5021
  #
4976
5022
  class CreateDatabaseRequest < Struct.new(
4977
5023
  :catalog_id,
4978
- :database_input)
5024
+ :database_input,
5025
+ :tags)
4979
5026
  SENSITIVE = []
4980
5027
  include Aws::Structure
4981
5028
  end
@@ -10623,8 +10670,8 @@ module Aws::Glue
10623
10670
  #
10624
10671
  # @!attribute [rw] hide_password
10625
10672
  # Allows you to retrieve the connection metadata without returning the
10626
- # password. For instance, the AWS Glue console uses this flag to
10627
- # retrieve the connection, and does not display the password. Set this
10673
+ # password. For instance, the Glue console uses this flag to retrieve
10674
+ # the connection, and does not display the password. Set this
10628
10675
  # parameter when the caller might not have permission to use the KMS
10629
10676
  # key to decrypt the password, but it does have permission to access
10630
10677
  # the rest of the connection properties.
@@ -10706,8 +10753,8 @@ module Aws::Glue
10706
10753
  #
10707
10754
  # @!attribute [rw] hide_password
10708
10755
  # Allows you to retrieve the connection metadata without returning the
10709
- # password. For instance, the AWS Glue console uses this flag to
10710
- # retrieve the connection, and does not display the password. Set this
10756
+ # password. For instance, the Glue console uses this flag to retrieve
10757
+ # the connection, and does not display the password. Set this
10711
10758
  # parameter when the caller might not have permission to use the KMS
10712
10759
  # key to decrypt the password, but it does have permission to access
10713
10760
  # the rest of the connection properties.
@@ -22529,6 +22576,8 @@ module Aws::Glue
22529
22576
  # @return [String]
22530
22577
  #
22531
22578
  # @!attribute [rw] additional_locations
22579
+ # A list of locations that point to the path where a Delta table is
22580
+ # located.
22532
22581
  # @return [Array<String>]
22533
22582
  #
22534
22583
  # @!attribute [rw] input_format
@@ -22766,6 +22815,7 @@ module Aws::Glue
22766
22815
  # @return [String]
22767
22816
  #
22768
22817
  # @!attribute [rw] version_id
22818
+ # The ID of the table version.
22769
22819
  # @return [String]
22770
22820
  #
22771
22821
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/Table AWS API Documentation
@@ -25809,6 +25859,7 @@ module Aws::Glue
25809
25859
  # @return [String]
25810
25860
  #
25811
25861
  # @!attribute [rw] version_id
25862
+ # The version ID at which to update the table contents.
25812
25863
  # @return [String]
25813
25864
  #
25814
25865
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateTableRequest AWS API Documentation
data/lib/aws-sdk-glue.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-glue/customizations'
48
48
  # @!group service
49
49
  module Aws::Glue
50
50
 
51
- GEM_VERSION = '1.113.0'
51
+ GEM_VERSION = '1.114.0'
52
52
 
53
53
  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.113.0
4
+ version: 1.114.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-06-24 00:00:00.000000000 Z
11
+ date: 2022-06-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core