aws-sdk-route53 1.10.1 → 1.11.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-route53.rb +1 -1
- data/lib/aws-sdk-route53/client.rb +21 -1
- data/lib/aws-sdk-route53/client_api.rb +5 -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: a0ddb8a58f95bd9a7662e64979c4a23c7bf8c209
|
4
|
+
data.tar.gz: f0a5a949047a0c254960d0a3847271dad4c38d78
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5fd85f37532345d4699c0ac6e4746d31f619a7b639ee38652f4e94a58ed649786ffe234a9bb40483a1448a0cbd8f5a188ea7a67c9b6d8bf647e1b9a853e06f49
|
7
|
+
data.tar.gz: 8381e78d61aaf8c00757747d7466b641882de58ee6012871a66a656746a0c1b11d07626faa1c64d5040c3704d2d9a0bc14397bb85e4544c7cee70e7920abb0ed
|
data/lib/aws-sdk-route53.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_xml.rb'
|
24
26
|
require 'aws-sdk-route53/plugins/id_fix.rb'
|
@@ -48,6 +50,8 @@ module Aws::Route53
|
|
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::RestXml)
|
53
57
|
add_plugin(Aws::Route53::Plugins::IdFix)
|
@@ -94,6 +98,22 @@ module Aws::Route53
|
|
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.
|
@@ -4798,7 +4818,7 @@ module Aws::Route53
|
|
4798
4818
|
params: params,
|
4799
4819
|
config: config)
|
4800
4820
|
context[:gem_name] = 'aws-sdk-route53'
|
4801
|
-
context[:gem_version] = '1.
|
4821
|
+
context[:gem_version] = '1.11.0'
|
4802
4822
|
Seahorse::Client::Request.new(handlers, context)
|
4803
4823
|
end
|
4804
4824
|
|
@@ -1047,10 +1047,15 @@ module Aws::Route53
|
|
1047
1047
|
api.version = "2013-04-01"
|
1048
1048
|
|
1049
1049
|
api.metadata = {
|
1050
|
+
"apiVersion" => "2013-04-01",
|
1050
1051
|
"endpointPrefix" => "route53",
|
1052
|
+
"globalEndpoint" => "route53.amazonaws.com",
|
1051
1053
|
"protocol" => "rest-xml",
|
1054
|
+
"serviceAbbreviation" => "Route 53",
|
1052
1055
|
"serviceFullName" => "Amazon Route 53",
|
1056
|
+
"serviceId" => "Route 53",
|
1053
1057
|
"signatureVersion" => "v4",
|
1058
|
+
"uid" => "route53-2013-04-01",
|
1054
1059
|
}
|
1055
1060
|
|
1056
1061
|
api.add_operation(:associate_vpc_with_hosted_zone, Seahorse::Model::Operation.new.tap do |o|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-route53
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.11.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
|