Sha256: f7e904097b41dbc0ad64eb2bf1f9d8ef1d498ec507edf6260399f9771f3c1352

Contents?: true

Size: 1.3 KB

Versions: 14

Compression:

Stored size: 1.3 KB

Contents

module Fog
  module Google
    class SQL
      ##
      # Restarts a Cloud SQL instance
      #
      # @see https://developers.google.com/cloud-sql/docs/admin-api/v1beta3/instances/restart

      class Real
        def restart_instance(instance_id)
          api_method = @sql.instances.restart
          parameters = {
            "project" => @project,
            "instance" => instance_id
          }

          request(api_method, parameters)
        end
      end

      class Mock
        def restart_instance(instance_id)
          operation = random_operation
          data[:operations][instance_id] ||= {}
          data[:operations][instance_id][operation] = {
            "kind" => 'sql#instanceOperation',
            "instance" => instance_id,
            "operation" => operation,
            "operationType" => "RESTART",
            "state" => Fog::Google::SQL::Operation::DONE_STATE,
            "userEmailAddress" => "google_client_email@developer.gserviceaccount.com",
            "enqueuedTime" => Time.now.iso8601,
            "startTime" => Time.now.iso8601,
            "endTime" => Time.now.iso8601
          }

          body = {
            "kind" => 'sql#instancesRestart',
            "operation" => operation
          }

          build_excon_response(body)
        end
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
fog-google-0.6.0 lib/fog/google/requests/sql/restart_instance.rb
fog-google-0.5.5 lib/fog/google/requests/sql/restart_instance.rb
fog-google-0.5.4 lib/fog/google/requests/sql/restart_instance.rb
fog-google-0.5.3 lib/fog/google/requests/sql/restart_instance.rb
fog-google-0.5.2 lib/fog/google/requests/sql/restart_instance.rb
fog-google-0.5.1 lib/fog/google/requests/sql/restart_instance.rb
fog-google-0.5.0 lib/fog/google/requests/sql/restart_instance.rb
fog-google-0.4.2 lib/fog/google/requests/sql/restart_instance.rb
fog-google-0.4.1 lib/fog/google/requests/sql/restart_instance.rb
fog-google-0.4.0 lib/fog/google/requests/sql/restart_instance.rb
fog-google-0.3.2 lib/fog/google/requests/sql/restart_instance.rb
fog-google-0.3.1 lib/fog/google/requests/sql/restart_instance.rb
fog-google-0.3.0 lib/fog/google/requests/sql/restart_instance.rb
fog-google-0.2.0 lib/fog/google/requests/sql/restart_instance.rb