Sha256: e73ccd35f19fd8d8a671ad500667b85e6e2af327cf666542d461a0b614429062

Contents?: true

Size: 1.72 KB

Versions: 22

Compression:

Stored size: 1.72 KB

Contents

require 'fog/core/collection'
require 'fog/google/models/sql/operation'

module Fog
  module Google
    class SQL
      class Operations < Fog::Collection
        model Fog::Google::SQL::Operation

        ##
        # Lists all instance operations that have been performed on the given instance
        #
        # @param [String] instance_id Instance ID
        # @return [Array<Fog::Google::SQL::Operation>] List of instance operation resources
        def all(instance_id)
          data = []
          begin
            data = service.list_operations(instance_id).body['items'] || []
          rescue Fog::Errors::Error => e
            # Google SQL returns a 403 if we try to access a non-existing resource
            # The default behaviour in Fog is to return an empty Array
            raise e unless e.message == 'The client is not authorized to make this request.'
          end

          load(data)
        end

        ##
        # Retrieves an instance operation that has been performed on an instance
        #
        # @param [String] instance_id Instance ID
        # @param [String] operation_id Instance operation ID
        # @return [Fog::Google::SQL::Operation] Instance operation resource
        def get(instance_id, operation_id)
          if operation = service.get_operation(instance_id, operation_id).body
            new(operation)
          end
        rescue Fog::Errors::NotFound
          nil
        rescue Fog::Errors::Error => e
          # Google SQL returns a 403 if we try to access a non-existing resource
          # The default behaviour in Fog is to return a nil
          return nil if e.message == 'The client is not authorized to make this request.'
          raise e
        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/models/sql/operations.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-google-0.1.0/lib/fog/google/models/sql/operations.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-google-0.1.0/lib/fog/google/models/sql/operations.rb
fog-google-0.1.3 lib/fog/google/models/sql/operations.rb
fog-google-0.1.2 lib/fog/google/models/sql/operations.rb
fog-google-0.1.1 lib/fog/google/models/sql/operations.rb
fog-google-0.1.0 lib/fog/google/models/sql/operations.rb
fog-google-0.0.9 lib/fog/google/models/sql/operations.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-google-0.0.7/lib/fog/google/models/sql/operations.rb
fog-google-0.0.7 lib/fog/google/models/sql/operations.rb
fog-google-0.0.6 lib/fog/google/models/sql/operations.rb
fog-google-0.0.5 lib/fog/google/models/sql/operations.rb
fog-google-0.0.4 lib/fog/google/models/sql/operations.rb
fog-google-0.0.3 lib/fog/google/models/sql/operations.rb
fog-google-0.0.2 lib/fog/google/models/sql/operations.rb
fog-1.29.0 lib/fog/google/models/sql/operations.rb
fog-1.28.0 lib/fog/google/models/sql/operations.rb
fog-1.27.0 lib/fog/google/models/sql/operations.rb
fog-1.26.0 lib/fog/google/models/sql/operations.rb
fog-1.25.0 lib/fog/google/models/sql/operations.rb