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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 49c0e84a3b7ce50fcbb38c2b020dbb4850f8af507fa1bcc6e64d2baa409adfc4
4
- data.tar.gz: a77e370f39c4256e12c05b7582d1134e8a731dd20ea0523bd55f66fe367b0929
3
+ metadata.gz: b6f8609b7df80e1f7b0ad605bd38b880dd7d46499e863575b54a6eef7d1e526e
4
+ data.tar.gz: b0a174c313c407711b657fd717ebe173c262d98d156e1e7d841ec1eb7814a321
5
5
  SHA512:
6
- metadata.gz: d4b2eae580ec9ebc4dd851192b72526437a695e5041611c25d062c51e088ebfbea84ed16aba422ff5a33d0c7aa5d80eaf543ce231f65a4ab26a386626c9b4ea0
7
- data.tar.gz: 1c22063ddc553539cc2af12ec901fe849fb56fb84b87f0071de4b313aa7fb25ea0be1c405928ff4b270111ba8900ac6c1983c4d9fff659adba7691b390600419
6
+ metadata.gz: 108dc314d17ada395e76a1fe670acb053ea80fde5508cc074ccb9f7a0e1ac89109ff130f4bc167ac43d44fc34195c161920502a4b14973be374eb3b4dff26388
7
+ data.tar.gz: 43a021c85cbeb879d8daf9e89a027e4c804decd40257bde9791f690afba6d3c84b8288045dc9b26735213d28d3c5b84ec0557e038d8a4304d60d0ef5fb8230b1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.176.0 (2024-06-05)
5
+ ------------------
6
+
7
+ * Feature - AWS Glue now supports native SaaS connectivity: Salesforce connector available now
8
+
9
+ 1.175.0 (2024-05-29)
10
+ ------------------
11
+
12
+ * Feature - Add optional field JobMode to CreateJob and UpdateJob APIs.
13
+
4
14
  1.174.0 (2024-05-21)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.174.0
1
+ 1.176.0
@@ -1089,6 +1089,7 @@ module Aws::Glue
1089
1089
  #
1090
1090
  # resp.jobs #=> Array
1091
1091
  # resp.jobs[0].name #=> String
1092
+ # resp.jobs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
1092
1093
  # resp.jobs[0].description #=> String
1093
1094
  # resp.jobs[0].log_uri #=> String
1094
1095
  # resp.jobs[0].role #=> String
@@ -2282,6 +2283,7 @@ module Aws::Glue
2282
2283
  # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].previous_run_id #=> String
2283
2284
  # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].trigger_name #=> String
2284
2285
  # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].job_name #=> String
2286
+ # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
2285
2287
  # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].started_on #=> Time
2286
2288
  # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].last_modified_on #=> Time
2287
2289
  # resp.workflows[0].last_run.graph.nodes[0].job_details.job_runs[0].completed_on #=> Time
@@ -2351,6 +2353,7 @@ module Aws::Glue
2351
2353
  # resp.workflows[0].graph.nodes[0].job_details.job_runs[0].previous_run_id #=> String
2352
2354
  # resp.workflows[0].graph.nodes[0].job_details.job_runs[0].trigger_name #=> String
2353
2355
  # resp.workflows[0].graph.nodes[0].job_details.job_runs[0].job_name #=> String
2356
+ # resp.workflows[0].graph.nodes[0].job_details.job_runs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
2354
2357
  # resp.workflows[0].graph.nodes[0].job_details.job_runs[0].started_on #=> Time
2355
2358
  # resp.workflows[0].graph.nodes[0].job_details.job_runs[0].last_modified_on #=> Time
2356
2359
  # resp.workflows[0].graph.nodes[0].job_details.job_runs[0].completed_on #=> Time
@@ -2822,7 +2825,9 @@ module Aws::Glue
2822
2825
  # @option params [Hash<String,String>] :tags
2823
2826
  # The tags you assign to the connection.
2824
2827
  #
2825
- # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2828
+ # @return [Types::CreateConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2829
+ #
2830
+ # * {Types::CreateConnectionResponse#create_connection_status #create_connection_status} => String
2826
2831
  #
2827
2832
  # @example Request syntax with placeholder values
2828
2833
  #
@@ -2831,7 +2836,7 @@ module Aws::Glue
2831
2836
  # connection_input: { # required
2832
2837
  # name: "NameString", # required
2833
2838
  # description: "DescriptionString",
2834
- # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK, MARKETPLACE, CUSTOM
2839
+ # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK, MARKETPLACE, CUSTOM, SALESFORCE
2835
2840
  # match_criteria: ["NameString"],
2836
2841
  # connection_properties: { # required
2837
2842
  # "HOST" => "ValueString",
@@ -2841,12 +2846,36 @@ module Aws::Glue
2841
2846
  # security_group_id_list: ["NameString"],
2842
2847
  # availability_zone: "NameString",
2843
2848
  # },
