aws-sdk-glue 1.195.0 → 1.197.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: 4c3aaeca7c880d71df57bd89a1c91171df80946d51a4d0f205aa9df5a9d2bc06
4
- data.tar.gz: ee2747bf524cd0423a4bbb5347b78c7fa489ad319d45d541bbb936d7889e36d4
3
+ metadata.gz: 42721ede10289adb96036afdfb5a17dd0b3cfd959d24f809f48ebe8a59487efe
4
+ data.tar.gz: 281be0ab10bcda4ca63bf17562e862a8233aec643cfbe3e40f091e6d902162f2
5
5
  SHA512:
6
- metadata.gz: 5ad947be225a9373f15f071db5ad8c3b9ec0401d5a90870c8a6c1c9099a3a5e0b32bb2cc866b6c75ce8a8ee37c3602e0593bbe247346dc73ce96db6f437df865
7
- data.tar.gz: 33d04dae38a2eab8ceebc4333e94766654c4a78161f900f6597f19deae95092722682b8c970c656a4fe77e5606c50023c698a92232c0b620b280484f99ff865c
6
+ metadata.gz: 848838cca4aca4a4e8cd58a6a5a50410dc8e414b0b24090e65caf5779004990b2c298430be1d7c37d182b2735ba745c2ebcdf0cd11874e684b712c3fe0be4cd1
7
+ data.tar.gz: 256aa3c203668af04d7e07fac6d23757fce4bc098385fb55f794b661ab436c96a6c3fc3f8ca028cd2470d0c4add73bda5032beac3aa74030d2431d77f06e559c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.197.0 (2024-09-23)
5
+ ------------------
6
+
7
+ * Feature - Added AthenaProperties parameter to Glue Connections, allowing Athena to store service specific properties on Glue Connections.
8
+
9
+ 1.196.0 (2024-09-20)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.195.0 (2024-09-19)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.195.0
1
+ 1.197.0
@@ -130,13 +130,15 @@ module Aws::Glue
130
130
  # locations will be searched for credentials:
131
131
  #
132
132
  # * `Aws.config[:credentials]`
133
- # * The `:access_key_id`, `:secret_access_key`, and `:session_token` options.
134
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
133
+ # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
134
+ # `:account_id` options.
135
+ # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
136
+ # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
135
137
  # * `~/.aws/credentials`
136
138
  # * `~/.aws/config`
137
139
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
138
140
  # are very aggressive. Construct and pass an instance of
139
- # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
141
+ # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
140
142
  # enable retries and extended timeouts. Instance profile credential
141
143
  # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
142
144
  # to true.
@@ -155,6 +157,8 @@ module Aws::Glue
155
157
  #
156
158
  # @option options [String] :access_key_id
157
159
  #
160
+ # @option options [String] :account_id
161
+ #
158
162
  # @option options [Boolean] :active_endpoint_cache (false)
159
163
  # When set to `true`, a thread polling for endpoints will be running in
160
164
  # the background every 60 secs (default). Defaults to `false`.
@@ -376,7 +380,9 @@ module Aws::Glue
376
380
  # sending the request.
377
381
  #
378
382
  # @option options [Aws::Glue::EndpointProvider] :endpoint_provider
379
- # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::Glue::EndpointParameters`
383
+ # The endpoint provider used to resolve endpoints. Any object that responds to
384
+ # `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
385
+ # `Aws::Glue::EndpointParameters`.
380
386
  #
381
387
  # @option options [Float] :http_continue_timeout (1)
382
388
  # The number of seconds to wait for a 100-continue response before sending the
@@ -2948,6 +2954,9 @@ module Aws::Glue
2948
2954
  # connection_properties: { # required
2949
2955
  # "HOST" => "ValueString",
2950
2956
  # },
2957
+ # athena_properties: {
2958
+ # "PropertyKey" => "PropertyValue",
2959
+ # },
2951
2960
  # physical_connection_requirements: {
2952
2961
  # subnet_id: "NameString",
2953
2962
  # security_group_id_list: ["NameString"],
@@ -2955,7 +2964,6 @@ module Aws::Glue
2955
2964
  # },
2956
2965
  # authentication_configuration: {
2957
2966
  # authentication_type: "BASIC", # accepts BASIC, OAUTH2, CUSTOM
2958
- # secret_arn: "SecretArn",
2959
2967
  # o_auth_2_properties: {
2960
2968
  # o_auth_2_grant_type: "AUTHORIZATION_CODE", # accepts AUTHORIZATION_CODE, CLIENT_CREDENTIALS, JWT_BEARER
2961
2969
  # o_auth_2_client_application: {
