Sha256: 6a11aa338b9af960e09c7b4e1d83ecd2e8af0b5c0aac587bffb81a80690fd4c1
Contents?: true
Size: 619 Bytes
Versions: 14
Compression:
Stored size: 619 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
14 entries across 14 versions & 1 rubygems