2849
+ # authentication_configuration: {
2850
+ # authentication_type: "BASIC", # accepts BASIC, OAUTH2, CUSTOM
2851
+ # secret_arn: "SecretArn",
2852
+ # o_auth_2_properties: {
2853
+ # o_auth_2_grant_type: "AUTHORIZATION_CODE", # accepts AUTHORIZATION_CODE, CLIENT_CREDENTIALS, JWT_BEARER
2854
+ # o_auth_2_client_application: {
2855
+ # user_managed_client_application_client_id: "UserManagedClientApplicationClientId",
2856
+ # aws_managed_client_application_reference: "AWSManagedClientApplicationReference",
2857
+ # },
2858
+ # token_url: "TokenUrl",
2859
+ # token_url_parameters_map: {
2860
+ # "TokenUrlParameterKey" => "TokenUrlParameterValue",
2861
+ # },
2862
+ # authorization_code_properties: {
2863
+ # authorization_code: "AuthorizationCode",
2864
+ # redirect_uri: "RedirectUri",
2865
+ # },
2866
+ # },
2867
+ # },
2868
+ # validate_credentials: false,
2844
2869
  # },
2845
2870
  # tags: {
2846
2871
  # "TagKey" => "TagValue",
2847
2872
  # },
2848
2873
  # })
2849
2874
  #
2875
+ # @example Response structure
2876
+ #
2877
+ # resp.create_connection_status #=> String, one of "READY", "IN_PROGRESS", "FAILED"
2878
+ #
2850
2879
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateConnection AWS API Documentation
2851
2880
  #
2852
2881
  # @overload create_connection(params = {})
@@ -3417,6 +3446,19 @@ module Aws::Glue
3417
3446
  # The name you assign to this job definition. It must be unique in your
3418
3447
  # account.
3419
3448
  #
3449
+ # @option params [String] :job_mode
3450
+ # A mode that describes how a job was created. Valid values are:
3451
+ #
3452
+ # * `SCRIPT` - The job was created using the Glue Studio script editor.
3453
+ #
3454
+ # * `VISUAL` - The job was created using the Glue Studio visual editor.
3455
+ #
3456
+ # * `NOTEBOOK` - The job was created using an interactive sessions
3457
+ # notebook.
3458
+ #
3459
+ # When the `JobMode` field is missing or null, `SCRIPT` is assigned as
3460
+ # the default value.
3461
+ #
3420
3462
  # @option params [String] :description
3421
3463
  # Description of the job being defined.
3422
3464
  #
@@ -3490,7 +3532,13 @@ module Aws::Glue
3490
3532
  # @option params [Integer] :timeout
3491
3533
  # The job timeout in minutes. This is the maximum time that a job run
3492
3534
  # can consume resources before it is terminated and enters `TIMEOUT`
3493
- # status. The default is 2,880 minutes (48 hours).
3535
+ # status. The default is 2,880 minutes (48 hours) for batch jobs.
3536
+ #
3537
+ # Streaming jobs must have timeout values less than 7 days or 10080
3538
+ # minutes. When the value is left blank, the job will be restarted after
3539
+ # 7 days based if you have not setup a maintenance window. If you have
3540
+ # setup maintenance window, it will be restarted during the maintenance
3541
+ # window after 7 days.
3494
3542
  #
3495
3543
  # @option params [Float] :max_capacity
3496
3544
  # For Glue version 1.0 or earlier jobs, using the standard worker type,
@@ -6348,7 +6396,7 @@ module Aws::Glue
6348
6396
  #
6349
6397
  # resp.connection.name #=> String
6350
6398
  # resp.connection.description #=> String
6351
- # resp.connection.connection_type #=> String, one of "JDBC", "SFTP", "MONGODB", "KAFKA", "NETWORK", "MARKETPLACE", "CUSTOM"
6399
+ # resp.connection.connection_type #=> String, one of "JDBC", "SFTP", "MONGODB", "KAFKA", "NETWORK", "MARKETPLACE", "CUSTOM", "SALESFORCE"
6352
6400
  # resp.connection.match_criteria #=> Array
6353
6401
  # resp.connection.match_criteria[0] #=> String
6354
6402
  # resp.connection.connection_properties #=> Hash
@@ -6360,6 +6408,17 @@ module Aws::Glue
6360
6408
  # resp.connection.creation_time #=> Time
6361
6409
  # resp.connection.last_updated_time #=> Time
6362
6410
  # resp.connection.last_updated_by #=> String
6411
+ # resp.connection.status #=> String, one of "READY", "IN_PROGRESS", "FAILED"
6412
+ # resp.connection.status_reason #=> String
6413
+ # resp.connection.last_connection_validation_time #=> Time
6414
+ # resp.connection.authentication_configuration.authentication_type #=> String, one of "BASIC", "OAUTH2", "CUSTOM"
6415
+ # resp.connection.authentication_configuration.secret_arn #=> String
6416
+ # resp.connection.authentication_configuration.o_auth_2_properties.o_auth_2_grant_type #=> String, one of "AUTHORIZATION_CODE", "CLIENT_CREDENTIALS", "JWT_BEARER"
6417
+ # resp.connection.authentication_configuration.o_auth_2_properties.o_auth_2_client_application.user_managed_client_application_client_id #=> String
6418
+ # resp.connection.authentication_configuration.o_auth_2_properties.o_auth_2_client_application.aws_managed_client_application_reference #=> String
6419
+ # resp.connection.authentication_configuration.o_auth_2_properties.token_url #=> String
6420
+ # resp.connection.authentication_configuration.o_auth_2_properties.token_url_parameters_map #=> Hash
6421
+ # resp.connection.authentication_configuration.o_auth_2_properties.token_url_parameters_map["TokenUrlParameterKey"] #=> String
6363
6422
  #
6364
6423
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetConnection AWS API Documentation
6365
6424
  #
@@ -6406,7 +6465,7 @@ module Aws::Glue
6406
6465
  # catalog_id: "CatalogIdString",
