aws-sdk-glue 1.119.0 → 1.120.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: 7b6e1f70be1ccccfa72d5e67b46e098f0edb3b1790e58b19ff93f763b8e6ec9b
4
- data.tar.gz: b22f9341b2e0ff9fbc9ee4eb2b3f9697459c510295d9c929f6560c79e200168c
3
+ metadata.gz: d7c67808d75e0cbe331e29778e40236915010c22b77bf937f42cfbc249944ede
4
+ data.tar.gz: ec0be772aaca97eede40745c54f75e64ee09c7d8db1ba44036341529b2117f74
5
5
  SHA512:
6
- metadata.gz: 616c0d30940763c9db34e88d27e450040753d78e18f17d962cc638c1102b83ea64601fa82f0007d00678579eea50e76719860dbe40190a6aee713e98b9918b12
7
- data.tar.gz: 65938e7538a0e097845e40390da0015e545d04acff13e84b6bf75dde2621c5b907e42d89c24e687c665fe203798a34410f237f4d7f4880b778072dddec77b588
6
+ metadata.gz: 61fe411f9bd2d8c7d4034730806c883d19416128ed1ced80e62477f35d6613a7859f0e651858f4b9202fe9e430841614c2b7ad7c137255731280debb564271f6
7
+ data.tar.gz: 26eb9de235efcf76a9aa0abc77556f3a18695edb3a1f22f1b024af23b7e968b1a062239e586b7b03261ce71d2de74577bb7a89e8386f1526b27735ffadf3c8dd
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.120.0 (2022-10-05)
5
+ ------------------
6
+
7
+ * Feature - This SDK release adds support to sync glue jobs with source control provider. Additionally, a new parameter called SourceControlDetails will be added to Job model.
8
+
4
9
  1.119.0 (2022-09-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.119.0
1
+ 1.120.0
@@ -1447,6 +1447,14 @@ module Aws::Glue
1447
1447
  # resp.jobs[0].code_gen_configuration_nodes["NodeId"].postgre_sql_catalog_target.database #=> String
1448
1448
  # resp.jobs[0].code_gen_configuration_nodes["NodeId"].postgre_sql_catalog_target.table #=> String
1449
1449
  # resp.jobs[0].execution_class #=> String, one of "FLEX", "STANDARD"
1450
+ # resp.jobs[0].source_control_details.provider #=> String, one of "GITHUB", "AWS_CODE_COMMIT"
1451
+ # resp.jobs[0].source_control_details.repository #=> String
1452
+ # resp.jobs[0].source_control_details.owner #=> String
1453
+ # resp.jobs[0].source_control_details.branch #=> String
1454
+ # resp.jobs[0].source_control_details.folder #=> String
1455
+ # resp.jobs[0].source_control_details.last_commit_id #=> String
1456
+ # resp.jobs[0].source_control_details.auth_strategy #=> String, one of "PERSONAL_ACCESS_TOKEN", "AWS_SECRETS_MANAGER"
1457
+ # resp.jobs[0].source_control_details.auth_token #=> String
1450
1458
  # resp.jobs_not_found #=> Array
1451
1459
  # resp.jobs_not_found[0] #=> String
1452
1460
  #
@@ -2862,6 +2870,10 @@ module Aws::Glue
2862
2870
  # will be allowed to set `ExecutionClass` to `FLEX`. The flexible
2863
2871
  # execution class is available for Spark jobs.
2864
2872
  #
2873
+ # @option params [Types::SourceControlDetails] :source_control_details
2874
+ # The details for a source control configuration for a job, allowing
2875
+ # synchronization of job artifacts to or from a remote repository.
2876
+ #
2865
2877
  # @return [Types::CreateJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2866
2878
  #
2867
2879
  # * {Types::CreateJobResponse#name #name} => String
@@ -3573,6 +3585,16 @@ module Aws::Glue
3573
3585
  # },
3574
3586
  # },
3575
3587
  # execution_class: "FLEX", # accepts FLEX, STANDARD
3588
+ # source_control_details: {
3589
+ # provider: "GITHUB", # accepts GITHUB, AWS_CODE_COMMIT
3590
+ # repository: "Generic512CharString",
3591
+ # owner: "Generic512CharString",
3592
+ # branch: "Generic512CharString",
3593
+ # folder: "Generic512CharString",
3594
+ # last_commit_id: "Generic512CharString",
3595
+ # auth_strategy: "PERSONAL_ACCESS_TOKEN", # accepts PERSONAL_ACCESS_TOKEN, AWS_SECRETS_MANAGER
3596
+ # auth_token: "Generic512CharString",
3597
+ # },
3576
3598
  # })
3577
3599
  #
3578
3600
  # @example Response structure
@@ -7215,6 +7237,14 @@ module Aws::Glue
7215
7237
  # resp.job.code_gen_configuration_nodes["NodeId"].postgre_sql_catalog_target.database #=> String
7216
7238
  # resp.job.code_gen_configuration_nodes["NodeId"].postgre_sql_catalog_target.table #=> String
7217
7239
  # resp.job.execution_class #=> String, one of "FLEX", "STANDARD"
7240
+ # resp.job.source_control_details.provider #=> String, one of "GITHUB", "AWS_CODE_COMMIT"
7241
+ # resp.job.source_control_details.repository #=> String
7242
+ # resp.job.source_control_details.owner #=> String
7243
+ # resp.job.source_control_details.branch #=> String
7244
+ # resp.job.source_control_details.folder #=> String
7245
+ # resp.job.source_control_details.last_commit_id #=> String
7246
+ # resp.job.source_control_details.auth_strategy #=> String, one of "PERSONAL_ACCESS_TOKEN", "AWS_SECRETS_MANAGER"
7247
+ # resp.job.source_control_details.auth_token #=> String
7218
7248
  #
7219
7249
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetJob AWS API Documentation
7220
7250
  #
@@ -7923,6 +7953,14 @@ module Aws::Glue
7923
7953
  # resp.jobs[0].code_gen_configuration_nodes["NodeId"].postgre_sql_catalog_target.database #=> String
7924
7954
  # resp.jobs[0].code_gen_configuration_nodes["NodeId"].postgre_sql_catalog_target.table #=> String
7925
7955
  # resp.jobs[0].execution_class #=> String, one of "FLEX", "STANDARD"
7956
+ # resp.jobs[0].source_control_details.provider #=> String, one of "GITHUB", "AWS_CODE_COMMIT"
7957
+ # resp.jobs[0].source_control_details.repository #=> String
7958
+ # resp.jobs[0].source_control_details.owner #=> String
7959
+ # resp.jobs[0].source_control_details.branch #=> String
7960
+ # resp.jobs[0].source_control_details.folder #=> String
7961
+ # resp.jobs[0].source_control_details.last_commit_id #=> String
7962
+ # resp.jobs[0].source_control_details.auth_strategy #=> String, one of "PERSONAL_ACCESS_TOKEN", "AWS_SECRETS_MANAGER"
7963
+ # resp.jobs[0].source_control_details.auth_token #=> String
7926
7964
  # resp.next_token #=> String
7927
7965
  #
7928
7966
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetJobs AWS API Documentation
@@ -14474,6 +14512,16 @@ module Aws::Glue
14474
14512
  # },
14475
14513
  # },
14476
14514
  # execution_class: "FLEX", # accepts FLEX, STANDARD
14515
+ # source_control_details: {
14516
+ # provider: "GITHUB", # accepts GITHUB, AWS_CODE_COMMIT
14517
+ # repository: "Generic512CharString",
14518
+ # owner: "Generic512CharString",
14519
+ # branch: "Generic512CharString",
14520
+ # folder: "Generic512CharString",
14521
+ # last_commit_id: "Generic512CharString",
14522
+ # auth_strategy: "PERSONAL_ACCESS_TOKEN", # accepts PERSONAL_ACCESS_TOKEN, AWS_SECRETS_MANAGER
14523
+ # auth_token: "Generic512CharString",
14524
+ # },
14477
14525
  # },
14478
14526
  # })
14479
14527
  #
@@ -14490,6 +14538,74 @@ module Aws::Glue
14490
14538
  req.send_request(options)
14491
14539
  end
14492
14540
 
14541
+ # Synchronizes a job from the source control repository. This operation
14542
+ # takes the job artifacts that are located in the remote repository and
14543
+ # updates the Glue internal stores with these artifacts.
14544
+ #
14545
+ # This API supports optional parameters which take in the repository
14546
+ # information.
14547
+ #
14548
+ # @option params [String] :job_name
14549
+ # The name of the Glue job to be synchronized to or from the remote
14550
+ # repository.
14551
+ #
14552
+ # @option params [String] :provider
14553
+ # The provider for the remote repository.
14554
+ #
14555
+ # @option params [String] :repository_name
14556
+ # The name of the remote repository that contains the job artifacts.
14557
+ #
14558
+ # @option params [String] :repository_owner
14559
+ # The owner of the remote repository that contains the job artifacts.
14560
+ #
14561
+ # @option params [String] :branch_name
14562
+ # An optional branch in the remote repository.
14563
+ #
14564
+ # @option params [String] :folder
14565
+ # An optional folder in the remote repository.
14566
+ #
14567
+ # @option params [String] :commit_id
14568
+ # A commit ID for a commit in the remote repository.
14569
+ #
14570
+ # @option params [String] :auth_strategy
14571
+ # The type of authentication, which can be an authentication token
14572
+ # stored in Amazon Web Services Secrets Manager, or a personal access
14573
+ # token.
14574
+ #
14575
+ # @option params [String] :auth_token
14576
+ # The value of the authorization token.
14577
+ #
14578
+ # @return [Types::UpdateJobFromSourceControlResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
14579
+ #
14580
+ # * {Types::UpdateJobFromSourceControlResponse#job_name #job_name} => String
14581
+ #
14582
+ # @example Request syntax with placeholder values
14583
+ #
14584
+ # resp = client.update_job_from_source_control({
14585
+ # job_name: "NameString",
14586
+ # provider: "GITHUB", # accepts GITHUB, AWS_CODE_COMMIT
14587
+ # repository_name: "NameString",
14588
+ # repository_owner: "NameString",
14589
+ # branch_name: "NameString",
14590
+ # folder: "NameString",
14591
+ # commit_id: "CommitIdString",
14592
+ # auth_strategy: "PERSONAL_ACCESS_TOKEN", # accepts PERSONAL_ACCESS_TOKEN, AWS_SECRETS_MANAGER
14593
+ # auth_token: "AuthTokenString",
14594
+ # })
14595
+ #
14596
+ # @example Response structure
14597
+ #
14598
+ # resp.job_name #=> String
14599
+ #
14600
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateJobFromSourceControl AWS API Documentation
14601
+ #
14602
+ # @overload update_job_from_source_control(params = {})
14603
+ # @param [Hash] params ({})
14604
+ def update_job_from_source_control(params = {}, options = {})
14605
+ req = build_request(:update_job_from_source_control, params)
14606
+ req.send_request(options)
14607
+ end
14608
+
14493
14609
  # Updates an existing machine learning transform. Call this operation to
14494
14610
  # tune the algorithm parameters to achieve better results.
14495
14611
  #
@@ -14825,6 +14941,74 @@ module Aws::Glue
14825
14941
  req.send_request(options)
14826
14942
  end
14827
14943
 
14944
+ # Synchronizes a job to the source control repository. This operation
14945
+ # takes the job artifacts from the Glue internal stores and makes a
14946
+ # commit to the remote repository that is configured on the job.
14947
+ #
14948
+ # This API supports optional parameters which take in the repository
14949
+ # information.
14950
+ #
14951
+ # @option params [String] :job_name
14952
+ # The name of the Glue job to be synchronized to or from the remote
14953
+ # repository.
14954
+ #
14955
+ # @option params [String] :provider
14956
+ # The provider for the remote repository.
14957
+ #
14958
+ # @option params [String] :repository_name
14959
+ # The name of the remote repository that contains the job artifacts.
14960
+ #
14961
+ # @option params [String] :repository_owner
14962
+ # The owner of the remote repository that contains the job artifacts.
14963
+ #
14964
+ # @option params [String] :branch_name
14965
+ # An optional branch in the remote repository.
14966
+ #
14967
+ # @option params [String] :folder
14968
+ # An optional folder in the remote repository.
14969
+ #
14970
+ # @option params [String] :commit_id
14971
+ # A commit ID for a commit in the remote repository.
14972
+ #
14973
+ # @option params [String] :auth_strategy
14974
+ # The type of authentication, which can be an authentication token
14975
+ # stored in Amazon Web Services Secrets Manager, or a personal access
14976
+ # token.
14977
+ #
14978
+ # @option params [String] :auth_token
14979
+ # The value of the authorization token.
14980
+ #
14981
+ # @return [Types::UpdateSourceControlFromJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
14982
+ #
14983
+ # * {Types::UpdateSourceControlFromJobResponse#job_name #job_name} => String
14984
+ #
14985
+ # @example Request syntax with placeholder values
14986
+ #
14987
+ # resp = client.update_source_control_from_job({
14988
+ # job_name: "NameString",
14989
+ # provider: "GITHUB", # accepts GITHUB, AWS_CODE_COMMIT
14990
+ # repository_name: "NameString",
14991
+ # repository_owner: "NameString",
14992
+ # branch_name: "NameString",
14993
+ # folder: "NameString",
14994
+ # commit_id: "CommitIdString",
14995
+ # auth_strategy: "PERSONAL_ACCESS_TOKEN", # accepts PERSONAL_ACCESS_TOKEN, AWS_SECRETS_MANAGER
14996
+ # auth_token: "AuthTokenString",
14997
+ # })
14998
+ #
14999
+ # @example Response structure
15000
+ #
15001
+ # resp.job_name #=> String
15002
+ #
15003
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateSourceControlFromJob AWS API Documentation
15004
+ #
15005
+ # @overload update_source_control_from_job(params = {})
15006
+ # @param [Hash] params ({})
15007
+ def update_source_control_from_job(params = {}, options = {})
15008
+ req = build_request(:update_source_control_from_job, params)
15009
+ req.send_request(options)
15010
+ end
15011
+
14828
15012
  # Updates a metadata table in the Data Catalog.
14829
15013
  #
14830
15014
  # @option params [String] :catalog_id
@@ -15150,7 +15334,7 @@ module Aws::Glue
15150
15334
  params: params,
15151
15335
  config: config)
