aws-sdk-apigateway 1.13.0 → 1.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-apigateway.rb +1 -1
- data/lib/aws-sdk-apigateway/client.rb +21 -1
- data/lib/aws-sdk-apigateway/client_api.rb +3 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 815e91aee7cc6820b8b32c690ebfed00fff0bc07
|
4
|
+
data.tar.gz: 4f174ddacbbcf8f0651ba34215eb5615be20d9c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e99bc2272396e853dff8ad29b730509f61704718a32ed3b28a6c03d115ea913ece809afe6c09adcbb9ba269c47fe1a15b10f8e3a8c4c737da2d0b00a5e7922b
|
7
|
+
data.tar.gz: 961794231b9b2da8c44ea14fb459b4e8569af87809b8f7cf2af02f63bf0d2f2f4c2e780ffab13265326ccb66a3dcd5145c1064601678fcd809d4533c08bdb09a
|
data/lib/aws-sdk-apigateway.rb
CHANGED
@@ -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
|
require 'aws-sdk-apigateway/plugins/apply_content_type_header.rb'
|
@@ -48,6 +50,8 @@ module Aws::APIGateway
|
|
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::RestJson)
|
53
57
|
add_plugin(Aws::APIGateway::Plugins::ApplyContentTypeHeader)
|
@@ -94,6 +98,22 @@ module Aws::APIGateway
|
|
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.
|
@@ -6606,7 +6626,7 @@ module Aws::APIGateway
|
|
6606
6626
|
params: params,
|
6607
6627
|
config: config)
|
6608
6628
|
context[:gem_name] = 'aws-sdk-apigateway'
|
6609
|
-
context[:gem_version] = '1.
|
6629
|
+
context[:gem_version] = '1.14.0'
|
6610
6630
|
Seahorse::Client::Request.new(handlers, context)
|
6611
6631
|
end
|
6612
6632
|
|
@@ -1408,10 +1408,13 @@ module Aws::APIGateway
|
|
1408
1408
|
api.version = "2015-07-09"
|
1409
1409
|
|
1410
1410
|
api.metadata = {
|
1411
|
+
"apiVersion" => "2015-07-09",
|
1411
1412
|
"endpointPrefix" => "apigateway",
|
1412
1413
|
"protocol" => "rest-json",
|
1413
1414
|
"serviceFullName" => "Amazon API Gateway",
|
1415
|
+
"serviceId" => "API Gateway",
|
1414
1416
|
"signatureVersion" => "v4",
|
1417
|
+
"uid" => "apigateway-2015-07-09",
|
1415
1418
|
}
|
1416
1419
|
|
1417
1420
|
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-apigateway
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.14.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-
|
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
|