github.com/makyo/juju@v0.0.0-20160425123129-2608902037e9/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  	"github.com/juju/names"
     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  }