File: target_https_proxies_factory.rb

package info (click to toggle)
ruby-fog-google 1.19.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,568 kB
  • sloc: ruby: 16,775; makefile: 3
file content (26 lines) | stat: -rw-r--r-- 811 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
require "integration/factories/collection_factory"
require "integration/factories/url_maps_factory"
require "integration/factories/ssl_certificates_factory"

class TargetHttpsProxiesFactory < CollectionFactory
  def initialize(example)
    @ssl_certificates = SslCertificatesFactory.new(example)
    @url_maps = UrlMapsFactory.new(example)
    super(Fog::Compute[:google].target_https_proxies, example)
  end

  def cleanup
    # Calling CollectionFactory#cleanup with forced async as
    # Url Maps need the Https Proxy to be deleted before they
    # can be destroyed
    super(false)
    @ssl_certificates.cleanup
    @url_maps.cleanup
  end

  def params
    { :name => resource_name,
      :url_map => @url_maps.create.self_link,
      :ssl_certificates => [@ssl_certificates.create.self_link] }
  end
end