File: backend_services_factory.rb

package info (click to toggle)
ruby-fog-google 1.11.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,568 kB
  • sloc: ruby: 16,711; sh: 40; 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