@@ -2971,6 +2979,7 @@ module Aws::Glue
2971
2979
  # redirect_uri: "RedirectUri",
2972
2980
  # },
2973
2981
  # },
2982
+ # secret_arn: "SecretArn",
2974
2983
  # },
2975
2984
  # validate_credentials: false,
2976
2985
  # },
@@ -6634,6 +6643,8 @@ module Aws::Glue
6634
6643
  # resp.connection.match_criteria[0] #=> String
6635
6644
  # resp.connection.connection_properties #=> Hash
6636
6645
  # resp.connection.connection_properties["ConnectionPropertyKey"] #=> String
6646
+ # resp.connection.athena_properties #=> Hash
6647
+ # resp.connection.athena_properties["PropertyKey"] #=> String
6637
6648
  # resp.connection.physical_connection_requirements.subnet_id #=> String
6638
6649
  # resp.connection.physical_connection_requirements.security_group_id_list #=> Array
6639
6650
  # resp.connection.physical_connection_requirements.security_group_id_list[0] #=> String
@@ -6715,6 +6726,8 @@ module Aws::Glue
6715
6726
  # resp.connection_list[0].match_criteria[0] #=> String
6716
6727
  # resp.connection_list[0].connection_properties #=> Hash
6717
6728
  # resp.connection_list[0].connection_properties["ConnectionPropertyKey"] #=> String
6729
+ # resp.connection_list[0].athena_properties #=> Hash
6730
+ # resp.connection_list[0].athena_properties["PropertyKey"] #=> String
6718
6731
  # resp.connection_list[0].physical_connection_requirements.subnet_id #=> String
6719
6732
  # resp.connection_list[0].physical_connection_requirements.security_group_id_list #=> Array
6720
6733
  # resp.connection_list[0].physical_connection_requirements.security_group_id_list[0] #=> String
@@ -16383,7 +16396,6 @@ module Aws::Glue
16383
16396
  # },
16384
16397
  # authentication_configuration: {
16385
16398
  # authentication_type: "BASIC", # accepts BASIC, OAUTH2, CUSTOM
16386
- # secret_arn: "SecretArn",
16387
16399
  # o_auth_2_properties: {
16388
16400
  # o_auth_2_grant_type: "AUTHORIZATION_CODE", # accepts AUTHORIZATION_CODE, CLIENT_CREDENTIALS, JWT_BEARER
16389
16401
  # o_auth_2_client_application: {
@@ -16399,6 +16411,7 @@ module Aws::Glue
16399
16411
  # redirect_uri: "RedirectUri",
16400
16412
  # },
16401
16413
  # },
16414
+ # secret_arn: "SecretArn",
16402
16415
  # },
16403
16416
  # },
16404
16417
  # })
@@ -16833,6 +16846,9 @@ module Aws::Glue
16833
16846
  # connection_properties: { # required
16834
16847
  # "HOST" => "ValueString",
16835
16848
  # },
16849
+ # athena_properties: {
16850
+ # "PropertyKey" => "PropertyValue",
16851
+ # },
16836
16852
  # physical_connection_requirements: {
16837
16853
  # subnet_id: "NameString",
16838
16854
  # security_group_id_list: ["NameString"],
@@ -16840,7 +16856,6 @@ module Aws::Glue
16840
16856
  # },
16841
16857
  # authentication_configuration: {
16842
16858
  # authentication_type: "BASIC", # accepts BASIC, OAUTH2, CUSTOM
16843
- # secret_arn: "SecretArn",
16844
16859
  # o_auth_2_properties: {
16845
16860
  # o_auth_2_grant_type: "AUTHORIZATION_CODE", # accepts AUTHORIZATION_CODE, CLIENT_CREDENTIALS, JWT_BEARER
16846
16861
  # o_auth_2_client_application: {
@@ -16856,6 +16871,7 @@ module Aws::Glue
16856
16871
  # redirect_uri: "RedirectUri",
16857
16872
  # },
16858
16873
  # },
16874
+ # secret_arn: "SecretArn",
16859
16875
  # },
16860
16876
  # validate_credentials: false,
16861
16877
  # },
@@ -18209,7 +18225,7 @@ module Aws::Glue
18209
18225
  tracer: tracer
18210
18226
  )
18211
18227
  context[:gem_name] = 'aws-sdk-glue'
18212
- context[:gem_version] = '1.195.0'
18228
+ context[:gem_version] = '1.197.0'
18213
18229
  Seahorse::Client::Request.new(handlers, context)
18214
18230
  end
18215
18231
 
@@ -7,6 +7,7 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
+
10
11
  module Aws::Glue
11
12
  # @api private
12
13
  module ClientApi
