apis: fix indentation in Go type
Signed-off-by: Andrew Keesler <akeesler@vmware.com>
This commit is contained in:
parent
31225ac7ae
commit
1b99983441
@ -12,9 +12,9 @@ import (
|
|||||||
type OIDCProviderStatus string
|
type OIDCProviderStatus string
|
||||||
|
|
||||||
const (
|
const (
|
||||||
SuccessOIDCProviderStatus = OIDCProviderStatus("Success")
|
SuccessOIDCProviderStatus = OIDCProviderStatus("Success")
|
||||||
DuplicateOIDCProviderStatus = OIDCProviderStatus("Duplicate")
|
DuplicateOIDCProviderStatus = OIDCProviderStatus("Duplicate")
|
||||||
InvalidOIDCProviderStatus = OIDCProviderStatus("Invalid")
|
InvalidOIDCProviderStatus = OIDCProviderStatus("Invalid")
|
||||||
)
|
)
|
||||||
|
|
||||||
// OIDCProviderConfigSpec is a struct that describes an OIDC Provider.
|
// OIDCProviderConfigSpec is a struct that describes an OIDC Provider.
|
||||||
@ -48,9 +48,9 @@ type OIDCProviderConfigStatus struct {
|
|||||||
// +optional
|
// +optional
|
||||||
LastUpdateTime *metav1.Time `json:"lastUpdateTime,omitempty"`
|
LastUpdateTime *metav1.Time `json:"lastUpdateTime,omitempty"`
|
||||||
|
|
||||||
// JWKSSecret holds the name of the secret in which this OIDC Provider's signing/verification keys
|
// JWKSSecret holds the name of the secret in which this OIDC Provider's signing/verification keys
|
||||||
// are stored. If it is empty, then the signing/verification keys are either unknown or they don't
|
// are stored. If it is empty, then the signing/verification keys are either unknown or they don't
|
||||||
// exist.
|
// exist.
|
||||||
// +optional
|
// +optional
|
||||||
JWKSSecret corev1.LocalObjectReference `json:"jwksSecret,omitempty"`
|
JWKSSecret corev1.LocalObjectReference `json:"jwksSecret,omitempty"`
|
||||||
}
|
}
|
||||||
|
@ -12,9 +12,9 @@ import (
|
|||||||
type OIDCProviderStatus string
|
type OIDCProviderStatus string
|
||||||
|
|
||||||
const (
|
const (
|
||||||
SuccessOIDCProviderStatus = OIDCProviderStatus("Success")
|
SuccessOIDCProviderStatus = OIDCProviderStatus("Success")
|
||||||
DuplicateOIDCProviderStatus = OIDCProviderStatus("Duplicate")
|
DuplicateOIDCProviderStatus = OIDCProviderStatus("Duplicate")
|
||||||
InvalidOIDCProviderStatus = OIDCProviderStatus("Invalid")
|
InvalidOIDCProviderStatus = OIDCProviderStatus("Invalid")
|
||||||
)
|
)
|
||||||
|
|
||||||
// OIDCProviderConfigSpec is a struct that describes an OIDC Provider.
|
// OIDCProviderConfigSpec is a struct that describes an OIDC Provider.
|
||||||
@ -48,9 +48,9 @@ type OIDCProviderConfigStatus struct {
|
|||||||
// +optional
|
// +optional
|
||||||
LastUpdateTime *metav1.Time `json:"lastUpdateTime,omitempty"`
|
LastUpdateTime *metav1.Time `json:"lastUpdateTime,omitempty"`
|
||||||
|
|
||||||
// JWKSSecret holds the name of the secret in which this OIDC Provider's signing/verification keys
|
// JWKSSecret holds the name of the secret in which this OIDC Provider's signing/verification keys
|
||||||
// are stored. If it is empty, then the signing/verification keys are either unknown or they don't
|
// are stored. If it is empty, then the signing/verification keys are either unknown or they don't
|
||||||
// exist.
|
// exist.
|
||||||
// +optional
|
// +optional
|
||||||
JWKSSecret corev1.LocalObjectReference `json:"jwksSecret,omitempty"`
|
JWKSSecret corev1.LocalObjectReference `json:"jwksSecret,omitempty"`
|
||||||
}
|
}
|
||||||
|
@ -12,9 +12,9 @@ import (
|
|||||||
type OIDCProviderStatus string
|
type OIDCProviderStatus string
|
||||||
|
|
||||||
const (
|
const (
|
||||||
SuccessOIDCProviderStatus = OIDCProviderStatus("Success")
|
SuccessOIDCProviderStatus = OIDCProviderStatus("Success")
|
||||||
DuplicateOIDCProviderStatus = OIDCProviderStatus("Duplicate")
|
DuplicateOIDCProviderStatus = OIDCProviderStatus("Duplicate")
|
||||||
InvalidOIDCProviderStatus = OIDCProviderStatus("Invalid")
|
InvalidOIDCProviderStatus = OIDCProviderStatus("Invalid")
|
||||||
)
|
)
|
||||||
|
|
||||||
// OIDCProviderConfigSpec is a struct that describes an OIDC Provider.
|
// OIDCProviderConfigSpec is a struct that describes an OIDC Provider.
|
||||||
@ -48,9 +48,9 @@ type OIDCProviderConfigStatus struct {
|
|||||||
// +optional
|
// +optional
|
||||||
LastUpdateTime *metav1.Time `json:"lastUpdateTime,omitempty"`
|
LastUpdateTime *metav1.Time `json:"lastUpdateTime,omitempty"`
|
||||||
|
|
||||||
// JWKSSecret holds the name of the secret in which this OIDC Provider's signing/verification keys
|
// JWKSSecret holds the name of the secret in which this OIDC Provider's signing/verification keys
|
||||||
// are stored. If it is empty, then the signing/verification keys are either unknown or they don't
|
// are stored. If it is empty, then the signing/verification keys are either unknown or they don't
|
||||||
// exist.
|
// exist.
|
||||||
// +optional
|
// +optional
|
||||||
JWKSSecret corev1.LocalObjectReference `json:"jwksSecret,omitempty"`
|
JWKSSecret corev1.LocalObjectReference `json:"jwksSecret,omitempty"`
|
||||||
}
|
}
|
||||||
|
@ -12,9 +12,9 @@ import (
|
|||||||
type OIDCProviderStatus string
|
type OIDCProviderStatus string
|
||||||
|
|
||||||
const (
|
const (
|
||||||
SuccessOIDCProviderStatus = OIDCProviderStatus("Success")
|
SuccessOIDCProviderStatus = OIDCProviderStatus("Success")
|
||||||
DuplicateOIDCProviderStatus = OIDCProviderStatus("Duplicate")
|
DuplicateOIDCProviderStatus = OIDCProviderStatus("Duplicate")
|
||||||
InvalidOIDCProviderStatus = OIDCProviderStatus("Invalid")
|
InvalidOIDCProviderStatus = OIDCProviderStatus("Invalid")
|
||||||
)
|
)
|
||||||
|
|
||||||
// OIDCProviderConfigSpec is a struct that describes an OIDC Provider.
|
// OIDCProviderConfigSpec is a struct that describes an OIDC Provider.
|
||||||
@ -48,9 +48,9 @@ type OIDCProviderConfigStatus struct {
|
|||||||
// +optional
|
// +optional
|
||||||
LastUpdateTime *metav1.Time `json:"lastUpdateTime,omitempty"`
|
LastUpdateTime *metav1.Time `json:"lastUpdateTime,omitempty"`
|
||||||
|
|
||||||
// JWKSSecret holds the name of the secret in which this OIDC Provider's signing/verification keys
|
// JWKSSecret holds the name of the secret in which this OIDC Provider's signing/verification keys
|
||||||
// are stored. If it is empty, then the signing/verification keys are either unknown or they don't
|
// are stored. If it is empty, then the signing/verification keys are either unknown or they don't
|
||||||
// exist.
|
// exist.
|
||||||
// +optional
|
// +optional
|
||||||
JWKSSecret corev1.LocalObjectReference `json:"jwksSecret,omitempty"`
|
JWKSSecret corev1.LocalObjectReference `json:"jwksSecret,omitempty"`
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user