aws-sdk-core 3.29.0 → 3.30.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: '09ac53fbbe7c6e744f992e256f50db9d1a31a8ec'
4
- data.tar.gz: e61fcdd25609980c3b58b6dfadb860e163e92384
3
+ metadata.gz: 8a3a5cd2f79b1a4aade538c466cc5643110c446a
4
+ data.tar.gz: e748801657743aa4f4906f09f62806d0c86e6648
5
5
  SHA512:
6
- metadata.gz: 37c30d4e3f56c3ac2587d7bd763d6ede23f77f4d61cb96841c2259b846e7b37dc981b6bcd5a3b123ab5e4f8e7f7524ea1b0eb8c55a0b5324bb446c7b9c1ddadb
7
- data.tar.gz: a86fd97031a268ab55a8b204e373f29c9b3861518a75e73659377e50b06f14145d8bedc7a4da4472c185858c6fc0441bf8d6169d0a6199d637d67e7cc9a51493
6
+ metadata.gz: 378d56edf19f2d627a5be44aa6fcedcabd6846bd1c4884a40437781d010cd8b92072e42984b2e88f8f4ac92c8a9bd686a6a67408b60c3af2b90ecac13aa07f90
7
+ data.tar.gz: af057214612f660295395a9a70d3536a169b8639afdd478c6471dd911fd2cf3836c33f1e2df4d3ed122ab898f5a2c6f4c44e4dd9381a786a006329046f60b596
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.29.0
1
+ 3.30.0
@@ -9,8 +9,9 @@ module Aws
9
9
  @api = opts[:operation]
10
10
  @client_id = opts[:client_id]
11
11
  @timestamp = opts[:timestamp] # In epoch milliseconds
12
+ @region = opts[:region]
12
13
  @version = 1
13
- @api_call = ApiCall.new(@service, @api, @client_id, @version, @timestamp)
14
+ @api_call = ApiCall.new(@service, @api, @client_id, @version, @timestamp, @region)
14
15
  @api_call_attempts = []
15
16
  end
16
17
 
@@ -41,14 +42,15 @@ module Aws
41
42
 
42
43
  class ApiCall
43
44
  attr_reader :service, :api, :client_id, :timestamp, :version,
44
- :attempt_count, :latency
45
+ :attempt_count, :latency, :region
45
46
 
46
- def initialize(service, api, client_id, version, timestamp)
47
+ def initialize(service, api, client_id, version, timestamp, region)
47
48
  @service = service
48
49
  @api = api
49
50
  @client_id = client_id
50
51
  @version = version
51
52
  @timestamp = timestamp
53
+ @region = region
52
54
  end
53
55
 
54
56
  def complete(opts = {})
@@ -65,7 +67,8 @@ module Aws
65
67
  "Timestamp" => @timestamp,
66
68
  "Version" => @version,
67
69
  "AttemptCount" => @attempt_count,
68
- "Latency" => @latency
70
+ "Latency" => @latency,
71
+ "Region" => @region
69
72
  }.to_json
70
73
  end
71
74
  end
@@ -99,6 +99,7 @@ all generated client side metrics. Defaults to an empty string.
99
99
  service: service_id,
100
100
  operation: context.operation.name,
101
101
  client_id: context.config.client_side_monitoring_client_id,
102
+ region: context.config.region,
102
103
  timestamp: DateTime.now.strftime('%Q').to_i,
103
104
  )
104
105
  context.metadata[:client_metrics] = request_metrics
@@ -44,6 +44,7 @@ module Aws
44
44
  # file and enables new config values outside of the old shared credential
45
45
  # spec.
46
46
  def initialize(options = {})
47
+ @parsed_config = nil
47
48
  @profile_name = determine_profile(options)
48
49
  @config_enabled = options[:config_enabled]
49
50
  @credentials_path = options[:credentials_path] ||
@@ -40,6 +40,6 @@ require_relative 'aws-sdk-sts/customizations'
40
40
  # @service
41
41
  module Aws::STS
42
42
 
43
- GEM_VERSION = '3.29.0'
43
+ GEM_VERSION = '3.30.0'
44
44
 
45
45
  end
@@ -1506,7 +1506,7 @@ module Aws::STS
1506
1506
  params: params,
1507
1507
  config: config)
1508
1508
  context[:gem_name] = 'aws-sdk-core'
1509
- context[:gem_version] = '3.29.0'
1509
+ context[:gem_version] = '3.30.0'
1510
1510
  Seahorse::Client::Request.new(handlers, context)
1511
1511
  end
1512
1512
 
@@ -10,6 +10,8 @@ module Seahorse
10
10
  @metadata = {}
11
11
  @required = false
12
12
  @deprecated = false
13
+ @location = nil
14
+ @location_name = nil
13
15
  @event = false
14
16
  @eventstream = false
15
17
  @eventpayload = false
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.29.0
4
+ version: 3.30.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-09-28 00:00:00.000000000 Z
11
+ date: 2018-10-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath