DatabaseMessage is the message for database.
| 21 | |
| 22 | // DatabaseMessage is the message for database. |
| 23 | type DatabaseMessage struct { |
| 24 | ProjectID string |
| 25 | InstanceID string |
| 26 | DatabaseName string |
| 27 | |
| 28 | EnvironmentID *string |
| 29 | EffectiveEnvironmentID *string |
| 30 | |
| 31 | Deleted bool |
| 32 | Metadata *storepb.DatabaseMetadata |
| 33 | Engine storepb.Engine |
| 34 | } |
| 35 | |
| 36 | func (d *DatabaseMessage) String() string { |
| 37 | return common.FormatDatabase(d.InstanceID, d.DatabaseName) |
nothing calls this directly
no outgoing calls
no test coverage detected