15152
15336
  context[:gem_name] = 'aws-sdk-glue'
15153
- context[:gem_version] = '1.119.0'
15337
+ context[:gem_version] = '1.120.0'
15154
15338
  Seahorse::Client::Request.new(handlers, context)
15155
15339
  end
15156
15340
 
@@ -30,6 +30,7 @@ module Aws::Glue
30
30
  AuditColumnNamesList = Shapes::ListShape.new(name: 'AuditColumnNamesList')
31
31
  AuditContext = Shapes::StructureShape.new(name: 'AuditContext')
32
32
  AuditContextString = Shapes::StringShape.new(name: 'AuditContextString')
33
+ AuthTokenString = Shapes::StringShape.new(name: 'AuthTokenString')
33
34
  BackfillError = Shapes::StructureShape.new(name: 'BackfillError')
34
35
  BackfillErrorCode = Shapes::StringShape.new(name: 'BackfillErrorCode')
35
36
  BackfillErroredPartitionsList = Shapes::ListShape.new(name: 'BackfillErroredPartitionsList')
@@ -158,6 +159,7 @@ module Aws::Glue
158
159
  ColumnValueStringList = Shapes::ListShape.new(name: 'ColumnValueStringList')
159
160
  ColumnValuesString = Shapes::StringShape.new(name: 'ColumnValuesString')
