Metadata is a placeholder for data reference metadata.
| 32 | |
| 33 | // Metadata is a placeholder for data reference metadata. |
| 34 | type Metadata interface { |
| 35 | Exists() bool |
| 36 | Size() int64 |
| 37 | Etag() string |
| 38 | // ContentMD5 retrieves the value of a special metadata tag added by the system that |
| 39 | // contains the MD5 of the uploaded file. If there is no metadata attached |
| 40 | // or that `FlyteContentMD5` key isn't set, ContentMD5 will return empty. |
| 41 | ContentMD5() string |
| 42 | } |
| 43 | |
| 44 | type CursorState int |
| 45 |
no outgoing calls
no test coverage detected