orchard/pkg/resource/v1/service_account.go

15 lines
302 B
Go

package v1
type ServiceAccount struct {
Token string `json:"token,omitempty"`
Roles []ServiceAccountRole `json:"roles,omitempty"`
Meta
}
func (serviceAccount *ServiceAccount) SetVersion(_ uint64) {}
func (serviceAccount *ServiceAccount) Match(filter Filter) bool {
return false
}