Class: Fog::Compute::Google::InstanceTemplates
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::Google::InstanceTemplates
- Defined in:
- lib/fog/compute/google/models/instance_templates.rb
Instance Method Summary collapse
Instance Method Details
#all ⇒ Object
7 8 9 10 |
# File 'lib/fog/compute/google/models/instance_templates.rb', line 7 def all data = service.list_instance_templates.items || [] load(data.map(&:to_h)) end |
#get(identity) ⇒ Object
12 13 14 15 16 17 18 19 20 |
# File 'lib/fog/compute/google/models/instance_templates.rb', line 12 def get(identity) if identity instance_template = service.get_instance_template(identity).to_h return new(instance_template) end rescue ::Google::Apis::ClientError => e raise e unless e.status_code == 404 nil end |