Sha256: d1508e0cf2a40634af2b16bddc1c7fd63504e46bda548f6f01e864b725ef98c6
Contents?: true
Size: 824 Bytes
Versions: 22
Compression:
Stored size: 824 Bytes
Contents
module Fog module Google class SQL ## # Lists all backup runs associated with a given instance and configuration in the # reverse chronological order of the enqueued time # # @see https://developers.google.com/cloud-sql/docs/admin-api/v1beta3/backupRuns/list class Real def list_backup_runs(instance_id, backup_configuration_id) api_method = @sql.backup_runs.list parameters = { 'project' => @project, 'instance' => instance_id, 'backupConfiguration' => backup_configuration_id, } request(api_method, parameters) end end class Mock def list_backup_runs(instance_id, backup_configuration_id) Fog::Mock.not_implemented end end end end end
Version data entries
22 entries across 20 versions & 5 rubygems