aws-sdk-glue 1.102.0 → 1.103.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +7 -1
- data/lib/aws-sdk-glue/client_api.rb +1 -0
- data/lib/aws-sdk-glue/types.rb +9 -1
- data/lib/aws-sdk-glue.rb +1 -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: a86917e6fa41137ca6f02737cae38c8a36d9ffa0854cf6e358c574d001df82c1
|
4
|
+
data.tar.gz: 3e35383527e44631cba950d0a63c9c24dda9cf4bb4c3e9ab882d512cb2529dec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3789e50542ed1cce527ad26c05bf907f1b0d08757a35fe189f3aa0bb74ac55857340d77c9fbcf562d756952f333e12de853557bbc938e4bea7e628d2407c775
|
7
|
+
data.tar.gz: ba862eb28af3866d695e3cc411bc5c48f316b9e5fad7d1906a9af5b5f3d7fb36bdbb41091175ebe6db87d6cbaadce46487d04286ec6c4fdfc0bb3d854b7c7f6c
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.103.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -9896,6 +9896,9 @@ module Aws::Glue
|
|
9896
9896
|
# @option params [required, String] :name
|
9897
9897
|
# The name of the workflow to start.
|
9898
9898
|
#
|
9899
|
+
# @option params [Hash<String,String>] :run_properties
|
9900
|
+
# The workflow run properties for the new workflow run.
|
9901
|
+
#
|
9899
9902
|
# @return [Types::StartWorkflowRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9900
9903
|
#
|
9901
9904
|
# * {Types::StartWorkflowRunResponse#run_id #run_id} => String
|
@@ -9904,6 +9907,9 @@ module Aws::Glue
|
|
9904
9907
|
#
|
9905
9908
|
# resp = client.start_workflow_run({
|
9906
9909
|
# name: "NameString", # required
|
9910
|
+
# run_properties: {
|
9911
|
+
# "IdString" => "GenericString",
|
9912
|
+
# },
|
9907
9913
|
# })
|
9908
9914
|
#
|
9909
9915
|
# @example Response structure
|
@@ -11518,7 +11524,7 @@ module Aws::Glue
|
|
11518
11524
|
params: params,
|
11519
11525
|
config: config)
|
11520
11526
|
context[:gem_name] = 'aws-sdk-glue'
|
11521
|
-
context[:gem_version] = '1.
|
11527
|
+
context[:gem_version] = '1.103.0'
|
11522
11528
|
Seahorse::Client::Request.new(handlers, context)
|
11523
11529
|
end
|
11524
11530
|
|
@@ -3281,6 +3281,7 @@ module Aws::Glue
|
|
3281
3281
|
StartTriggerResponse.struct_class = Types::StartTriggerResponse
|
3282
3282
|
|
3283
3283
|
StartWorkflowRunRequest.add_member(:name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "Name"))
|
3284
|
+
StartWorkflowRunRequest.add_member(:run_properties, Shapes::ShapeRef.new(shape: WorkflowRunProperties, location_name: "RunProperties"))
|
3284
3285
|
StartWorkflowRunRequest.struct_class = Types::StartWorkflowRunRequest
|
3285
3286
|
|
3286
3287
|
StartWorkflowRunResponse.add_member(:run_id, Shapes::ShapeRef.new(shape: IdString, location_name: "RunId"))
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -15168,16 +15168,24 @@ module Aws::Glue
|
|
15168
15168
|
#
|
15169
15169
|
# {
|
15170
15170
|
# name: "NameString", # required
|
15171
|
+
# run_properties: {
|
15172
|
+
# "IdString" => "GenericString",
|
15173
|
+
# },
|
15171
15174
|
# }
|
15172
15175
|
#
|
15173
15176
|
# @!attribute [rw] name
|
15174
15177
|
# The name of the workflow to start.
|
15175
15178
|
# @return [String]
|
15176
15179
|
#
|
15180
|
+
# @!attribute [rw] run_properties
|
15181
|
+
# The workflow run properties for the new workflow run.
|
15182
|
+
# @return [Hash<String,String>]
|
15183
|
+
#
|
15177
15184
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/StartWorkflowRunRequest AWS API Documentation
|
15178
15185
|
#
|
15179
15186
|
class StartWorkflowRunRequest < Struct.new(
|
15180
|
-
:name
|
15187
|
+
:name,
|
15188
|
+
:run_properties)
|
15181
15189
|
SENSITIVE = []
|
15182
15190
|
include Aws::Structure
|
15183
15191
|
end
|
data/lib/aws-sdk-glue.rb
CHANGED
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.103.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-01-
|
11
|
+
date: 2022-01-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|