aws-sdk-mturk 1.4.0 → 1.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 789955e23e909b4d9ca6e70429a6ef813af9eefb
4
- data.tar.gz: 86fbf2e1a53870388cdfa02e3eb44fe3cd683972
3
+ metadata.gz: 0672a4f43e4645be8c841e58446057a0bcfb6c00
4
+ data.tar.gz: f46eb5c06233322ae14b5466acef5333311100d9
5
5
  SHA512:
6
- metadata.gz: 37eb44cf7918698e8b9703fa38a4da0e08ad066017e5674b6cb638370cde85de0a4fa9b8e5a4678f4146b139e0169bb602918af04abefb435cbc1b1951a94d88
7
- data.tar.gz: d30355d80e90ecc30fc318fa27213eee66c63fb26ed7855252ec29d1d6a5211f7435b6e9142d11561d31244dd544e18e378d4d25bb5f9f91717792a37a69d62b
6
+ metadata.gz: 16c66f2b53cbeca639f82fdeb96754fa2e3da502fd22b5457eef967ec520744d3b73a4e0c0866994cc00d81586445f7b6f7fca14429fab20906344b548270dfb
7
+ data.tar.gz: 64345b440e593843a1d274e7491f3b716e0335251362c04dd163b8b84c11d5ad8d020a8e367d7700824d2e27ab9340d01289fe7fdede1dadd96b0c54979f990d
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-mturk/customizations'
42
42
  # @service
43
43
  module Aws::MTurk
44
44
 
45
- GEM_VERSION = '1.4.0'
45
+ GEM_VERSION = '1.5.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
 
@@ -47,6 +49,8 @@ module Aws::MTurk
47
49
  add_plugin(Aws::Plugins::StubResponses)
48
50
  add_plugin(Aws::Plugins::IdempotencyToken)
49
51
  add_plugin(Aws::Plugins::JsonvalueConverter)
52
+ add_plugin(Aws::Plugins::ClientMetricsPlugin)
53
+ add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
50
54
  add_plugin(Aws::Plugins::SignatureV4)
51
55
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
52
56
 
@@ -92,6 +96,22 @@ module Aws::MTurk
92
96
  #
93
97
  # @option options [String] :access_key_id
94
98
  #
99
+ # @option options [] :client_side_monitoring (false)
100
+ # When `true`, client-side metrics will be collected for all API requests from
101
+ # this client.
102
+ #
103
+ # @option options [] :client_side_monitoring_client_id ("")
104
+ # Allows you to provide an identifier for this client which will be attached to
105
+ # all generated client side metrics. Defaults to an empty string.
106
+ #
107
+ # @option options [] :client_side_monitoring_port (31000)
108
+ # Required for publishing client metrics. The port that the client side monitoring
109
+ # agent is running on, where client metrics will be published via UDP.
110
+ #
111
+ # @option options [] :client_side_monitoring_publisher (#<Aws::ClientSideMonitoring::Publisher:0x00007f20e3c7b9f0 @agent_port=nil, @mutex=#<Thread::Mutex:0x00007f20e3c7b9a0>>)
112
+ # Allows you to provide a custom client-side monitoring publisher class. By default,
113
+ # will use the Client Side Monitoring Agent Publisher.
114
+ #
95
115
  # @option options [Boolean] :convert_params (true)
96
116
  # When `true`, an attempt is made to coerce request parameters into
97
117
  # the required types.
@@ -2668,7 +2688,7 @@ module Aws::MTurk
2668
2688
  params: params,
2669
2689
  config: config)
2670
2690
  context[:gem_name] = 'aws-sdk-mturk'
2671
- context[:gem_version] = '1.4.0'
2691
+ context[:gem_version] = '1.5.0'
2672
2692
  Seahorse::Client::Request.new(handlers, context)
2673
2693
  end
2674
2694
 
@@ -691,12 +691,16 @@ module Aws::MTurk
691
691
  api.version = "2017-01-17"
692
692
 
693
693
  api.metadata = {
694
+ "apiVersion" => "2017-01-17",
694
695
  "endpointPrefix" => "mturk-requester",
695
696
  "jsonVersion" => "1.1",
696
697
  "protocol" => "json",
698
+ "serviceAbbreviation" => "Amazon MTurk",
697
699
  "serviceFullName" => "Amazon Mechanical Turk",
700
+ "serviceId" => "MTurk",
698
701
  "signatureVersion" => "v4",
699
702
  "targetPrefix" => "MTurkRequesterServiceV20170117",
703
+ "uid" => "mturk-requester-2017-01-17",
700
704
  }
701
705
 
702
706
  api.add_operation(:accept_qualification_request, Seahorse::Model::Operation.new.tap do |o|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mturk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.5.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