Class: Fog::Compute::Google::TargetInstances
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::Google::TargetInstances
- Defined in:
- lib/fog/compute/google/models/target_instances.rb
Instance Method Summary collapse
- #all(zone: nil, filter: nil, max_results: nil, order_by: nil, page_token: nil) ⇒ Object
- #get(target_instance, zone = nil) ⇒ Object
Instance Method Details
#all(zone: nil, filter: nil, max_results: nil, order_by: nil, page_token: nil) ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/fog/compute/google/models/target_instances.rb', line 7 def all(zone: nil, filter: nil, max_results: nil, order_by: nil, page_token: nil) opts = { :filter => filter, :max_results => max_results, :order_by => order_by, :page_token => page_token } if zone data = service.list_target_instances(zone, opts).to_h[:items] || [] else data = [] service.list_aggregated_target_instances(opts).items.each_value do |scoped_list| unless scoped_list.nil? || scoped_list.target_instances.nil? data += scoped_list.target_instances.map(&:to_h) end end end load(data) end |
#get(target_instance, zone = nil) ⇒ Object
29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
# File 'lib/fog/compute/google/models/target_instances.rb', line 29 def get(target_instance, zone = nil) response = nil if zone response = service.get_target_instance(target_instance, zone).to_h else response = all(:filter => "name eq #{target_instance}").first response = response.attributes unless response.nil? end return nil if response.nil? new(response) rescue ::Google::Apis::ClientError => e raise e unless e.status_code == 404 nil end |