File: backend_services_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 (19 lines) | stat: -rw-r--r-- 496 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
require "integration/factories/collection_factory"
require "integration/factories/http_health_checks_factory"

class BackendServicesFactory < CollectionFactory
  def initialize(example)
    @http_health_checks = HttpHealthChecksFactory.new(example)
    super(Fog::Compute[:google].backend_services, example)
  end

  def cleanup
    super
    @http_health_checks.cleanup
  end

  def params
    { :name => resource_name,
      :health_checks => [@http_health_checks.create.self_link] }
  end
end