aws-sdk-glue 1.119.0 → 1.121.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +204 -3
- data/lib/aws-sdk-glue/client_api.rb +80 -0
- data/lib/aws-sdk-glue/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-glue/endpoint_provider.rb +111 -0
- data/lib/aws-sdk-glue/endpoints.rb +2619 -0
- data/lib/aws-sdk-glue/plugins/endpoints.rb +440 -0
- data/lib/aws-sdk-glue/types.rb +281 -3
- data/lib/aws-sdk-glue.rb +5 -1
- metadata +8 -4
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -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
@@ -13,9 +13,13 @@ require 'aws-sigv4'
|
|
13
13
|
|
14
14
|
require_relative 'aws-sdk-glue/types'
|
15
15
|
require_relative 'aws-sdk-glue/client_api'
|
16
|
+
require_relative 'aws-sdk-glue/plugins/endpoints.rb'
|
16
17
|
require_relative 'aws-sdk-glue/client'
|
17
18
|
require_relative 'aws-sdk-glue/errors'
|
18
19
|
require_relative 'aws-sdk-glue/resource'
|
20
|
+
require_relative 'aws-sdk-glue/endpoint_parameters'
|
21
|
+
require_relative 'aws-sdk-glue/endpoint_provider'
|
22
|
+
require_relative 'aws-sdk-glue/endpoints'
|
19
23
|
require_relative 'aws-sdk-glue/customizations'
|
20
24
|
|
21
25
|
# This module provides support for AWS Glue. This module is available in the
|
@@ -48,6 +52,6 @@ require_relative 'aws-sdk-glue/customizations'
|
|
48
52
|
# @!group service
|
49
53
|
module Aws::Glue
|
50
54
|
|
51
|
-
GEM_VERSION = '1.
|
55
|
+
GEM_VERSION = '1.121.0'
|
52
56
|
|
53
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.
|
4
|
+
version: 1.121.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-
|
11
|
+
date: 2022-10-25 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.165.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.165.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -59,7 +59,11 @@ files:
|
|
59
59
|
- lib/aws-sdk-glue/client.rb
|
60
60
|
- lib/aws-sdk-glue/client_api.rb
|
61
61
|
- lib/aws-sdk-glue/customizations.rb
|
62
|
+
- lib/aws-sdk-glue/endpoint_parameters.rb
|
63
|
+
- lib/aws-sdk-glue/endpoint_provider.rb
|
64
|
+
- lib/aws-sdk-glue/endpoints.rb
|
62
65
|
- lib/aws-sdk-glue/errors.rb
|
66
|
+
- lib/aws-sdk-glue/plugins/endpoints.rb
|
63
67
|
- lib/aws-sdk-glue/resource.rb
|
64
68
|
- lib/aws-sdk-glue/types.rb
|
65
69
|
homepage: https://github.com/aws/aws-sdk-ruby
|