aws-sdk-core 2.2.14 → 2.2.15

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.
@@ -0,0 +1,5 @@
1
+ {
2
+ "version":"1.0",
3
+ "examples":{
4
+ }
5
+ }
@@ -4,11 +4,11 @@
4
4
  "apiVersion":"2015-07-01",
5
5
  "endpointPrefix":"marketplacecommerceanalytics",
6
6
  "jsonVersion":"1.1",
7
+ "protocol":"json",
7
8
  "serviceFullName":"AWS Marketplace Commerce Analytics",
8
9
  "signatureVersion":"v4",
9
10
  "signingName":"marketplacecommerceanalytics",
10
- "targetPrefix":"MarketplaceCommerceAnalytics20150701",
11
- "protocol":"json"
11
+ "targetPrefix":"MarketplaceCommerceAnalytics20150701"
12
12
  },
13
13
  "operations":{
14
14
  "GenerateDataSet":{
@@ -20,15 +20,18 @@
20
20
  "input":{"shape":"GenerateDataSetRequest"},
21
21
  "output":{"shape":"GenerateDataSetResult"},
22
22
  "errors":[
23
- {
24
- "shape":"MarketplaceCommerceAnalyticsException",
25
- "exception":true,
26
- "fault":true
27
- }
23
+ {"shape":"MarketplaceCommerceAnalyticsException"}
28
24
  ]
29
25
  }
30
26
  },
31
27
  "shapes":{
28
+ "CustomerDefinedValues":{
29
+ "type":"map",
30
+ "key":{"shape":"OptionalKey"},
31
+ "value":{"shape":"OptionalValue"},
32
+ "max":5,
33
+ "min":1
34
+ },
32
35
  "DataSetPublicationDate":{"type":"timestamp"},
33
36
  "DataSetRequestId":{"type":"string"},
34
37
  "DataSetType":{
@@ -49,10 +52,11 @@
49
52
  "disbursed_amount_by_age_of_uncollected_funds",
50
53
  "disbursed_amount_by_age_of_disbursed_funds",
51
54
  "customer_profile_by_industry",
52
- "customer_profile_by_revenue"
55
+ "customer_profile_by_revenue",
56
+ "customer_profile_by_geography"
53
57
  ],
54
- "min":1,
55
- "max":255
58
+ "max":255,
59
+ "min":1
56
60
  },
57
61
  "DestinationS3BucketName":{
58
62
  "type":"string",
@@ -75,7 +79,8 @@
75
79
  "roleNameArn":{"shape":"RoleNameArn"},
76
80
  "destinationS3BucketName":{"shape":"DestinationS3BucketName"},
77
81
  "destinationS3Prefix":{"shape":"DestinationS3Prefix"},
78
- "snsTopicArn":{"shape":"SnsTopicArn"}
82
+ "snsTopicArn":{"shape":"SnsTopicArn"},
83
+ "customerDefinedValues":{"shape":"CustomerDefinedValues"}
79
84
  }
80
85
  },
81
86
  "GenerateDataSetResult":{
@@ -92,6 +97,16 @@
92
97
  "exception":true,
93
98
  "fault":true
94
99
  },
