aws-sdk-core 2.0.6 → 2.0.7
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.resources.json +72 -75
- data/apis/CloudFront.api.json +96 -60
- data/apis/CognitoSync.api.json +661 -46
- data/apis/EC2.resources.json +1190 -1101
- data/apis/ElasticLoadBalancing.api.json +14 -1
- data/apis/Glacier.resources.json +372 -355
- data/apis/IAM.resources.json +218 -215
- data/apis/OpsWorks.resources.json +39 -81
- data/apis/Route53.api.json +666 -437
- data/apis/S3.resources.json +228 -194
- data/apis/SNS.resources.json +135 -139
- data/apis/SQS.resources.json +95 -95
- data/lib/aws-sdk-core/json/rpc_body_handler.rb +2 -0
- data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +2 -2
- data/lib/aws-sdk-core/version.rb +1 -1
- metadata +2 -2
@@ -25,7 +25,7 @@ module Aws
|
|
25
25
|
def remove_id_prefixes(params)
|
26
26
|
# Many operations accept of :id or :hosted_zone_id as a root-level
|
27
27
|
# param, pruning prefixes from those.
|
28
|
-
[:id, :hosted_zone_id].each do |key|
|
28
|
+
[:id, :hosted_zone_id, :delegation_set_id].each do |key|
|
29
29
|
params[key] = remove_prefix(params[key]) if params[key]
|
30
30
|
end
|
31
31
|
|
@@ -41,7 +41,7 @@ module Aws
|
|
41
41
|
end
|
42
42
|
|
43
43
|
def remove_prefix(str)
|
44
|
-
str.sub(/^\/(hostedzone|change)\//, '')
|
44
|
+
str.sub(/^\/(hostedzone|change|delegationset)\//, '')
|
45
45
|
end
|
46
46
|
|
47
47
|
end
|
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.0.
|
4
|
+
version: 2.0.7
|
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: 2014-
|
11
|
+
date: 2014-11-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: multi_json
|