160
161
  CommentString = Shapes::StringShape.new(name: 'CommentString')
162
+ CommitIdString = Shapes::StringShape.new(name: 'CommitIdString')
161
163
  Comparator = Shapes::StringShape.new(name: 'Comparator')
162
164
  Compatibility = Shapes::StringShape.new(name: 'Compatibility')
163
165
  CompressionType = Shapes::StringShape.new(name: 'CompressionType')
@@ -855,6 +857,9 @@ module Aws::Glue
855
857
  SortCriteria = Shapes::ListShape.new(name: 'SortCriteria')
856
858
  SortCriterion = Shapes::StructureShape.new(name: 'SortCriterion')
857
859
  SortDirectionType = Shapes::StringShape.new(name: 'SortDirectionType')
860
+ SourceControlAuthStrategy = Shapes::StringShape.new(name: 'SourceControlAuthStrategy')
861
+ SourceControlDetails = Shapes::StructureShape.new(name: 'SourceControlDetails')
862
+ SourceControlProvider = Shapes::StringShape.new(name: 'SourceControlProvider')
858
863
  SparkConnectorSource = Shapes::StructureShape.new(name: 'SparkConnectorSource')
859
864
  SparkConnectorTarget = Shapes::StructureShape.new(name: 'SparkConnectorTarget')
860
865
  SparkSQL = Shapes::StructureShape.new(name: 'SparkSQL')
@@ -987,6 +992,8 @@ module Aws::Glue
987
992
  UpdateDevEndpointRequest = Shapes::StructureShape.new(name: 'UpdateDevEndpointRequest')
988
993
  UpdateDevEndpointResponse = Shapes::StructureShape.new(name: 'UpdateDevEndpointResponse')
989
994
  UpdateGrokClassifierRequest = Shapes::StructureShape.new(name: 'UpdateGrokClassifierRequest')
