skywriter 1.1.1 → 1.1.2

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: f67783e15965d40bda4b4107970c988a34d7b93b
4
- data.tar.gz: 8fbb3dda678626bd30d652a1404a6003667eaae9
3
+ metadata.gz: 8daa1417887d41edec5df4eba9c136b7fc077e18
4
+ data.tar.gz: 5b11a5267a385bbbd6b23d5c55d591f2c2a6c2b8
5
5
  SHA512:
6
- metadata.gz: 77e5a8062c9e045feb3c155ad9e13c2a6e3601058aecfc15177485d717cfd8da84a92959467ac652073263f8e7ecaf5c2dd69889198c33d6996b8db5fb4630b8
7
- data.tar.gz: c77a4da1d2e2cb604262f49358f1e4df8c254d533e5dc6f80c40c6db239a4847289020efeb55276b4e58b9b4d6a546d819e57e524d60e2e6be813ccd35c7e077
6
+ metadata.gz: 3e77a9b5a7f5d5f16b376459e59b78be2690c57ed0dca2ca4c94643546557a6ea9225d529be79595f315baa642edb289d9b433dc655d0ed97263b457fda4ace2
7
+ data.tar.gz: fab1e6ced849b5d0a9e30f382887bce82330f8dd6923ef7128655c57b704d33c64b0985644b793da2ae3cf5b2ac9b7d8acace79fa0a741283cd4de31346cec72
data/CHANGES.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changes
2
2
 
3
+ ## 1.1.2
4
+
5
+ * ELB: Add ConnectionDraining and AccessLogging properties plus associated property types. - Bob Potter
6
+
3
7
  ## 1.1.1
4
8
 
5
9
  * Add attributes for IAM::Role
@@ -6,8 +6,10 @@ module Skywriter
6
6
  class LoadBalancer
7
7
  include Skywriter::Resource
8
8
 
9
+ property :AccessLoggingProperty
9
10
  property :AppCookieStickinessPolicy
10
11
  property :AvailabilityZones
12
+ property :ConnectionDrainingPolicy
11
13
  property :CrossZone
12
14
  property :HealthCheck
13
15
  property :Instances
@@ -0,0 +1,12 @@
1
+ module Skywriter
2
+ class ResourceProperty
3
+ module ElasticLoadBalancing
4
+ class AccessLoggingPolicy < Skywriter::ResourceProperty
5
+ property :EmitInterval
6
+ property :Enabled
7
+ property :S3BucketName
8
+ property :S3BucketPrefix
9
+ end
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,10 @@
1
+ module Skywriter
2
+ class ResourceProperty
3
+ module ElasticLoadBalancing
4
+ class ConnectionDrainingPolicy < Skywriter::ResourceProperty
5
+ property :Enabled
6
+ property :Timeout
7
+ end
8
+ end
9
+ end
10
+ end
@@ -1,3 +1,3 @@
1
1
  module Skywriter
2
- VERSION = "1.1.1"
2
+ VERSION = "1.1.2"
3
3
  end
@@ -141,7 +141,9 @@ describe "The implementation" do
141
141
  Skywriter::ResourceProperty::ElasticBeanstalk::OptionSetting,
142
142
  Skywriter::ResourceProperty::ElasticBeanstalk::SourceBundle,
143
143
  Skywriter::ResourceProperty::ElasticBeanstalk::SourceConfiguration,
144
+ Skywriter::ResourceProperty::ElasticLoadBalancing::AccessLoggingPolicy,
144
145
  Skywriter::ResourceProperty::ElasticLoadBalancing::AppCookieStickinessPolicy,
146
+ Skywriter::ResourceProperty::ElasticLoadBalancing::ConnectionDrainingPolicy,
145
147
  Skywriter::ResourceProperty::ElasticLoadBalancing::HealthCheck,
146
148
  Skywriter::ResourceProperty::ElasticLoadBalancing::LBCookieStickinessPolicy,
147
149
  Skywriter::ResourceProperty::ElasticLoadBalancing::Listener,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: skywriter
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Michael
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-06-27 00:00:00.000000000 Z
12
+ date: 2014-07-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: require_all
@@ -245,7 +245,9 @@ files:
245
245
  - lib/skywriter/resource_property/elastic_beanstalk/option_setting.rb
246
246
  - lib/skywriter/resource_property/elastic_beanstalk/source_bundle.rb
247
247
  - lib/skywriter/resource_property/elastic_beanstalk/source_configuration.rb
248
+ - lib/skywriter/resource_property/elastic_load_balancing/access_logging_policy.rb
248
249
  - lib/skywriter/resource_property/elastic_load_balancing/app_cookie_stickiness_policy.rb
250
+ - lib/skywriter/resource_property/elastic_load_balancing/connection_draining_policy.rb
249
251
  - lib/skywriter/resource_property/elastic_load_balancing/health_check.rb
250
252
  - lib/skywriter/resource_property/elastic_load_balancing/lb_cookie_stickiness_policy.rb
251
253
  - lib/skywriter/resource_property/elastic_load_balancing/listener.rb