Method: SDM::Client#snapshot_at
- Defined in:
- lib/strongdm.rb
#snapshot_at(snapshot_time) ⇒ Object
Constructs a read-only client that will provide historical data from the provided timestamp. See SnapshotClient.
187 188 189 190 191 |
# File 'lib/strongdm.rb', line 187 def snapshot_at(snapshot_time) client = self.clone client.snapshot_time = snapshot_time return SnapshotClient.new(client) end |