995
+ UpdateJobFromSourceControlRequest = Shapes::StructureShape.new(name: 'UpdateJobFromSourceControlRequest')
996
+ UpdateJobFromSourceControlResponse = Shapes::StructureShape.new(name: 'UpdateJobFromSourceControlResponse')
990
997
  UpdateJobRequest = Shapes::StructureShape.new(name: 'UpdateJobRequest')
991
998
  UpdateJobResponse = Shapes::StructureShape.new(name: 'UpdateJobResponse')
992
999
  UpdateJsonClassifierRequest = Shapes::StructureShape.new(name: 'UpdateJsonClassifierRequest')
@@ -998,6 +1005,8 @@ module Aws::Glue
998
1005
  UpdateRegistryResponse = Shapes::StructureShape.new(name: 'UpdateRegistryResponse')
999
1006
  UpdateSchemaInput = Shapes::StructureShape.new(name: 'UpdateSchemaInput')
1000
1007
  UpdateSchemaResponse = Shapes::StructureShape.new(name: 'UpdateSchemaResponse')
1008
+ UpdateSourceControlFromJobRequest = Shapes::StructureShape.new(name: 'UpdateSourceControlFromJobRequest')
1009
+ UpdateSourceControlFromJobResponse = Shapes::StructureShape.new(name: 'UpdateSourceControlFromJobResponse')
1001
1010
  UpdateTableRequest = Shapes::StructureShape.new(name: 'UpdateTableRequest')
1002
1011
  UpdateTableResponse = Shapes::StructureShape.new(name: 'UpdateTableResponse')
1003
1012
  UpdateTriggerRequest = Shapes::StructureShape.new(name: 'UpdateTriggerRequest')
@@ -1802,6 +1811,7 @@ module Aws::Glue
1802
1811
  CreateJobRequest.add_member(:worker_type, Shapes::ShapeRef.new(shape: WorkerType, location_name: "WorkerType"))
1803
1812
  CreateJobRequest.add_member(:code_gen_configuration_nodes, Shapes::ShapeRef.new(shape: CodeGenConfigurationNodes, location_name: "CodeGenConfigurationNodes"))
1804
1813
  CreateJobRequest.add_member(:execution_class, Shapes::ShapeRef.new(shape: ExecutionClass, location_name: "ExecutionClass"))
1814
+ CreateJobRequest.add_member(:source_control_details, Shapes::ShapeRef.new(shape: SourceControlDetails, location_name: "SourceControlDetails"))
1805
1815
  CreateJobRequest.struct_class = Types::CreateJobRequest
1806
1816
 
1807
1817
  CreateJobResponse.add_member(:name, Shapes::ShapeRef.new(shape: NameString, location_name: "Name"))
@@ -3137,6 +3147,7 @@ module Aws::Glue
3137
3147
  Job.add_member(:glue_version, Shapes::ShapeRef.new(shape: GlueVersionString, location_name: "GlueVersion"))
3138
3148
  Job.add_member(:code_gen_configuration_nodes, Shapes::ShapeRef.new(shape: CodeGenConfigurationNodes, location_name: "CodeGenConfigurationNodes"))
3139
3149
  Job.add_member(:execution_class, Shapes::ShapeRef.new(shape: ExecutionClass, location_name: "ExecutionClass"))
3150
+ Job.add_member(:source_control_details, Shapes::ShapeRef.new(shape: SourceControlDetails, location_name: "SourceControlDetails"))
3140
3151
  Job.struct_class = Types::Job
3141
3152
 
3142
3153
  JobBookmarkEntry.add_member(:job_name, Shapes::ShapeRef.new(shape: JobName, location_name: "JobName"))
@@ -3211,6 +3222,7 @@ module Aws::Glue
3211
3222
  JobUpdate.add_member(:glue_version, Shapes::ShapeRef.new(shape: GlueVersionString, location_name: "GlueVersion"))
3212
3223
  JobUpdate.add_member(:code_gen_configuration_nodes, Shapes::ShapeRef.new(shape: CodeGenConfigurationNodes, location_name: "CodeGenConfigurationNodes"))
3213
3224
  JobUpdate.add_member(:execution_class, Shapes::ShapeRef.new(shape: ExecutionClass, location_name: "ExecutionClass"))
3225
+ JobUpdate.add_member(:source_control_details, Shapes::ShapeRef.new(shape: SourceControlDetails, location_name: "SourceControlDetails"))
3214
3226
  JobUpdate.struct_class = Types::JobUpdate
3215
3227
 
3216
3228
  Join.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
@@ -4127,6 +4139,16 @@ module Aws::Glue
4127
4139
  SortCriterion.add_member(:sort, Shapes::ShapeRef.new(shape: Sort, location_name: "Sort"))
4128
4140
  SortCriterion.struct_class = Types::SortCriterion
4129
4141
 
4142
+ SourceControlDetails.add_member(:provider, Shapes::ShapeRef.new(shape: SourceControlProvider, location_name: "Provider"))
4143
+ SourceControlDetails.add_member(:repository, Shapes::ShapeRef.new(shape: Generic512CharString, location_name: "Repository"))
4144
+ SourceControlDetails.add_member(:owner, Shapes::ShapeRef.new(shape: Generic512CharString, location_name: "Owner"))
4145
+ SourceControlDetails.add_member(:branch, Shapes::ShapeRef.new(shape: Generic512CharString, location_name: "Branch"))
4146
+ SourceControlDetails.add_member(:folder, Shapes::ShapeRef.new(shape: Generic512CharString, location_name: "Folder"))
4147
+ SourceControlDetails.add_member(:last_commit_id, Shapes::ShapeRef.new(shape: Generic512CharString, location_name: "LastCommitId"))
4148
+ SourceControlDetails.add_member(:auth_strategy, Shapes::ShapeRef.new(shape: SourceControlAuthStrategy, location_name: "AuthStrategy"))
4149
+ SourceControlDetails.add_member(:auth_token, Shapes::ShapeRef.new(shape: Generic512CharString, location_name: "AuthToken"))
4150
+ SourceControlDetails.struct_class = Types::SourceControlDetails
4151
+
4130
4152
  SparkConnectorSource.add_member(:name, Shapes::ShapeRef.new(shape: NodeName, required: true, location_name: "Name"))