@@ -959,7 +960,10 @@ module Aws::Glue
959
960
  PrincipalType = Shapes::StringShape.new(name: 'PrincipalType')
960
961
  Prob = Shapes::FloatShape.new(name: 'Prob')
961
962
  ProfileConfiguration = Shapes::StructureShape.new(name: 'ProfileConfiguration')
963
+ PropertyKey = Shapes::StringShape.new(name: 'PropertyKey')
964
+ PropertyMap = Shapes::MapShape.new(name: 'PropertyMap')
962
965
  PropertyPredicate = Shapes::StructureShape.new(name: 'PropertyPredicate')
966
+ PropertyValue = Shapes::StringShape.new(name: 'PropertyValue')
963
967
  PublicKeysList = Shapes::ListShape.new(name: 'PublicKeysList')
964
968
  PutDataCatalogEncryptionSettingsRequest = Shapes::StructureShape.new(name: 'PutDataCatalogEncryptionSettingsRequest')
965
969
  PutDataCatalogEncryptionSettingsResponse = Shapes::StructureShape.new(name: 'PutDataCatalogEncryptionSettingsResponse')
@@ -1476,8 +1480,8 @@ module Aws::Glue
1476
1480
  AuthenticationConfiguration.struct_class = Types::AuthenticationConfiguration
1477
1481
 
1478
1482
  AuthenticationConfigurationInput.add_member(:authentication_type, Shapes::ShapeRef.new(shape: AuthenticationType, location_name: "AuthenticationType"))
1479
- AuthenticationConfigurationInput.add_member(:secret_arn, Shapes::ShapeRef.new(shape: SecretArn, location_name: "SecretArn"))
1480
1483
  AuthenticationConfigurationInput.add_member(:o_auth_2_properties, Shapes::ShapeRef.new(shape: OAuth2PropertiesInput, location_name: "OAuth2Properties"))
1484
+ AuthenticationConfigurationInput.add_member(:secret_arn, Shapes::ShapeRef.new(shape: SecretArn, location_name: "SecretArn"))
1481
1485
  AuthenticationConfigurationInput.struct_class = Types::AuthenticationConfigurationInput
1482
1486
 
1483
1487
  AuthorizationCodeProperties.add_member(:authorization_code, Shapes::ShapeRef.new(shape: AuthorizationCode, location_name: "AuthorizationCode"))
@@ -2094,6 +2098,7 @@ module Aws::Glue
2094
2098
  Connection.add_member(:connection_type, Shapes::ShapeRef.new(shape: ConnectionType, location_name: "ConnectionType"))
2095
2099
  Connection.add_member(:match_criteria, Shapes::ShapeRef.new(shape: MatchCriteria, location_name: "MatchCriteria"))
2096
2100
  Connection.add_member(:connection_properties, Shapes::ShapeRef.new(shape: ConnectionProperties, location_name: "ConnectionProperties"))
2101
+ Connection.add_member(:athena_properties, Shapes::ShapeRef.new(shape: PropertyMap, location_name: "AthenaProperties"))
2097
2102
  Connection.add_member(:physical_connection_requirements, Shapes::ShapeRef.new(shape: PhysicalConnectionRequirements, location_name: "PhysicalConnectionRequirements"))
2098
2103
  Connection.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
2099
2104
  Connection.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedTime"))
@@ -2109,6 +2114,7 @@ module Aws::Glue
2109
2114
  ConnectionInput.add_member(:connection_type, Shapes::ShapeRef.new(shape: ConnectionType, required: true, location_name: "ConnectionType"))
2110
2115
  ConnectionInput.add_member(:match_criteria, Shapes::ShapeRef.new(shape: MatchCriteria, location_name: "MatchCriteria"))
2111
2116
  ConnectionInput.add_member(:connection_properties, Shapes::ShapeRef.new(shape: ConnectionProperties, required: true, location_name: "ConnectionProperties"))
2117
+ ConnectionInput.add_member(:athena_properties, Shapes::ShapeRef.new(shape: PropertyMap, location_name: "AthenaProperties"))
2112
2118
  ConnectionInput.add_member(:physical_connection_requirements, Shapes::ShapeRef.new(shape: PhysicalConnectionRequirements, location_name: "PhysicalConnectionRequirements"))
2113
2119
  ConnectionInput.add_member(:authentication_configuration, Shapes::ShapeRef.new(shape: AuthenticationConfigurationInput, location_name: "AuthenticationConfiguration"))
2114
2120
  ConnectionInput.add_member(:validate_credentials, Shapes::ShapeRef.new(shape: Boolean, location_name: "ValidateCredentials"))
