aws-sdk-swf 1.18.0 → 1.19.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 +5 -5
- data/lib/aws-sdk-swf.rb +1 -1
- data/lib/aws-sdk-swf/client.rb +37 -20
- data/lib/aws-sdk-swf/resource.rb +1 -7
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 7beb26552e374819cbdf30f313ae1aed78ada01f13cf878d600d12e6cc661420
|
4
|
+
data.tar.gz: 1d7e18ee28c0ea10147bc2224701576855b18ef7eb0a55c24e0bbab45430aa01
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 648bedaa32e0933cd7f55a91189f0ed1aa51941bf201aa9865734e2f48813bbc2e0f3e20b981ae55efb7962d124703a7b499c69a153a22ff8297d5e8fa1206c4
|
7
|
+
data.tar.gz: dabab4ab72c06c2fa2c7f77ec9103c5166c86212acc68ec11af731ca1ea10afb2f8eb1d2778365922966175157741882576deee6453820b9b846327be15b5fde
|
data/lib/aws-sdk-swf.rb
CHANGED
data/lib/aws-sdk-swf/client.rb
CHANGED
@@ -33,11 +33,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:swf)
|
|
33
33
|
module Aws::SWF
|
34
34
|
# An API client for SWF. To construct a client, you need to configure a `:region` and `:credentials`.
|
35
35
|
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
40
|
-
#
|
36
|
+
# client = Aws::SWF::Client.new(
|
37
|
+
# region: region_name,
|
38
|
+
# credentials: credentials,
|
39
|
+
# # ...
|
40
|
+
# )
|
41
41
|
#
|
42
42
|
# For details on configuring region and credentials see
|
43
43
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -107,7 +107,7 @@ module Aws::SWF
|
|
107
107
|
# @option options [required, String] :region
|
108
108
|
# The AWS region to connect to. The configured `:region` is
|
109
109
|
# used to determine the service `:endpoint`. When not passed,
|
110
|
-
# a default `:region` is
|
110
|
+
# a default `:region` is searched for in the following locations:
|
111
111
|
#
|
112
112
|
# * `Aws.config[:region]`
|
113
113
|
# * `ENV['AWS_REGION']`
|
@@ -163,7 +163,7 @@ module Aws::SWF
|
|
163
163
|
# @option options [String] :endpoint
|
164
164
|
# The client endpoint is normally constructed from the `:region`
|
165
165
|
# option. You should only configure an `:endpoint` when connecting
|
166
|
-
# to test endpoints. This should be
|
166
|
+
# to test endpoints. This should be a valid HTTP(S) URI.
|
167
167
|
#
|
168
168
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
169
169
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -231,15 +231,19 @@ module Aws::SWF
|
|
231
231
|
#
|
232
232
|
# @option options [String] :retry_mode ("legacy")
|
233
233
|
# Specifies which retry algorithm to use. Values are:
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
241
|
-
#
|
242
|
-
#
|
234
|
+
#
|
235
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
236
|
+
# no retry mode is provided.
|
237
|
+
#
|
238
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
239
|
+
# This includes support for retry quotas, which limit the number of
|
240
|
+
# unsuccessful retries a client can make.
|
241
|
+
#
|
242
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
243
|
+
# functionality of `standard` mode along with automatic client side
|
244
|
+
# throttling. This is a provisional mode that may change behavior
|
245
|
+
# in the future.
|
246
|
+
#
|
243
247
|
#
|
244
248
|
# @option options [String] :secret_access_key
|
245
249
|
#
|
@@ -277,8 +281,7 @@ module Aws::SWF
|
|
277
281
|
#
|
278
282
|
# @option options [Integer] :http_read_timeout (60) The default
|
279
283
|
# number of seconds to wait for response data. This value can
|
280
|
-
# safely be set
|
281
|
-
# per-request on the session yielded by {#session_for}.
|
284
|
+
# safely be set per-request on the session.
|
282
285
|
#
|
283
286
|
# @option options [Float] :http_idle_timeout (5) The number of
|
284
287
|
# seconds a connection is allowed to sit idle before it is
|
@@ -290,7 +293,7 @@ module Aws::SWF
|
|
290
293
|
# request body. This option has no effect unless the request has
|
291
294
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
292
295
|
# disables this behaviour. This value can safely be set per
|
293
|
-
# request on the session
|
296
|
+
# request on the session.
|
294
297
|
#
|
295
298
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
296
299
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -1261,6 +1264,8 @@ module Aws::SWF
|
|
1261
1264
|
# * {Types::History#events #events} => Array<Types::HistoryEvent>
|
1262
1265
|
# * {Types::History#next_page_token #next_page_token} => String
|
1263
1266
|
#
|
1267
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1268
|
+
#
|
1264
1269
|
# @example Request syntax with placeholder values
|
1265
1270
|
#
|
1266
1271
|
# resp = client.get_workflow_execution_history({
|
@@ -1598,6 +1603,8 @@ module Aws::SWF
|
|
1598
1603
|
# * {Types::ActivityTypeInfos#type_infos #type_infos} => Array<Types::ActivityTypeInfo>
|
1599
1604
|
# * {Types::ActivityTypeInfos#next_page_token #next_page_token} => String
|
1600
1605
|
#
|
1606
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1607
|
+
#
|
1601
1608
|
# @example Request syntax with placeholder values
|
1602
1609
|
#
|
1603
1610
|
# resp = client.list_activity_types({
|
@@ -1762,6 +1769,8 @@ module Aws::SWF
|
|
1762
1769
|
# * {Types::WorkflowExecutionInfos#execution_infos #execution_infos} => Array<Types::WorkflowExecutionInfo>
|
1763
1770
|
# * {Types::WorkflowExecutionInfos#next_page_token #next_page_token} => String
|
1764
1771
|
#
|
1772
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1773
|
+
#
|
1765
1774
|
# @example Request syntax with placeholder values
|
1766
1775
|
#
|
1767
1776
|
# resp = client.list_closed_workflow_executions({
|
@@ -1881,6 +1890,8 @@ module Aws::SWF
|
|
1881
1890
|
# * {Types::DomainInfos#domain_infos #domain_infos} => Array<Types::DomainInfo>
|
1882
1891
|
# * {Types::DomainInfos#next_page_token #next_page_token} => String
|
1883
1892
|
#
|
1893
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1894
|
+
#
|
1884
1895
|
# @example Request syntax with placeholder values
|
1885
1896
|
#
|
1886
1897
|
# resp = client.list_domains({
|
@@ -2010,6 +2021,8 @@ module Aws::SWF
|
|
2010
2021
|
# * {Types::WorkflowExecutionInfos#execution_infos #execution_infos} => Array<Types::WorkflowExecutionInfo>
|
2011
2022
|
# * {Types::WorkflowExecutionInfos#next_page_token #next_page_token} => String
|
2012
2023
|
#
|
2024
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2025
|
+
#
|
2013
2026
|
# @example Request syntax with placeholder values
|
2014
2027
|
#
|
2015
2028
|
# resp = client.list_open_workflow_executions({
|
@@ -2150,6 +2163,8 @@ module Aws::SWF
|
|
2150
2163
|
# * {Types::WorkflowTypeInfos#type_infos #type_infos} => Array<Types::WorkflowTypeInfo>
|
2151
2164
|
# * {Types::WorkflowTypeInfos#next_page_token #next_page_token} => String
|
2152
2165
|
#
|
2166
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2167
|
+
#
|
2153
2168
|
# @example Request syntax with placeholder values
|
2154
2169
|
#
|
2155
2170
|
# resp = client.list_workflow_types({
|
@@ -2383,6 +2398,8 @@ module Aws::SWF
|
|
2383
2398
|
# * {Types::DecisionTask#next_page_token #next_page_token} => String
|
2384
2399
|
# * {Types::DecisionTask#previous_started_event_id #previous_started_event_id} => Integer
|
2385
2400
|
#
|
2401
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2402
|
+
#
|
2386
2403
|
# @example Request syntax with placeholder values
|
2387
2404
|
#
|
2388
2405
|
# resp = client.poll_for_decision_task({
|
@@ -4252,7 +4269,7 @@ module Aws::SWF
|
|
4252
4269
|
params: params,
|
4253
4270
|
config: config)
|
4254
4271
|
context[:gem_name] = 'aws-sdk-swf'
|
4255
|
-
context[:gem_version] = '1.
|
4272
|
+
context[:gem_version] = '1.19.0'
|
4256
4273
|
Seahorse::Client::Request.new(handlers, context)
|
4257
4274
|
end
|
4258
4275
|
|
data/lib/aws-sdk-swf/resource.rb
CHANGED
@@ -6,13 +6,7 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::SWF
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::SWF::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::SWF::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::SWF::Resource.new(client: client)
|
9
|
+
|
16
10
|
class Resource
|
17
11
|
|
18
12
|
# @param options ({})
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-swf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.19.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-05-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -82,7 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
82
82
|
version: '0'
|
83
83
|
requirements: []
|
84
84
|
rubyforge_project:
|
85
|
-
rubygems_version: 2.
|
85
|
+
rubygems_version: 2.7.6.2
|
86
86
|
signing_key:
|
87
87
|
specification_version: 4
|
88
88
|
summary: AWS SDK for Ruby - Amazon SWF
|