+kops:fitask
| 37 | |
| 38 | // +kops:fitask |
| 39 | type Instance struct { |
| 40 | ID *string |
| 41 | Name *string |
| 42 | GroupName *string |
| 43 | Port *Port |
| 44 | Region *string |
| 45 | Flavor *string |
| 46 | Image *string |
| 47 | SSHKey *string |
| 48 | ServerGroup *ServerGroup |
| 49 | Role *string |
| 50 | UserData fi.Resource |
| 51 | Metadata map[string]string |
| 52 | AvailabilityZone *string |
| 53 | SecurityGroups []string |
| 54 | FloatingIP *FloatingIP |
| 55 | ConfigDrive *bool |
| 56 | Status *string |
| 57 | |
| 58 | Lifecycle fi.Lifecycle |
| 59 | |
| 60 | // WellKnownServices indicates which services are supported by this resource. |
| 61 | // This field is internal and is not rendered to the cloud. |
| 62 | WellKnownServices []wellknownservices.WellKnownService |
| 63 | } |
| 64 | |
| 65 | var ( |
| 66 | _ fi.CloudupTask = &Instance{} |
nothing calls this directly
no outgoing calls
no test coverage detected