convection 1.1.5 → 1.1.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ea376ec81c3edad8005e4e4fbbbb2275c086ee20
|
4
|
+
data.tar.gz: ce38ff02d964e2fd90a821123f943babc334b51f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 90c91f1a06ecd94537694a8705e6485b32a74d9907d892882fb15656d355e587f943c195171587e8cb264ef0d265dcb50e20c4b1407c8f80e1a5fffc397a3b12
|
7
|
+
data.tar.gz: 3943530ef51c52c5d02878e0ca1f47865fb2a86fd8f31a9fd87eec866615551749809526fc16380b651db8e953b4ddc26fe52ed2e151a058fe2cbabef6b84527
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require_relative '../resource'
|
2
|
+
|
3
|
+
module Convection
|
4
|
+
module Model
|
5
|
+
class Template
|
6
|
+
class Resource
|
7
|
+
##
|
8
|
+
# AWS::AutoScaling::ScheduledAction
|
9
|
+
##
|
10
|
+
class ScheduledAction < Resource
|
11
|
+
type 'AWS::AutoScaling::ScheduledAction'
|
12
|
+
property :auto_scaling_group_name, 'AutoScalingGroupName'
|
13
|
+
property :desired_capacity, 'DesiredCapacity'
|
14
|
+
property :end_time, 'EndTime'
|
15
|
+
property :max_size, 'MaxSize'
|
16
|
+
property :min_size, 'MinSize'
|
17
|
+
property :recurrence, 'Recurrence'
|
18
|
+
property :start_time, 'StartTime'
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require_relative '../resource'
|
2
|
+
|
3
|
+
module Convection
|
4
|
+
module Model
|
5
|
+
class Template
|
6
|
+
class Resource
|
7
|
+
##
|
8
|
+
# AWS::ECR::Repository
|
9
|
+
##
|
10
|
+
class ECRRepository < Resource
|
11
|
+
type 'AWS::ECR::Repository'
|
12
|
+
property :repository_name, 'RepositoryName'
|
13
|
+
property :repository_policy_text, 'RepositoryPolicyText'
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: convection
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Manero
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-07-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk
|
@@ -153,6 +153,7 @@ files:
|
|
153
153
|
- lib/convection/model/template/resource/aws_auto_scaling_auto_scaling_group.rb
|
154
154
|
- lib/convection/model/template/resource/aws_auto_scaling_launch_configuration.rb
|
155
155
|
- lib/convection/model/template/resource/aws_auto_scaling_scaling_policy.rb
|
156
|
+
- lib/convection/model/template/resource/aws_auto_scaling_scheduled_action.rb
|
156
157
|
- lib/convection/model/template/resource/aws_certificate_manager_certificate.rb
|
157
158
|
- lib/convection/model/template/resource/aws_cloud_watch_alarm.rb
|
158
159
|
- lib/convection/model/template/resource/aws_cloudfront_distribution.rb
|
@@ -183,6 +184,7 @@ files:
|
|
183
184
|
- lib/convection/model/template/resource/aws_ec2_vpn_connection_route.rb
|
184
185
|
- lib/convection/model/template/resource/aws_ec2_vpn_gateway.rb
|
185
186
|
- lib/convection/model/template/resource/aws_ec2_vpn_gateway_route_propagation.rb
|
187
|
+
- lib/convection/model/template/resource/aws_ecr_repository.rb
|
186
188
|
- lib/convection/model/template/resource/aws_elasticache_cluster.rb
|
187
189
|
- lib/convection/model/template/resource/aws_elasticache_parameter_group.rb
|
188
190
|
- lib/convection/model/template/resource/aws_elasticache_replication_group.rb
|