Sha256: c633273589e053b4ce7239bd9501b0fd33b2cdbcc0472a969c71cccdd1316993

Contents?: true

Size: 1.96 KB

Versions: 22

Compression:

Stored size: 1.96 KB

Contents

module Fog
  module Google
    class SQL
      ##
      # Retrieves an instance operation that has been performed on an instance
      #
      # @see https://developers.google.com/cloud-sql/docs/admin-api/v1beta3/operations/get

      class Real
        def get_operation(instance_id, operation_id)
          api_method = @sql.operations.get
          parameters = {
            'project' => @project,
            'instance' => instance_id,
            'operation' => operation_id,
          }

          request(api_method, parameters)
        end
      end

      class Mock
        def get_operation(instance_id, operation_id)
          if self.data[:operations].has_key?(instance_id)
            if self.data[:operations][instance_id].has_key?(operation_id)
              body = self.data[:operations][instance_id][operation_id]
              status = 200
            else
              body = {
                'error' => {
                  'errors' => [
                    {
                      'domain' => 'global',
                      'reason' => 'operationDoesNotExist',
                      'message' => 'The Cloud SQL instance operation does not exist.',
                    }
                  ],
                  'code' => 404,
                  'message' => 'The Cloud SQL instance operation does not exist.',
                }
              }
              status = 404
            end
          else
            body = {
              'error' => {
                'errors' => [
                  {
                    'domain' => 'global',
                    'reason' => 'notAuthorized',
                    'message' => 'The client is not authorized to make this request.',
                  }
                ],
                'code' => 403,
                'message' => 'The client is not authorized to make this request.',
             }
            }
            status = 403
          end

          build_excon_response(body, status)
        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/sql/get_operation.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-google-0.1.0/lib/fog/google/requests/sql/get_operation.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-google-0.1.0/lib/fog/google/requests/sql/get_operation.rb
fog-google-0.1.3 lib/fog/google/requests/sql/get_operation.rb
fog-google-0.1.2 lib/fog/google/requests/sql/get_operation.rb
fog-google-0.1.1 lib/fog/google/requests/sql/get_operation.rb
fog-google-0.1.0 lib/fog/google/requests/sql/get_operation.rb
fog-google-0.0.9 lib/fog/google/requests/sql/get_operation.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-google-0.0.7/lib/fog/google/requests/sql/get_operation.rb
fog-google-0.0.7 lib/fog/google/requests/sql/get_operation.rb
fog-google-0.0.6 lib/fog/google/requests/sql/get_operation.rb
fog-google-0.0.5 lib/fog/google/requests/sql/get_operation.rb
fog-google-0.0.4 lib/fog/google/requests/sql/get_operation.rb
fog-google-0.0.3 lib/fog/google/requests/sql/get_operation.rb
fog-google-0.0.2 lib/fog/google/requests/sql/get_operation.rb
fog-1.29.0 lib/fog/google/requests/sql/get_operation.rb
fog-1.28.0 lib/fog/google/requests/sql/get_operation.rb
fog-1.27.0 lib/fog/google/requests/sql/get_operation.rb
fog-1.26.0 lib/fog/google/requests/sql/get_operation.rb
fog-1.25.0 lib/fog/google/requests/sql/get_operation.rb