aws-sdk-appsync 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: 13544e371fab2ac876c6f9700a6077d9024ca82a
4
- data.tar.gz: 1ca441213149f11b37b379fe4635559b8ad5b6ee
3
+ metadata.gz: 85c50e10d1cdfa2a80af8fdfdfe477f907e8f7ba
4
+ data.tar.gz: 162ada8a680e9fa2a508ebed5467e40456820aff
5
5
  SHA512:
6
- metadata.gz: f935f654be935266878ecfd52c018b22b5672f1ec5fa5e6c551dae2c1a995cc0fac9ac2e1f172ac53560c310db689e24901c9130a675897b276d3c5572ec62a1
7
- data.tar.gz: e78a6dee1e12058ae0e984dc897a3630b2a3c4f26be59d10523b2a5f20b769f0bb4b08ea0d4a3e3675684fe0f6a1b2f11f5a6fd41b66585f0e0d0fdfdd6a7922
6
+ metadata.gz: 0f6e0a4bf7a08e56ee299d375d9b2f5a1a2f32e34f1d01c0d345d169c339b422822d39427adc790e02b4d579aa8056ef9801a3f63c4392c0d80ae0680a0eed75
7
+ data.tar.gz: 4638e2810bfd22a06c4912d2b42b1829022b9be79cb5e02b3b8234b5165202add1c6a003aaee61cdf3239c83c7a5317a4f2c19f94ab43d4c4f0817c12c28e4c7
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-appsync/customizations'
42
42
  # @service
43
43
  module Aws::AppSync
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/rest_json.rb'
24
26
 
@@ -47,6 +49,8 @@ module Aws::AppSync
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
 
@@ -92,6 +96,22 @@ module Aws::AppSync
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.
@@ -1420,7 +1440,7 @@ module Aws::AppSync
1420
1440
  params: params,
1421
1441
  config: config)
1422
1442
  context[:gem_name] = 'aws-sdk-appsync'
1423
- context[:gem_version] = '1.4.0'
1443
+ context[:gem_version] = '1.5.0'
1424
1444
  Seahorse::Client::Request.new(handlers, context)
1425
1445
  end
1426
1446
 
@@ -435,12 +435,15 @@ module Aws::AppSync
435
435
  api.version = "2017-07-25"
436
436
 
437
437
  api.metadata = {
438
+ "apiVersion" => "2017-07-25",
438
439
  "endpointPrefix" => "appsync",
439
440
  "jsonVersion" => "1.1",
440
441
  "protocol" => "rest-json",
442
+ "serviceAbbreviation" => "AWSAppSync",
441
443
  "serviceFullName" => "AWS AppSync",
442
444
  "signatureVersion" => "v4",
443
445
  "signingName" => "appsync",
446
+ "uid" => "appsync-2017-07-25",
444
447
  }
445
448
 
446
449
  api.add_operation(:create_api_key, Seahorse::Model::Operation.new.tap do |o|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appsync
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-07-12 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