aws-sdk-sms 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: 5b362f4e10abf6b1fc3ee393da00e0b9217b04c5
4
- data.tar.gz: d60fe9abc57bd842f855514efff756f21a162526
3
+ metadata.gz: 17b1d39e8b72683c8f6c9842a8a2816ec9eccb77
4
+ data.tar.gz: 6d1f6fb9981782805f83b9b9d0adb55377cccfa4
5
5
  SHA512:
6
- metadata.gz: 6153d4a6a2b506ffe7e8f566bee9c0b37437effb09459ef7548eccc9ace9b8956d319673c2034d8aa789ac3c2302e98f3ad9f585c8dd815d6ef412fd1437b636
7
- data.tar.gz: 13ff981a1ed32c8e2acaf0b7742dbce09549410d2414e43a44d74495a78a928adcc3ed153176b845efe73510d6119efd609d4b455fb8fe224a5841e9baacdc40
6
+ metadata.gz: d9b280c7a6a9f7ac5f11981698a7e51df0c50a62f45436ac9fb2f1cfe5767a404d876e0a2d564a4149b7e97aea52bef5176488fb3fcacf956e6112b86952f2ab
7
+ data.tar.gz: 42818e8186188c71d1dcf98fe78e2487e8be8cd1408118b6ffc10cc027214adadc7b4bec5bc28004ae995ee30d2c1b5ad5fe670397b612005d9cbfde8680541c
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-sms/customizations'
42
42
  # @service
43
43
  module Aws::SMS
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
 
@@ -47,6 +49,8 @@ module Aws::SMS
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::SMS
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.
@@ -640,7 +660,7 @@ module Aws::SMS
640
660
  params: params,
641
661
  config: config)
642
662
  context[:gem_name] = 'aws-sdk-sms'
643
- context[:gem_version] = '1.1.0'
663
+ context[:gem_version] = '1.2.0'
644
664
  Seahorse::Client::Request.new(handlers, context)
645
665
  end
646
666
 
@@ -243,12 +243,15 @@ module Aws::SMS
243
243
  api.version = "2016-10-24"
244
244
 
245
245
  api.metadata = {
246
+ "apiVersion" => "2016-10-24",
246
247
  "endpointPrefix" => "sms",
247
248
  "jsonVersion" => "1.1",
248
249
  "protocol" => "json",
250
+ "serviceAbbreviation" => "SMS",
249
251
  "serviceFullName" => "AWS Server Migration Service",
250
252
  "signatureVersion" => "v4",
251
253
  "targetPrefix" => "AWSServerMigrationService_V2016_10_24",
254
+ "uid" => "sms-2016-10-24",
252
255
  }
253
256
 
254
257
  api.add_operation(:create_replication_job, Seahorse::Model::Operation.new.tap do |o|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sms
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