4131
4153
  SparkConnectorSource.add_member(:connection_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "ConnectionName"))
4132
4154
  SparkConnectorSource.add_member(:connector_name, Shapes::ShapeRef.new(shape: EnclosedInStringProperty, required: true, location_name: "ConnectorName"))
@@ -4608,6 +4630,20 @@ module Aws::Glue
4608
4630
  UpdateGrokClassifierRequest.add_member(:custom_patterns, Shapes::ShapeRef.new(shape: CustomPatterns, location_name: "CustomPatterns"))
4609
4631
  UpdateGrokClassifierRequest.struct_class = Types::UpdateGrokClassifierRequest
4610
4632
 
4633
+ UpdateJobFromSourceControlRequest.add_member(:job_name, Shapes::ShapeRef.new(shape: NameString, location_name: "JobName"))
4634
+ UpdateJobFromSourceControlRequest.add_member(:provider, Shapes::ShapeRef.new(shape: SourceControlProvider, location_name: "Provider"))
4635
+ UpdateJobFromSourceControlRequest.add_member(:repository_name, Shapes::ShapeRef.new(shape: NameString, location_name: "RepositoryName"))
4636
+ UpdateJobFromSourceControlRequest.add_member(:repository_owner, Shapes::ShapeRef.new(shape: NameString, location_name: "RepositoryOwner"))
4637
+ UpdateJobFromSourceControlRequest.add_member(:branch_name, Shapes::ShapeRef.new(shape: NameString, location_name: "BranchName"))
4638
+ UpdateJobFromSourceControlRequest.add_member(:folder, Shapes::ShapeRef.new(shape: NameString, location_name: "Folder"))
4639
+ UpdateJobFromSourceControlRequest.add_member(:commit_id, Shapes::ShapeRef.new(shape: CommitIdString, location_name: "CommitId"))
4640
+ UpdateJobFromSourceControlRequest.add_member(:auth_strategy, Shapes::ShapeRef.new(shape: SourceControlAuthStrategy, location_name: "AuthStrategy"))
4641
+ UpdateJobFromSourceControlRequest.add_member(:auth_token, Shapes::ShapeRef.new(shape: AuthTokenString, location_name: "AuthToken"))
4642
+ UpdateJobFromSourceControlRequest.struct_class = Types::UpdateJobFromSourceControlRequest
4643
+
4644
+ UpdateJobFromSourceControlResponse.add_member(:job_name, Shapes::ShapeRef.new(shape: NameString, location_name: "JobName"))
4645
+ UpdateJobFromSourceControlResponse.struct_class = Types::UpdateJobFromSourceControlResponse
4646
+
4611
4647
  UpdateJobRequest.add_member(:job_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "JobName"))
4612
4648
  UpdateJobRequest.add_member(:job_update, Shapes::ShapeRef.new(shape: JobUpdate, required: true, location_name: "JobUpdate"))
4613
4649
  UpdateJobRequest.struct_class = Types::UpdateJobRequest
@@ -4663,6 +4699,20 @@ module Aws::Glue
4663
4699
  UpdateSchemaResponse.add_member(:registry_name, Shapes::ShapeRef.new(shape: SchemaRegistryNameString, location_name: "RegistryName"))
4664
4700
  UpdateSchemaResponse.struct_class = Types::UpdateSchemaResponse
4665
4701
 
4702
+ UpdateSourceControlFromJobRequest.add_member(:job_name, Shapes::ShapeRef.new(shape: NameString, location_name: "JobName"))
4703
+ UpdateSourceControlFromJobRequest.add_member(:provider, Shapes::ShapeRef.new(shape: SourceControlProvider, location_name: "Provider"))
4704
+ UpdateSourceControlFromJobRequest.add_member(:repository_name, Shapes::ShapeRef.new(shape: NameString, location_name: "RepositoryName"))
4705
+ UpdateSourceControlFromJobRequest.add_member(:repository_owner, Shapes::ShapeRef.new(shape: NameString, location_name: "RepositoryOwner"))
4706
+ UpdateSourceControlFromJobRequest.add_member(:branch_name, Shapes::ShapeRef.new(shape: NameString, location_name: "BranchName"))
4707
+ UpdateSourceControlFromJobRequest.add_member(:folder, Shapes::ShapeRef.new(shape: NameString, location_name: "Folder"))
4708
+ UpdateSourceControlFromJobRequest.add_member(:commit_id, Shapes::ShapeRef.new(shape: CommitIdString, location_name: "CommitId"))
4709
+ UpdateSourceControlFromJobRequest.add_member(:auth_strategy, Shapes::ShapeRef.new(shape: SourceControlAuthStrategy, location_name: "AuthStrategy"))
4710
+ UpdateSourceControlFromJobRequest.add_member(:auth_token, Shapes::ShapeRef.new(shape: AuthTokenString, location_name: "AuthToken"))
4711
+ UpdateSourceControlFromJobRequest.struct_class = Types::UpdateSourceControlFromJobRequest
4712
+
4713
+ UpdateSourceControlFromJobResponse.add_member(:job_name, Shapes::ShapeRef.new(shape: NameString, location_name: "JobName"))
4714
+ UpdateSourceControlFromJobResponse.struct_class = Types::UpdateSourceControlFromJobResponse
4715
+
4666
4716
  UpdateTableRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
4667
4717
  UpdateTableRequest.add_member(:database_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "DatabaseName"))
4668
4718
  UpdateTableRequest.add_member(:table_input, Shapes::ShapeRef.new(shape: TableInput, required: true, location_name: "TableInput"))
@@ -7207,6 +7257,21 @@ module Aws::Glue
7207
7257
  o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
7208
7258
  end)
7209
7259
 
7260
+ api.add_operation(:update_job_from_source_control, Seahorse::Model::Operation.new.tap do |o|
7261
+ o.name = "UpdateJobFromSourceControl"
7262
+ o.http_method = "POST"
7263
+ o.http_request_uri = "/"
7264
+ o.input = Shapes::ShapeRef.new(shape: UpdateJobFromSourceControlRequest)
7265
+ o.output = Shapes::ShapeRef.new(shape: UpdateJobFromSourceControlResponse)
7266
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
7267
+ o.errors << Shapes::ShapeRef.new(shape: AlreadyExistsException)
7268
+ o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
7269
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
7270
+ o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
7271
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
7272
+ o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
7273
+ end)
7274
+
7210
7275
  api.add_operation(:update_ml_transform, Seahorse::Model::Operation.new.tap do |o|
7211
7276
  o.name = "UpdateMLTransform"
7212
7277
  o.http_method = "POST"
@@ -7259,6 +7324,21 @@ module Aws::Glue
7259
7324
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
7260
7325
  end)
7261
7326
 
7327
+ api.add_operation(:update_source_control_from_job, Seahorse::Model::Operation.new.tap do |o|
7328
+ o.name = "UpdateSourceControlFromJob"
7329
+ o.http_method = "POST"
7330
+ o.http_request_uri = "/"
7331
+ o.input = Shapes::ShapeRef.new(shape: UpdateSourceControlFromJobRequest)
7332
+ o.output = Shapes::ShapeRef.new(shape: UpdateSourceControlFromJobResponse)
7333
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
7334
+ o.errors << Shapes::ShapeRef.new(shape: AlreadyExistsException)
7335
+ o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
7336
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
7337
+ o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
7338
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
7339
+ o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
7340
+ end)
7341
+
7262
7342
  api.add_operation(:update_table, Seahorse::Model::Operation.new.tap do |o|
7263
7343
  o.name = "UpdateTable"
7264
7344
  o.http_method = "POST"
@@ -6108,6 +6108,16 @@ module Aws::Glue
6108
6108
  # },
6109
6109
  # },
6110
6110
  # execution_class: "FLEX", # accepts FLEX, STANDARD
6111
+ # source_control_details: {
6112
+ # provider: "GITHUB", # accepts GITHUB, AWS_CODE_COMMIT
6113
+ # repository: "Generic512CharString",
6114
+ # owner: "Generic512CharString",
6115
+ # branch: "Generic512CharString",
6116
+ # folder: "Generic512CharString",
6117
+ # last_commit_id: "Generic512CharString",
6118
+ # auth_strategy: "PERSONAL_ACCESS_TOKEN", # accepts PERSONAL_ACCESS_TOKEN, AWS_SECRETS_MANAGER
6119
+ # auth_token: "Generic512CharString",
6120
+ # },
6111
6121
  # }
6112
6122
  #
6113
6123
  # @!attribute [rw] name
@@ -6310,6 +6320,11 @@ module Aws::Glue
6310
6320
  # execution class is available for Spark jobs.
6311
6321
  # @return [String]
6312
6322
  #
6323
+ # @!attribute [rw] source_control_details
6324
+ # The details for a source control configuration for a job, allowing
6325
+ # synchronization of job artifacts to or from a remote repository.
6326
+ # @return [Types::SourceControlDetails]
6327
+ #
6313
6328
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateJobRequest AWS API Documentation
6314
6329
  #
6315
6330
  class CreateJobRequest < Struct.new(
@@ -6333,7 +6348,8 @@ module Aws::Glue
6333
6348
  :number_of_workers,
6334
6349
  :worker_type,
6335
6350
  :code_gen_configuration_nodes,
6336
- :execution_class)
6351
+ :execution_class,
6352
+ :source_control_details)
6337
6353
  SENSITIVE = [:code_gen_configuration_nodes]
6338
6354
  include Aws::Structure
6339
6355
  end
@@ -14800,6 +14816,11 @@ module Aws::Glue
14800
14816
  # execution class is available for Spark jobs.
14801
14817
  # @return [String]
14802
14818
  #
14819
+ # @!attribute [rw] source_control_details
14820
+ # The details for a source control configuration for a job, allowing
14821
+ # synchronization of job artifacts to or from a remote repository.
14822
+ # @return [Types::SourceControlDetails]
14823
+ #
14803
14824
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/Job AWS API Documentation
14804
14825
  #
14805
14826
  class Job < Struct.new(
@@ -14824,7 +14845,8 @@ module Aws::Glue
14824
14845
  :notification_property,
14825
14846
  :glue_version,
14826
14847
  :code_gen_configuration_nodes,
14827
- :execution_class)
14848
+ :execution_class,
14849
+ :source_control_details)
14828
14850
  SENSITIVE = [:code_gen_configuration_nodes]
14829
14851
  include Aws::Structure
14830
14852
  end
@@ -15905,6 +15927,16 @@ module Aws::Glue
15905
15927
  # },
15906
15928
  # },
15907
15929
  # execution_class: "FLEX", # accepts FLEX, STANDARD
15930
+ # source_control_details: {
15931
+ # provider: "GITHUB", # accepts GITHUB, AWS_CODE_COMMIT
15932
+ # repository: "Generic512CharString",
15933
+ # owner: "Generic512CharString",
15934
+ # branch: "Generic512CharString",
15935
+ # folder: "Generic512CharString",
15936
+ # last_commit_id: "Generic512CharString",
15937
+ # auth_strategy: "PERSONAL_ACCESS_TOKEN", # accepts PERSONAL_ACCESS_TOKEN, AWS_SECRETS_MANAGER
15938
+ # auth_token: "Generic512CharString",
15939
+ # },
15908
15940
  # }
15909
15941
  #
15910
15942
  # @!attribute [rw] description
@@ -16084,6 +16116,11 @@ module Aws::Glue
16084
16116
  # execution class is available for Spark jobs.
16085
16117
  # @return [String]
16086
16118
  #
