mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-04-23 10:58:35 +08:00
18 lines
627 B
Go
18 lines
627 B
Go
package dataselect
|
|
|
|
// PropertyName is used to get the value of certain property of data cell.
|
|
// For example if we want to get the namespace of certain Deployment we can use DeploymentCell.GetProperty(NamespaceProperty)
|
|
type PropertyName string
|
|
|
|
// List of all property names supported by the UI.
|
|
const (
|
|
NameProperty = "name"
|
|
CreationTimestampProperty = "creationTimestamp"
|
|
NamespaceProperty = "namespace"
|
|
StatusProperty = "status"
|
|
TypeProperty = "type"
|
|
FirstSeenProperty = "firstSeen"
|
|
LastSeenProperty = "lastSeen"
|
|
ReasonProperty = "reason"
|
|
)
|