aws-sdk-swf 1.1.0 → 1.2.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
  SHA1:
3
- metadata.gz: b169adc5cc3482b86f72c52fcc7d073fb7f99ec6
4
- data.tar.gz: a976536f4b91a4015fe1b8045bc0633b58a465fb
3
+ metadata.gz: 77b6be38d4980c743f3bf1f9bfd43505ddb04440
4
+ data.tar.gz: 4db3c104e02d9b735d9c34bcf59a983923d83d87
5
5
  SHA512:
6
- metadata.gz: ecfdde4f737f8824afa8e3194a54dbe5ed1d4f9c7021a2658f48e71108239c91c2648fcc6ec1505720c5c4afa124dab1f0c993aaba678321d44f2389d5d6bb05
7
- data.tar.gz: d4448406e18c0dc0e97e156f88a90533f700244ffdd241f3babcd7f749dddbfd0568a3166f1f149d0c81ecd9d2a69f5e2848d22bd8f6bff5c1e8d9432d56310a
6
+ metadata.gz: 68b5710e1df2c58db79e27d4ab4b652ed2933de2b3492965357a6507feac630bb389c0c390e41d473a40d35095f9a67ec47fef565c28b372433992144be28d06
7
+ data.tar.gz: 6c010803aa6268e7a90c0d4ec117f73078bc392eec181ee002765bd5e0216d0db8b0dd4320108865de7afe043bda778e45e0f3eb1ddaa109795553bb89a2011e
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-swf/customizations'
42
42
  # @service
43
43
  module Aws::SWF
44
44
 
45
- GEM_VERSION = '1.1.0'
45
+ GEM_VERSION = '1.2.0'
46
46
 
47
47
  end
@@ -19,6 +19,8 @@ require 'aws-sdk-core/plugins/response_paging.rb'
19
19
  require 'aws-sdk-core/plugins/stub_responses.rb'
20
20
  require 'aws-sdk-core/plugins/idempotency_token.rb'
21
21
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
22
+ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
23
+ require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
22
24
  require 'aws-sdk-core/plugins/signature_v4.rb'
23
25
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
24
26
  require 'aws-sdk-swf/plugins/read_timeouts.rb'
@@ -48,6 +50,8 @@ module Aws::SWF
48
50
  add_plugin(Aws::Plugins::StubResponses)
49
51
  add_plugin(Aws::Plugins::IdempotencyToken)
50
52
  add_plugin(Aws::Plugins::JsonvalueConverter)
53
+ add_plugin(Aws::Plugins::ClientMetricsPlugin)
54
+ add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
51
55
  add_plugin(Aws::Plugins::SignatureV4)
52
56
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
53
57
  add_plugin(Aws::SWF::Plugins::ReadTimeouts)
@@ -94,6 +98,22 @@ module Aws::SWF
94
98
  #
95
99
  # @option options [String] :access_key_id
96
100
  #
101
+ # @option options [] :client_side_monitoring (false)
102
+ # When `true`, client-side metrics will be collected for all API requests from
103
+ # this client.
104
+ #
105
+ # @option options [] :client_side_monitoring_client_id ("")
106
+ # Allows you to provide an identifier for this client which will be attached to
107
+ # all generated client side metrics. Defaults to an empty string.
108
+ #
109
+ # @option options [] :client_side_monitoring_port (31000)
110
+ # Required for publishing client metrics. The port that the client side monitoring
111
+ # agent is running on, where client metrics will be published via UDP.
112
+ #
113
+ # @option options [] :client_side_monitoring_publisher (#<Aws::ClientSideMonitoring::Publisher:0x00007f20e3c7b9f0 @agent_port=nil, @mutex=#<Thread::Mutex:0x00007f20e3c7b9a0>>)
114
+ # Allows you to provide a custom client-side monitoring publisher class. By default,
115
+ # will use the Client Side Monitoring Agent Publisher.
116
+ #
97
117
  # @option options [Boolean] :convert_params (true)
98
118
  # When `true`, an attempt is made to coerce request parameters into
99
119
  # the required types.
@@ -3830,7 +3850,7 @@ module Aws::SWF
3830
3850
  params: params,
3831
3851
  config: config)
3832
3852
  context[:gem_name] = 'aws-sdk-swf'
3833
- context[:gem_version] = '1.1.0'
3853
+ context[:gem_version] = '1.2.0'
3834
3854
  Seahorse::Client::Request.new(handlers, context)
3835
3855
  end
3836
3856
 
@@ -1089,13 +1089,16 @@ module Aws::SWF
1089
1089
  api.version = "2012-01-25"
1090
1090
 
1091
1091
  api.metadata = {
1092
+ "apiVersion" => "2012-01-25",
1092
1093
  "endpointPrefix" => "swf",
1093
1094
  "jsonVersion" => "1.0",
1094
1095
  "protocol" => "json",
1096
+ "serviceAbbreviation" => "Amazon SWF",
1095
1097
  "serviceFullName" => "Amazon Simple Workflow Service",
1096
1098
  "signatureVersion" => "v4",
1097
1099
  "targetPrefix" => "SimpleWorkflowService",
1098
1100
  "timestampFormat" => "unixTimestamp",
1101
+ "uid" => "swf-2012-01-25",
1099
1102
  }
1100
1103
 
1101
1104
  api.add_operation(:count_closed_workflow_executions, Seahorse::Model::Operation.new.tap do |o|
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.1.0
4
+ version: 1.2.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: 2018-06-26 00:00:00.000000000 Z
11
+ date: 2018-09-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core