6407
6466
  # filter: {
6408
6467
  # match_criteria: ["NameString"],
6409
- # connection_type: "JDBC", # accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK, MARKETPLACE, CUSTOM
6468
+ # connection_type: "JDBC", # accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK, MARKETPLACE, CUSTOM, SALESFORCE
6410
6469
  # },
6411
6470
  # hide_password: false,
6412
6471
  # next_token: "Token",
@@ -6418,7 +6477,7 @@ module Aws::Glue
6418
6477
  # resp.connection_list #=> Array
6419
6478
  # resp.connection_list[0].name #=> String
6420
6479
  # resp.connection_list[0].description #=> String
6421
- # resp.connection_list[0].connection_type #=> String, one of "JDBC", "SFTP", "MONGODB", "KAFKA", "NETWORK", "MARKETPLACE", "CUSTOM"
6480
+ # resp.connection_list[0].connection_type #=> String, one of "JDBC", "SFTP", "MONGODB", "KAFKA", "NETWORK", "MARKETPLACE", "CUSTOM", "SALESFORCE"
6422
6481
  # resp.connection_list[0].match_criteria #=> Array
6423
6482
  # resp.connection_list[0].match_criteria[0] #=> String
6424
6483
  # resp.connection_list[0].connection_properties #=> Hash
@@ -6430,6 +6489,17 @@ module Aws::Glue
6430
6489
  # resp.connection_list[0].creation_time #=> Time
6431
6490
  # resp.connection_list[0].last_updated_time #=> Time
6432
6491
  # resp.connection_list[0].last_updated_by #=> String
6492
+ # resp.connection_list[0].status #=> String, one of "READY", "IN_PROGRESS", "FAILED"
6493
+ # resp.connection_list[0].status_reason #=> String
6494
+ # resp.connection_list[0].last_connection_validation_time #=> Time
6495
+ # resp.connection_list[0].authentication_configuration.authentication_type #=> String, one of "BASIC", "OAUTH2", "CUSTOM"
6496
+ # resp.connection_list[0].authentication_configuration.secret_arn #=> String
6497
+ # resp.connection_list[0].authentication_configuration.o_auth_2_properties.o_auth_2_grant_type #=> String, one of "AUTHORIZATION_CODE", "CLIENT_CREDENTIALS", "JWT_BEARER"
6498
+ # resp.connection_list[0].authentication_configuration.o_auth_2_properties.o_auth_2_client_application.user_managed_client_application_client_id #=> String
6499
+ # resp.connection_list[0].authentication_configuration.o_auth_2_properties.o_auth_2_client_application.aws_managed_client_application_reference #=> String
6500
+ # resp.connection_list[0].authentication_configuration.o_auth_2_properties.token_url #=> String
6501
+ # resp.connection_list[0].authentication_configuration.o_auth_2_properties.token_url_parameters_map #=> Hash
6502
+ # resp.connection_list[0].authentication_configuration.o_auth_2_properties.token_url_parameters_map["TokenUrlParameterKey"] #=> String
6433
6503
  # resp.next_token #=> String
6434
6504
  #
6435
6505
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetConnections AWS API Documentation
@@ -7334,6 +7404,7 @@ module Aws::Glue
7334
7404
  # @example Response structure
7335
7405
  #
7336
7406
  # resp.job.name #=> String
7407
+ # resp.job.job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
7337
7408
  # resp.job.description #=> String
7338
7409
  # resp.job.log_uri #=> String
7339
7410
  # resp.job.role #=> String
@@ -8307,6 +8378,7 @@ module Aws::Glue
8307
8378
  # resp.job_run.previous_run_id #=> String
8308
8379
  # resp.job_run.trigger_name #=> String
8309
8380
  # resp.job_run.job_name #=> String
8381
+ # resp.job_run.job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
8310
8382
  # resp.job_run.started_on #=> Time
8311
8383
  # resp.job_run.last_modified_on #=> Time
8312
8384
  # resp.job_run.completed_on #=> Time
@@ -8374,6 +8446,7 @@ module Aws::Glue
8374
8446
  # resp.job_runs[0].previous_run_id #=> String
8375
8447
  # resp.job_runs[0].trigger_name #=> String
8376
8448
  # resp.job_runs[0].job_name #=> String
8449
+ # resp.job_runs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
8377
8450
  # resp.job_runs[0].started_on #=> Time
8378
8451
  # resp.job_runs[0].last_modified_on #=> Time
8379
8452
  # resp.job_runs[0].completed_on #=> Time
@@ -8434,6 +8507,7 @@ module Aws::Glue
8434
8507
  #
8435
8508
  # resp.jobs #=> Array
8436
8509
  # resp.jobs[0].name #=> String
8510
+ # resp.jobs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
8437
8511
  # resp.jobs[0].description #=> String
8438
8512
  # resp.jobs[0].log_uri #=> String
8439
8513
  # resp.jobs[0].role #=> String
@@ -12259,6 +12333,7 @@ module Aws::Glue
12259
12333
  # resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].previous_run_id #=> String
12260
12334
  # resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].trigger_name #=> String
12261
12335
  # resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].job_name #=> String
12336
+ # resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
12262
12337
  # resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].started_on #=> Time
12263
12338
  # resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].last_modified_on #=> Time
12264
12339
  # resp.workflow.last_run.graph.nodes[0].job_details.job_runs[0].completed_on #=> Time
