File: instance_template.rb

package info (click to toggle)
ruby-fog-google 1.19.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,568 kB
  • sloc: ruby: 16,775; makefile: 3
file content (47 lines) | stat: -rw-r--r-- 1,502 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
module Fog
  module Compute
    class Google
      class InstanceTemplate < Fog::Model
        identity :name

        attribute :kind
        attribute :self_link, :aliases => "selfLink"
        attribute :description
        # Properties is a hash describing the templates
        # A minimal example is
        # :properties => {
        #   :machine_type => TEST_MACHINE_TYPE,
        #   :disks => [{
        #     :boot => true,
        #     :initialize_params => {
        #       :source_image => "projects/ubuntu-os-cloud/global/images/ubuntu-1804-bionic-v20180522"}
        #     }],
        #     :network_interfaces => [{
        #       :network => "global/networks/default"
        #     }]
        #   }
        # }
        # @see https://cloud.google.com/compute/docs/reference/rest/v1/instanceTemplates/insert
        attribute :properties

        def save
          requires :name
          requires :properties

          data = service.insert_instance_template(name, properties, description)
          operation = Fog::Compute::Google::Operations.new(:service => service).get(data.name)
          operation.wait_for { ready? }
          reload
        end

        def destroy(async = true)
          requires :name
          data = service.delete_instance_template(name)
          operation = Fog::Compute::Google::Operations.new(:service => service).get(data.name)
          operation.wait_for { ready? } unless async
          operation
        end
      end
    end
  end
end