aws-sdk-glue 1.196.0 → 1.197.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: 8900e7f9bcd58ea4365246ea820d33dadeb2d739950b7a5b3b375aa066f44df3
4
- data.tar.gz: 0e377acaa16cac38abc554a4d2bed3f323357049ae3b8f08ce4a96d1adb73e1b
3
+ metadata.gz: 42721ede10289adb96036afdfb5a17dd0b3cfd959d24f809f48ebe8a59487efe
4
+ data.tar.gz: 281be0ab10bcda4ca63bf17562e862a8233aec643cfbe3e40f091e6d902162f2
5
5
  SHA512:
6
- metadata.gz: 399eb28ebb7c3f159db81a439012dd9de21e8bf440b1c923cbd3b7794cab326d5e6a9db7cfa9de776b4a8414c3274df69d2aeccc21946755600605a4c60013b7
7
- data.tar.gz: fd450b4da7d72193c42668c61dfc62c7876a8c2d57acf0a289298f946bc7643eeaf937b976d4b1397be18b4bbf400243d94d33fadbd1b13a4d5a0f3165fbeaa6
6
+ metadata.gz: 848838cca4aca4a4e8cd58a6a5a50410dc8e414b0b24090e65caf5779004990b2c298430be1d7c37d182b2735ba745c2ebcdf0cd11874e684b712c3fe0be4cd1
7
+ data.tar.gz: 256aa3c203668af04d7e07fac6d23757fce4bc098385fb55f794b661ab436c96a6c3fc3f8ca028cd2470d0c4add73bda5032beac3aa74030d2431d77f06e559c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.196.0 (2024-09-20)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.196.0
1
+ 1.197.0
@@ -2954,6 +2954,9 @@ module Aws::Glue
2954
2954
  # connection_properties: { # required
2955
2955
  # "HOST" => "ValueString",
2956
2956
  # },
2957
+ # athena_properties: {
2958
+ # "PropertyKey" => "PropertyValue",
2959
+ # },
2957
2960
  # physical_connection_requirements: {
2958
2961
  # subnet_id: "NameString",
2959
2962
  # security_group_id_list: ["NameString"],
@@ -2961,7 +2964,6 @@ module Aws::Glue
2961
2964
  # },
2962
2965
  # authentication_configuration: {
2963
2966
  # authentication_type: "BASIC", # accepts BASIC, OAUTH2, CUSTOM
2964
- # secret_arn: "SecretArn",
2965
2967
  # o_auth_2_properties: {
2966
2968
  # o_auth_2_grant_type: "AUTHORIZATION_CODE", # accepts AUTHORIZATION_CODE, CLIENT_CREDENTIALS, JWT_BEARER
2967
2969
  # o_auth_2_client_application: {
@@ -2977,6 +2979,7 @@ module Aws::Glue
2977
2979
  # redirect_uri: "RedirectUri",
2978
2980
  # },
2979
2981
  # },
2982
+ # secret_arn: "SecretArn",
2980
2983
  # },
2981
2984
  # validate_credentials: false,
2982
2985
  # },
@@ -6640,6 +6643,8 @@ module Aws::Glue
6640
6643
  # resp.connection.match_criteria[0] #=> String
6641
6644
  # resp.connection.connection_properties #=> Hash
6642
6645
  # resp.connection.connection_properties["ConnectionPropertyKey"] #=> String
6646
+ # resp.connection.athena_properties #=> Hash
6647
+ # resp.connection.athena_properties["PropertyKey"] #=> String
6643
6648
  # resp.connection.physical_connection_requirements.subnet_id #=> String
6644
6649
  # resp.connection.physical_connection_requirements.security_group_id_list #=> Array
6645
6650
  # resp.connection.physical_connection_requirements.security_group_id_list[0] #=> String
@@ -6721,6 +6726,8 @@ module Aws::Glue
6721
6726
  # resp.connection_list[0].match_criteria[0] #=> String
6722
6727
  # resp.connection_list[0].connection_properties #=> Hash
6723
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
6724
6731
  # resp.connection_list[0].physical_connection_requirements.subnet_id #=> String
6725
6732
  # resp.connection_list[0].physical_connection_requirements.security_group_id_list #=> Array
6726
6733
  # resp.connection_list[0].physical_connection_requirements.security_group_id_list[0] #=> String
@@ -16389,7 +16396,6 @@ module Aws::Glue
16389
16396
  # },
16390
16397
  # authentication_configuration: {
16391
16398
  # authentication_type: "BASIC", # accepts BASIC, OAUTH2, CUSTOM
16392
- # secret_arn: "SecretArn",
16393
16399
  # o_auth_2_properties: {
16394
16400
  # o_auth_2_grant_type: "AUTHORIZATION_CODE", # accepts AUTHORIZATION_CODE, CLIENT_CREDENTIALS, JWT_BEARER
16395
16401
  # o_auth_2_client_application: {