@@ -4929,6 +4935,9 @@ module Aws::Glue
4929
4935
  ProfileConfiguration.add_member(:job_configuration, Shapes::ShapeRef.new(shape: ConfigurationMap, location_name: "JobConfiguration"))
4930
4936
  ProfileConfiguration.struct_class = Types::ProfileConfiguration
4931
4937
 
4938
+ PropertyMap.key = Shapes::ShapeRef.new(shape: PropertyKey)
4939
+ PropertyMap.value = Shapes::ShapeRef.new(shape: PropertyValue)
4940
+
4932
4941
  PropertyPredicate.add_member(:key, Shapes::ShapeRef.new(shape: ValueString, location_name: "Key"))
4933
4942
  PropertyPredicate.add_member(:value, Shapes::ShapeRef.new(shape: ValueString, location_name: "Value"))
4934
4943
  PropertyPredicate.add_member(:comparator, Shapes::ShapeRef.new(shape: Comparator, location_name: "Comparator"))
@@ -15,11 +15,11 @@ module Aws::Glue
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::Glue::EndpointProvider',
17
17
  rbs_type: 'untyped',
18
- docstring: 'The endpoint provider used to resolve endpoints. Any '\
19
- 'object that responds to `#resolve_endpoint(parameters)` '\
20
- 'where `parameters` is a Struct similar to '\
21
- '`Aws::Glue::EndpointParameters`'
22
- ) do |cfg|
18
+ docstring: <<~DOCS) do |_cfg|
19
+ The endpoint provider used to resolve endpoints. Any object that responds to
20
+ `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
21
+ `Aws::Glue::EndpointParameters`.
22
+ DOCS
23
23
  Aws::Glue::EndpointProvider.new
24
24
  end
25
25
 
@@ -51,6 +51,9 @@ module Aws::Glue
51
51
  if context[:auth_scheme] && context[:auth_scheme]['name'] == 'sigv4a'
52
52
  metrics << 'SIGV4A_SIGNING'
53
53
  end
54
+ if context.config.credentials&.credentials&.account_id
55
+ metrics << 'RESOLVED_ACCOUNT_ID'
56
+ end
54
57
  Aws::Plugins::UserAgent.metric(*metrics, &block)
55
58
  end
56
59
 
@@ -523,22 +523,22 @@ module Aws::Glue
523
523
  # CreateConnection request.
524
524
  # @return [String]
525
525
  #
526
- # @!attribute [rw] secret_arn
527
- # The secret manager ARN to store credentials in the CreateConnection
528
- # request.
529
- # @return [String]
530
- #
531
526
  # @!attribute [rw] o_auth_2_properties
532
527
  # The properties for OAuth2 authentication in the CreateConnection
533
528
  # request.
534
529
  # @return [Types::OAuth2PropertiesInput]
535
530
  #
531
+ # @!attribute [rw] secret_arn
532
+ # The secret manager ARN to store credentials in the CreateConnection
533
+ # request.
534
+ # @return [String]
535
+ #
536
536
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/AuthenticationConfigurationInput AWS API Documentation
537
537
  #
538
538
  class AuthenticationConfigurationInput < Struct.new(
539
539
  :authentication_type,
540
- :secret_arn,
541
- :o_auth_2_properties)
540
+ :o_auth_2_properties,
541
+ :secret_arn)
542
542
  SENSITIVE = []
543
543
  include Aws::Structure
544
544
  end
@@ -564,7 +564,7 @@ module Aws::Glue
564
564
  class AuthorizationCodeProperties < Struct.new(
565
565
  :authorization_code,
566
566
  :redirect_uri)
567
- SENSITIVE = []
567
+ SENSITIVE = [:authorization_code]
568
568
  include Aws::Structure
569
569
  end
570
570
 
@@ -3403,6 +3403,10 @@ module Aws::Glue
3403
3403
  # [5]: https://kafka.apache.org/documentation/#security_sasl_kerberos_clientconfig
3404
3404
  # @return [Hash<String,String>]
3405
3405
  #
3406
+ # @!attribute [rw] athena_properties
3407
+ # This field is not currently used.
3408
+ # @return [Hash<String,String>]
3409
+ #
3406
3410
  # @!attribute [rw] physical_connection_requirements
3407
3411
  # The physical connection requirements, such as virtual private cloud
3408
3412
  # (VPC) and `SecurityGroup`, that are needed to make this connection
@@ -3449,6 +3453,7 @@ module Aws::Glue
3449
3453
  :connection_type,
3450
3454
  :match_criteria,
3451
3455
  :connection_properties,
3456
+ :athena_properties,
3452
3457
  :physical_connection_requirements,
3453
3458
  :creation_time,
3454
3459
  :last_updated_time,
@@ -3588,6 +3593,10 @@ module Aws::Glue
3588
3593
  # These key-value pairs define parameters for the connection.
3589
3594
  # @return [Hash<String,String>]
3590
3595
  #
3596
+ # @!attribute [rw] athena_properties
3597
+ # This field is not currently used.
3598
+ # @return [Hash<String,String>]
3599
+ #
3591
3600
  # @!attribute [rw] physical_connection_requirements
3592
3601
  # The physical connection requirements, such as virtual private cloud
3593
3602
  # (VPC) and `SecurityGroup`, that are needed to successfully make this
@@ -3612,6 +3621,7 @@ module Aws::Glue
3612
3621
  :connection_type,
3613
3622
  :match_criteria,
3614
3623
  :connection_properties,
3624
+ :athena_properties,
3615
3625
  :physical_connection_requirements,
3616
3626
  :authentication_configuration,
3617
3627
  :validate_credentials)
@@ -25420,3 +25430,4 @@ module Aws::Glue
25420
25430
 
25421
25431
  end
25422
25432
  end
25433
+
data/lib/aws-sdk-glue.rb CHANGED
@@ -11,17 +11,6 @@
11
11
  require 'aws-sdk-core'
12
12
  require 'aws-sigv4'
13
13
 
14
- require_relative 'aws-sdk-glue/types'
15
- require_relative 'aws-sdk-glue/client_api'
16
- require_relative 'aws-sdk-glue/plugins/endpoints.rb'
17
- require_relative 'aws-sdk-glue/client'
18
- require_relative 'aws-sdk-glue/errors'
19
- require_relative 'aws-sdk-glue/resource'
20
- require_relative 'aws-sdk-glue/endpoint_parameters'
21
- require_relative 'aws-sdk-glue/endpoint_provider'
22
- require_relative 'aws-sdk-glue/endpoints'
23
- require_relative 'aws-sdk-glue/customizations'
24
-
25
14
  # This module provides support for AWS Glue. This module is available in the
26
15
  # `aws-sdk-glue` gem.
27
16
  #
@@ -51,7 +40,20 @@ require_relative 'aws-sdk-glue/customizations'
51
40
  #
52
41
  # @!group service
53
42
  module Aws::Glue
43
+ autoload :Types, 'aws-sdk-glue/types'
44
+ autoload :ClientApi, 'aws-sdk-glue/client_api'
45
+ module Plugins
46
+ autoload :Endpoints, 'aws-sdk-glue/plugins/endpoints.rb'
47
+ end
48
+ autoload :Client, 'aws-sdk-glue/client'
49
+ autoload :Errors, 'aws-sdk-glue/errors'
50
+ autoload :Resource, 'aws-sdk-glue/resource'
51
+ autoload :EndpointParameters, 'aws-sdk-glue/endpoint_parameters'
52
+ autoload :EndpointProvider, 'aws-sdk-glue/endpoint_provider'
53
+ autoload :Endpoints, 'aws-sdk-glue/endpoints'
54
54
 
55
- GEM_VERSION = '1.195.0'
55
+ GEM_VERSION = '1.197.0'
56
56
 
57
57
  end
58
+
59
+ require_relative 'aws-sdk-glue/customizations'
data/sig/client.rbs CHANGED
@@ -15,6 +15,7 @@ module Aws
15
15
  ?credentials: untyped,
16
16
  ?region: String,
17
17
  ?access_key_id: String,
18
+ ?account_id: String,
18
19
  ?active_endpoint_cache: bool,
19
20
  ?adaptive_retry_wait_to_fill: bool,
20
21
  ?client_side_monitoring: bool,
@@ -531,6 +532,7 @@ module Aws
531
532
  connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA"),
532
533
  match_criteria: Array[::String]?,
533
534
  connection_properties: Hash[("HOST" | "PORT" | "USERNAME" | "PASSWORD" | "ENCRYPTED_PASSWORD" | "JDBC_DRIVER_JAR_URI" | "JDBC_DRIVER_CLASS_NAME" | "JDBC_ENGINE" | "JDBC_ENGINE_VERSION" | "CONFIG_FILES" | "INSTANCE_ID" | "JDBC_CONNECTION_URL" | "JDBC_ENFORCE_SSL" | "CUSTOM_JDBC_CERT" | "SKIP_CUSTOM_JDBC_CERT_VALIDATION" | "CUSTOM_JDBC_CERT_STRING" | "CONNECTION_URL" | "KAFKA_BOOTSTRAP_SERVERS" | "KAFKA_SSL_ENABLED" | "KAFKA_CUSTOM_CERT" | "KAFKA_SKIP_CUSTOM_CERT_VALIDATION" | "KAFKA_CLIENT_KEYSTORE" | "KAFKA_CLIENT_KEYSTORE_PASSWORD" | "KAFKA_CLIENT_KEY_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD" | "SECRET_ID" | "CONNECTOR_URL" | "CONNECTOR_TYPE" | "CONNECTOR_CLASS_NAME" | "KAFKA_SASL_MECHANISM" | "KAFKA_SASL_PLAIN_USERNAME" | "KAFKA_SASL_PLAIN_PASSWORD" | "ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD" | "KAFKA_SASL_SCRAM_USERNAME" | "KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_SCRAM_SECRETS_ARN" | "ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_GSSAPI_KEYTAB" | "KAFKA_SASL_GSSAPI_KRB5_CONF" | "KAFKA_SASL_GSSAPI_SERVICE" | "KAFKA_SASL_GSSAPI_PRINCIPAL" | "ROLE_ARN" | "REGION" | "WORKGROUP_NAME" | "CLUSTER_IDENTIFIER" | "DATABASE"), ::String],
535
+ athena_properties: Hash[::String, ::String]?,
534
536
  physical_connection_requirements: {
535
537
  subnet_id: ::String?,
536
538
  security_group_id_list: Array[::String]?,
@@ -538,7 +540,6 @@ module Aws
538
540
  }?,
539
541
  authentication_configuration: {
540
542
  authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")?,
541
- secret_arn: ::String?,
542
543
  o_auth_2_properties: {
543
544
  o_auth_2_grant_type: ("AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS" | "JWT_BEARER")?,
544
545
  o_auth_2_client_application: {
@@ -551,7 +552,8 @@ module Aws
551
552
  authorization_code: ::String?,
552
553
  redirect_uri: ::String?
553
554
  }?
554
- }?
555
+ }?,
556
+ secret_arn: ::String?
555
557
  }?,
556
558
  validate_credentials: bool?
557
559
  },
@@ -4897,7 +4899,6 @@ module Aws
4897
4899
  connection_properties: Hash[("HOST" | "PORT" | "USERNAME" | "PASSWORD" | "ENCRYPTED_PASSWORD" | "JDBC_DRIVER_JAR_URI" | "JDBC_DRIVER_CLASS_NAME" | "JDBC_ENGINE" | "JDBC_ENGINE_VERSION" | "CONFIG_FILES" | "INSTANCE_ID" | "JDBC_CONNECTION_URL" | "JDBC_ENFORCE_SSL" | "CUSTOM_JDBC_CERT" | "SKIP_CUSTOM_JDBC_CERT_VALIDATION" | "CUSTOM_JDBC_CERT_STRING" | "CONNECTION_URL" | "KAFKA_BOOTSTRAP_SERVERS" | "KAFKA_SSL_ENABLED" | "KAFKA_CUSTOM_CERT" | "KAFKA_SKIP_CUSTOM_CERT_VALIDATION" | "KAFKA_CLIENT_KEYSTORE" | "KAFKA_CLIENT_KEYSTORE_PASSWORD" | "KAFKA_CLIENT_KEY_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD" | "SECRET_ID" | "CONNECTOR_URL" | "CONNECTOR_TYPE" | "CONNECTOR_CLASS_NAME" | "KAFKA_SASL_MECHANISM" | "KAFKA_SASL_PLAIN_USERNAME" | "KAFKA_SASL_PLAIN_PASSWORD" | "ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD" | "KAFKA_SASL_SCRAM_USERNAME" | "KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_SCRAM_SECRETS_ARN" | "ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_GSSAPI_KEYTAB" | "KAFKA_SASL_GSSAPI_KRB5_CONF" | "KAFKA_SASL_GSSAPI_SERVICE" | "KAFKA_SASL_GSSAPI_PRINCIPAL" | "ROLE_ARN" | "REGION" | "WORKGROUP_NAME" | "CLUSTER_IDENTIFIER" | "DATABASE"), ::String],
4898
4900
  authentication_configuration: {
4899
4901
  authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")?,
4900
- secret_arn: ::String?,
4901
4902
  o_auth_2_properties: {
4902
4903
  o_auth_2_grant_type: ("AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS" | "JWT_BEARER")?,
4903
4904
  o_auth_2_client_application: {
@@ -4910,7 +4911,8 @@ module Aws
4910
4911
  authorization_code: ::String?,
4911
4912
  redirect_uri: ::String?
4912
4913
  }?
4913
- }?
4914
+ }?,
4915
+ secret_arn: ::String?
4914
4916
  }?
4915
4917
  }
4916
4918
  ) -> _TestConnectionResponseSuccess
@@ -5123,6 +5125,7 @@ module Aws
5123
5125
  connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA"),
5124
5126
  match_criteria: Array[::String]?,
5125
5127
  connection_properties: Hash[("HOST" | "PORT" | "USERNAME" | "PASSWORD" | "ENCRYPTED_PASSWORD" | "JDBC_DRIVER_JAR_URI" | "JDBC_DRIVER_CLASS_NAME" | "JDBC_ENGINE" | "JDBC_ENGINE_VERSION" | "CONFIG_FILES" | "INSTANCE_ID" | "JDBC_CONNECTION_URL" | "JDBC_ENFORCE_SSL" | "CUSTOM_JDBC_CERT" | "SKIP_CUSTOM_JDBC_CERT_VALIDATION" | "CUSTOM_JDBC_CERT_STRING" | "CONNECTION_URL" | "KAFKA_BOOTSTRAP_SERVERS" | "KAFKA_SSL_ENABLED" | "KAFKA_CUSTOM_CERT" | "KAFKA_SKIP_CUSTOM_CERT_VALIDATION" | "KAFKA_CLIENT_KEYSTORE" | "KAFKA_CLIENT_KEYSTORE_PASSWORD" | "KAFKA_CLIENT_KEY_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD" | "SECRET_ID" | "CONNECTOR_URL" | "CONNECTOR_TYPE" | "CONNECTOR_CLASS_NAME" | "KAFKA_SASL_MECHANISM" | "KAFKA_SASL_PLAIN_USERNAME" | "KAFKA_SASL_PLAIN_PASSWORD" | "ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD" | "KAFKA_SASL_SCRAM_USERNAME" | "KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_SCRAM_SECRETS_ARN" | "ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_GSSAPI_KEYTAB" | "KAFKA_SASL_GSSAPI_KRB5_CONF" | "KAFKA_SASL_GSSAPI_SERVICE" | "KAFKA_SASL_GSSAPI_PRINCIPAL" | "ROLE_ARN" | "REGION" | "WORKGROUP_NAME" | "CLUSTER_IDENTIFIER" | "DATABASE"), ::String],
5128
+ athena_properties: Hash[::String, ::String]?,
5126
5129
  physical_connection_requirements: {
5127
5130
  subnet_id: ::String?,
5128
5131
  security_group_id_list: Array[::String]?,
@@ -5130,7 +5133,6 @@ module Aws
5130
5133
  }?,
5131
5134
  authentication_configuration: {
5132
5135
  authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")?,
5133
- secret_arn: ::String?,
5134
5136
  o_auth_2_properties: {
5135
5137
  o_auth_2_grant_type: ("AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS" | "JWT_BEARER")?,
5136
5138
  o_auth_2_client_application: {
@@ -5143,7 +5145,8 @@ module Aws
5143
5145
  authorization_code: ::String?,
5144
5146
  redirect_uri: ::String?
5145
5147
  }?
5146
- }?
5148
+ }?,
5149
+ secret_arn: ::String?
5147
5150
  }?,
5148
5151
  validate_credentials: bool?
5149
5152
  }
data/sig/resource.rbs CHANGED
@@ -15,6 +15,7 @@ module Aws
15
15
  ?credentials: untyped,
16
16
  ?region: String,
17
17
  ?access_key_id: String,
18
+ ?account_id: String,
18
19
  ?active_endpoint_cache: bool,
19
20
  ?adaptive_retry_wait_to_fill: bool,
20
21
  ?client_side_monitoring: bool,
data/sig/types.rbs CHANGED
@@ -132,15 +132,15 @@ module Aws::Glue
132
132
 
133
133
  class AuthenticationConfigurationInput
134
134
  attr_accessor authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")
135
- attr_accessor secret_arn: ::String
136
135
  attr_accessor o_auth_2_properties: Types::OAuth2PropertiesInput
136
+ attr_accessor secret_arn: ::String
137
137
  SENSITIVE: []
138
138
  end
139
139
 
140
140
  class AuthorizationCodeProperties
141
141
  attr_accessor authorization_code: ::String
142
142
  attr_accessor redirect_uri: ::String
143
- SENSITIVE: []
143
+ SENSITIVE: [:authorization_code]
144
144
  end
145
145
 
146
146
  class BackfillError
@@ -861,6 +861,7 @@ module Aws::Glue
861
861
  attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA")
862
862
  attr_accessor match_criteria: ::Array[::String]
863
863
  attr_accessor connection_properties: ::Hash[("HOST" | "PORT" | "USERNAME" | "PASSWORD" | "ENCRYPTED_PASSWORD" | "JDBC_DRIVER_JAR_URI" | "JDBC_DRIVER_CLASS_NAME" | "JDBC_ENGINE" | "JDBC_ENGINE_VERSION" | "CONFIG_FILES" | "INSTANCE_ID" | "JDBC_CONNECTION_URL" | "JDBC_ENFORCE_SSL" | "CUSTOM_JDBC_CERT" | "SKIP_CUSTOM_JDBC_CERT_VALIDATION" | "CUSTOM_JDBC_CERT_STRING" | "CONNECTION_URL" | "KAFKA_BOOTSTRAP_SERVERS" | "KAFKA_SSL_ENABLED" | "KAFKA_CUSTOM_CERT" | "KAFKA_SKIP_CUSTOM_CERT_VALIDATION" | "KAFKA_CLIENT_KEYSTORE" | "KAFKA_CLIENT_KEYSTORE_PASSWORD" | "KAFKA_CLIENT_KEY_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD" | "SECRET_ID" | "CONNECTOR_URL" | "CONNECTOR_TYPE" | "CONNECTOR_CLASS_NAME" | "KAFKA_SASL_MECHANISM" | "KAFKA_SASL_PLAIN_USERNAME" | "KAFKA_SASL_PLAIN_PASSWORD" | "ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD" | "KAFKA_SASL_SCRAM_USERNAME" | "KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_SCRAM_SECRETS_ARN" | "ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_GSSAPI_KEYTAB" | "KAFKA_SASL_GSSAPI_KRB5_CONF" | "KAFKA_SASL_GSSAPI_SERVICE" | "KAFKA_SASL_GSSAPI_PRINCIPAL" | "ROLE_ARN" | "REGION" | "WORKGROUP_NAME" | "CLUSTER_IDENTIFIER" | "DATABASE"), ::String]
864
+ attr_accessor athena_properties: ::Hash[::String, ::String]
864
865
  attr_accessor physical_connection_requirements: Types::PhysicalConnectionRequirements
865
866
  attr_accessor creation_time: ::Time
866
867
  attr_accessor last_updated_time: ::Time
@@ -878,6 +879,7 @@ module Aws::Glue
878
879
  attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA")
879
880
  attr_accessor match_criteria: ::Array[::String]
880
881
  attr_accessor connection_properties: ::Hash[("HOST" | "PORT" | "USERNAME" | "PASSWORD" | "ENCRYPTED_PASSWORD" | "JDBC_DRIVER_JAR_URI" | "JDBC_DRIVER_CLASS_NAME" | "JDBC_ENGINE" | "JDBC_ENGINE_VERSION" | "CONFIG_FILES" | "INSTANCE_ID" | "JDBC_CONNECTION_URL" | "JDBC_ENFORCE_SSL" | "CUSTOM_JDBC_CERT" | "SKIP_CUSTOM_JDBC_CERT_VALIDATION" | "CUSTOM_JDBC_CERT_STRING" | "CONNECTION_URL" | "KAFKA_BOOTSTRAP_SERVERS" | "KAFKA_SSL_ENABLED" | "KAFKA_CUSTOM_CERT" | "KAFKA_SKIP_CUSTOM_CERT_VALIDATION" | "KAFKA_CLIENT_KEYSTORE" | "KAFKA_CLIENT_KEYSTORE_PASSWORD" | "KAFKA_CLIENT_KEY_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD" | "SECRET_ID" | "CONNECTOR_URL" | "CONNECTOR_TYPE" | "CONNECTOR_CLASS_NAME" | "KAFKA_SASL_MECHANISM" | "KAFKA_SASL_PLAIN_USERNAME" | "KAFKA_SASL_PLAIN_PASSWORD" | "ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD" | "KAFKA_SASL_SCRAM_USERNAME" | "KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_SCRAM_SECRETS_ARN" | "ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_GSSAPI_KEYTAB" | "KAFKA_SASL_GSSAPI_KRB5_CONF" | "KAFKA_SASL_GSSAPI_SERVICE" | "KAFKA_SASL_GSSAPI_PRINCIPAL" | "ROLE_ARN" | "REGION" | "WORKGROUP_NAME" | "CLUSTER_IDENTIFIER" | "DATABASE"), ::String]
882
+ attr_accessor athena_properties: ::Hash[::String, ::String]
881
883
  attr_accessor physical_connection_requirements: Types::PhysicalConnectionRequirements
882
884
  attr_accessor authentication_configuration: Types::AuthenticationConfigurationInput
883
885
  attr_accessor validate_credentials: bool
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.195.0
4
+ version: 1.197.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: 2024-09-19 00:00:00.000000000 Z
11
+ date: 2024-09-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.205.0
22
+ version: 3.207.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.205.0
32
+ version: 3.207.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement