aws-sdk-glue 1.155.0 → 1.157.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: 2c504b1b780e8563cbc6e3105e3c14062f5ce2bbec7562738c1008472d5a6d28
4
- data.tar.gz: 2b01bf74eb41377f3fac7477ac545909f771c241416ece55a1d37c14eb774e8a
3
+ metadata.gz: 3e9afddd58805135d642805778584cbeaff5b939015bc88ac02728727275e634
4
+ data.tar.gz: '08a141cee013f2559f68ca54c1635bba230e7adedfcc6cb2a4285234db6f9444'
5
5
  SHA512:
6
- metadata.gz: 1f2b810d0a565404ae0c68f0f9c6d166376da1cddc5a7a9d6919460c783b8b05d6dbb291cd14293af4f92a84a4f1ac75d7134bb3a5c56ea824da6f6e0782ac83
7
- data.tar.gz: adf8c2d6bbd7fe657c055658db99a1154311a648f6e041b9cd4219a9e682fb13ef94a18c68fc1bba8deac33f254df2b4734ed29fed35f8cef85b7a9659d125b3
6
+ metadata.gz: 0f6e464030d6c4e4b17598f5e0c57fac27ec13d05d7b5d6bb805f6ff5692e31d2ccdcb25ecca623d04606a9fb8b2732a44fb34a26866e2da954b20b66cb2b5d2
7
+ data.tar.gz: cd35cc66dba229ac7b473fc49464c2047381bde7c4ab70dd65486d89596c43ec5b58465a7288e7545f925a7ed3faaa9cac1cf87af9470c6f0ac4308494b0d64b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.157.0 (2023-10-12)
5
+ ------------------
6
+
7
+ * Feature - Extending version control support to GitLab and Bitbucket from AWSGlue
8
+
9
+ 1.156.0 (2023-09-27)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.155.0 (2023-08-24)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.155.0
1
+ 1.157.0
@@ -1907,7 +1907,7 @@ module Aws::Glue
1907
1907
  # resp.jobs[0].code_gen_configuration_nodes["NodeId"].snowflake_target.inputs #=> Array
1908
1908
  # resp.jobs[0].code_gen_configuration_nodes["NodeId"].snowflake_target.inputs[0] #=> String
1909
1909
  # resp.jobs[0].execution_class #=> String, one of "FLEX", "STANDARD"
1910
- # resp.jobs[0].source_control_details.provider #=> String, one of "GITHUB", "AWS_CODE_COMMIT"
1910
+ # resp.jobs[0].source_control_details.provider #=> String, one of "GITHUB", "GITLAB", "BITBUCKET", "AWS_CODE_COMMIT"
1911
1911
  # resp.jobs[0].source_control_details.repository #=> String
1912
1912
  # resp.jobs[0].source_control_details.owner #=> String
1913
1913
  # resp.jobs[0].source_control_details.branch #=> String
@@ -7855,7 +7855,7 @@ module Aws::Glue
7855
7855
  # resp.job.code_gen_configuration_nodes["NodeId"].snowflake_target.inputs #=> Array
7856
7856
  # resp.job.code_gen_configuration_nodes["NodeId"].snowflake_target.inputs[0] #=> String
7857
7857
  # resp.job.execution_class #=> String, one of "FLEX", "STANDARD"
7858
- # resp.job.source_control_details.provider #=> String, one of "GITHUB", "AWS_CODE_COMMIT"
7858
+ # resp.job.source_control_details.provider #=> String, one of "GITHUB", "GITLAB", "BITBUCKET", "AWS_CODE_COMMIT"
7859
7859
  # resp.job.source_control_details.repository #=> String
7860
7860
  # resp.job.source_control_details.owner #=> String
7861
7861
  # resp.job.source_control_details.branch #=> String
@@ -8938,7 +8938,7 @@ module Aws::Glue
8938
8938
  # resp.jobs[0].code_gen_configuration_nodes["NodeId"].snowflake_target.inputs #=> Array
8939
8939
  # resp.jobs[0].code_gen_configuration_nodes["NodeId"].snowflake_target.inputs[0] #=> String
8940
8940
  # resp.jobs[0].execution_class #=> String, one of "FLEX", "STANDARD"
8941
- # resp.jobs[0].source_control_details.provider #=> String, one of "GITHUB", "AWS_CODE_COMMIT"
8941
+ # resp.jobs[0].source_control_details.provider #=> String, one of "GITHUB", "GITLAB", "BITBUCKET", "AWS_CODE_COMMIT"
8942
8942
  # resp.jobs[0].source_control_details.repository #=> String
8943
8943
  # resp.jobs[0].source_control_details.owner #=> String
8944
8944
  # resp.jobs[0].source_control_details.branch #=> String
@@ -15521,10 +15521,13 @@ module Aws::Glue
15521
15521
  # repository.
15522
15522
  #
15523
15523
  # @option params [String] :provider
15524
- # The provider for the remote repository.
15524
+ # The provider for the remote repository. Possible values: GITHUB,
15525
+ # AWS\_CODE\_COMMIT, GITLAB, BITBUCKET.
15525
15526
  #
15526
15527
  # @option params [String] :repository_name
15527
- # The name of the remote repository that contains the job artifacts.
15528
+ # The name of the remote repository that contains the job artifacts. For
15529
+ # BitBucket providers, `RepositoryName` should include `WorkspaceName`.
15530
+ # Use the format `<WorkspaceName>/<RepositoryName>`.
15528
15531
  #
15529
15532
  # @option params [String] :repository_owner
15530
15533
  # The owner of the remote repository that contains the job artifacts.
@@ -15554,7 +15557,7 @@ module Aws::Glue
15554
15557
  #
15555
15558
  # resp = client.update_job_from_source_control({
15556
15559
  # job_name: "NameString",
15557
- # provider: "GITHUB", # accepts GITHUB, AWS_CODE_COMMIT
15560
+ # provider: "GITHUB", # accepts GITHUB, GITLAB, BITBUCKET, AWS_CODE_COMMIT
15558
15561
  # repository_name: "NameString",
15559
15562
  # repository_owner: "NameString",
15560
15563
  # branch_name: "NameString",
@@ -15924,10 +15927,13 @@ module Aws::Glue
15924
15927
  # repository.
15925
15928
  #
15926
15929
  # @option params [String] :provider
15927
- # The provider for the remote repository.
15930
+ # The provider for the remote repository. Possible values: GITHUB,
15931
+ # AWS\_CODE\_COMMIT, GITLAB, BITBUCKET.
15928
15932
  #
15929
15933
  # @option params [String] :repository_name
15930
- # The name of the remote repository that contains the job artifacts.
15934
+ # The name of the remote repository that contains the job artifacts. For
15935
+ # BitBucket providers, `RepositoryName` should include `WorkspaceName`.
15936
+ # Use the format `<WorkspaceName>/<RepositoryName>`.
15931
15937
  #
15932
15938
  # @option params [String] :repository_owner
15933
15939
  # The owner of the remote repository that contains the job artifacts.
@@ -15957,7 +15963,7 @@ module Aws::Glue
15957
15963
  #
15958
15964
  # resp = client.update_source_control_from_job({
15959
15965
  # job_name: "NameString",
15960
- # provider: "GITHUB", # accepts GITHUB, AWS_CODE_COMMIT
15966
+ # provider: "GITHUB", # accepts GITHUB, GITLAB, BITBUCKET, AWS_CODE_COMMIT
15961
15967
  # repository_name: "NameString",
15962
15968
  # repository_owner: "NameString",
15963
15969
  # branch_name: "NameString",
@@ -16306,7 +16312,7 @@ module Aws::Glue
16306
16312
  params: params,
16307
16313
  config: config)
16308
16314
  context[:gem_name] = 'aws-sdk-glue'
16309
- context[:gem_version] = '1.155.0'
16315
+ context[:gem_version] = '1.157.0'
16310
16316
  Seahorse::Client::Request.new(handlers, context)
16311
16317
  end
16312
16318
 
@@ -21126,11 +21126,14 @@ module Aws::Glue
21126
21126
  # @return [String]
21127
21127
  #
21128
21128
  # @!attribute [rw] provider
21129
- # The provider for the remote repository.
21129
+ # The provider for the remote repository. Possible values: GITHUB,
21130
+ # AWS\_CODE\_COMMIT, GITLAB, BITBUCKET.
21130
21131
  # @return [String]
21131
21132
  #
21132
21133
  # @!attribute [rw] repository_name
21133
21134
  # The name of the remote repository that contains the job artifacts.
21135
+ # For BitBucket providers, `RepositoryName` should include
21136
+ # `WorkspaceName`. Use the format `<WorkspaceName>/<RepositoryName>`.
21134
21137
  # @return [String]
21135
21138
  #
21136
21139
  # @!attribute [rw] repository_owner
@@ -21496,11 +21499,14 @@ module Aws::Glue
21496
21499
  # @return [String]
21497
21500
  #
21498
21501
  # @!attribute [rw] provider
21499
- # The provider for the remote repository.
21502
+ # The provider for the remote repository. Possible values: GITHUB,
21503
+ # AWS\_CODE\_COMMIT, GITLAB, BITBUCKET.
21500
21504
  # @return [String]
21501
21505
  #
21502
21506
  # @!attribute [rw] repository_name
21503
21507
  # The name of the remote repository that contains the job artifacts.
21508
+ # For BitBucket providers, `RepositoryName` should include
21509
+ # `WorkspaceName`. Use the format `<WorkspaceName>/<RepositoryName>`.
21504
21510
  # @return [String]
21505
21511
  #
21506
21512
  # @!attribute [rw] repository_owner
data/lib/aws-sdk-glue.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-glue/customizations'
52
52
  # @!group service
53
53
  module Aws::Glue
54
54
 
55
- GEM_VERSION = '1.155.0'
55
+ GEM_VERSION = '1.157.0'
56
56
 
57
57
  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.155.0
4
+ version: 1.157.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: 2023-08-24 00:00:00.000000000 Z
11
+ date: 2023-10-12 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.177.0
22
+ version: 3.184.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.177.0
32
+ version: 3.184.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement