aws-sdk-glue 1.194.0 → 1.196.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: c80f85a708425c975e698d3e52f8d0d15353c37572cf9d3b74dbb5330d039c29
4
- data.tar.gz: c201de9b8e428cfab3737a0d5c3b27ec23021182a92c4f28c86c9a258609d77d
3
+ metadata.gz: 8900e7f9bcd58ea4365246ea820d33dadeb2d739950b7a5b3b375aa066f44df3
4
+ data.tar.gz: 0e377acaa16cac38abc554a4d2bed3f323357049ae3b8f08ce4a96d1adb73e1b
5
5
  SHA512:
6
- metadata.gz: 93b283426784ee424c9e758eb93d36897fbb6c01b2b8eec1460a3a2a0ff98b2e7145d5bc48696ca92a46095f5233cce73e125d9f3b192a5b8993944d3d090544
7
- data.tar.gz: c048130e762d8b8fb1c73316ed845b5c58c4c6353d709e940893d01f7e49ee62d29e24f86c2ed67e261f527d0793811e35d2234843f4422a1ceaf20d93b10380
6
+ metadata.gz: 399eb28ebb7c3f159db81a439012dd9de21e8bf440b1c923cbd3b7794cab326d5e6a9db7cfa9de776b4a8414c3274df69d2aeccc21946755600605a4c60013b7
7
+ data.tar.gz: fd450b4da7d72193c42668c61dfc62c7876a8c2d57acf0a289298f946bc7643eeaf937b976d4b1397be18b4bbf400243d94d33fadbd1b13a4d5a0f3165fbeaa6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.196.0 (2024-09-20)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.195.0 (2024-09-19)
10
+ ------------------
11
+
12
+ * Feature - This change is for releasing TestConnection api SDK model
13
+
4
14
  1.194.0 (2024-09-12)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.194.0
1
+ 1.196.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
@@ -16352,6 +16358,66 @@ module Aws::Glue
16352
16358
  req.send_request(options)
16353
16359
  end
16354
16360
 
16361
+ # Tests a connection to a service to validate the service credentials
16362
+ # that you provide.
16363
+ #
16364
+ # You can either provide an existing connection name or a
16365
+ # `TestConnectionInput` for testing a non-existing connection input.
16366
+ # Providing both at the same time will cause an error.
16367
+ #
16368
+ # If the action is successful, the service sends back an HTTP 200
16369
+ # response.
16370
+ #
16371
+ # @option params [String] :connection_name
16372
+ # Optional. The name of the connection to test. If only name is
16373
+ # provided, the operation will get the connection and use that for
16374
+ # testing.
16375
+ #
16376
+ # @option params [Types::TestConnectionInput] :test_connection_input
16377
+ # A structure that is used to specify testing a connection to a service.
16378
+ #
16379
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
16380
+ #
16381
+ # @example Request syntax with placeholder values
16382
+ #
16383
+ # resp = client.test_connection({
16384
+ # connection_name: "NameString",
16385
+ # test_connection_input: {
16386
+ # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK, MARKETPLACE, CUSTOM, SALESFORCE, VIEW_VALIDATION_REDSHIFT, VIEW_VALIDATION_ATHENA
16387
+ # connection_properties: { # required
16388
+ # "HOST" => "ValueString",
16389
+ # },
16390
+ # authentication_configuration: {
16391
+ # authentication_type: "BASIC", # accepts BASIC, OAUTH2, CUSTOM
16392
+ # secret_arn: "SecretArn",
16393
+ # o_auth_2_properties: {
16394
+ # o_auth_2_grant_type: "AUTHORIZATION_CODE", # accepts AUTHORIZATION_CODE, CLIENT_CREDENTIALS, JWT_BEARER
16395
+ # o_auth_2_client_application: {
16396
+ # user_managed_client_application_client_id: "UserManagedClientApplicationClientId",
16397
+ # aws_managed_client_application_reference: "AWSManagedClientApplicationReference",
16398
+ # },
16399
+ # token_url: "TokenUrl",
16400
+ # token_url_parameters_map: {
16401
+ # "TokenUrlParameterKey" => "TokenUrlParameterValue",
16402
+ # },
16403
+ # authorization_code_properties: {
16404
+ # authorization_code: "AuthorizationCode",
16405
+ # redirect_uri: "RedirectUri",
16406
+ # },
16407
+ # },
16408
+ # },
16409
+ # },
16410
+ # })
16411
+ #
16412
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/TestConnection AWS API Documentation
16413
+ #
16414
+ # @overload test_connection(params = {})
16415
+ # @param [Hash] params ({})
16416
+ def test_connection(params = {}, options = {})
16417
+ req = build_request(:test_connection, params)
16418
+ req.send_request(options)
16419
+ end
16420
+
16355
16421
  # Removes tags from a resource.
