Sha256: 78969cbc79ebec04f5fb774d77f5c29056ef5206761f57c18b7c49dfa99c9b64
Contents?: true
Size: 540 Bytes
Versions: 14
Compression:
Stored size: 540 Bytes
Contents
module Fog module Compute class Google class Mock def set_global_forwarding_rule_target(_rule_name, _target) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: end end class Real def set_global_forwarding_rule_target(rule_name, target_opts) @compute.set_global_forwarding_rule_target( @project, rule_name, ::Google::Apis::ComputeV1::TargetReference.new(**target_opts) ) end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems