aws-sdk-glue 1.72.0 → 1.73.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-glue.rb +1 -1
- data/lib/aws-sdk-glue/client.rb +7 -1
- data/lib/aws-sdk-glue/client_api.rb +5 -0
- data/lib/aws-sdk-glue/types.rb +9 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 87c98ccaaa672b7ffcafd8f0aef8e974467b381ce962b2d224919929cfde8478
|
4
|
+
data.tar.gz: d58c36d45e8dcf0eac874a70c86e717ef5b3763983bd5e5c13c8e2db71076682
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a01532e74ab4f4a0e7e56486eaccee84d5947e40f26c1802bad6130332e87655e0b5bd78e962cb8df821464f8562d5fe47bc2d562c81a33423d10c5e857f98f5
|
7
|
+
data.tar.gz: a91bb1c05000dffde42ea54f83c46451a96714d407e1f8227727ee47c4b77a98ba238a949a7eebf7c2adc1f28cf706d97db30f60d8f5db3665e035d8b0a6281f
|
data/lib/aws-sdk-glue.rb
CHANGED
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -5226,6 +5226,9 @@ module Aws::Glue
|
|
5226
5226
|
# @option params [String] :language
|
5227
5227
|
# The programming language of the code to perform the mapping.
|
5228
5228
|
#
|
5229
|
+
# @option params [Hash<String,String>] :additional_plan_options_map
|
5230
|
+
# A map to hold additional optional key-value parameters.
|
5231
|
+
#
|
5229
5232
|
# @return [Types::GetPlanResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5230
5233
|
#
|
5231
5234
|
# * {Types::GetPlanResponse#python_script #python_script} => String
|
@@ -5278,6 +5281,9 @@ module Aws::Glue
|
|
5278
5281
|
# ],
|
5279
5282
|
# },
|
5280
5283
|
# language: "PYTHON", # accepts PYTHON, SCALA
|
5284
|
+
# additional_plan_options_map: {
|
5285
|
+
# "GenericString" => "GenericString",
|
5286
|
+
# },
|
5281
5287
|
# })
|
5282
5288
|
#
|
5283
5289
|
# @example Response structure
|
@@ -9090,7 +9096,7 @@ module Aws::Glue
|
|
9090
9096
|
params: params,
|
9091
9097
|
config: config)
|
9092
9098
|
context[:gem_name] = 'aws-sdk-glue'
|
9093
|
-
context[:gem_version] = '1.
|
9099
|
+
context[:gem_version] = '1.73.0'
|
9094
9100
|
Seahorse::Client::Request.new(handlers, context)
|
9095
9101
|
end
|
9096
9102
|
|
@@ -16,6 +16,7 @@ module Aws::Glue
|
|
16
16
|
AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
|
17
17
|
Action = Shapes::StructureShape.new(name: 'Action')
|
18
18
|
ActionList = Shapes::ListShape.new(name: 'ActionList')
|
19
|
+
AdditionalPlanOptionsMap = Shapes::MapShape.new(name: 'AdditionalPlanOptionsMap')
|
19
20
|
AlreadyExistsException = Shapes::StructureShape.new(name: 'AlreadyExistsException')
|
20
21
|
AttemptCount = Shapes::IntegerShape.new(name: 'AttemptCount')
|
21
22
|
BatchCreatePartitionRequest = Shapes::StructureShape.new(name: 'BatchCreatePartitionRequest')
|
@@ -690,6 +691,9 @@ module Aws::Glue
|
|
690
691
|
|
691
692
|
ActionList.member = Shapes::ShapeRef.new(shape: Action)
|
692
693
|
|
694
|
+
AdditionalPlanOptionsMap.key = Shapes::ShapeRef.new(shape: GenericString)
|
695
|
+
AdditionalPlanOptionsMap.value = Shapes::ShapeRef.new(shape: GenericString)
|
696
|
+
|
693
697
|
AlreadyExistsException.add_member(:message, Shapes::ShapeRef.new(shape: MessageString, location_name: "Message"))
|
694
698
|
AlreadyExistsException.struct_class = Types::AlreadyExistsException
|
695
699
|
|
@@ -1828,6 +1832,7 @@ module Aws::Glue
|
|
1828
1832
|
GetPlanRequest.add_member(:sinks, Shapes::ShapeRef.new(shape: CatalogEntries, location_name: "Sinks"))
|
1829
1833
|
GetPlanRequest.add_member(:location, Shapes::ShapeRef.new(shape: Location, location_name: "Location"))
|
1830
1834
|
GetPlanRequest.add_member(:language, Shapes::ShapeRef.new(shape: Language, location_name: "Language"))
|
1835
|
+
GetPlanRequest.add_member(:additional_plan_options_map, Shapes::ShapeRef.new(shape: AdditionalPlanOptionsMap, location_name: "AdditionalPlanOptionsMap"))
|
1831
1836
|
GetPlanRequest.struct_class = Types::GetPlanRequest
|
1832
1837
|
|
1833
1838
|
GetPlanResponse.add_member(:python_script, Shapes::ShapeRef.new(shape: PythonScript, location_name: "PythonScript"))
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -7527,6 +7527,9 @@ module Aws::Glue
|
|
7527
7527
|
# ],
|
7528
7528
|
# },
|
7529
7529
|
# language: "PYTHON", # accepts PYTHON, SCALA
|
7530
|
+
# additional_plan_options_map: {
|
7531
|
+
# "GenericString" => "GenericString",
|
7532
|
+
# },
|
7530
7533
|
# }
|
7531
7534
|
#
|
7532
7535
|
# @!attribute [rw] mapping
|
@@ -7549,6 +7552,10 @@ module Aws::Glue
|
|
7549
7552
|
# The programming language of the code to perform the mapping.
|
7550
7553
|
# @return [String]
|
7551
7554
|
#
|
7555
|
+
# @!attribute [rw] additional_plan_options_map
|
7556
|
+
# A map to hold additional optional key-value parameters.
|
7557
|
+
# @return [Hash<String,String>]
|
7558
|
+
#
|
7552
7559
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetPlanRequest AWS API Documentation
|
7553
7560
|
#
|
7554
7561
|
class GetPlanRequest < Struct.new(
|
@@ -7556,7 +7563,8 @@ module Aws::Glue
|
|
7556
7563
|
:source,
|
7557
7564
|
:sinks,
|
7558
7565
|
:location,
|
7559
|
-
:language
|
7566
|
+
:language,
|
7567
|
+
:additional_plan_options_map)
|
7560
7568
|
SENSITIVE = []
|
7561
7569
|
include Aws::Structure
|
7562
7570
|
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.73.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: 2020-
|
11
|
+
date: 2020-10-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|