aws-sdk-glue 1.196.0 → 1.198.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: 8900e7f9bcd58ea4365246ea820d33dadeb2d739950b7a5b3b375aa066f44df3
4
- data.tar.gz: 0e377acaa16cac38abc554a4d2bed3f323357049ae3b8f08ce4a96d1adb73e1b
3
+ metadata.gz: 7ebf0b906b9f6bbb465128764380ebf23f55ecca680669c3f2650da17016aae5
4
+ data.tar.gz: fddc08adf542b8747228cc1fd4726f789ec65ee3d12d7b4963b72d79d5716b22
5
5
  SHA512:
6
- metadata.gz: 399eb28ebb7c3f159db81a439012dd9de21e8bf440b1c923cbd3b7794cab326d5e6a9db7cfa9de776b4a8414c3274df69d2aeccc21946755600605a4c60013b7
7
- data.tar.gz: fd450b4da7d72193c42668c61dfc62c7876a8c2d57acf0a289298f946bc7643eeaf937b976d4b1397be18b4bbf400243d94d33fadbd1b13a4d5a0f3165fbeaa6
6
+ metadata.gz: 1b9b26fad3ba3cc319a9970db92e42ac308c85788bd1fe75ef317a10851dea1949ea7ddcb80a508295b78d844fd209cd667851053bd0962be3788c8a42e4f4bb
7
+ data.tar.gz: 7109c181863e35508cfdc166ad589a0d6a5565194c0e90b32718ad298ed157255568a86a53183e28575b38e6c524a1213e8017417d246e5baf638ca04155811c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.198.0 (2024-09-24)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.197.0 (2024-09-23)
10
+ ------------------
11
+
12
+ * Feature - Added AthenaProperties parameter to Glue Connections, allowing Athena to store service specific properties on Glue Connections.
13
+
4
14
  1.196.0 (2024-09-20)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.196.0
1
+ 1.198.0
@@ -36,8 +36,6 @@ require 'aws-sdk-core/plugins/telemetry.rb'
36
36
  require 'aws-sdk-core/plugins/sign.rb'
37
37
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
38
38
 
39
- Aws::Plugins::GlobalConfiguration.add_identifier(:glue)
40
-
41
39
  module Aws::Glue
42
40
  # An API client for Glue. To construct a client, you need to configure a `:region` and `:credentials`.
43
41
  #
@@ -2954,6 +2952,9 @@ module Aws::Glue
2954
2952
  # connection_properties: { # required
2955
2953
  # "HOST" => "ValueString",
2956
2954
  # },
2955
+ # athena_properties: {
2956
+ # "PropertyKey" => "PropertyValue",
2957
+ # },
2957
2958
  # physical_connection_requirements: {
2958
2959
  # subnet_id: "NameString",
2959
2960
  # security_group_id_list: ["NameString"],
@@ -2961,7 +2962,6 @@ module Aws::Glue
2961
2962
  # },
2962
2963
  # authentication_configuration: {
2963
2964
  # authentication_type: "BASIC", # accepts BASIC, OAUTH2, CUSTOM
2964
- # secret_arn: "SecretArn",
2965
2965
  # o_auth_2_properties: {
2966
2966
  # o_auth_2_grant_type: "AUTHORIZATION_CODE", # accepts AUTHORIZATION_CODE, CLIENT_CREDENTIALS, JWT_BEARER
2967
2967
  # o_auth_2_client_application: {
@@ -2977,6 +2977,7 @@ module Aws::Glue
2977
2977
  # redirect_uri: "RedirectUri",
2978
2978
  # },
2979
2979
  # },
2980
+ # secret_arn: "SecretArn",
2980
2981
  # },
2981
2982
  # validate_credentials: false,
2982
2983
  # },
@@ -6640,6 +6641,8 @@ module Aws::Glue
6640
6641
  # resp.connection.match_criteria[0] #=> String
6641
6642
  # resp.connection.connection_properties #=> Hash
6642
6643
  # resp.connection.connection_properties["ConnectionPropertyKey"] #=> String
6644
+ # resp.connection.athena_properties #=> Hash
6645
+ # resp.connection.athena_properties["PropertyKey"] #=> String
6643
6646
  # resp.connection.physical_connection_requirements.subnet_id #=> String
6644
6647
  # resp.connection.physical_connection_requirements.security_group_id_list #=> Array
6645
6648
  # resp.connection.physical_connection_requirements.security_group_id_list[0] #=> String
@@ -6721,6 +6724,8 @@ module Aws::Glue
6721
6724
  # resp.connection_list[0].match_criteria[0] #=> String
6722
6725
  # resp.connection_list[0].connection_properties #=> Hash
6723
6726
  # resp.connection_list[0].connection_properties["ConnectionPropertyKey"] #=> String
6727
+ # resp.connection_list[0].athena_properties #=> Hash
6728
+ # resp.connection_list[0].athena_properties["PropertyKey"] #=> String
6724
6729
  # resp.connection_list[0].physical_connection_requirements.subnet_id #=> String
6725
6730
  # resp.connection_list[0].physical_connection_requirements.security_group_id_list #=> Array
6726
6731
  # resp.connection_list[0].physical_connection_requirements.security_group_id_list[0] #=> String
@@ -16389,7 +16394,6 @@ module Aws::Glue
16389
16394
  # },
16390
16395
  # authentication_configuration: {
16391
16396
  # authentication_type: "BASIC", # accepts BASIC, OAUTH2, CUSTOM
16392
- # secret_arn: "SecretArn",
16393
16397
  # o_auth_2_properties: {
16394
16398
  # o_auth_2_grant_type: "AUTHORIZATION_CODE", # accepts AUTHORIZATION_CODE, CLIENT_CREDENTIALS, JWT_BEARER
16395
16399
  # o_auth_2_client_application: {
@@ -16405,6 +16409,7 @@ module Aws::Glue
16405
16409
  # redirect_uri: "RedirectUri",
16406
16410
  # },
16407
16411
  # },
16412
+ # secret_arn: "SecretArn",
16408
16413
  # },
16409
16414
  # },
16410
16415
  # })
@@ -16839,6 +16844,9 @@ module Aws::Glue
16839
16844
  # connection_properties: { # required
16840
16845
  # "HOST" => "ValueString",
16841
16846
  # },
16847
+ # athena_properties: {
16848
+ # "PropertyKey" => "PropertyValue",
16849
+ # },
16842
16850
  # physical_connection_requirements: {
16843
16851
  # subnet_id: "NameString",
16844
16852
  # security_group_id_list: ["NameString"],
@@ -16846,7 +16854,6 @@ module Aws::Glue
16846
16854
  # },
16847
16855
  # authentication_configuration: {
16848
16856
  # authentication_type: "BASIC", # accepts BASIC, OAUTH2, CUSTOM
16849
- # secret_arn: "SecretArn",
16850
16857
  # o_auth_2_properties: {
16851
16858
  # o_auth_2_grant_type: "AUTHORIZATION_CODE", # accepts AUTHORIZATION_CODE, CLIENT_CREDENTIALS, JWT_BEARER
16852
16859
  # o_auth_2_client_application: {
@@ -16862,6 +16869,7 @@ module Aws::Glue
16862
16869
  # redirect_uri: "RedirectUri",
16863
16870
  # },
16864
16871
  # },
16872
+ # secret_arn: "SecretArn",
16865
16873
  # },
16866
16874
  # validate_credentials: false,
16867
16875
  # },
@@ -18215,7 +18223,7 @@ module Aws::Glue
18215
18223
  tracer: tracer
18216
18224
  )
18217
18225
  context[:gem_name] = 'aws-sdk-glue'
18218
- context[:gem_version] = '1.196.0'
18226
+ context[:gem_version] = '1.198.0'
18219
18227
  Seahorse::Client::Request.new(handlers, context)
18220
18228
  end
18221
18229
 
@@ -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,16 +11,7 @@
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'
14
+ Aws::Plugins::GlobalConfiguration.add_identifier(:glue)
24
15
 
25
16
  # This module provides support for AWS Glue. This module is available in the
26
17
  # `aws-sdk-glue` gem.
@@ -51,7 +42,20 @@ require_relative 'aws-sdk-glue/customizations'
51
42
  #
52
43
  # @!group service
53
44
  module Aws::Glue
45
+ autoload :Types, 'aws-sdk-glue/types'
46
+ autoload :ClientApi, 'aws-sdk-glue/client_api'
47
+ module Plugins
48
+ autoload :Endpoints, 'aws-sdk-glue/plugins/endpoints.rb'
49
+ end
50
+ autoload :Client, 'aws-sdk-glue/client'
51
+ autoload :Errors, 'aws-sdk-glue/errors'
52
+ autoload :Resource, 'aws-sdk-glue/resource'
53
+ autoload :EndpointParameters, 'aws-sdk-glue/endpoint_parameters'
54
+ autoload :EndpointProvider, 'aws-sdk-glue/endpoint_provider'
55
+ autoload :Endpoints, 'aws-sdk-glue/endpoints'
54
56
 
55
- GEM_VERSION = '1.196.0'
57
+ GEM_VERSION = '1.198.0'
56
58
 
57
59
  end
60
+
61
+ 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.198.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-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core