16119
+ # @!attribute [rw] source_control_details
16120
+ # The details for a source control configuration for a job, allowing
16121
+ # synchronization of job artifacts to or from a remote repository.
16122
+ # @return [Types::SourceControlDetails]
16123
+ #
16087
16124
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/JobUpdate AWS API Documentation
16088
16125
  #
16089
16126
  class JobUpdate < Struct.new(
@@ -16105,7 +16142,8 @@ module Aws::Glue
16105
16142
  :notification_property,
16106
16143
  :glue_version,
16107
16144
  :code_gen_configuration_nodes,
16108
- :execution_class)
16145
+ :execution_class,
16146
+ :source_control_details)
16109
16147
  SENSITIVE = [:code_gen_configuration_nodes]
16110
16148
  include Aws::Structure
16111
16149
  end
@@ -21585,6 +21623,72 @@ module Aws::Glue
21585
21623
  include Aws::Structure
21586
21624
  end
21587
21625
 
21626
+ # The details for a source control configuration for a job, allowing
21627
+ # synchronization of job artifacts to or from a remote repository.
21628
+ #
21629
+ # @note When making an API call, you may pass SourceControlDetails
21630
+ # data as a hash:
21631
+ #
21632
+ # {
21633
+ # provider: "GITHUB", # accepts GITHUB, AWS_CODE_COMMIT
21634
+ # repository: "Generic512CharString",
21635
+ # owner: "Generic512CharString",
21636
+ # branch: "Generic512CharString",
21637
+ # folder: "Generic512CharString",
21638
+ # last_commit_id: "Generic512CharString",
21639
+ # auth_strategy: "PERSONAL_ACCESS_TOKEN", # accepts PERSONAL_ACCESS_TOKEN, AWS_SECRETS_MANAGER
21640
+ # auth_token: "Generic512CharString",
21641
+ # }
21642
+ #
21643
+ # @!attribute [rw] provider
21644
+ # The provider for the remote repository.
21645
+ # @return [String]
21646
+ #
21647
+ # @!attribute [rw] repository
21648
+ # The name of the remote repository that contains the job artifacts.
21649
+ # @return [String]
21650
+ #
21651
+ # @!attribute [rw] owner
21652
+ # The owner of the remote repository that contains the job artifacts.
21653
+ # @return [String]
21654
+ #
21655
+ # @!attribute [rw] branch
21656
+ # An optional branch in the remote repository.
21657
+ # @return [String]
21658
+ #
21659
+ # @!attribute [rw] folder
21660
+ # An optional folder in the remote repository.
21661
+ # @return [String]
21662
+ #
21663
+ # @!attribute [rw] last_commit_id
21664
+ # The last commit ID for a commit in the remote repository.
21665
+ # @return [String]
21666
+ #
21667
+ # @!attribute [rw] auth_strategy
21668
+ # The type of authentication, which can be an authentication token
21669
+ # stored in Amazon Web Services Secrets Manager, or a personal access
21670
+ # token.
21671
+ # @return [String]
21672
+ #
21673
+ # @!attribute [rw] auth_token
21674
+ # The value of an authorization token.
21675
+ # @return [String]
21676
+ #
21677
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/SourceControlDetails AWS API Documentation
21678
+ #
21679
+ class SourceControlDetails < Struct.new(
21680
+ :provider,
21681
+ :repository,
21682
+ :owner,
21683
+ :branch,
21684
+ :folder,
21685
+ :last_commit_id,
21686
+ :auth_strategy,
21687
+ :auth_token)
21688
+ SENSITIVE = []
21689
+ include Aws::Structure
21690
+ end
21691
+
21588
21692
  # Specifies a connector to an Apache Spark data source.
21589
21693
  #
21590
21694
  # @note When making an API call, you may pass SparkConnectorSource
@@ -24753,6 +24857,88 @@ module Aws::Glue
24753
24857
  include Aws::Structure
24754
24858
  end
24755
24859
 
24860
+ # @note When making an API call, you may pass UpdateJobFromSourceControlRequest
24861
+ # data as a hash:
24862
+ #
24863
+ # {
24864
+ # job_name: "NameString",
24865
+ # provider: "GITHUB", # accepts GITHUB, AWS_CODE_COMMIT
24866
+ # repository_name: "NameString",
24867
+ # repository_owner: "NameString",
24868
+ # branch_name: "NameString",
24869
+ # folder: "NameString",
24870
+ # commit_id: "CommitIdString",
24871
+ # auth_strategy: "PERSONAL_ACCESS_TOKEN", # accepts PERSONAL_ACCESS_TOKEN, AWS_SECRETS_MANAGER
24872
+ # auth_token: "AuthTokenString",
24873
+ # }
24874
+ #
24875
+ # @!attribute [rw] job_name
24876
+ # The name of the Glue job to be synchronized to or from the remote
24877
+ # repository.
24878
+ # @return [String]
24879
+ #
24880
+ # @!attribute [rw] provider
24881
+ # The provider for the remote repository.
24882
+ # @return [String]
24883
+ #
24884
+ # @!attribute [rw] repository_name
24885
+ # The name of the remote repository that contains the job artifacts.
24886
+ # @return [String]
24887
+ #
24888
+ # @!attribute [rw] repository_owner
24889
+ # The owner of the remote repository that contains the job artifacts.
24890
+ # @return [String]
24891
+ #
24892
+ # @!attribute [rw] branch_name
24893
+ # An optional branch in the remote repository.
24894
+ # @return [String]
24895
+ #
24896
+ # @!attribute [rw] folder
24897
+ # An optional folder in the remote repository.
24898
+ # @return [String]
24899
+ #
24900
+ # @!attribute [rw] commit_id
24901
+ # A commit ID for a commit in the remote repository.
24902
+ # @return [String]
24903
+ #
24904
+ # @!attribute [rw] auth_strategy
24905
+ # The type of authentication, which can be an authentication token
24906
+ # stored in Amazon Web Services Secrets Manager, or a personal access
24907
+ # token.
24908
+ # @return [String]
24909
+ #
24910
+ # @!attribute [rw] auth_token
24911
+ # The value of the authorization token.
24912
+ # @return [String]
24913
+ #
24914
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateJobFromSourceControlRequest AWS API Documentation
24915
+ #
24916
+ class UpdateJobFromSourceControlRequest < Struct.new(
24917
+ :job_name,
24918
+ :provider,
24919
+ :repository_name,
24920
+ :repository_owner,
24921
+ :branch_name,
24922
+ :folder,
24923
+ :commit_id,
24924
+ :auth_strategy,
24925
+ :auth_token)
24926
+ SENSITIVE = []
24927
+ include Aws::Structure
24928
+ end
24929
+
24930
+ # @!attribute [rw] job_name
24931
+ # The name of the Glue job.
24932
+ # @return [String]
24933
+ #
24934
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateJobFromSourceControlResponse AWS API Documentation
24935
+ #
24936
+ class UpdateJobFromSourceControlResponse < Struct.new(
24937
+ :job_name)
24938
+ SENSITIVE = []
24939
+ include Aws::Structure
24940
+ end
24941
+
24756
24942
  # @note When making an API call, you may pass UpdateJobRequest
