Sha256: d71eda92ba5a1fabd7d12f8c4203f19c1348763b0feb9e001970676a6d22bac9
Contents?: true
Size: 878 Bytes
Versions: 25
Compression:
Stored size: 878 Bytes
Contents
module Fog module AWS class RDS class Real require 'fog/aws/parsers/rds/reboot_db_instance' # reboots a database instance # http://docs.amazonwebservices.com/AmazonRDS/latest/APIReference/API_RebootDBInstance.html # ==== Parameters # * DBInstanceIdentifier <~String> - name of the db instance to reboot # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: def reboot_db_instance(instance_identifier) request({ 'Action' => 'RebootDBInstance', 'DBInstanceIdentifier' => instance_identifier, :parser => Fog::Parsers::AWS::RDS::RebootDBInstance.new, }) end end class Mock def reboot_db_instance(instance_identifier) Fog::Mock.not_implemented end end end end end
Version data entries
25 entries across 25 versions & 5 rubygems