@@ -12328,6 +12403,7 @@ module Aws::Glue
12328
12403
  # resp.workflow.graph.nodes[0].job_details.job_runs[0].previous_run_id #=> String
12329
12404
  # resp.workflow.graph.nodes[0].job_details.job_runs[0].trigger_name #=> String
12330
12405
  # resp.workflow.graph.nodes[0].job_details.job_runs[0].job_name #=> String
12406
+ # resp.workflow.graph.nodes[0].job_details.job_runs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
12331
12407
  # resp.workflow.graph.nodes[0].job_details.job_runs[0].started_on #=> Time
12332
12408
  # resp.workflow.graph.nodes[0].job_details.job_runs[0].last_modified_on #=> Time
12333
12409
  # resp.workflow.graph.nodes[0].job_details.job_runs[0].completed_on #=> Time
@@ -12450,6 +12526,7 @@ module Aws::Glue
12450
12526
  # resp.run.graph.nodes[0].job_details.job_runs[0].previous_run_id #=> String
12451
12527
  # resp.run.graph.nodes[0].job_details.job_runs[0].trigger_name #=> String
12452
12528
  # resp.run.graph.nodes[0].job_details.job_runs[0].job_name #=> String
12529
+ # resp.run.graph.nodes[0].job_details.job_runs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
12453
12530
  # resp.run.graph.nodes[0].job_details.job_runs[0].started_on #=> Time
12454
12531
  # resp.run.graph.nodes[0].job_details.job_runs[0].last_modified_on #=> Time
12455
12532
  # resp.run.graph.nodes[0].job_details.job_runs[0].completed_on #=> Time
@@ -12612,6 +12689,7 @@ module Aws::Glue
12612
12689
  # resp.runs[0].graph.nodes[0].job_details.job_runs[0].previous_run_id #=> String
12613
12690
  # resp.runs[0].graph.nodes[0].job_details.job_runs[0].trigger_name #=> String
12614
12691
  # resp.runs[0].graph.nodes[0].job_details.job_runs[0].job_name #=> String
12692
+ # resp.runs[0].graph.nodes[0].job_details.job_runs[0].job_mode #=> String, one of "SCRIPT", "VISUAL", "NOTEBOOK"
12615
12693
  # resp.runs[0].graph.nodes[0].job_details.job_runs[0].started_on #=> Time
12616
12694
  # resp.runs[0].graph.nodes[0].job_details.job_runs[0].last_modified_on #=> Time
12617
12695
  # resp.runs[0].graph.nodes[0].job_details.job_runs[0].completed_on #=> Time
@@ -14997,8 +15075,11 @@ module Aws::Glue
14997
15075
  # run can consume resources before it is terminated and enters `TIMEOUT`
14998
15076
  # status. This value overrides the timeout value set in the parent job.
14999
15077
  #
15000
- # Streaming jobs do not have a timeout. The default for non-streaming
15001
- # jobs is 2,880 minutes (48 hours).
15078
+ # Streaming jobs must have timeout values less than 7 days or 10080
15079
+ # minutes. When the value is left blank, the job will be restarted after
15080
+ # 7 days based if you have not setup a maintenance window. If you have
15081
+ # setup maintenance window, it will be restarted during the maintenance
15082
+ # window after 7 days.
15002
15083
  #
15003
15084
  # @option params [Float] :max_capacity
15004
15085
  # For Glue version 1.0 or earlier jobs, using the standard worker type,
@@ -15902,7 +15983,7 @@ module Aws::Glue
15902
15983
  # connection_input: { # required
15903
15984
  # name: "NameString", # required
15904
15985
  # description: "DescriptionString",
15905
- # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK, MARKETPLACE, CUSTOM
15986
+ # connection_type: "JDBC", # required, accepts JDBC, SFTP, MONGODB, KAFKA, NETWORK, MARKETPLACE, CUSTOM, SALESFORCE
15906
15987
  # match_criteria: ["NameString"],
15907
15988
  # connection_properties: { # required
15908
15989
  # "HOST" => "ValueString",
@@ -15912,6 +15993,26 @@ module Aws::Glue
15912
15993
  # security_group_id_list: ["NameString"],
15913
15994
  # availability_zone: "NameString",
15914
15995
  # },
15996
+ # authentication_configuration: {
15997
+ # authentication_type: "BASIC", # accepts BASIC, OAUTH2, CUSTOM
15998
+ # secret_arn: "SecretArn",
15999
+ # o_auth_2_properties: {
16000
+ # o_auth_2_grant_type: "AUTHORIZATION_CODE", # accepts AUTHORIZATION_CODE, CLIENT_CREDENTIALS, JWT_BEARER
16001
+ # o_auth_2_client_application: {
16002
+ # user_managed_client_application_client_id: "UserManagedClientApplicationClientId",
16003
+ # aws_managed_client_application_reference: "AWSManagedClientApplicationReference",
16004
+ # },
16005
+ # token_url: "TokenUrl",
16006
+ # token_url_parameters_map: {
16007
+ # "TokenUrlParameterKey" => "TokenUrlParameterValue",
16008
+ # },
16009
+ # authorization_code_properties: {
16010
+ # authorization_code: "AuthorizationCode",
16011
+ # redirect_uri: "RedirectUri",
16012
+ # },
16013
+ # },
16014
+ # },
16015
+ # validate_credentials: false,
15915
16016
  # },
15916
16017
  # })