24757
24943
  # data as a hash:
24758
24944
  #
@@ -25459,6 +25645,16 @@ module Aws::Glue
25459
25645
  # },
25460
25646
  # },
25461
25647
  # execution_class: "FLEX", # accepts FLEX, STANDARD
25648
+ # source_control_details: {
25649
+ # provider: "GITHUB", # accepts GITHUB, AWS_CODE_COMMIT
25650
+ # repository: "Generic512CharString",
25651
+ # owner: "Generic512CharString",
25652
+ # branch: "Generic512CharString",
25653
+ # folder: "Generic512CharString",
25654
+ # last_commit_id: "Generic512CharString",
25655
+ # auth_strategy: "PERSONAL_ACCESS_TOKEN", # accepts PERSONAL_ACCESS_TOKEN, AWS_SECRETS_MANAGER
25656
+ # auth_token: "Generic512CharString",
25657
+ # },
25462
25658
  # },
25463
25659
  # }
25464
25660
  #
@@ -25896,6 +26092,88 @@ module Aws::Glue
25896
26092
  include Aws::Structure
25897
26093
  end
25898
26094
 
26095
+ # @note When making an API call, you may pass UpdateSourceControlFromJobRequest
26096
+ # data as a hash:
26097
+ #
26098
+ # {
26099
+ # job_name: "NameString",
26100
+ # provider: "GITHUB", # accepts GITHUB, AWS_CODE_COMMIT
26101
+ # repository_name: "NameString",
26102
+ # repository_owner: "NameString",
26103
+ # branch_name: "NameString",
26104
+ # folder: "NameString",
26105
+ # commit_id: "CommitIdString",
26106
+ # auth_strategy: "PERSONAL_ACCESS_TOKEN", # accepts PERSONAL_ACCESS_TOKEN, AWS_SECRETS_MANAGER
26107
+ # auth_token: "AuthTokenString",
26108
+ # }
26109
+ #
26110
+ # @!attribute [rw] job_name
26111
+ # The name of the Glue job to be synchronized to or from the remote
26112
+ # repository.
26113
+ # @return [String]
26114
+ #
26115
+ # @!attribute [rw] provider
26116
+ # The provider for the remote repository.
26117
+ # @return [String]
26118
+ #
26119
+ # @!attribute [rw] repository_name
26120
+ # The name of the remote repository that contains the job artifacts.
26121
+ # @return [String]
26122
+ #
26123
+ # @!attribute [rw] repository_owner
26124
+ # The owner of the remote repository that contains the job artifacts.
26125
+ # @return [String]
26126
+ #
26127
+ # @!attribute [rw] branch_name
26128
+ # An optional branch in the remote repository.
26129
+ # @return [String]
26130
+ #
26131
+ # @!attribute [rw] folder
26132
+ # An optional folder in the remote repository.
26133
+ # @return [String]
26134
+ #
26135
+ # @!attribute [rw] commit_id
26136
+ # A commit ID for a commit in the remote repository.
26137
+ # @return [String]
26138
+ #
26139
+ # @!attribute [rw] auth_strategy
26140
+ # The type of authentication, which can be an authentication token
26141
+ # stored in Amazon Web Services Secrets Manager, or a personal access
26142
+ # token.
26143
+ # @return [String]
26144
+ #
26145
+ # @!attribute [rw] auth_token
26146
+ # The value of the authorization token.
26147
+ # @return [String]
26148
+ #
26149
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateSourceControlFromJobRequest AWS API Documentation
26150
+ #
26151
+ class UpdateSourceControlFromJobRequest < Struct.new(
26152
+ :job_name,
26153
+ :provider,
26154
+ :repository_name,
26155
+ :repository_owner,
26156
+ :branch_name,
26157
+ :folder,
26158
+ :commit_id,
26159
+ :auth_strategy,
26160
+ :auth_token)
26161
+ SENSITIVE = []
26162
+ include Aws::Structure
26163
+ end
26164
+
26165
+ # @!attribute [rw] job_name
26166
+ # The name of the Glue job.
26167
+ # @return [String]
26168
+ #
26169
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/UpdateSourceControlFromJobResponse AWS API Documentation
26170
+ #
26171
+ class UpdateSourceControlFromJobResponse < Struct.new(
26172
+ :job_name)
26173
+ SENSITIVE = []
26174
+ include Aws::Structure
26175
+ end
26176
+
25899
26177
  # @note When making an API call, you may pass UpdateTableRequest
25900
26178
  # data as a hash:
25901
26179
  #
data/lib/aws-sdk-glue.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-glue/customizations'
48
48
  # @!group service
49
49
  module Aws::Glue
50
50
 
51
- GEM_VERSION = '1.119.0'
51
+ GEM_VERSION = '1.120.0'
52
52
 
53
53
  end
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.119.0
4
+ version: 1.120.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: 2022-09-22 00:00:00.000000000 Z
11
+ date: 2022-10-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core