16356
16422
  #
16357
16423
  # @option params [required, String] :resource_arn
@@ -18149,7 +18215,7 @@ module Aws::Glue
18149
18215
  tracer: tracer
18150
18216
  )
18151
18217
  context[:gem_name] = 'aws-sdk-glue'
18152
- context[:gem_version] = '1.194.0'
18218
+ context[:gem_version] = '1.196.0'
18153
18219
  Seahorse::Client::Request.new(handlers, context)
18154
18220
  end
18155
18221
 
@@ -1212,6 +1212,9 @@ module Aws::Glue
1212
1212
  TaskRunSortCriteria = Shapes::StructureShape.new(name: 'TaskRunSortCriteria')
1213
1213
  TaskStatusType = Shapes::StringShape.new(name: 'TaskStatusType')
1214
1214
  TaskType = Shapes::StringShape.new(name: 'TaskType')
1215
+ TestConnectionInput = Shapes::StructureShape.new(name: 'TestConnectionInput')
1216
+ TestConnectionRequest = Shapes::StructureShape.new(name: 'TestConnectionRequest')
1217
+ TestConnectionResponse = Shapes::StructureShape.new(name: 'TestConnectionResponse')
1215
1218
  ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
1216
1219
  Timeout = Shapes::IntegerShape.new(name: 'Timeout')
1217
1220
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
@@ -5935,6 +5938,17 @@ module Aws::Glue
5935
5938
  TaskRunSortCriteria.add_member(:sort_direction, Shapes::ShapeRef.new(shape: SortDirectionType, required: true, location_name: "SortDirection"))
5936
5939
  TaskRunSortCriteria.struct_class = Types::TaskRunSortCriteria
5937
5940
 
5941
+ TestConnectionInput.add_member(:connection_type, Shapes::ShapeRef.new(shape: ConnectionType, required: true, location_name: "ConnectionType"))
5942
+ TestConnectionInput.add_member(:connection_properties, Shapes::ShapeRef.new(shape: ConnectionProperties, required: true, location_name: "ConnectionProperties"))
5943
+ TestConnectionInput.add_member(:authentication_configuration, Shapes::ShapeRef.new(shape: AuthenticationConfigurationInput, location_name: "AuthenticationConfiguration"))
5944
+ TestConnectionInput.struct_class = Types::TestConnectionInput
5945
+
5946
+ TestConnectionRequest.add_member(:connection_name, Shapes::ShapeRef.new(shape: NameString, location_name: "ConnectionName"))
5947
+ TestConnectionRequest.add_member(:test_connection_input, Shapes::ShapeRef.new(shape: TestConnectionInput, location_name: "TestConnectionInput"))
5948
+ TestConnectionRequest.struct_class = Types::TestConnectionRequest
5949
+
5950
+ TestConnectionResponse.struct_class = Types::TestConnectionResponse
5951
+
5938
5952
  ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: MessageString, location_name: "Message"))
5939
5953
  ThrottlingException.struct_class = Types::ThrottlingException
5940
5954
 
@@ -9193,6 +9207,23 @@ module Aws::Glue
9193
9207
  o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
9194
9208
  end)
9195
9209
 
