ace-client-ext 0.0.3 → 0.0.4
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.
- data/VERSION +1 -1
- data/lib/ace-client/niftycloud/computing.rb +7 -0
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.4
|
@@ -142,6 +142,12 @@ module AceClient
|
|
142
142
|
end
|
143
143
|
end
|
144
144
|
|
145
|
+
def delete_ssl_certificates
|
146
|
+
self.ssl_certificates.each do |sc|
|
147
|
+
self.action('DeleteSslCertificate', 'FqdnId' => sc['fqdnId'])
|
148
|
+
end
|
149
|
+
end
|
150
|
+
|
145
151
|
def delete_resources
|
146
152
|
stop_instances
|
147
153
|
delete_instances
|
@@ -151,6 +157,7 @@ module AceClient
|
|
151
157
|
delete_load_balancers
|
152
158
|
delete_volumes
|
153
159
|
delete_images
|
160
|
+
delete_ssl_certificates
|
154
161
|
end
|
155
162
|
end
|
156
163
|
end
|