Index: environs/interface.go |
=== modified file 'environs/interface.go' |
--- environs/interface.go 2012-11-28 14:48:45 +0000 |
+++ environs/interface.go 2012-11-28 17:57:23 +0000 |
@@ -35,7 +35,7 @@ |
// Instance represents the provider-specific notion of a machine. |
type Instance interface { |
// Id returns a provider-generated identifier for the Instance. |
- Id() string |
+ Id() state.InstanceId |
// DNSName returns the DNS name for the instance. |
// If the name is not yet allocated, it will return |
@@ -168,7 +168,7 @@ |
// some but not all the instances were found, the returned slice |
// will have some nil slots, and an ErrPartialInstances error |
// will be returned. |
- Instances(ids []string) ([]Instance, error) |
+ Instances(ids []state.InstanceId) ([]Instance, error) |
// AllInstances returns all instances currently known to the |
// environment. |