80 lines
2.3 KiB
Go
80 lines
2.3 KiB
Go
// Copyright (c) 2026 Probo Inc <hello@probo.com>.
|
|
//
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
// copyright notice and this permission notice appear in all copies.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
// AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
// OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
// PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
package coredata
|
|
|
|
import (
|
|
"encoding"
|
|
"fmt"
|
|
)
|
|
|
|
type AccessEntryAuthMethod string
|
|
|
|
const (
|
|
AccessEntryAuthMethodSSO AccessEntryAuthMethod = "SSO"
|
|
AccessEntryAuthMethodPassword AccessEntryAuthMethod = "PASSWORD"
|
|
AccessEntryAuthMethodAPIKey AccessEntryAuthMethod = "API_KEY"
|
|
AccessEntryAuthMethodServiceAccount AccessEntryAuthMethod = "SERVICE_ACCOUNT"
|
|
AccessEntryAuthMethodUnknown AccessEntryAuthMethod = "UNKNOWN"
|
|
)
|
|
|
|
var (
|
|
_ fmt.Stringer = AccessEntryAuthMethod("")
|
|
_ encoding.TextMarshaler = AccessEntryAuthMethod("")
|
|
_ encoding.TextUnmarshaler = (*AccessEntryAuthMethod)(nil)
|
|
)
|
|
|
|
func AccessEntryAuthMethods() []AccessEntryAuthMethod {
|
|
return []AccessEntryAuthMethod{
|
|
AccessEntryAuthMethodSSO,
|
|
AccessEntryAuthMethodPassword,
|
|
AccessEntryAuthMethodAPIKey,
|
|
AccessEntryAuthMethodServiceAccount,
|
|
AccessEntryAuthMethodUnknown,
|
|
}
|
|
}
|
|
|
|
func (v AccessEntryAuthMethod) IsValid() bool {
|
|
switch v {
|
|
case
|
|
AccessEntryAuthMethodSSO,
|
|
AccessEntryAuthMethodPassword,
|
|
AccessEntryAuthMethodAPIKey,
|
|
AccessEntryAuthMethodServiceAccount,
|
|
AccessEntryAuthMethodUnknown:
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
func (v AccessEntryAuthMethod) String() string {
|
|
return string(v)
|
|
}
|
|
|
|
func (v AccessEntryAuthMethod) MarshalText() ([]byte, error) {
|
|
return []byte(v.String()), nil
|
|
}
|
|
|
|
func (v *AccessEntryAuthMethod) UnmarshalText(text []byte) error {
|
|
val := AccessEntryAuthMethod(text)
|
|
if !val.IsValid() {
|
|
return fmt.Errorf("invalid AccessEntryAuthMethod value: %q", string(text))
|
|
}
|
|
|
|
*v = val
|
|
|
|
return nil
|
|
}
|