github.com/axw/juju@v0.0.0-20161005053422-4bd6544d08d4/state/backups/params.go (about) 1 // Copyright 2015 Canonical Ltd. 2 // Licensed under the AGPLv3, see LICENCE file for details. 3 4 package backups 5 6 import ( 7 "gopkg.in/juju/names.v2" 8 9 "github.com/juju/juju/instance" 10 ) 11 12 // RestoreArgs holds the args to be used to call state/backups.Restore 13 type RestoreArgs struct { 14 PrivateAddress string 15 PublicAddress string 16 NewInstId instance.Id 17 NewInstTag names.Tag 18 NewInstSeries string 19 }