15917
16018
  #
@@ -17168,7 +17269,7 @@ module Aws::Glue
17168
17269
  params: params,
17169
17270
  config: config)
17170
17271
  context[:gem_name] = 'aws-sdk-glue'
17171
- context[:gem_version] = '1.174.0'
17272
+ context[:gem_version] = '1.176.0'
17172
17273
  Seahorse::Client::Request.new(handlers, context)
17173
17274
  end
17174
17275
 
@@ -13,6 +13,7 @@ module Aws::Glue
13
13
 
14
14
  include Seahorse::Model
15
15
 
16
+ AWSManagedClientApplicationReference = Shapes::StringShape.new(name: 'AWSManagedClientApplicationReference')
16
17
  AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
17
18
  AccountId = Shapes::StringShape.new(name: 'AccountId')
18
19
  Action = Shapes::StructureShape.new(name: 'Action')
@@ -39,6 +40,11 @@ module Aws::Glue
39
40
  AuditContext = Shapes::StructureShape.new(name: 'AuditContext')
40
41
  AuditContextString = Shapes::StringShape.new(name: 'AuditContextString')
41
42
  AuthTokenString = Shapes::StringShape.new(name: 'AuthTokenString')
43
+ AuthenticationConfiguration = Shapes::StructureShape.new(name: 'AuthenticationConfiguration')
44
+ AuthenticationConfigurationInput = Shapes::StructureShape.new(name: 'AuthenticationConfigurationInput')
45
+ AuthenticationType = Shapes::StringShape.new(name: 'AuthenticationType')
46
+ AuthorizationCode = Shapes::StringShape.new(name: 'AuthorizationCode')
47
+ AuthorizationCodeProperties = Shapes::StructureShape.new(name: 'AuthorizationCodeProperties')
42
48
  BackfillError = Shapes::StructureShape.new(name: 'BackfillError')
43
49
  BackfillErrorCode = Shapes::StringShape.new(name: 'BackfillErrorCode')
44
50
  BackfillErroredPartitionsList = Shapes::ListShape.new(name: 'BackfillErroredPartitionsList')
@@ -209,6 +215,7 @@ module Aws::Glue
209
215
  ConnectionPasswordEncryption = Shapes::StructureShape.new(name: 'ConnectionPasswordEncryption')
210
216
  ConnectionProperties = Shapes::MapShape.new(name: 'ConnectionProperties')
211
217
  ConnectionPropertyKey = Shapes::StringShape.new(name: 'ConnectionPropertyKey')
218
+ ConnectionStatus = Shapes::StringShape.new(name: 'ConnectionStatus')
212
219
  ConnectionType = Shapes::StringShape.new(name: 'ConnectionType')
213
220
  ConnectionsList = Shapes::StructureShape.new(name: 'ConnectionsList')
214
221
  ConnectorDataSource = Shapes::StructureShape.new(name: 'ConnectorDataSource')
@@ -689,6 +696,7 @@ module Aws::Glue
689
696
  JobBookmarksEncryptionMode = Shapes::StringShape.new(name: 'JobBookmarksEncryptionMode')
690
697
  JobCommand = Shapes::StructureShape.new(name: 'JobCommand')
691
698
  JobList = Shapes::ListShape.new(name: 'JobList')
699
+ JobMode = Shapes::StringShape.new(name: 'JobMode')
692
700
  JobName = Shapes::StringShape.new(name: 'JobName')
693
701
  JobNameList = Shapes::ListShape.new(name: 'JobNameList')
694
702
  JobNodeDetails = Shapes::StructureShape.new(name: 'JobNodeDetails')
@@ -773,6 +781,7 @@ module Aws::Glue
773
781
  Long = Shapes::IntegerShape.new(name: 'Long')
774
782
  LongColumnStatisticsData = Shapes::StructureShape.new(name: 'LongColumnStatisticsData')
775
783
  LongValue = Shapes::IntegerShape.new(name: 'LongValue')
784
+ LongValueString = Shapes::StringShape.new(name: 'LongValueString')
776
785
  MLTransform = Shapes::StructureShape.new(name: 'MLTransform')
777
786
  MLTransformNotReadyException = Shapes::StructureShape.new(name: 'MLTransformNotReadyException')
778
787
  MLUserDataEncryption = Shapes::StructureShape.new(name: 'MLUserDataEncryption')
@@ -831,6 +840,10 @@ module Aws::Glue
831
840
  NullableDouble = Shapes::FloatShape.new(name: 'NullableDouble')
832
841
  NullableInteger = Shapes::IntegerShape.new(name: 'NullableInteger')
833
842
  NullableString = Shapes::StringShape.new(name: 'NullableString')
843
+ OAuth2ClientApplication = Shapes::StructureShape.new(name: 'OAuth2ClientApplication')
844
+ OAuth2GrantType = Shapes::StringShape.new(name: 'OAuth2GrantType')
845
+ OAuth2Properties = Shapes::StructureShape.new(name: 'OAuth2Properties')
846
+ OAuth2PropertiesInput = Shapes::StructureShape.new(name: 'OAuth2PropertiesInput')
834
847
  OneInput = Shapes::ListShape.new(name: 'OneInput')
835
848
  OpenTableFormatInput = Shapes::StructureShape.new(name: 'OpenTableFormatInput')
836
849
  OperationTimeoutException = Shapes::StructureShape.new(name: 'OperationTimeoutException')
