Sha256: 47d88637e23899da08e2b01c3394e2e6a8ded4339ae29e26319052c1ca4ad04d
Contents?: true
Size: 538 Bytes
Versions: 7
Compression:
Stored size: 538 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
7 entries across 7 versions & 2 rubygems