aws-sdk-core 2.11.57 → 2.11.58

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: e4ec08942656c22a60a60478a807f4f9b9a322ce
4
- data.tar.gz: 03617a8953b3aa7055b5c3d98bcc4005dccf693d
3
+ metadata.gz: f137fab2e54545149ef6afe763d624d7c32e7009
4
+ data.tar.gz: 4c65ddeefdfe1a6a7d6a7bd2966d02cbf552c7ca
5
5
  SHA512:
6
- metadata.gz: ac4234a232e550514ef1c19919d6c8c10d9efb4f3ab1b07e953604fc2ab0b3790e2cb6474f557b6541652566ac7782d42069240471e1065f4c56c8db26c801e3
7
- data.tar.gz: 2706830f7f13d661c71adc148c53aec857577d2cb1fd6e3b60397573f3e7908c0605288397bd4089bfba4f73bc2a425e3018b3a86904aee8c98d5cd1713aaa8f
6
+ metadata.gz: 9cf3e77ca469c5d8daa7a2bcabaedd9e256f0d0559349a1ef479fe422b73f198b0822f5f428c80beda88e8c6b32ccaac2fd8d4d6e9a6500639e64eba37225f0b
7
+ data.tar.gz: 904ed45a1198005c9ca44b901a75bff6d608d6f33fcb77ad14751700ebaaabc8d63b52bf8a6014830e0e756ade89eebf56bc013ca467fa3faeaf7bf05e879229
@@ -0,0 +1,253 @@
1
+ {
2
+ "version":"2.0",
3
+ "metadata":{
4
+ "apiVersion":"2018-02-27",
5
+ "endpointPrefix":"pi",
6
+ "jsonVersion":"1.1",
7
+ "protocol":"json",
8
+ "serviceAbbreviation":"AWS PI",
9
+ "serviceFullName":"AWS Performance Insights",
10
+ "serviceId":"PI",
11
+ "signatureVersion":"v4",
12
+ "signingName":"pi",
13
+ "targetPrefix":"PerformanceInsightsv20180227",
14
+ "uid":"pi-2018-02-27"
15
+ },
16
+ "operations":{
17
+ "DescribeDimensionKeys":{
18
+ "name":"DescribeDimensionKeys",
19
+ "http":{
20
+ "method":"POST",
21
+ "requestUri":"/"
22
+ },
23
+ "input":{"shape":"DescribeDimensionKeysRequest"},
24
+ "output":{"shape":"DescribeDimensionKeysResponse"},
25
+ "errors":[
26
+ {"shape":"InvalidArgumentException"},
27
+ {"shape":"InternalServiceError"},
28
+ {"shape":"NotAuthorizedException"}
29
+ ]
30
+ },
31
+ "GetResourceMetrics":{
32
+ "name":"GetResourceMetrics",
33
+ "http":{
34
+ "method":"POST",
35
+ "requestUri":"/"
36
+ },
37
+ "input":{"shape":"GetResourceMetricsRequest"},
38
+ "output":{"shape":"GetResourceMetricsResponse"},
39
+ "errors":[
40
+ {"shape":"InvalidArgumentException"},
41
+ {"shape":"InternalServiceError"},
42
+ {"shape":"NotAuthorizedException"}
43
+ ]
44
+ }
45
+ },
46
+ "shapes":{
47
+ "DataPoint":{
48
+ "type":"structure",
49
+ "required":[
50
+ "Timestamp",
51
+ "Value"
52
+ ],
53
+ "members":{
54
+ "Timestamp":{"shape":"ISOTimestamp"},
55
+ "Value":{"shape":"Double"}
56
+ }
57
+ },
58
+ "DataPointsList":{
59
+ "type":"list",
60
+ "member":{"shape":"DataPoint"}
61
+ },
62
+ "DescribeDimensionKeysRequest":{
63
+ "type":"structure",
64
+ "required":[
65
+ "ServiceType",
66
+ "Identifier",
67
+ "StartTime",
68
+ "EndTime",
69
+ "Metric",
70
+ "GroupBy"
71
+ ],
72
+ "members":{
73
+ "ServiceType":{"shape":"ServiceType"},
74
+ "Identifier":{"shape":"String"},
75
+ "StartTime":{"shape":"ISOTimestamp"},
76
+ "EndTime":{"shape":"ISOTimestamp"},
77
+ "Metric":{"shape":"String"},
78
+ "PeriodInSeconds":{"shape":"Integer"},
79
+ "GroupBy":{"shape":"DimensionGroup"},
80
+ "PartitionBy":{"shape":"DimensionGroup"},
81
+ "Filter":{"shape":"MetricQueryFilterMap"},
82
+ "MaxResults":{"shape":"MaxResults"},
83
+ "NextToken":{"shape":"String"}
84
+ }
85
+ },
86
+ "DescribeDimensionKeysResponse":{
87
+ "type":"structure",
88
+ "members":{
89
+ "AlignedStartTime":{"shape":"ISOTimestamp"},
90
+ "AlignedEndTime":{"shape":"ISOTimestamp"},
91
+ "PartitionKeys":{"shape":"ResponsePartitionKeyList"},
92
+ "Keys":{"shape":"DimensionKeyDescriptionList"},
93
+ "NextToken":{"shape":"String"}
94
+ }
95
+ },
96
+ "DimensionGroup":{
97
+ "type":"structure",
98
+ "required":["Group"],
99
+ "members":{
100
+ "Group":{"shape":"String"},
101
+ "Dimensions":{"shape":"StringList"},
102
+ "Limit":{"shape":"Limit"}
103
+ }
104
+ },
105
+ "DimensionKeyDescription":{
106
+ "type":"structure",
107
+ "members":{
108
+ "Dimensions":{"shape":"DimensionMap"},
109
+ "Total":{"shape":"Double"},
110
+ "Partitions":{"shape":"MetricValuesList"}
111
+ }
112
+ },
113
+ "DimensionKeyDescriptionList":{
114
+ "type":"list",
115
+ "member":{"shape":"DimensionKeyDescription"}
116
+ },
117
+ "DimensionMap":{
118
+ "type":"map",
119
+ "key":{"shape":"String"},
120
+ "value":{"shape":"String"}
121
+ },
122
+ "Double":{"type":"double"},
123
+ "GetResourceMetricsRequest":{
124
+ "type":"structure",
125
+ "required":[
126
+ "ServiceType",
127
+ "Identifier",
128
+ "MetricQueries",
129
+ "StartTime",
130
+ "EndTime"
131
+ ],
132
+ "members":{
133
+ "ServiceType":{"shape":"ServiceType"},
134
+ "Identifier":{"shape":"String"},
135
+ "MetricQueries":{"shape":"MetricQueryList"},
136
+ "StartTime":{"shape":"ISOTimestamp"},
137
+ "EndTime":{"shape":"ISOTimestamp"},
138
+ "PeriodInSeconds":{"shape":"Integer"},
139
+ "MaxResults":{"shape":"MaxResults"},
140
+ "NextToken":{"shape":"String"}
141
+ }
142
+ },
143
+ "GetResourceMetricsResponse":{
144
+ "type":"structure",
145
+ "members":{
146
+ "AlignedStartTime":{"shape":"ISOTimestamp"},
147
+ "AlignedEndTime":{"shape":"ISOTimestamp"},
148
+ "Identifier":{"shape":"String"},
149
+ "MetricList":{"shape":"MetricKeyDataPointsList"},
150
+ "NextToken":{"shape":"String"}
151
+ }
152
+ },
153
+ "ISOTimestamp":{"type":"timestamp"},
154
+ "Integer":{"type":"integer"},
155
+ "InternalServiceError":{
156
+ "type":"structure",
157
+ "members":{
158
+ "Message":{"shape":"String"}
159
+ },
160
+ "exception":true,
161
+ "fault":true
162
+ },
163
+ "InvalidArgumentException":{
164
+ "type":"structure",
165
+ "members":{
166
+ "Message":{"shape":"String"}
167
+ },
168
+ "exception":true
169
+ },
170
+ "Limit":{
171
+ "type":"integer",
172
+ "max":10,
173
+ "min":1
174
+ },
175
+ "MaxResults":{
176
+ "type":"integer",
177
+ "max":20,
178
+ "min":0
179
+ },
180
+ "MetricKeyDataPoints":{
181
+ "type":"structure",
182
+ "members":{
183
+ "Key":{"shape":"ResponseResourceMetricKey"},
184
+ "DataPoints":{"shape":"DataPointsList"}
185
+ }
186
+ },
187
+ "MetricKeyDataPointsList":{
188
+ "type":"list",
189
+ "member":{"shape":"MetricKeyDataPoints"}
190
+ },
191
+ "MetricQuery":{
192
+ "type":"structure",
193
+ "required":["Metric"],
194
+ "members":{
195
+ "Metric":{"shape":"String"},
196
+ "GroupBy":{"shape":"DimensionGroup"},
197
+ "Filter":{"shape":"MetricQueryFilterMap"}
198
+ }
199
+ },
200
+ "MetricQueryFilterMap":{
201
+ "type":"map",
202
+ "key":{"shape":"String"},
203
+ "value":{"shape":"String"}
204
+ },
205
+ "MetricQueryList":{
206
+ "type":"list",
207
+ "member":{"shape":"MetricQuery"},
208
+ "max":15,
209
+ "min":1
210
+ },
211
+ "MetricValuesList":{
212
+ "type":"list",
213
+ "member":{"shape":"Double"}
214
+ },
215
+ "NotAuthorizedException":{
216
+ "type":"structure",
217
+ "members":{
218
+ "Message":{"shape":"String"}
219
+ },
220
+ "exception":true
221
+ },
222
+ "ResponsePartitionKey":{
223
+ "type":"structure",
224
+ "required":["Dimensions"],
225
+ "members":{
226
+ "Dimensions":{"shape":"DimensionMap"}
227
+ }
228
+ },
229
+ "ResponsePartitionKeyList":{
230
+ "type":"list",
231
+ "member":{"shape":"ResponsePartitionKey"}
232
+ },
233
+ "ResponseResourceMetricKey":{
234
+ "type":"structure",
235
+ "required":["Metric"],
236
+ "members":{
237
+ "Metric":{"shape":"String"},
238
+ "Dimensions":{"shape":"DimensionMap"}
239
+ }
240
+ },
241
+ "ServiceType":{
242
+ "type":"string",
243
+ "enum":["RDS"]
244
+ },
245
+ "String":{"type":"string"},
246
+ "StringList":{
247
+ "type":"list",
248
+ "member":{"shape":"String"},
249
+ "max":10,
250
+ "min":1
251
+ }
252
+ }
253
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "pagination": {
3
+ }
4
+ }
@@ -221,6 +221,7 @@
221
221
  "endpoints" : {
222
222
  "ap-northeast-1" : { },
223
223
  "ap-northeast-2" : { },
224
+ "ap-south-1" : { },
224
225
  "ap-southeast-1" : { },
225
226
  "ap-southeast-2" : { },
226
227
  "ca-central-1" : { },
@@ -1001,11 +1002,13 @@
1001
1002
  "glue" : {
1002
1003
  "endpoints" : {
1003
1004
  "ap-northeast-1" : { },
1005
+ "ap-northeast-2" : { },
1004
1006
  "ap-south-1" : { },
1005
1007
  "ap-southeast-1" : { },
1006
1008
  "ap-southeast-2" : { },
1007
1009
  "eu-central-1" : { },
1008
1010
  "eu-west-1" : { },
1011
+ "eu-west-2" : { },
1009
1012
  "us-east-1" : { },
1010
1013
  "us-east-2" : { },
1011
1014
  "us-west-2" : { }
@@ -1253,6 +1256,7 @@
1253
1256
  "medialive" : {
1254
1257
  "endpoints" : {
1255
1258
  "ap-northeast-1" : { },
1259
+ "ap-northeast-2" : { },
1256
1260
  "ap-southeast-1" : { },
1257
1261
  "ap-southeast-2" : { },
1258
1262
  "eu-west-1" : { },
@@ -1800,6 +1804,10 @@
1800
1804
  "eu-west-1" : { },
1801
1805
  "eu-west-2" : { },
1802
1806
  "eu-west-3" : { },
1807
+ "fips-us-east-1" : { },
1808
+ "fips-us-east-2" : { },
1809
+ "fips-us-west-1" : { },
1810
+ "fips-us-west-2" : { },
1803
1811
  "sa-east-1" : { },
1804
1812
  "us-east-1" : {
1805
1813
  "sslCommonName" : "queue.{dnsSuffix}"
@@ -124,6 +124,7 @@ module Aws
124
124
  OpsWorks
125
125
  OpsWorksCM
126
126
  Organizations
127
+ PI
127
128
  Pinpoint
128
129
  Polly
129
130
  Pricing
@@ -0,0 +1,6 @@
1
+ Aws.add_service(:PI, {
2
+ api: "#{Aws::API_DIR}/pi/2018-02-27/api-2.json",
3
+ docs: "#{Aws::API_DIR}/pi/2018-02-27/docs-2.json",
4
+ examples: "#{Aws::API_DIR}/pi/2018-02-27/examples-1.json",
5
+ paginators: "#{Aws::API_DIR}/pi/2018-02-27/paginators-1.json",
6
+ })
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.57'
2
+ VERSION = '2.11.58'
3
3
  end
@@ -402,6 +402,10 @@
402
402
  "models": "organizations/2016-11-28",
403
403
  "endpoint": "organizations"
404
404
  },
405
+ "PI": {
406
+ "models": "pi/2018-02-27",
407
+ "endpoint": "pi"
408
+ },
405
409
  "Pinpoint": {
406
410
  "models": "pinpoint/2016-12-01",
407
411
  "endpoint": "pinpoint"
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.11.57
4
+ version: 2.11.58
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-05-25 00:00:00.000000000 Z
11
+ date: 2018-05-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -401,6 +401,9 @@ files:
401
401
  - apis/organizations/2016-11-28/api-2.json
402
402
  - apis/organizations/2016-11-28/examples-1.json
403
403
  - apis/organizations/2016-11-28/paginators-1.json
404
+ - apis/pi/2018-02-27/api-2.json
405
+ - apis/pi/2018-02-27/examples-1.json
406
+ - apis/pi/2018-02-27/paginators-1.json
404
407
  - apis/pinpoint/2016-12-01/api-2.json
405
408
  - apis/pinpoint/2016-12-01/examples-1.json
406
409
  - apis/polly/2016-06-10/api-2.json
@@ -700,6 +703,7 @@ files:
700
703
  - lib/aws-sdk-core/partitions/partition_list.rb
701
704
  - lib/aws-sdk-core/partitions/region.rb
702
705
  - lib/aws-sdk-core/partitions/service.rb
706
+ - lib/aws-sdk-core/pi.rb
703
707
  - lib/aws-sdk-core/pinpoint.rb
704
708
  - lib/aws-sdk-core/plugins/api_gateway_header.rb
705
709
  - lib/aws-sdk-core/plugins/csd_conditional_signing.rb