@@ -918,6 +931,7 @@ module Aws::Glue
918
931
  RecordsCount = Shapes::IntegerShape.new(name: 'RecordsCount')
919
932
  RecrawlBehavior = Shapes::StringShape.new(name: 'RecrawlBehavior')
920
933
  RecrawlPolicy = Shapes::StructureShape.new(name: 'RecrawlPolicy')
934
+ RedirectUri = Shapes::StringShape.new(name: 'RedirectUri')
921
935
  RedshiftSource = Shapes::StructureShape.new(name: 'RedshiftSource')
922
936
  RedshiftTarget = Shapes::StructureShape.new(name: 'RedshiftTarget')
923
937
  RegisterSchemaVersionInput = Shapes::StructureShape.new(name: 'RegisterSchemaVersionInput')
@@ -1006,6 +1020,7 @@ module Aws::Glue
1006
1020
  SearchPropertyPredicates = Shapes::ListShape.new(name: 'SearchPropertyPredicates')
1007
1021
  SearchTablesRequest = Shapes::StructureShape.new(name: 'SearchTablesRequest')
1008
1022
  SearchTablesResponse = Shapes::StructureShape.new(name: 'SearchTablesResponse')
1023
+ SecretArn = Shapes::StringShape.new(name: 'SecretArn')
1009
1024
  SecurityConfiguration = Shapes::StructureShape.new(name: 'SecurityConfiguration')
1010
1025
  SecurityConfigurationList = Shapes::ListShape.new(name: 'SecurityConfigurationList')
1011
1026
  SecurityGroupIdList = Shapes::ListShape.new(name: 'SecurityGroupIdList')
@@ -1126,6 +1141,10 @@ module Aws::Glue
1126
1141
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
1127
1142
  TimestampValue = Shapes::TimestampShape.new(name: 'TimestampValue')
1128
1143
  Token = Shapes::StringShape.new(name: 'Token')
1144
+ TokenUrl = Shapes::StringShape.new(name: 'TokenUrl')
1145
+ TokenUrlParameterKey = Shapes::StringShape.new(name: 'TokenUrlParameterKey')
1146
+ TokenUrlParameterValue = Shapes::StringShape.new(name: 'TokenUrlParameterValue')
1147
+ TokenUrlParametersMap = Shapes::MapShape.new(name: 'TokenUrlParametersMap')
1129
1148
  Topk = Shapes::IntegerShape.new(name: 'Topk')
1130
1149
  TotalSegmentsInteger = Shapes::IntegerShape.new(name: 'TotalSegmentsInteger')
1131
1150
  TransactionIdString = Shapes::StringShape.new(name: 'TransactionIdString')
@@ -1214,6 +1233,7 @@ module Aws::Glue
1214
1233
  UserDefinedFunction = Shapes::StructureShape.new(name: 'UserDefinedFunction')
1215
1234
  UserDefinedFunctionInput = Shapes::StructureShape.new(name: 'UserDefinedFunctionInput')
1216
1235
  UserDefinedFunctionList = Shapes::ListShape.new(name: 'UserDefinedFunctionList')
1236
+ UserManagedClientApplicationClientId = Shapes::StringShape.new(name: 'UserManagedClientApplicationClientId')
1217
1237
  ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
1218
1238
  ValueString = Shapes::StringShape.new(name: 'ValueString')
1219
1239
  ValueStringList = Shapes::ListShape.new(name: 'ValueStringList')
@@ -1344,6 +1364,20 @@ module Aws::Glue
1344
1364
  AuditContext.add_member(:all_columns_requested, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "AllColumnsRequested"))
1345
1365
  AuditContext.struct_class = Types::AuditContext
1346
1366
 
1367
+ AuthenticationConfiguration.add_member(:authentication_type, Shapes::ShapeRef.new(shape: AuthenticationType, location_name: "AuthenticationType"))
1368
+ AuthenticationConfiguration.add_member(:secret_arn, Shapes::ShapeRef.new(shape: SecretArn, location_name: "SecretArn"))
1369
+ AuthenticationConfiguration.add_member(:o_auth_2_properties, Shapes::ShapeRef.new(shape: OAuth2Properties, location_name: "OAuth2Properties"))
1370
+ AuthenticationConfiguration.struct_class = Types::AuthenticationConfiguration
1371
+
1372
+ AuthenticationConfigurationInput.add_member(:authentication_type, Shapes::ShapeRef.new(shape: AuthenticationType, location_name: "AuthenticationType"))
1373
+ AuthenticationConfigurationInput.add_member(:secret_arn, Shapes::ShapeRef.new(shape: SecretArn, location_name: "SecretArn"))
1374
+ AuthenticationConfigurationInput.add_member(:o_auth_2_properties, Shapes::ShapeRef.new(shape: OAuth2PropertiesInput, location_name: "OAuth2Properties"))
1375
+ AuthenticationConfigurationInput.struct_class = Types::AuthenticationConfigurationInput
1376
+
1377
+ AuthorizationCodeProperties.add_member(:authorization_code, Shapes::ShapeRef.new(shape: AuthorizationCode, location_name: "AuthorizationCode"))
1378
+ AuthorizationCodeProperties.add_member(:redirect_uri, Shapes::ShapeRef.new(shape: RedirectUri, location_name: "RedirectUri"))
1379
+ AuthorizationCodeProperties.struct_class = Types::AuthorizationCodeProperties
1380
+
1347
1381
  BackfillError.add_member(:code, Shapes::ShapeRef.new(shape: BackfillErrorCode, location_name: "Code"))
