Sha256: fff77126f51bb7bc78629d2d7f17995e9023213a0fbcabe81bba0c08555c29b7
Contents?: true
Size: 931 Bytes
Versions: 20
Compression:
Stored size: 931 Bytes
Contents
module Fog module Compute class Google class Mock def get_subnetwork(_subnetwork_name, _region_name) Fog::Mock.not_implemented end end class Real ## # Returns the specified subnetwork. # # @param subnetwork_name [String] the name of the subnetwork # @param region_name [String] the name of the subnetwork's region # @return [Google::Apis::ComputeV1::Operation] an operation response # # @see https://cloud.google.com/compute/docs/reference/latest/subnetworks/get def get_subnetwork(subnetwork_name, region_name) subnetwork_name = subnetwork_name.split("/")[-1] if subnetwork_name.start_with? "http" region_name = region_name.split("/")[-1] if region_name.start_with? "http" @compute.get_subnetwork(@project, region_name, subnetwork_name) end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems