aws-sdk-cloudsearchdomain 1.1.0 → 1.2.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: 120bd3418959949d307501bed906e3f9de706332
4
- data.tar.gz: 5284f858d58af815ec0a57217f40d120fb24f6ef
3
+ metadata.gz: 8ccd0836d4e5b8f8ecbb234a32761db8641b5f49
4
+ data.tar.gz: f01d5aee0b749d81a7ab8adec4a20d6080d55982
5
5
  SHA512:
6
- metadata.gz: 89cc7446cfa22ac6e78624f2268a06baea83a8b5ccdf0c51580846c50dae89c40960b5359e42bd2966a595a6dcdca2e3df6153736197b6949b9d14f2a49ff0d8
7
- data.tar.gz: b1068cd9ee07bed2d470841d708a60fe7d2ba9364a73e136dd41019b08b79b45423d26962537c38ab3601a9eb683337824ed3df54aba5ada5f30708d4afacd03
6
+ metadata.gz: 5106377a6be4343a37e0b4383d697f6d2670b02b40b0f7fdf5478cfd5ae0f38e98cdc6cf7a3dcee1d9a53ebd9bb1aaff5c64d5426fe41c8da0ca1b4e7d1f19ef
7
+ data.tar.gz: 8147400323f61ba315243215fcadb03e88b8d293739a3062eb715b811781299cd41f832fd64f2dcf339df90226f9053956fcb4c70938e17561cf776812889fe2
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-cloudsearchdomain/customizations'
42
42
  # @service
43
43
  module Aws::CloudSearchDomain
44
44
 
45
- GEM_VERSION = '1.1.0'
45
+ GEM_VERSION = '1.2.0'
46
46
 
47
47
  end
@@ -18,6 +18,8 @@ require 'aws-sdk-core/plugins/response_paging.rb'
18
18
  require 'aws-sdk-core/plugins/stub_responses.rb'
19
19
  require 'aws-sdk-core/plugins/idempotency_token.rb'
20
20
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
21
+ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
22
+ require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
21
23
  require 'aws-sdk-core/plugins/signature_v4.rb'
22
24
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
23
25
  require 'aws-sdk-cloudsearchdomain/plugins/conditional_signing.rb'
@@ -47,6 +49,8 @@ module Aws::CloudSearchDomain
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::RestJson)
52
56
  add_plugin(Aws::CloudSearchDomain::Plugins::ConditionalSigning)
@@ -82,6 +86,22 @@ module Aws::CloudSearchDomain
82
86
  #
83
87
  # @option options [String] :access_key_id
84
88
  #
89
+ # @option options [] :client_side_monitoring (false)
90
+ # When `true`, client-side metrics will be collected for all API requests from
91
+ # this client.
92
+ #
93
+ # @option options [] :client_side_monitoring_client_id ("")
94
+ # Allows you to provide an identifier for this client which will be attached to
95
+ # all generated client side metrics. Defaults to an empty string.
96
+ #
97
+ # @option options [] :client_side_monitoring_port (31000)
98
+ # Required for publishing client metrics. The port that the client side monitoring
99
+ # agent is running on, where client metrics will be published via UDP.
100
+ #
101
+ # @option options [] :client_side_monitoring_publisher (#<Aws::ClientSideMonitoring::Publisher:0x00007f20e3c7b9f0 @agent_port=nil, @mutex=#<Thread::Mutex:0x00007f20e3c7b9a0>>)
102
+ # Allows you to provide a custom client-side monitoring publisher class. By default,
103
+ # will use the Client Side Monitoring Agent Publisher.
104
+ #
85
105
  # @option options [Boolean] :convert_params (true)
86
106
  # When `true`, an attempt is made to coerce request parameters into
87
107
  # the required types.
@@ -744,7 +764,7 @@ module Aws::CloudSearchDomain
744
764
  params: params,
745
765
  config: config)
746
766
  context[:gem_name] = 'aws-sdk-cloudsearchdomain'
747
- context[:gem_version] = '1.1.0'
767
+ context[:gem_version] = '1.2.0'
748
768
  Seahorse::Client::Request.new(handlers, context)
749
769
  end
750
770
 
@@ -188,12 +188,14 @@ module Aws::CloudSearchDomain
188
188
  api.version = "2013-01-01"
189
189
 
190
190
  api.metadata = {
191
+ "apiVersion" => "2013-01-01",
191
192
  "endpointPrefix" => "cloudsearchdomain",
192
193
  "jsonVersion" => "1.1",
193
194
  "protocol" => "rest-json",
194
195
  "serviceFullName" => "Amazon CloudSearch Domain",
195
196
  "signatureVersion" => "v4",
196
197
  "signingName" => "cloudsearch",
198
+ "uid" => "cloudsearchdomain-2013-01-01",
197
199
  }
198
200
 
199
201
  api.add_operation(:search, Seahorse::Model::Operation.new.tap do |o|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudsearchdomain
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