Class: StackMate::CloudStackLoadBalancerRule
Constant Summary
Constants included
from Resolver
Resolver::INTEXP, Resolver::STRINGEXP, Resolver::UUIDEXP
Instance Attribute Summary
#name
Instance Method Summary
collapse
Methods included from Resolver
#get_named_tag, #get_resolved, #recursive_resolve, #resolve_tags, #resolve_to_deviceid, #validate_param
Methods included from Intrinsic
#fn_base64, #fn_getatt, #fn_join, #fn_lookup, #fn_map, #fn_ref, #fn_select, #intrinsic
Methods included from Logging
configure_logger_for, #logger, logger_for
#initialize, #set_metadata
Instance Method Details
#create ⇒ Object
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# File 'lib/stackmate/participants/cloudstack_loadbalancerrule.rb', line 9
def create
logger.debug("Creating resource #{@name}")
workitem[@name] = {}
name_cs = workitem['StackName'] + '-' + @name
args={}
begin
args['publicport'] = get_publicport
args['privateport'] = get_privateport
args['name'] = workitem['StackName'] +'-' +get_name
args['algorithm'] = get_algorithm
args['description'] = get_description if @props.has_key?('description')
args['networkid'] = get_networkid if @props.has_key?('networkid')
args['openfirewall'] = get_openfirewall if @props.has_key?('openfirewall')
args['account'] = get_account if @props.has_key?('account')
args['domainid'] = get_domainid if @props.has_key?('domainid')
args['publicipid'] = get_publicipid if @props.has_key?('publicipid')
args['zoneid'] = get_zoneid if @props.has_key?('zoneid')
args['cidrlist'] = get_cidrlist if @props.has_key?('cidrlist')
logger.info("Creating resource #{@name} with following arguments")
p args
result_obj = make_async_request('createLoadBalancerRule',args)
resource_obj = result_obj['LoadBalancerRule'.downcase]
resource_obj.each_key do |k|
val = resource_obj[k]
if('id'.eql?(k))
k = 'physical_id'
end
workitem[@name][k] = val
end
set_tags(@props['tags'],workitem[@name]['physical_id'],"LoadBalancerRule") if @props.has_key?('tags')
set_metadata if workitem['Resources'][@name].has_key?('Metadata')
workitem['ResolvedNames'][@name] = name_cs
workitem['IdMap'][workitem[@name]['physical_id']] = @name
rescue NoMethodError => nme
logger.error("Create request failed for resource . Cleaning up the stack")
raise nme
rescue Exception => e
logger.error(e.message)
raise e
end
end
|
#delete ⇒ Object
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# File 'lib/stackmate/participants/cloudstack_loadbalancerrule.rb', line 56
def delete
logger.debug("Deleting resource #{@name}")
begin
physical_id = workitem[@name]['physical_id'] if !workitem[@name].nil?
if(!physical_id.nil?)
args = {'id' => physical_id
}
result_obj = make_async_request('deleteLoadBalancerRule',args)
if (!(result_obj['error'] == true))
logger.info("Successfully deleted resource #{@name}")
else
workitem[@name]['delete_error'] = true
logger.info("CloudStack error while deleting resource #{@name}")
end
else
logger.info("Resource not created in CloudStack. Skipping delete...")
end
rescue Exception => e
logger.error("Unable to delete resorce #{@name}")
end
end
|
#get_account ⇒ Object
147
148
149
150
151
152
153
|
# File 'lib/stackmate/participants/cloudstack_loadbalancerrule.rb', line 147
def get_account
resolved_account = get_resolved(@props['account'],workitem)
if resolved_account.nil? || !validate_param(resolved_account,"string")
raise "Malformed optional parameter account for resource #{@name}"
end
resolved_account
end
|
#get_algorithm ⇒ Object
115
116
117
118
119
120
121
|
# File 'lib/stackmate/participants/cloudstack_loadbalancerrule.rb', line 115
def get_algorithm
resolved_algorithm = get_resolved(@props["algorithm"],workitem)
if resolved_algorithm.nil? || !validate_param(resolved_algorithm,"string")
raise "Missing mandatory parameter algorithm for resource #{@name}"
end
resolved_algorithm
end
|
#get_cidrlist ⇒ Object
179
180
181
182
183
184
185
|
# File 'lib/stackmate/participants/cloudstack_loadbalancerrule.rb', line 179
def get_cidrlist
resolved_cidrlist = get_resolved(@props['cidrlist'],workitem)
if resolved_cidrlist.nil? || !validate_param(resolved_cidrlist,"list")
raise "Malformed optional parameter cidrlist for resource #{@name}"
end
resolved_cidrlist
end
|
#get_description ⇒ Object
123
124
125
126
127
128
129
|
# File 'lib/stackmate/participants/cloudstack_loadbalancerrule.rb', line 123
def get_description
resolved_description = get_resolved(@props['description'],workitem)
if resolved_description.nil? || !validate_param(resolved_description,"string")
raise "Malformed optional parameter description for resource #{@name}"
end
resolved_description
end
|
#get_domainid ⇒ Object
155
156
157
158
159
160
161
|
# File 'lib/stackmate/participants/cloudstack_loadbalancerrule.rb', line 155
def get_domainid
resolved_domainid = get_resolved(@props['domainid'],workitem)
if resolved_domainid.nil? || !validate_param(resolved_domainid,"uuid")
raise "Malformed optional parameter domainid for resource #{@name}"
end
resolved_domainid
end
|
#get_name ⇒ Object
107
108
109
110
111
112
113
|
# File 'lib/stackmate/participants/cloudstack_loadbalancerrule.rb', line 107
def get_name
resolved_name = get_resolved(@props["name"],workitem)
if resolved_name.nil? || !validate_param(resolved_name,"string")
raise "Missing mandatory parameter name for resource #{@name}"
end
resolved_name
end
|
#get_networkid ⇒ Object
131
132
133
134
135
136
137
|
# File 'lib/stackmate/participants/cloudstack_loadbalancerrule.rb', line 131
def get_networkid
resolved_networkid = get_resolved(@props['networkid'],workitem)
if resolved_networkid.nil? || !validate_param(resolved_networkid,"uuid")
raise "Malformed optional parameter networkid for resource #{@name}"
end
resolved_networkid
end
|
#get_openfirewall ⇒ Object
139
140
141
142
143
144
145
|
# File 'lib/stackmate/participants/cloudstack_loadbalancerrule.rb', line 139
def get_openfirewall
resolved_openfirewall = get_resolved(@props['openfirewall'],workitem)
if resolved_openfirewall.nil? || !validate_param(resolved_openfirewall,"boolean")
raise "Malformed optional parameter openfirewall for resource #{@name}"
end
resolved_openfirewall
end
|
#get_privateport ⇒ Object
99
100
101
102
103
104
105
|
# File 'lib/stackmate/participants/cloudstack_loadbalancerrule.rb', line 99
def get_privateport
resolved_privateport = get_resolved(@props["privateport"],workitem)
if resolved_privateport.nil? || !validate_param(resolved_privateport,"integer")
raise "Missing mandatory parameter privateport for resource #{@name}"
end
resolved_privateport
end
|
#get_publicipid ⇒ Object
163
164
165
166
167
168
169
|
# File 'lib/stackmate/participants/cloudstack_loadbalancerrule.rb', line 163
def get_publicipid
resolved_publicipid = get_resolved(@props['publicipid'],workitem)
if resolved_publicipid.nil? || !validate_param(resolved_publicipid,"uuid")
raise "Malformed optional parameter publicipid for resource #{@name}"
end
resolved_publicipid
end
|
#get_publicport ⇒ Object
91
92
93
94
95
96
97
|
# File 'lib/stackmate/participants/cloudstack_loadbalancerrule.rb', line 91
def get_publicport
resolved_publicport = get_resolved(@props["publicport"],workitem)
if resolved_publicport.nil? || !validate_param(resolved_publicport,"integer")
raise "Missing mandatory parameter publicport for resource #{@name}"
end
resolved_publicport
end
|
#get_zoneid ⇒ Object
171
172
173
174
175
176
177
|
# File 'lib/stackmate/participants/cloudstack_loadbalancerrule.rb', line 171
def get_zoneid
resolved_zoneid = get_resolved(@props['zoneid'],workitem)
if resolved_zoneid.nil? || !validate_param(resolved_zoneid,"uuid")
raise "Malformed optional parameter zoneid for resource #{@name}"
end
resolved_zoneid
end
|
#on_workitem ⇒ Object
78
79
80
81
82
83
84
85
86
87
88
89
|
# File 'lib/stackmate/participants/cloudstack_loadbalancerrule.rb', line 78
def on_workitem
@name = workitem.participant_name
@props = workitem['Resources'][@name]['Properties']
@props.downcase_key
@resolved_names = workitem['ResolvedNames']
if workitem['params']['operation'] == 'create'
create
else
delete
end
reply
end
|