1348
1382
  BackfillError.add_member(:partitions, Shapes::ShapeRef.new(shape: BackfillErroredPartitionsList, location_name: "Partitions"))
1349
1383
  BackfillError.struct_class = Types::BackfillError
@@ -1931,6 +1965,10 @@ module Aws::Glue
1931
1965
  Connection.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
1932
1966
  Connection.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedTime"))
1933
1967
  Connection.add_member(:last_updated_by, Shapes::ShapeRef.new(shape: NameString, location_name: "LastUpdatedBy"))
1968
+ Connection.add_member(:status, Shapes::ShapeRef.new(shape: ConnectionStatus, location_name: "Status"))
1969
+ Connection.add_member(:status_reason, Shapes::ShapeRef.new(shape: LongValueString, location_name: "StatusReason"))
1970
+ Connection.add_member(:last_connection_validation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastConnectionValidationTime"))
1971
+ Connection.add_member(:authentication_configuration, Shapes::ShapeRef.new(shape: AuthenticationConfiguration, location_name: "AuthenticationConfiguration"))
1934
1972
  Connection.struct_class = Types::Connection
1935
1973
 
1936
1974
  ConnectionInput.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
@@ -1939,6 +1977,8 @@ module Aws::Glue
1939
1977
  ConnectionInput.add_member(:match_criteria, Shapes::ShapeRef.new(shape: MatchCriteria, location_name: "MatchCriteria"))
1940
1978
  ConnectionInput.add_member(:connection_properties, Shapes::ShapeRef.new(shape: ConnectionProperties, required: true, location_name: "ConnectionProperties"))
1941
1979
  ConnectionInput.add_member(:physical_connection_requirements, Shapes::ShapeRef.new(shape: PhysicalConnectionRequirements, location_name: "PhysicalConnectionRequirements"))
1980
+ ConnectionInput.add_member(:authentication_configuration, Shapes::ShapeRef.new(shape: AuthenticationConfigurationInput, location_name: "AuthenticationConfiguration"))
1981
+ ConnectionInput.add_member(:validate_credentials, Shapes::ShapeRef.new(shape: Boolean, location_name: "ValidateCredentials"))
1942
1982
  ConnectionInput.struct_class = Types::ConnectionInput
1943
1983
 
1944
1984
  ConnectionList.member = Shapes::ShapeRef.new(shape: Connection)
@@ -2083,6 +2123,7 @@ module Aws::Glue
2083
2123
  CreateConnectionRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
2084
2124
  CreateConnectionRequest.struct_class = Types::CreateConnectionRequest
2085
2125
 
2126
+ CreateConnectionResponse.add_member(:create_connection_status, Shapes::ShapeRef.new(shape: ConnectionStatus, location_name: "CreateConnectionStatus"))
2086
2127
  CreateConnectionResponse.struct_class = Types::CreateConnectionResponse
2087
2128
 
2088
2129
  CreateCrawlerRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
@@ -2188,6 +2229,7 @@ module Aws::Glue
2188
2229
  CreateGrokClassifierRequest.struct_class = Types::CreateGrokClassifierRequest
2189
2230
 
2190
2231
  CreateJobRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
2232
+ CreateJobRequest.add_member(:job_mode, Shapes::ShapeRef.new(shape: JobMode, location_name: "JobMode"))
2191
2233
  CreateJobRequest.add_member(:description, Shapes::ShapeRef.new(shape: DescriptionString, location_name: "Description"))
2192
2234
  CreateJobRequest.add_member(:log_uri, Shapes::ShapeRef.new(shape: UriString, location_name: "LogUri"))
2193
2235
  CreateJobRequest.add_member(:role, Shapes::ShapeRef.new(shape: RoleString, required: true, location_name: "Role"))
@@ -3898,6 +3940,7 @@ module Aws::Glue
3898
3940
  JdbcTargetList.member = Shapes::ShapeRef.new(shape: JdbcTarget)
3899
3941
 
3900
3942
  Job.add_member(:name, Shapes::ShapeRef.new(shape: NameString, location_name: "Name"))
3943
+ Job.add_member(:job_mode, Shapes::ShapeRef.new(shape: JobMode, location_name: "JobMode"))
3901
3944
  Job.add_member(:description, Shapes::ShapeRef.new(shape: DescriptionString, location_name: "Description"))
3902
3945
  Job.add_member(:log_uri, Shapes::ShapeRef.new(shape: UriString, location_name: "LogUri"))
3903
3946
  Job.add_member(:role, Shapes::ShapeRef.new(shape: RoleString, location_name: "Role"))
@@ -3954,6 +3997,7 @@ module Aws::Glue
3954
3997
  JobRun.add_member(:previous_run_id, Shapes::ShapeRef.new(shape: IdString, location_name: "PreviousRunId"))
3955
3998
  JobRun.add_member(:trigger_name, Shapes::ShapeRef.new(shape: NameString, location_name: "TriggerName"))
3956
3999
  JobRun.add_member(:job_name, Shapes::ShapeRef.new(shape: NameString, location_name: "JobName"))
4000
+ JobRun.add_member(:job_mode, Shapes::ShapeRef.new(shape: JobMode, location_name: "JobMode"))
3957
4001
  JobRun.add_member(:started_on, Shapes::ShapeRef.new(shape: TimestampValue, location_name: "StartedOn"))
3958
4002
  JobRun.add_member(:last_modified_on, Shapes::ShapeRef.new(shape: TimestampValue, location_name: "LastModifiedOn"))
3959
4003
  JobRun.add_member(:completed_on, Shapes::ShapeRef.new(shape: TimestampValue, location_name: "CompletedOn"))
@@ -3978,6 +4022,7 @@ module Aws::Glue
3978
4022
 
3979
4023
  JobRunList.member = Shapes::ShapeRef.new(shape: JobRun)
3980
4024
 
4025
+ JobUpdate.add_member(:job_mode, Shapes::ShapeRef.new(shape: JobMode, location_name: "JobMode"))
3981
4026
  JobUpdate.add_member(:description, Shapes::ShapeRef.new(shape: DescriptionString, location_name: "Description"))
3982
4027
  JobUpdate.add_member(:log_uri, Shapes::ShapeRef.new(shape: UriString, location_name: "LogUri"))
3983
4028
  JobUpdate.add_member(:role, Shapes::ShapeRef.new(shape: RoleString, location_name: "Role"))
@@ -4449,6 +4494,23 @@ module Aws::Glue
4449
4494
 
4450
4495
  NullValueFields.member = Shapes::ShapeRef.new(shape: NullValueField)
4451
4496
 
4497
+ OAuth2ClientApplication.add_member(:user_managed_client_application_client_id, Shapes::ShapeRef.new(shape: UserManagedClientApplicationClientId, location_name: "UserManagedClientApplicationClientId"))
4498
+ OAuth2ClientApplication.add_member(:aws_managed_client_application_reference, Shapes::ShapeRef.new(shape: AWSManagedClientApplicationReference, location_name: "AWSManagedClientApplicationReference"))
4499
+ OAuth2ClientApplication.struct_class = Types::OAuth2ClientApplication
4500
+
4501
+ OAuth2Properties.add_member(:o_auth_2_grant_type, Shapes::ShapeRef.new(shape: OAuth2GrantType, location_name: "OAuth2GrantType"))
4502
+ OAuth2Properties.add_member(:o_auth_2_client_application, Shapes::ShapeRef.new(shape: OAuth2ClientApplication, location_name: "OAuth2ClientApplication"))
4503
+ OAuth2Properties.add_member(:token_url, Shapes::ShapeRef.new(shape: TokenUrl, location_name: "TokenUrl"))
4504
+ OAuth2Properties.add_member(:token_url_parameters_map, Shapes::ShapeRef.new(shape: TokenUrlParametersMap, location_name: "TokenUrlParametersMap"))
4505
+ OAuth2Properties.struct_class = Types::OAuth2Properties
4506
+
4507
+ OAuth2PropertiesInput.add_member(:o_auth_2_grant_type, Shapes::ShapeRef.new(shape: OAuth2GrantType, location_name: "OAuth2GrantType"))
4508
+ OAuth2PropertiesInput.add_member(:o_auth_2_client_application, Shapes::ShapeRef.new(shape: OAuth2ClientApplication, location_name: "OAuth2ClientApplication"))
4509
+ OAuth2PropertiesInput.add_member(:token_url, Shapes::ShapeRef.new(shape: TokenUrl, location_name: "TokenUrl"))
4510
+ OAuth2PropertiesInput.add_member(:token_url_parameters_map, Shapes::ShapeRef.new(shape: TokenUrlParametersMap, location_name: "TokenUrlParametersMap"))
4511
+ OAuth2PropertiesInput.add_member(:authorization_code_properties, Shapes::ShapeRef.new(shape: AuthorizationCodeProperties, location_name: "AuthorizationCodeProperties"))
4512
+ OAuth2PropertiesInput.struct_class = Types::OAuth2PropertiesInput
4513
+
4452
4514
  OneInput.member = Shapes::ShapeRef.new(shape: NodeId)
4453
4515
 
4454
4516
  OpenTableFormatInput.add_member(:iceberg_input, Shapes::ShapeRef.new(shape: IcebergInput, location_name: "IcebergInput"))
@@ -5510,6 +5572,9 @@ module Aws::Glue
5510
5572
  TaskRunSortCriteria.add_member(:sort_direction, Shapes::ShapeRef.new(shape: SortDirectionType, required: true, location_name: "SortDirection"))
5511
5573
  TaskRunSortCriteria.struct_class = Types::TaskRunSortCriteria
5512
5574
 
5575
+ TokenUrlParametersMap.key = Shapes::ShapeRef.new(shape: TokenUrlParameterKey)
5576
+ TokenUrlParametersMap.value = Shapes::ShapeRef.new(shape: TokenUrlParameterValue)
5577
+
5513
5578
  TransformConfigParameter.add_member(:name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "Name"))
5514
5579
  TransformConfigParameter.add_member(:type, Shapes::ShapeRef.new(shape: ParamType, required: true, location_name: "Type"))
5515
5580
  TransformConfigParameter.add_member(:validation_rule, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, location_name: "ValidationRule"))
@@ -5955,6 +6020,7 @@ module Aws::Glue
5955
6020
 
5956
6021
  api.metadata = {
5957
6022
  "apiVersion" => "2017-03-31",
6023
+ "auth" => ["aws.auth#sigv4"],
5958
6024
  "endpointPrefix" => "glue",
5959
6025
  "jsonVersion" => "1.1",
5960
6026
  "protocol" => "json",