Sha256: e15432ce626be92efc6679443f4ba00f9d25984add87531c6dfb6f9595f66330
Contents?: true
Size: 617 Bytes
Versions: 7
Compression:
Stored size: 617 Bytes
Contents
module Fog module Compute class Google class Mock def set_forwarding_rule_target(_rule_name, _region, _target_opts) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: end end class Real def set_forwarding_rule_target(rule_name, region, target_opts) region = region.split("/")[-1] if region.start_with? "http" @compute.set_forwarding_rule_target( @project, region, rule_name, ::Google::Apis::ComputeV1::TargetReference.new(target_opts) ) end end end end end
Version data entries
7 entries across 7 versions & 2 rubygems