aws-sdk-glacier 1.9.0 → 1.10.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 +4 -4
- data/lib/aws-sdk-glacier.rb +1 -1
- data/lib/aws-sdk-glacier/client.rb +21 -1
- data/lib/aws-sdk-glacier/client_api.rb +4 -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: 94db7d09960062aeed9fe306f8a0678b74d77a31
|
|
4
|
+
data.tar.gz: 33f089e1a3952576b724bfe44d72a8cf5fcd25f7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e1ded3fd60de932f9d729876d4da040b31d539bfb75e9f4679444fa9603e118dd4c18dedd9c159586e5018a71d92cf10bc7179e3ae0621840ef22f991836e4c
|
|
7
|
+
data.tar.gz: 4dbf117625272df09743486b1a23a35df6c0b3fd751189ebf3da167f954381398eb86a460f7afa98431934a2368461624e143b1da7724bb6372f3eb22658c72d
|
data/lib/aws-sdk-glacier.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-glacier/plugins/account_id.rb'
|
|
@@ -50,6 +52,8 @@ module Aws::Glacier
|
|
|
50
52
|
add_plugin(Aws::Plugins::StubResponses)
|
|
51
53
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
|
52
54
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
|
55
|
+
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
|
56
|
+
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
53
57
|
add_plugin(Aws::Plugins::SignatureV4)
|
|
54
58
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
|
55
59
|
add_plugin(Aws::Glacier::Plugins::AccountId)
|
|
@@ -103,6 +107,22 @@ module Aws::Glacier
|
|
|
103
107
|
# operations. The default value of `-` uses the account
|
|
104
108
|
# your `:credentials` belong to.
|
|
105
109
|
#
|
|
110
|
+
# @option options [] :client_side_monitoring (false)
|
|
111
|
+
# When `true`, client-side metrics will be collected for all API requests from
|
|
112
|
+
# this client.
|
|
113
|
+
#
|
|
114
|
+
# @option options [] :client_side_monitoring_client_id ("")
|
|
115
|
+
# Allows you to provide an identifier for this client which will be attached to
|
|
116
|
+
# all generated client side metrics. Defaults to an empty string.
|
|
117
|
+
#
|
|
118
|
+
# @option options [] :client_side_monitoring_port (31000)
|
|
119
|
+
# Required for publishing client metrics. The port that the client side monitoring
|
|
120
|
+
# agent is running on, where client metrics will be published via UDP.
|
|
121
|
+
#
|
|
122
|
+
# @option options [] :client_side_monitoring_publisher (#<Aws::ClientSideMonitoring::Publisher:0x00007f20e3c7b9f0 @agent_port=nil, @mutex=#<Thread::Mutex:0x00007f20e3c7b9a0>>)
|
|
123
|
+
# Allows you to provide a custom client-side monitoring publisher class. By default,
|
|
124
|
+
# will use the Client Side Monitoring Agent Publisher.
|
|
125
|
+
#
|
|
106
126
|
# @option options [Boolean] :convert_params (true)
|
|
107
127
|
# When `true`, an attempt is made to coerce request parameters into
|
|
108
128
|
# the required types.
|
|
@@ -3190,7 +3210,7 @@ module Aws::Glacier
|
|
|
3190
3210
|
params: params,
|
|
3191
3211
|
config: config)
|
|
3192
3212
|
context[:gem_name] = 'aws-sdk-glacier'
|
|
3193
|
-
context[:gem_version] = '1.
|
|
3213
|
+
context[:gem_version] = '1.10.0'
|
|
3194
3214
|
Seahorse::Client::Request.new(handlers, context)
|
|
3195
3215
|
end
|
|
3196
3216
|
|
|
@@ -560,10 +560,14 @@ module Aws::Glacier
|
|
|
560
560
|
api.version = "2012-06-01"
|
|
561
561
|
|
|
562
562
|
api.metadata = {
|
|
563
|
+
"apiVersion" => "2012-06-01",
|
|
564
|
+
"checksumFormat" => "sha256",
|
|
563
565
|
"endpointPrefix" => "glacier",
|
|
564
566
|
"protocol" => "rest-json",
|
|
565
567
|
"serviceFullName" => "Amazon Glacier",
|
|
568
|
+
"serviceId" => "Glacier",
|
|
566
569
|
"signatureVersion" => "v4",
|
|
570
|
+
"uid" => "glacier-2012-06-01",
|
|
567
571
|
}
|
|
568
572
|
|
|
569
573
|
api.add_operation(:abort_multipart_upload, Seahorse::Model::Operation.new.tap do |o|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-glacier
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.10.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
|