2020-10-22 15:41:34 +00:00
|
|
|
package container
|
|
|
|
|
|
|
|
const (
|
2020-10-22 16:10:42 +00:00
|
|
|
// AttributeName is an attribute key that is commonly used to denote
|
2020-10-22 15:41:34 +00:00
|
|
|
// human-friendly name.
|
2020-10-22 16:10:42 +00:00
|
|
|
AttributeName = "Name"
|
2020-10-22 15:41:34 +00:00
|
|
|
|
2020-10-22 16:10:42 +00:00
|
|
|
// AttributeTimestamp is an attribute key that is commonly used to denote
|
2020-10-22 15:41:34 +00:00
|
|
|
// user-defined local time of container creation in Unix Timestamp format.
|
2020-10-22 16:10:42 +00:00
|
|
|
AttributeTimestamp = "Timestamp"
|
2020-10-22 15:41:34 +00:00
|
|
|
)
|