omni/internal/pkg/auth/scope/object.go
Edward Sammut Alessi d3ae77c0cc
chore: bump copyright to 2026
Bump copyright for conformance to 2026

Signed-off-by: Edward Sammut Alessi <edward.sammutalessi@siderolabs.com>
2026-01-21 15:30:49 +01:00

22 lines
572 B
Go

// Copyright (c) 2026 Sidero Labs, Inc.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.
package scope
// Object represents Scope target.
type Object string
// Object constants.
const (
// ObjectCluster holds Cluster and everything below it.
ObjectCluster = "cluster"
// ObjectMachine is the constant for Machines.
ObjectMachine = "machine"
// ObjectUser is the constant for Users.
ObjectUser = "user"
// ObjectServiceAccount is the constant for Service accounts.
ObjectServiceAccount = "service-account"
)