aws-sdk-core 2.6.27 → 2.6.28
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/apis/cloudformation/2010-05-15/api-2.json +38 -2
- data/apis/glacier/2012-06-01/api-2.json +369 -780
- data/apis/glacier/2012-06-01/examples-1.json +5 -0
- data/apis/route53/2013-04-01/api-2.json +4 -3
- data/apis/s3/2006-03-01/api-2.json +17 -1
- data/lib/aws-sdk-core/glacier.rb +1 -0
- data/lib/aws-sdk-core/version.rb +1 -1
- metadata +3 -2
@@ -7,7 +7,8 @@
|
|
7
7
|
"protocol":"rest-xml",
|
8
8
|
"serviceAbbreviation":"Route 53",
|
9
9
|
"serviceFullName":"Amazon Route 53",
|
10
|
-
"signatureVersion":"v4"
|
10
|
+
"signatureVersion":"v4",
|
11
|
+
"uid":"route53-2013-04-01"
|
11
12
|
},
|
12
13
|
"operations":{
|
13
14
|
"AssociateVPCWithHostedZone":{
|
@@ -1937,8 +1938,8 @@
|
|
1937
1938
|
},
|
1938
1939
|
"IPAddress":{
|
1939
1940
|
"type":"string",
|
1940
|
-
"max":
|
1941
|
-
"pattern":"^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$"
|
1941
|
+
"max":45,
|
1942
|
+
"pattern":"(^((([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]))$|^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$)"
|
1942
1943
|
},
|
1943
1944
|
"IPAddressCidr":{"type":"string"},
|
1944
1945
|
"IncompatibleVersion":{
|
@@ -2338,6 +2338,13 @@
|
|
2338
2338
|
}
|
2339
2339
|
}
|
2340
2340
|
},
|
2341
|
+
"GlacierJobParameters":{
|
2342
|
+
"type":"structure",
|
2343
|
+
"required":["Tier"],
|
2344
|
+
"members":{
|
2345
|
+
"Tier":{"shape":"Tier"}
|
2346
|
+
}
|
2347
|
+
},
|
2341
2348
|
"Grant":{
|
2342
2349
|
"type":"structure",
|
2343
2350
|
"members":{
|
@@ -4097,7 +4104,8 @@
|
|
4097
4104
|
"type":"structure",
|
4098
4105
|
"required":["Days"],
|
4099
4106
|
"members":{
|
4100
|
-
"Days":{"shape":"Days"}
|
4107
|
+
"Days":{"shape":"Days"},
|
4108
|
+
"GlacierJobParameters":{"shape":"GlacierJobParameters"}
|
4101
4109
|
}
|
4102
4110
|
},
|
4103
4111
|
"Role":{"type":"string"},
|
@@ -4216,6 +4224,14 @@
|
|
4216
4224
|
}
|
4217
4225
|
},
|
4218
4226
|
"TargetPrefix":{"type":"string"},
|
4227
|
+
"Tier":{
|
4228
|
+
"type":"string",
|
4229
|
+
"enum":[
|
4230
|
+
"Standard",
|
4231
|
+
"Bulk",
|
4232
|
+
"Expedited"
|
4233
|
+
]
|
4234
|
+
},
|
4219
4235
|
"Token":{"type":"string"},
|
4220
4236
|
"TopicArn":{"type":"string"},
|
4221
4237
|
"TopicConfiguration":{
|
data/lib/aws-sdk-core/glacier.rb
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
Aws.add_service(:Glacier, {
|
2
2
|
api: "#{Aws::API_DIR}/glacier/2012-06-01/api-2.json",
|
3
3
|
docs: "#{Aws::API_DIR}/glacier/2012-06-01/docs-2.json",
|
4
|
+
examples: "#{Aws::API_DIR}/glacier/2012-06-01/examples-1.json",
|
4
5
|
paginators: "#{Aws::API_DIR}/glacier/2012-06-01/paginators-1.json",
|
5
6
|
resources: "#{Aws::API_DIR}/glacier/2012-06-01/resources-1.json",
|
6
7
|
waiters: "#{Aws::API_DIR}/glacier/2012-06-01/waiters-2.json",
|
data/lib/aws-sdk-core/version.rb
CHANGED
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.6.
|
4
|
+
version: 2.6.28
|
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-11-
|
11
|
+
date: 2016-11-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jmespath
|
@@ -189,6 +189,7 @@ files:
|
|
189
189
|
- apis/gamelift/2015-10-01/api-2.json
|
190
190
|
- apis/gamelift/2015-10-01/examples-1.json
|
191
191
|
- apis/glacier/2012-06-01/api-2.json
|
192
|
+
- apis/glacier/2012-06-01/examples-1.json
|
192
193
|
- apis/glacier/2012-06-01/paginators-1.json
|
193
194
|
- apis/glacier/2012-06-01/resources-1.json
|
194
195
|
- apis/glacier/2012-06-01/waiters-2.json
|