@@ -16405,6 +16411,7 @@ module Aws::Glue
16405
16411
  # redirect_uri: "RedirectUri",
16406
16412
  # },
16407
16413
  # },
16414
+ # secret_arn: "SecretArn",
16408
16415
  # },
16409
16416
  # },
16410
16417
  # })
@@ -16839,6 +16846,9 @@ module Aws::Glue
16839
16846
  # connection_properties: { # required
16840
16847
  # "HOST" => "ValueString",
16841
16848
  # },
16849
+ # athena_properties: {
16850
+ # "PropertyKey" => "PropertyValue",
16851
+ # },
16842
16852
  # physical_connection_requirements: {
16843
16853
  # subnet_id: "NameString",
16844
16854
  # security_group_id_list: ["NameString"],
@@ -16846,7 +16856,6 @@ module Aws::Glue
16846
16856
  # },
16847
16857
  # authentication_configuration: {
16848
16858
  # authentication_type: "BASIC", # accepts BASIC, OAUTH2, CUSTOM
16849
- # secret_arn: "SecretArn",
16850
16859
  # o_auth_2_properties: {
16851
16860
  # o_auth_2_grant_type: "AUTHORIZATION_CODE", # accepts AUTHORIZATION_CODE, CLIENT_CREDENTIALS, JWT_BEARER
16852
16861
  # o_auth_2_client_application: {
@@ -16862,6 +16871,7 @@ module Aws::Glue
16862
16871
  # redirect_uri: "RedirectUri",
16863
16872
  # },
16864
16873
  # },
16874
+ # secret_arn: "SecretArn",
16865
16875
  # },
16866
16876
  # validate_credentials: false,
16867
16877
  # },
@@ -18215,7 +18225,7 @@ module Aws::Glue
18215
18225
  tracer: tracer
18216
18226
  )
18217
18227
  context[:gem_name] = 'aws-sdk-glue'
18218
- context[:gem_version] = '1.196.0'
18228
+ context[:gem_version] = '1.197.0'
18219
18229
  Seahorse::Client::Request.new(handlers, context)
18220
18230
  end
18221
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"))
@@ -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.196.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
@@ -532,6 +532,7 @@ module Aws
532
532
  connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA"),
533
533
  match_criteria: Array[::String]?,
534
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]?,
535
536
  physical_connection_requirements: {
536
537
  subnet_id: ::String?,
537
538
  security_group_id_list: Array[::String]?,
@@ -539,7 +540,6 @@ module Aws
539
540
  }?,
540
541
  authentication_configuration: {
541
542
  authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")?,
542
- secret_arn: ::String?,
543
543
  o_auth_2_properties: {
544
544
  o_auth_2_grant_type: ("AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS" | "JWT_BEARER")?,
545
545
  o_auth_2_client_application: {
@@ -552,7 +552,8 @@ module Aws
552
552
  authorization_code: ::String?,
553
553
  redirect_uri: ::String?
554
554
  }?
555
- }?
555
+ }?,
556
+ secret_arn: ::String?
556
557
  }?,
557
558
  validate_credentials: bool?
558
559
  },
@@ -4898,7 +4899,6 @@ module Aws
4898
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],
4899
4900
  authentication_configuration: {
4900
4901
  authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")?,
4901
- secret_arn: ::String?,
4902
4902
  o_auth_2_properties: {
4903
4903
  o_auth_2_grant_type: ("AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS" | "JWT_BEARER")?,
4904
4904
  o_auth_2_client_application: {
@@ -4911,7 +4911,8 @@ module Aws
4911
4911
  authorization_code: ::String?,
4912
4912
  redirect_uri: ::String?
4913
4913
  }?
4914
- }?
4914
+ }?,
4915
+ secret_arn: ::String?
4915
4916
  }?
4916
4917
  }
4917
4918
  ) -> _TestConnectionResponseSuccess
@@ -5124,6 +5125,7 @@ module Aws
5124
5125
  connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA"),
5125
5126
  match_criteria: Array[::String]?,
5126
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]?,
5127
5129
  physical_connection_requirements: {
5128
5130
  subnet_id: ::String?,
5129
5131
  security_group_id_list: Array[::String]?,
@@ -5131,7 +5133,6 @@ module Aws
5131
5133
  }?,
5132
5134
  authentication_configuration: {
5133
5135
  authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")?,
5134
- secret_arn: ::String?,
5135
5136
  o_auth_2_properties: {
5136
5137
  o_auth_2_grant_type: ("AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS" | "JWT_BEARER")?,
5137
5138
  o_auth_2_client_application: {
@@ -5144,7 +5145,8 @@ module Aws
5144
5145
  authorization_code: ::String?,
5145
5146
  redirect_uri: ::String?
5146
5147
  }?
5147
- }?
5148
+ }?,
5149
+ secret_arn: ::String?
5148
5150
  }?,
5149
5151
  validate_credentials: bool?
5150
5152
  }
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.196.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-20 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