humidifier 0.3.0 → 0.4.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9de50c50176d088372a188ac60aea7e4087f2389
4
- data.tar.gz: f613c462e5ee7ed74403409d7b6b82ff87eb4632
3
+ metadata.gz: 67ea84abae22ec896dec0995ea8317ecdaf6ce26
4
+ data.tar.gz: 4e834c91dfa6ed5cc689c302d832c86ec29dd196
5
5
  SHA512:
6
- metadata.gz: 9c7fcc5768d0f2a7d2cbeefbb3f6a3497a5977542e1990d9d811284b72a5f04d9ffc1bd45c153a4a4dcd4ac6a281c3f5ff3fc46af38bbf006ba75bb59e2c100a
7
- data.tar.gz: 586ecf805909463042c9310272bd348a5c8c33273fc5860115151644a2297496e8db7f35489b73c59eb009f0b121a755e0febd0d9f8d037125573d78120d5bd0
6
+ metadata.gz: ba97988edcb27d02e041e42500743c713ced173ca7ae3a4da720570d0c2ae4e4fbf7916c8718a64625d3037aae2d403203f6d4f205482a86253fa92e221c69ad
7
+ data.tar.gz: 2da29025aeee1d04349dc673cc73804f2a76f260b2e34d89eb84c57e7ba79589a1814cd6a7d69d7d8029e396329d54280d7f90bb1bf5dbcf3c72847aa9fa41f4
@@ -13,6 +13,12 @@ module Humidifier
13
13
  super
14
14
  end
15
15
  end
16
+
17
+ # We capture stack methods and warn about them but don't actually respond
18
+ # to them
19
+ def respond_to_missing?(method, *)
20
+ AwsShim::STACK_METHODS.include?(method) ? false : super
21
+ end
16
22
  end
17
23
  end
18
24
  end
@@ -1,4 +1,4 @@
1
1
  module Humidifier
2
2
  # Gem version
3
- VERSION = '0.3.0'.freeze
3
+ VERSION = '0.4.0'.freeze
4
4
  end
@@ -5,6 +5,6 @@
5
5
  "Description" : String,
6
6
  "Name" : String,
7
7
  "RestApiId" : String,
8
- "Schema" : String
8
+ "Schema" : JSON object
9
9
  }
10
10
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "Type" : "AWS::ApiGateway::RestApi",
3
3
  "Properties" : {
4
- "Body" : String,
4
+ "Body" : JSON object,
5
5
  "BodyS3Location" : S3Location,
6
6
  "CloneFrom" : String,
7
7
  "Description" : String,
@@ -3,6 +3,6 @@
3
3
  "Properties": {
4
4
  "CacheParameterGroupFamily" : String,
5
5
  "Description" : String,
6
- "Properties" : { "prop1" : "value1", ... }
6
+ "Properties" : { String:String, ... }
7
7
  }
8
8
  }
@@ -6,7 +6,7 @@
6
6
  "DomainName" : String,
7
7
  "EBSOptions" : EBS Options,
8
8
  "ElasticsearchClusterConfig" : Elasticsearch Cluster Config,
9
- "SnapshotOptions" : Snaptshot Options,
9
+ "SnapshotOptions" : Snapshot Options,
10
10
  "Tags" : [ Resource Tag, ... ]
11
11
  }
12
12
  }
data/specs/IAM-Group.cf CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
- "Type": "AWS::IAM::Group",
3
- "Properties": {
4
- "ManagedPolicyArns": [ String, ... ],
5
- "Path": String,
6
- "Policies": [ Policies, ... ]
7
- }
2
+ "Type": "AWS::IAM::Group",
3
+ "Properties": {
4
+ "GroupName": String,
5
+ "ManagedPolicyArns": [ String, ... ],
6
+ "Path": String,
7
+ "Policies": [ Policies, ... ]
8
+ }
8
9
  }
data/specs/IAM-Role.cf CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
- "Type": "AWS::IAM::Role",
3
- "Properties": {
4
- "AssumeRolePolicyDocument": { JSON },
5
- "ManagedPolicyArns": [ String, ... ],
6
- "Path": String,
7
- "Policies": [ Policies, ... ]
8
- }
2
+ "Type": "AWS::IAM::Role",
3
+ "Properties": {
4
+ "AssumeRolePolicyDocument": { JSON },
5
+ "ManagedPolicyArns": [ String, ... ],
6
+ "Path": String,
7
+ "Policies": [ Policies, ... ],
8
+ "RoleName": String
9
+ }
9
10
  }
data/specs/IAM-User.cf CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
- "Type": "AWS::IAM::User",
3
- "Properties": {
4
- "Groups": [ String, ... ],
5
- "LoginProfile": LoginProfile Type,
6
- "ManagedPolicyArns": [ String, ... ],
7
- "Path": String,
8
- "Policies": [ Policies, ... ]
9
- }
2
+ "Type": "AWS::IAM::User",
3
+ "Properties": {
4
+ "Groups": [ String, ... ],
5
+ "LoginProfile": LoginProfile Type,
6
+ "ManagedPolicyArns": [ String, ... ],
7
+ "Path": String,
8
+ "Policies": [ Policies, ... ],
9
+ "UserName": String
10
+ }
10
11
  }
@@ -0,0 +1,7 @@
1
+ {
2
+ "Type": "AWS::IoT::Certificate",
3
+ "Properties": {
4
+ "CertificateSigningRequest": String,
5
+ "Status": String
6
+ }
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "Type": "AWS::IoT::Policy",
3
+ "Properties": {
4
+ "PolicyDocument": JSON object,
5
+ "PolicyName": String
6
+ }
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "Type": "AWS::IoT::PolicyPrincipalAttachment",
3
+ "Properties": {
4
+ "PolicyName": String,
5
+ "Principal": String
6
+ }
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "Type": "AWS::IoT::Thing",
3
+ "Properties" : {
4
+ "AttributePayload": { String:String, ... },
5
+ "ThingName": String
6
+ }
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "Type": "AWS::IoT::ThingPrincipalAttachment",
3
+ "Properties": {
4
+ "Principal": String,
5
+ "ThingName": String
6
+ }
7
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "Type": "AWS::IoT::TopicRule",
3
+ "Properties": {
4
+ "RuleName": String,
5
+ "TopicRulePayload": TopicRulePayLoad
6
+ }
7
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: humidifier
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Localytics
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-20 00:00:00.000000000 Z
11
+ date: 2016-08-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -277,6 +277,12 @@ files:
277
277
  - specs/IAM-Role.cf
278
278
  - specs/IAM-User.cf
279
279
  - specs/IAM-UserToGroupAddition.cf
280
+ - specs/IoT-Certificate.cf
281
+ - specs/IoT-Policy.cf
282
+ - specs/IoT-PolicyPrincipalAttachment.cf
283
+ - specs/IoT-Thing.cf
284
+ - specs/IoT-ThingPrincipalAttachment.cf
285
+ - specs/IoT-TopicRule.cf
280
286
  - specs/KMS-Key.cf
281
287
  - specs/Kinesis-Stream.cf
282
288
  - specs/KinesisFirehose-DeliveryStream.cf