aws-sdk-glue 1.174.0 → 1.176.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +111 -10
- data/lib/aws-sdk-glue/client_api.rb +66 -0
- data/lib/aws-sdk-glue/types.rb +332 -32
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +46 -7
- data/sig/types.rbs +62 -7
- metadata +4 -4
data/sig/types.rbs
CHANGED
@@ -116,6 +116,26 @@ module Aws::Glue
|
|
116
116
|
SENSITIVE: []
|
117
117
|
end
|
118
118
|
|
119
|
+
class AuthenticationConfiguration
|
120
|
+
attr_accessor authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")
|
121
|
+
attr_accessor secret_arn: ::String
|
122
|
+
attr_accessor o_auth_2_properties: Types::OAuth2Properties
|
123
|
+
SENSITIVE: []
|
124
|
+
end
|
125
|
+
|
126
|
+
class AuthenticationConfigurationInput
|
127
|
+
attr_accessor authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")
|
128
|
+
attr_accessor secret_arn: ::String
|
129
|
+
attr_accessor o_auth_2_properties: Types::OAuth2PropertiesInput
|
130
|
+
SENSITIVE: []
|
131
|
+
end
|
132
|
+
|
133
|
+
class AuthorizationCodeProperties
|
134
|
+
attr_accessor authorization_code: ::String
|
135
|
+
attr_accessor redirect_uri: ::String
|
136
|
+
SENSITIVE: []
|
137
|
+
end
|
138
|
+
|
119
139
|
class BackfillError
|
120
140
|
attr_accessor code: ("ENCRYPTED_PARTITION_ERROR" | "INTERNAL_ERROR" | "INVALID_PARTITION_TYPE_DATA_ERROR" | "MISSING_PARTITION_VALUE_ERROR" | "UNSUPPORTED_PARTITION_CHARACTER_ERROR")
|
121
141
|
attr_accessor partitions: ::Array[Types::PartitionValueList]
|
@@ -799,23 +819,29 @@ module Aws::Glue
|
|
799
819
|
class Connection
|
800
820
|
attr_accessor name: ::String
|
801
821
|
attr_accessor description: ::String
|
802
|
-
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM")
|
822
|
+
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE")
|
803
823
|
attr_accessor match_criteria: ::Array[::String]
|
804
|
-
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"), ::String]
|
824
|
+
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"), ::String]
|
805
825
|
attr_accessor physical_connection_requirements: Types::PhysicalConnectionRequirements
|
806
826
|
attr_accessor creation_time: ::Time
|
807
827
|
attr_accessor last_updated_time: ::Time
|
808
828
|
attr_accessor last_updated_by: ::String
|
829
|
+
attr_accessor status: ("READY" | "IN_PROGRESS" | "FAILED")
|
830
|
+
attr_accessor status_reason: ::String
|
831
|
+
attr_accessor last_connection_validation_time: ::Time
|
832
|
+
attr_accessor authentication_configuration: Types::AuthenticationConfiguration
|
809
833
|
SENSITIVE: []
|
810
834
|
end
|
811
835
|
|
812
836
|
class ConnectionInput
|
813
837
|
attr_accessor name: ::String
|
814
838
|
attr_accessor description: ::String
|
815
|
-
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM")
|
839
|
+
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE")
|
816
840
|
attr_accessor match_criteria: ::Array[::String]
|
817
|
-
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"), ::String]
|
841
|
+
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"), ::String]
|
818
842
|
attr_accessor physical_connection_requirements: Types::PhysicalConnectionRequirements
|
843
|
+
attr_accessor authentication_configuration: Types::AuthenticationConfigurationInput
|
844
|
+
attr_accessor validate_credentials: bool
|
819
845
|
SENSITIVE: []
|
820
846
|
end
|
821
847
|
|
@@ -976,7 +1002,9 @@ module Aws::Glue
|
|
976
1002
|
SENSITIVE: []
|
977
1003
|
end
|
978
1004
|
|
979
|
-
class CreateConnectionResponse
|
1005
|
+
class CreateConnectionResponse
|
1006
|
+
attr_accessor create_connection_status: ("READY" | "IN_PROGRESS" | "FAILED")
|
1007
|
+
SENSITIVE: []
|
980
1008
|
end
|
981
1009
|
|
982
1010
|
class CreateCrawlerRequest
|
@@ -1105,6 +1133,7 @@ module Aws::Glue
|
|
1105
1133
|
|
1106
1134
|
class CreateJobRequest
|
1107
1135
|
attr_accessor name: ::String
|
1136
|
+
attr_accessor job_mode: ("SCRIPT" | "VISUAL" | "NOTEBOOK")
|
1108
1137
|
attr_accessor description: ::String
|
1109
1138
|
attr_accessor log_uri: ::String
|
1110
1139
|
attr_accessor role: ::String
|
@@ -2102,7 +2131,7 @@ module Aws::Glue
|
|
2102
2131
|
end
|
2103
2132
|
|
2104
2133
|
class FederationSourceException
|
2105
|
-
attr_accessor federation_source_error_code: ("InvalidResponseException" | "OperationTimeoutException" | "OperationNotSupportedException" | "InternalServiceException" | "ThrottlingException")
|
2134
|
+
attr_accessor federation_source_error_code: ("AccessDeniedException" | "EntityNotFoundException" | "InvalidCredentialsException" | "InvalidInputException" | "InvalidResponseException" | "OperationTimeoutException" | "OperationNotSupportedException" | "InternalServiceException" | "PartialFailureException" | "ThrottlingException")
|
2106
2135
|
attr_accessor message: ::String
|
2107
2136
|
SENSITIVE: []
|
2108
2137
|
end
|
@@ -2301,7 +2330,7 @@ module Aws::Glue
|
|
2301
2330
|
|
2302
2331
|
class GetConnectionsFilter
|
2303
2332
|
attr_accessor match_criteria: ::Array[::String]
|
2304
|
-
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM")
|
2333
|
+
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE")
|
2305
2334
|
SENSITIVE: []
|
2306
2335
|
end
|
2307
2336
|
|
@@ -3315,6 +3344,7 @@ module Aws::Glue
|
|
3315
3344
|
|
3316
3345
|
class Job
|
3317
3346
|
attr_accessor name: ::String
|
3347
|
+
attr_accessor job_mode: ("SCRIPT" | "VISUAL" | "NOTEBOOK")
|
3318
3348
|
attr_accessor description: ::String
|
3319
3349
|
attr_accessor log_uri: ::String
|
3320
3350
|
attr_accessor role: ::String
|
@@ -3377,6 +3407,7 @@ module Aws::Glue
|
|
3377
3407
|
attr_accessor previous_run_id: ::String
|
3378
3408
|
attr_accessor trigger_name: ::String
|
3379
3409
|
attr_accessor job_name: ::String
|
3410
|
+
attr_accessor job_mode: ("SCRIPT" | "VISUAL" | "NOTEBOOK")
|
3380
3411
|
attr_accessor started_on: ::Time
|
3381
3412
|
attr_accessor last_modified_on: ::Time
|
3382
3413
|
attr_accessor completed_on: ::Time
|
@@ -3401,6 +3432,7 @@ module Aws::Glue
|
|
3401
3432
|
end
|
3402
3433
|
|
3403
3434
|
class JobUpdate
|
3435
|
+
attr_accessor job_mode: ("SCRIPT" | "VISUAL" | "NOTEBOOK")
|
3404
3436
|
attr_accessor description: ::String
|
3405
3437
|
attr_accessor log_uri: ::String
|
3406
3438
|
attr_accessor role: ::String
|
@@ -3974,6 +4006,29 @@ module Aws::Glue
|
|
3974
4006
|
SENSITIVE: []
|
3975
4007
|
end
|
3976
4008
|
|
4009
|
+
class OAuth2ClientApplication
|
4010
|
+
attr_accessor user_managed_client_application_client_id: ::String
|
4011
|
+
attr_accessor aws_managed_client_application_reference: ::String
|
4012
|
+
SENSITIVE: []
|
4013
|
+
end
|
4014
|
+
|
4015
|
+
class OAuth2Properties
|
4016
|
+
attr_accessor o_auth_2_grant_type: ("AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS" | "JWT_BEARER")
|
4017
|
+
attr_accessor o_auth_2_client_application: Types::OAuth2ClientApplication
|
4018
|
+
attr_accessor token_url: ::String
|
4019
|
+
attr_accessor token_url_parameters_map: ::Hash[::String, ::String]
|
4020
|
+
SENSITIVE: []
|
4021
|
+
end
|
4022
|
+
|
4023
|
+
class OAuth2PropertiesInput
|
4024
|
+
attr_accessor o_auth_2_grant_type: ("AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS" | "JWT_BEARER")
|
4025
|
+
attr_accessor o_auth_2_client_application: Types::OAuth2ClientApplication
|
4026
|
+
attr_accessor token_url: ::String
|
4027
|
+
attr_accessor token_url_parameters_map: ::Hash[::String, ::String]
|
4028
|
+
attr_accessor authorization_code_properties: Types::AuthorizationCodeProperties
|
4029
|
+
SENSITIVE: []
|
4030
|
+
end
|
4031
|
+
|
3977
4032
|
class OpenTableFormatInput
|
3978
4033
|
attr_accessor iceberg_input: Types::IcebergInput
|
3979
4034
|
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.
|
4
|
+
version: 1.176.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-05
|
11
|
+
date: 2024-06-05 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.
|
22
|
+
version: 3.197.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.
|
32
|
+
version: 3.197.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|