Instance wraps a cloud-specific instance object.
| 51 | |
| 52 | // Instance wraps a cloud-specific instance object. |
| 53 | Instance interface { |
| 54 | // Id returns the ID of the instance. |
| 55 | Id() string |
| 56 | |
| 57 | // CreatedAt returns the timestamp when the Instance has been created. |
| 58 | CreatedAt() time.Time |
| 59 | |
| 60 | // Obj returns the raw object which is a cloud-specific implementation. |
| 61 | Obj() interface{} |
| 62 | } |
| 63 | |
| 64 | // LaunchSpec wraps a cloud-specific launch specification object. |
| 65 | LaunchSpec interface { |
no outgoing calls
no test coverage detected