100
+ "OptionalKey":{
101
+ "type":"string",
102
+ "max":255,
103
+ "min":1
104
+ },
105
+ "OptionalValue":{
106
+ "type":"string",
107
+ "max":255,
108
+ "min":1
109
+ },
95
110
  "RoleNameArn":{
96
111
  "type":"string",
97
112
  "min":1
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -54,6 +54,7 @@ module Aws
54
54
  ElasticTranscoder
55
55
  EMR
56
56
  Firehose
57
+ GameLift
57
58
  Glacier
58
59
  IAM
59
60
  ImportExport
@@ -0,0 +1,5 @@
1
+ Aws.add_service(:GameLift, {
2
+ api: "#{Aws::API_DIR}/gamelift/2015-10-01/api-2.json",
3
+ docs: "#{Aws::API_DIR}/gamelift/2015-10-01/docs-2.json",
4
+ examples: "#{Aws::API_DIR}/gamelift/2015-10-01/examples-1.json",
5
+ })
@@ -11,7 +11,7 @@ module Aws
11
11
  #
12
12
  # ** DO NOT EDIT THE FOLLOWING LINE OF CODE **
13
13
  #
14
- SENSITIVE = [:admin_contact, :artifact_credentials, :auth_code, :base_32_string_seed, :copy_source_sse_customer_key, :new_password, :old_password, :password, :plaintext, :private_key, :qr_code_png, :registrant_contact, :secret_access_key, :shared_secret, :sse_customer_key, :ssekms_key_id, :tech_contact, :trust_password, :username]
14
+ SENSITIVE = [:admin_contact, :artifact_credentials, :auth_code, :base_32_string_seed, :copy_source_sse_customer_key, :new_password, :old_password, :password, :plaintext, :private_key, :qr_code_png, :registrant_contact, :secret_access_key, :shared_secret, :sse_customer_key, :ssekms_key_id, :tech_contact, :trust_password, :upload_credentials, :username]
15
15
 
16
16
  def initialize(options = {})
17
17
  @filters = Set.new(SENSITIVE + Array(options[:filter]))
@@ -1,4 +1,5 @@
1
1
  Aws.add_service(:MarketplaceCommerceAnalytics, {
2
2
  api: "#{Aws::API_DIR}/marketplacecommerceanalytics/2015-07-01/api-2.json",
3
3
  docs: "#{Aws::API_DIR}/marketplacecommerceanalytics/2015-07-01/docs-2.json",
4
+ examples: "#{Aws::API_DIR}/marketplacecommerceanalytics/2015-07-01/examples-1.json",
4
5
  })
@@ -22,8 +22,6 @@ module Aws
22
22
  context.config = context.config.dup
23
23
  context.config.region = region
24
24
  context.config.sigv4_region = region
25
- else
26
- raise ArgumentError, "invalid queue url `#{url}'"
27
25
  end
28
26
  end
29
27
 
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.2.14'
2
+ VERSION = '2.2.15'
3
3
  end
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: 2.2.14
4
+ version: 2.2.15
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: 2016-01-28 00:00:00.000000000 Z
11
+ date: 2016-02-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -116,6 +116,8 @@ files:
116
116
  - apis/events/2014-02-03/api-2.json
117
117
  - apis/events/2014-02-03/examples-1.json
118
118
  - apis/firehose/2015-08-04/api-2.json
119
+ - apis/gamelift/2015-10-01/api-2.json
120
+ - apis/gamelift/2015-10-01/examples-1.json
119
121
  - apis/glacier/2012-06-01/api-2.json
120
122
  - apis/glacier/2012-06-01/paginators-1.json
121
123
  - apis/glacier/2012-06-01/resources-1.json
@@ -147,6 +149,7 @@ files:
147
149
  - apis/machinelearning/2014-12-12/api-2.json
148
150
  - apis/machinelearning/2014-12-12/paginators-1.json
149
151
  - apis/marketplacecommerceanalytics/2015-07-01/api-2.json
152
+ - apis/marketplacecommerceanalytics/2015-07-01/examples-1.json
150
153
  - apis/monitoring/2010-08-01/api-2.json
151
154
  - apis/monitoring/2010-08-01/paginators-1.json
152
155
  - apis/opsworks/2013-02-18/api-2.json
@@ -259,6 +262,7 @@ files:
259
262
  - lib/aws-sdk-core/endpoint_provider.rb
260
263
  - lib/aws-sdk-core/errors.rb
261
264
  - lib/aws-sdk-core/firehose.rb
265
+ - lib/aws-sdk-core/gamelift.rb
262
266
  - lib/aws-sdk-core/glacier.rb
263
267
  - lib/aws-sdk-core/iam.rb
264
268
  - lib/aws-sdk-core/importexport.rb