mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-12-01 08:55:04 -05:00
* deps: update Go dependencies * deps: hold back terraform-plugin deps * deps: keep google.golang.org/grpc at v1.74 * fix tests --------- Signed-off-by: Daniel Weiße <dw@edgeless.systems> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Weiße <dw@edgeless.systems>
26 lines
782 B
Go
26 lines
782 B
Go
// Code generated by "stringer -type=AuthMethod -trimprefix=AuthMethod"; DO NOT EDIT.
|
|
|
|
package azureshared
|
|
|
|
import "strconv"
|
|
|
|
func _() {
|
|
// An "invalid array index" compiler error signifies that the constant values have changed.
|
|
// Re-run the stringer command to generate them again.
|
|
var x [1]struct{}
|
|
_ = x[AuthMethodUnknown-0]
|
|
_ = x[AuthMethodServicePrincipal-1]
|
|
_ = x[AuthMethodUserAssignedIdentity-2]
|
|
}
|
|
|
|
const _AuthMethod_name = "UnknownServicePrincipalUserAssignedIdentity"
|
|
|
|
var _AuthMethod_index = [...]uint8{0, 7, 23, 43}
|
|
|
|
func (i AuthMethod) String() string {
|
|
idx := int(i) - 0
|
|
if i < 0 || idx >= len(_AuthMethod_index)-1 {
|
|
return "AuthMethod(" + strconv.FormatInt(int64(i), 10) + ")"
|
|
}
|
|
return _AuthMethod_name[_AuthMethod_index[idx]:_AuthMethod_index[idx+1]]
|
|
}
|