Sha256: 9ccc1986aeb056dbea23e34671615beab06573613aa303d4e04780e8331b1d10

Contents?: true

Size: 947 Bytes

Versions: 22

Compression:

Stored size: 947 Bytes

Contents

module Fog
  module Compute
    class Google
      class Mock
        def list_target_instances(zone_name='us-central1-a')
          zone = self.data[:zones][zone_name]
          target_instances = self.data[:target_instances].values.select{|s| s["zone"] == zone_name}
          build_excon_response({
            "kind" => "compute#targetInstanceList",
            "selfLink" => "https://www.googleapis.com/compute/#{api_version}/projects/#{@project}/zones/#{zone_name}/targetInstances",
            "id" => "projects/#{@project}/zones/#{zone_name}/targetInstances",
            "items" => target_instances
          })
        end
      end

      class Real
        def list_target_instances(zone_name)
          api_method = @compute.target_instances.list
          parameters = {
            'project' => @project,
            'zone' => zone_name
          }

          request(api_method, parameters)
        end
      end
    end
  end
end

Version data entries

22 entries across 20 versions & 5 rubygems

Version Path
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-google-0.1.0/lib/fog/google/requests/compute/list_target_instances.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-google-0.1.0/lib/fog/google/requests/compute/list_target_instances.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-google-0.1.0/lib/fog/google/requests/compute/list_target_instances.rb
fog-google-0.1.3 lib/fog/google/requests/compute/list_target_instances.rb
fog-google-0.1.2 lib/fog/google/requests/compute/list_target_instances.rb
fog-google-0.1.1 lib/fog/google/requests/compute/list_target_instances.rb
fog-google-0.1.0 lib/fog/google/requests/compute/list_target_instances.rb
fog-google-0.0.9 lib/fog/google/requests/compute/list_target_instances.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-google-0.0.7/lib/fog/google/requests/compute/list_target_instances.rb
fog-google-0.0.7 lib/fog/google/requests/compute/list_target_instances.rb
fog-google-0.0.6 lib/fog/google/requests/compute/list_target_instances.rb
fog-google-0.0.5 lib/fog/google/requests/compute/list_target_instances.rb
fog-google-0.0.4 lib/fog/google/requests/compute/list_target_instances.rb
fog-google-0.0.3 lib/fog/google/requests/compute/list_target_instances.rb
fog-google-0.0.2 lib/fog/google/requests/compute/list_target_instances.rb
fog-1.29.0 lib/fog/google/requests/compute/list_target_instances.rb
fog-1.28.0 lib/fog/google/requests/compute/list_target_instances.rb
fog-1.27.0 lib/fog/google/requests/compute/list_target_instances.rb
fog-1.26.0 lib/fog/google/requests/compute/list_target_instances.rb
fog-1.25.0 lib/fog/google/requests/compute/list_target_instances.rb