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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5f0efc0870e138a039d2749913d5929109c64cbb9ebc41090932c08796d7335e
4
- data.tar.gz: bfd0b178f835efd80955b1e44a315e9939da3f2013c8848a2fc43b695915f053
3
+ metadata.gz: a86917e6fa41137ca6f02737cae38c8a36d9ffa0854cf6e358c574d001df82c1
4
+ data.tar.gz: 3e35383527e44631cba950d0a63c9c24dda9cf4bb4c3e9ab882d512cb2529dec
5
5
  SHA512:
6
- metadata.gz: 8fbf1cd492536cb3d17af9d8617f1b9c5ff701abd1b4f064b727b5c3a1bc6767ad122de9a3120078ad7500321418c130e7c886d2ed1587147c26c5e4ba993fc0
7
- data.tar.gz: 2ee30b09ce0e8d636b85b09abf9d5e8956013178ad6b3e583e3cc52bf4084e90d2c3178561d47e5f99651513184a01df92aae72b1f1d55c41e6f417f3d398f38
6
+ metadata.gz: d3789e50542ed1cce527ad26c05bf907f1b0d08757a35fe189f3aa0bb74ac55857340d77c9fbcf562d756952f333e12de853557bbc938e4bea7e628d2407c775
7
+ data.tar.gz: ba862eb28af3866d695e3cc411bc5c48f316b9e5fad7d1906a9af5b5f3d7fb36bdbb41091175ebe6db87d6cbaadce46487d04286ec6c4fdfc0bb3d854b7c7f6c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.103.0 (2022-01-13)
5
+ ------------------
6
+
7
+ * Feature - This SDK release adds support to pass run properties when starting a workflow run
8
+
4
9
  1.102.0 (2022-01-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.102.0
1
+ 1.103.0
@@ -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.102.0'
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"))
@@ -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
@@ -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.102.0'
51
+ GEM_VERSION = '1.103.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.102.0
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-05 00:00:00.000000000 Z
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