9210
+ api.add_operation(:test_connection, Seahorse::Model::Operation.new.tap do |o|
9211
+ o.name = "TestConnection"
9212
+ o.http_method = "POST"
9213
+ o.http_request_uri = "/"
9214
+ o.input = Shapes::ShapeRef.new(shape: TestConnectionRequest)
9215
+ o.output = Shapes::ShapeRef.new(shape: TestConnectionResponse)
9216
+ o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
9217
+ o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
9218
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNumberLimitExceededException)
9219
+ o.errors << Shapes::ShapeRef.new(shape: GlueEncryptionException)
9220
+ o.errors << Shapes::ShapeRef.new(shape: FederationSourceException)
9221
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
9222
+ o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
9223
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
9224
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
9225
+ end)
9226
+
9196
9227
  api.add_operation(:untag_resource, Seahorse::Model::Operation.new.tap do |o|
9197
9228
  o.name = "UntagResource"
9198
9229
  o.http_method = "POST"
@@ -2212,6 +2212,17 @@ module Aws::Glue
2212
2212
  end
2213
2213
  end
2214
2214
 
2215
+ class TestConnection
2216
+ def self.build(context)
2217
+ Aws::Glue::EndpointParameters.new(
2218
+ region: context.config.region,
2219
+ use_dual_stack: context.config.use_dualstack_endpoint,
2220
+ use_fips: context.config.use_fips_endpoint,
2221
+ endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
2222
+ )
2223
+ end
2224
+ end
2225
+
2215
2226
  class UntagResource
2216
2227
  def self.build(context)
2217
2228
  Aws::Glue::EndpointParameters.new(
@@ -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
 
@@ -467,6 +470,8 @@ module Aws::Glue
467
470
  Aws::Glue::Endpoints::StopWorkflowRun.build(context)
468
471
  when :tag_resource
469
472
  Aws::Glue::Endpoints::TagResource.build(context)
473
+ when :test_connection
474
+ Aws::Glue::Endpoints::TestConnection.build(context)
470
475
  when :untag_resource
471
476
  Aws::Glue::Endpoints::UntagResource.build(context)
472
477
  when :update_blueprint
@@ -23021,6 +23021,71 @@ module Aws::Glue
23021
23021
  include Aws::Structure
23022
23022
  end
23023
23023
 
23024
+ # A structure that is used to specify testing a connection to a service.
23025
+ #
23026
+ # @!attribute [rw] connection_type
23027
+ # The type of connection to test. This operation is only available for
23028
+ # the `JDBC` or `SALESFORCE` connection types.
23029
+ # @return [String]
23030
+ #
23031
+ # @!attribute [rw] connection_properties
23032
+ # The key-value pairs that define parameters for the connection.
23033
+ #
23034
+ # JDBC connections use the following connection properties:
23035
+ #
23036
+ # * Required: All of (`HOST`, `PORT`, `JDBC_ENGINE`) or
23037
+ # `JDBC_CONNECTION_URL`.
23038
+ #
23039
+ # * Required: All of (`USERNAME`, `PASSWORD`) or `SECRET_ID`.
23040
+ #
23041
+ # * Optional: `JDBC_ENFORCE_SSL`, `CUSTOM_JDBC_CERT`,
23042
+ # `CUSTOM_JDBC_CERT_STRING`, `SKIP_CUSTOM_JDBC_CERT_VALIDATION`.
23043
+ # These parameters are used to configure SSL with JDBC.
23044
+ #
23045
+ # SALESFORCE connections require the `AuthenticationConfiguration`
23046
+ # member to be configured.
23047
+ # @return [Hash<String,String>]
23048
+ #
23049
+ # @!attribute [rw] authentication_configuration
23050
+ # A structure containing the authentication configuration in the
23051
+ # TestConnection request. Required for a connection to Salesforce
23052
+ # using OAuth authentication.
23053
+ # @return [Types::AuthenticationConfigurationInput]
23054
+ #
23055
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/TestConnectionInput AWS API Documentation
23056
+ #
23057
+ class TestConnectionInput < Struct.new(
23058
+ :connection_type,
23059
+ :connection_properties,
23060
+ :authentication_configuration)
23061
+ SENSITIVE = []
23062
+ include Aws::Structure
23063
+ end
23064
+
23065
+ # @!attribute [rw] connection_name
23066
+ # Optional. The name of the connection to test. If only name is
23067
+ # provided, the operation will get the connection and use that for
23068
+ # testing.
23069
+ # @return [String]
23070
+ #
23071
+ # @!attribute [rw] test_connection_input
23072
+ # A structure that is used to specify testing a connection to a
23073
+ # service.
23074
+ # @return [Types::TestConnectionInput]
23075
+ #
23076
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/TestConnectionRequest AWS API Documentation
23077
+ #
23078
+ class TestConnectionRequest < Struct.new(
23079
+ :connection_name,
23080
+ :test_connection_input)
23081
+ SENSITIVE = []
23082
+ include Aws::Structure
23083
+ end
23084
+
23085
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/TestConnectionResponse AWS API Documentation
23086
+ #
23087
+ class TestConnectionResponse < Aws::EmptyStructure; end
23088
+
23024
23089
  # The throttling threshhold was exceeded.
23025
23090
  #
23026
23091
  # @!attribute [rw] message
data/lib/aws-sdk-glue.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-glue/customizations'
52
52
  # @!group service
53
53
  module Aws::Glue
54
54
 
55
- GEM_VERSION = '1.194.0'
55
+ GEM_VERSION = '1.196.0'
56
56
 
57
57
  end
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,
@@ -4886,6 +4887,36 @@ module Aws
4886
4887
  ) -> _TagResourceResponseSuccess
4887
4888
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
4888
4889
 
4890
+ interface _TestConnectionResponseSuccess
4891
+ include ::Seahorse::Client::_ResponseSuccess[Types::TestConnectionResponse]
4892
+ end
4893
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#test_connection-instance_method
4894
+ def test_connection: (
4895
+ ?connection_name: ::String,
4896
+ ?test_connection_input: {
4897
+ connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA"),
4898
+ 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
+ authentication_configuration: {
4900
+ authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")?,
4901
+ secret_arn: ::String?,
4902
+ o_auth_2_properties: {
4903
+ o_auth_2_grant_type: ("AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS" | "JWT_BEARER")?,
4904
+ o_auth_2_client_application: {
4905
+ user_managed_client_application_client_id: ::String?,
4906
+ aws_managed_client_application_reference: ::String?
4907
+ }?,
4908
+ token_url: ::String?,
4909
+ token_url_parameters_map: Hash[::String, ::String]?,
4910
+ authorization_code_properties: {
4911
+ authorization_code: ::String?,
4912
+ redirect_uri: ::String?
4913
+ }?
4914
+ }?
4915
+ }?
4916
+ }
4917
+ ) -> _TestConnectionResponseSuccess
4918
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TestConnectionResponseSuccess
4919
+
4889
4920
  interface _UntagResourceResponseSuccess
4890
4921
  include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
4891
4922
  end
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
@@ -5658,6 +5658,22 @@ module Aws::Glue
5658
5658
  SENSITIVE: []
5659
5659
  end
5660
5660
 
5661
+ class TestConnectionInput
5662
+ attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA")
5663
+ 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]
5664
+ attr_accessor authentication_configuration: Types::AuthenticationConfigurationInput
5665
+ SENSITIVE: []
5666
+ end
5667
+
5668
+ class TestConnectionRequest
5669
+ attr_accessor connection_name: ::String
5670
+ attr_accessor test_connection_input: Types::TestConnectionInput
5671
+ SENSITIVE: []
5672
+ end
5673
+
5674
+ class TestConnectionResponse < Aws::EmptyStructure
5675
+ end
5676
+
5661
5677
  class ThrottlingException
5662
5678
  attr_accessor message: ::String
5663
5679
  SENSITIVE: []
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.194.0
4
+ version: 1.196.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-12 00:00:00.000000000 Z
11
+ date: 2024-09-20 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