| 10 | ) |
| 11 | |
| 12 | type Process struct { |
| 13 | GUID string |
| 14 | Type string |
| 15 | // Command is the process start command. Note: This value will be obfuscated when obtained from listing. |
| 16 | Command types.FilteredString |
| 17 | HealthCheckType constant.HealthCheckType |
| 18 | HealthCheckEndpoint string |
| 19 | HealthCheckInvocationTimeout int64 |
| 20 | HealthCheckTimeout int64 |
| 21 | ReadinessHealthCheckType constant.HealthCheckType |
| 22 | ReadinessHealthCheckEndpoint string |
| 23 | ReadinessHealthCheckInvocationTimeout int64 |
| 24 | ReadinessHealthCheckInterval int64 |
| 25 | Instances types.NullInt |
| 26 | MemoryInMB types.NullUint64 |
| 27 | DiskInMB types.NullUint64 |
| 28 | LogRateLimitInBPS types.NullInt |
| 29 | AppGUID string |
| 30 | EmbeddedProcessInstances []EmbeddedProcessInstance |
| 31 | } |
| 32 | |
| 33 | type EmbeddedProcessInstance struct { |
| 34 | Index int64 `json:"index"` |
no outgoing calls
no test coverage detected