SYMBOL INDEX (17522 symbols across 2187 files) FILE: cipher/aes.go type AES (line 17) | type AES struct method Encrypt (line 26) | func (a *AES) Encrypt(ctx context.Context, message []byte) (string, er... method Decrypt (line 45) | func (a *AES) Decrypt(ctx context.Context, ciphertext string) ([]byte,... function NewCryptAES (line 21) | func NewCryptAES(c SecretsProvider) *AES { FILE: cipher/chacha20.go type XChaCha20Poly1305 (line 19) | type XChaCha20Poly1305 struct method Encrypt (line 28) | func (c *XChaCha20Poly1305) Encrypt(ctx context.Context, message []byt... method Decrypt (line 58) | func (c *XChaCha20Poly1305) Decrypt(ctx context.Context, ciphertext st... function NewCryptChaCha20 (line 23) | func NewCryptChaCha20(c SecretsProvider) *XChaCha20Poly1305 { FILE: cipher/cipher.go type Cipher (line 9) | type Cipher interface type Provider (line 23) | type Provider interface type SecretsProvider (line 27) | type SecretsProvider interface FILE: cipher/cipher_test.go function TestCipher (line 25) | func TestCipher(t *testing.T) { function testAllWork (line 86) | func testAllWork(ctx context.Context, t *testing.T, c cipher.Cipher) { FILE: cipher/noop.go type Noop (line 12) | type Noop struct method Encrypt (line 19) | func (*Noop) Encrypt(_ context.Context, message []byte) (string, error) { method Decrypt (line 24) | func (*Noop) Decrypt(_ context.Context, ciphertext string) ([]byte, er... function NewNoop (line 14) | func NewNoop() *Noop { FILE: cmd/cleanup/root.go function NewCleanupCmd (line 12) | func NewCleanupCmd() *cobra.Command { function RegisterCommandRecursive (line 21) | func RegisterCommandRecursive(parent *cobra.Command) { FILE: cmd/cleanup/sql.go function NewCleanupSQLCmd (line 21) | func NewCleanupSQLCmd() *cobra.Command { FILE: cmd/cleanup/sql_test.go function Test_ExecuteCleanupFailedDSN (line 13) | func Test_ExecuteCleanupFailedDSN(t *testing.T) { FILE: cmd/cliclient/cleanup.go type CleanupHandler (line 20) | type CleanupHandler struct method CleanupSQL (line 26) | func (h *CleanupHandler) CleanupSQL(cmd *cobra.Command, args []string)... function NewCleanupHandler (line 22) | func NewCleanupHandler() *CleanupHandler { FILE: cmd/cliclient/client.go constant envKeyEndpoint (line 25) | envKeyEndpoint = "KRATOS_ADMIN_URL" constant FlagEndpoint (line 26) | FlagEndpoint = "endpoint" type ContextKey (line 29) | type ContextKey constant ClientContextKey (line 32) | ClientContextKey ContextKey = iota + 1 type ClientContext (line 35) | type ClientContext struct function NewClient (line 40) | func NewClient(cmd *cobra.Command) (*kratos.APIClient, error) { function RegisterClientFlags (line 80) | func RegisterClientFlags(flags *pflag.FlagSet) { FILE: cmd/cliclient/migrate.go type MigrateHandler (line 25) | type MigrateHandler struct method getPersister (line 31) | func (h *MigrateHandler) getPersister(cmd *cobra.Command, args []strin... method MigrateSQLDown (line 75) | func (h *MigrateHandler) MigrateSQLDown(cmd *cobra.Command, args []str... method MigrateSQLStatus (line 83) | func (h *MigrateHandler) MigrateSQLStatus(cmd *cobra.Command, args []s... method MigrateSQLUp (line 91) | func (h *MigrateHandler) MigrateSQLUp(cmd *cobra.Command, args []strin... function NewMigrateHandler (line 27) | func NewMigrateHandler() *MigrateHandler { FILE: cmd/clidoc/main.go function init (line 37) | func init() { function main (line 197) | func main() { function codeEncode (line 243) | func codeEncode(in interface{}) string { function sortMessages (line 253) | func sortMessages() []*text.Message { function writeMessages (line 269) | func writeMessages(path string, sortedMessages []*text.Message) error { function writeMessagesJson (line 304) | func writeMessagesJson(path string, sortedMessages []*text.Message) error { function validateAllMessages (line 323) | func validateAllMessages(path string) error { function generateElements (line 402) | func generateElements(messageFilePath string) error { FILE: cmd/clidoc/main_test.go function TestMessages (line 12) | func TestMessages(t *testing.T) { FILE: cmd/courier/root.go function NewCourierCmd (line 14) | func NewCourierCmd() *cobra.Command { function RegisterCommandRecursive (line 23) | func RegisterCommandRecursive(parent *cobra.Command, dOpts []driver.Regi... FILE: cmd/courier/watch.go function NewWatchCmd (line 22) | func NewWatchCmd(dOpts []driver.RegistryOption) *cobra.Command { function StartCourier (line 39) | func StartCourier(ctx context.Context, r driver.Registry) error { function ServeMetrics (line 55) | func ServeMetrics(ctx context.Context, r driver.Registry, port int) error { function Watch (line 84) | func Watch(ctx context.Context, r driver.Registry) error { FILE: cmd/courier/watch_test.go function TestStartCourier (line 19) | func TestStartCourier(t *testing.T) { FILE: cmd/daemon/serve.go function init (line 49) | func init() { function servePublic (line 55) | func servePublic(ctx context.Context, r *driver.RegistryDefault, cmd *co... function serveAdmin (line 148) | func serveAdmin(ctx context.Context, r *driver.RegistryDefault, cmd *cob... function sqa (line 229) | func sqa(ctx context.Context, cmd *cobra.Command, d driver.Registry) *me... function courierTask (line 320) | func courierTask(ctx context.Context, d driver.Registry) func() error { function ServeAll (line 329) | func ServeAll(d *driver.RegistryDefault) func(cmd *cobra.Command, args [... FILE: cmd/daemon/serve_test.go function TestMetricsRouterPaths (line 24) | func TestMetricsRouterPaths(t *testing.T) { FILE: cmd/hashers/argon2/calibrate.go constant FlagStartMemory (line 26) | FlagStartMemory = "start-memory" constant FlagMaxMemory (line 27) | FlagMaxMemory = "max-memory" constant FlagAdjustMemory (line 28) | FlagAdjustMemory = "adjust-memory-by" constant FlagStartIterations (line 29) | FlagStartIterations = "start-iterations" constant FlagMaxConcurrent (line 30) | FlagMaxConcurrent = "max-concurrent" constant FlagRuns (line 32) | FlagRuns = "probe-runs" type colorWriter (line 36) | type colorWriter struct method Write (line 71) | func (c *colorWriter) Write(o []byte) (int, error) { type loadResult (line 40) | type loadResult struct type loadResults (line 44) | type loadResults method Header (line 49) | func (l loadResults) Header() []string { method Table (line 53) | func (l loadResults) Table() [][]string { method Interface (line 63) | func (l loadResults) Interface() interface{} { method Len (line 67) | func (l loadResults) Len() int { function newCalibrateCmd (line 75) | func newCalibrateCmd() *cobra.Command { function probe (line 314) | func probe(cmd *cobra.Command, hasher hash.Hasher, runs int, progressPri... FILE: cmd/hashers/argon2/hash.go constant FlagParallel (line 19) | FlagParallel = "parallel" function newHashCmd (line 22) | func newHashCmd() *cobra.Command { FILE: cmd/hashers/argon2/loadtest.go type resultTable (line 27) | type resultTable struct method Header (line 43) | func (r *resultTable) Header() []string { method Columns (line 47) | func (r *resultTable) Columns() []string { method Interface (line 58) | func (r *resultTable) Interface() interface{} { function newLoadTestCmd (line 62) | func newLoadTestCmd() *cobra.Command { function runLoadTest (line 105) | func runLoadTest(cmd *cobra.Command, conf *argon2Config, reqPerMin int) ... FILE: cmd/hashers/argon2/root.go constant FlagIterations (line 24) | FlagIterations = "iterations" constant FlagParallelism (line 25) | FlagParallelism = "parallelism" constant FlagSaltLength (line 26) | FlagSaltLength = "salt-length" constant FlagKeyLength (line 27) | FlagKeyLength = "key-length" constant FlagMemory (line 28) | FlagMemory = "memory" constant FlagDedicatedMemory (line 29) | FlagDedicatedMemory = "dedicated-memory" constant FlagMinimalDuration (line 30) | FlagMinimalDuration = "min-duration" constant FlagExpectedDeviation (line 31) | FlagExpectedDeviation = "expected-deviation" function RegisterCommandRecursive (line 38) | func RegisterCommandRecursive(parent *cobra.Command) { function registerArgon2ConstantConfigFlags (line 44) | func registerArgon2ConstantConfigFlags(flags *pflag.FlagSet, c *argon2Co... function registerArgon2ConfigFlags (line 57) | func registerArgon2ConfigFlags(flags *pflag.FlagSet, c *argon2Config) { function configProvider (line 67) | func configProvider(cmd *cobra.Command, flagConf *argon2Config) (*argon2... type argon2Config (line 116) | type argon2Config struct method Header (line 125) | func (c *argon2Config) Header() []string { method Columns (line 136) | func (c *argon2Config) Columns() []string { method Interface (line 150) | func (c *argon2Config) Interface() interface{} { method Config (line 155) | func (c *argon2Config) Config() *config.Config { method HasherArgon2 (line 172) | func (c *argon2Config) HasherArgon2() (*config.Argon2, error) { FILE: cmd/hashers/root.go function NewRootCmd (line 12) | func NewRootCmd() *cobra.Command { function RegisterCommandRecursive (line 20) | func RegisterCommandRecursive(parent *cobra.Command) { FILE: cmd/identities/definitions.go type outputIdentity (line 15) | type outputIdentity method Header (line 23) | func (outputIdentity) Header() []string { method Columns (line 27) | func (i outputIdentity) Columns() []string { method Interface (line 57) | func (i outputIdentity) Interface() interface{} { type outputIdentityCollection (line 16) | type outputIdentityCollection struct method Header (line 61) | func (outputIdentityCollection) Header() []string { method Table (line 65) | func (c outputIdentityCollection) Table() [][]string { method Interface (line 76) | func (c outputIdentityCollection) Interface() interface{} { method Len (line 83) | func (c *outputIdentityCollection) Len() int { FILE: cmd/identities/delete.go function NewDeleteCmd (line 16) | func NewDeleteCmd() *cobra.Command { function NewDeleteIdentityCmd (line 27) | func NewDeleteIdentityCmd() *cobra.Command { FILE: cmd/identities/delete_test.go function TestDeleteCmd (line 25) | func TestDeleteCmd(t *testing.T) { FILE: cmd/identities/get.go constant FlagIncludeCreds (line 22) | FlagIncludeCreds = "include-credentials" function NewGetCmd (line 25) | func NewGetCmd() *cobra.Command { function NewGetIdentityCmd (line 36) | func NewGetIdentityCmd() *cobra.Command { FILE: cmd/identities/get_test.go function TestGetCmd (line 23) | func TestGetCmd(t *testing.T) { FILE: cmd/identities/helpers.go function parseIdentities (line 17) | func parseIdentities(raw []byte) (rawIdentities []string) { function readIdentities (line 29) | func readIdentities(cmd *cobra.Command, args []string) (map[string]strin... FILE: cmd/identities/helpers_test.go function setup (line 24) | func setup(t *testing.T, newCmd func() *cobra.Command) (*driver.Registry... function makeIdentities (line 40) | func makeIdentities(t *testing.T, reg driver.Registry, n int) (is []*ide... FILE: cmd/identities/import.go function NewImportCmd (line 19) | func NewImportCmd() *cobra.Command { function NewImportIdentitiesCmd (line 31) | func NewImportIdentitiesCmd() *cobra.Command { FILE: cmd/identities/import_test.go function TestImportCmd (line 26) | func TestImportCmd(t *testing.T) { FILE: cmd/identities/list.go function NewListCmd (line 17) | func NewListCmd() *cobra.Command { function NewListIdentitiesCmd (line 29) | func NewListIdentitiesCmd() *cobra.Command { FILE: cmd/identities/list_test.go function TestListCmd (line 22) | func TestListCmd(t *testing.T) { FILE: cmd/identities/validate.go function NewValidateCmd (line 27) | func NewValidateCmd() *cobra.Command { function NewValidateIdentityCmd (line 39) | func NewValidateIdentityCmd() *cobra.Command { constant createIdentityPath (line 76) | createIdentityPath = "api.json#/components/schemas/createIdentityBody" function ValidateIdentity (line 83) | func ValidateIdentity(cmd *cobra.Command, src, i string, getRemoteSchema... FILE: cmd/identities/validate_test.go function TestValidateIdentity (line 19) | func TestValidateIdentity(t *testing.T) { FILE: cmd/jsonnet/format.go function NewFormatCmd (line 18) | func NewFormatCmd() *cobra.Command { function NewJsonnetFormatCmd (line 27) | func NewJsonnetFormatCmd() *cobra.Command { FILE: cmd/jsonnet/lint.go function NewLintCmd (line 20) | func NewLintCmd() *cobra.Command { function NewJsonnetLintCmd (line 29) | func NewJsonnetLintCmd() *cobra.Command { FILE: cmd/jsonnet/root.go constant GlobHelp (line 6) | GlobHelp = `Glob Syntax: FILE: cmd/migrate/root.go function NewMigrateCmd (line 15) | func NewMigrateCmd() *cobra.Command { function RegisterCommandRecursive (line 22) | func RegisterCommandRecursive(parent *cobra.Command) { function NewMigrateSQLDownCmd (line 31) | func NewMigrateSQLDownCmd(opts ...driver.RegistryOption) *cobra.Command { function NewMigrateSQLUpCmd (line 37) | func NewMigrateSQLUpCmd(opts ...driver.RegistryOption) *cobra.Command { function NewMigrateSQLStatusCmd (line 43) | func NewMigrateSQLStatusCmd(opts ...driver.RegistryOption) *cobra.Command { FILE: cmd/migrate/sql.go function NewMigrateSQLCmd (line 14) | func NewMigrateSQLCmd(opts ...driver.RegistryOption) *cobra.Command { FILE: cmd/remote/root.go function RegisterCommandRecursive (line 19) | func RegisterCommandRecursive(parent *cobra.Command) { function init (line 26) | func init() { FILE: cmd/remote/status.go type statusState (line 14) | type statusState struct method Header (line 19) | func (s *statusState) Header() []string { method Columns (line 23) | func (s *statusState) Columns() []string { method Interface (line 37) | func (s *statusState) Interface() interface{} { FILE: cmd/remote/version.go type versionValue (line 13) | type versionValue struct method Header (line 17) | func (v *versionValue) Header() []string { method Columns (line 21) | func (v *versionValue) Columns() []string { method Interface (line 25) | func (v *versionValue) Interface() interface{} { FILE: cmd/root.go function NewRootCmd (line 28) | func NewRootCmd(driverOpts ...driver.RegistryOption) (cmd *cobra.Command) { function Execute (line 57) | func Execute() int { FILE: cmd/root_test.go function TestUsageStrings (line 12) | func TestUsageStrings(t *testing.T) { FILE: cmd/serve/root.go function NewServeCmd (line 16) | func NewServeCmd(dOpts ...driver.RegistryOption) (serveCmd *cobra.Comman... function RegisterCommandRecursive (line 56) | func RegisterCommandRecursive(parent *cobra.Command, dOpts []driver.Regi... FILE: cmd/serve/root_test.go function TestServe (line 12) | func TestServe(t *testing.T) { function TestServeTLSBase64 (line 16) | func TestServeTLSBase64(t *testing.T) { function TestServeTLSPaths (line 31) | func TestServeTLSPaths(t *testing.T) { FILE: continuity/container.go type Container (line 19) | type Container struct method UTC (line 38) | func (c *Container) UTC() *Container { method TableName (line 45) | func (Container) TableName() string { return "continuity_containers" } method Valid (line 57) | func (c *Container) Valid(identity uuid.UUID) error { function NewContainer (line 47) | func NewContainer(name string, o managerOptions) *Container { FILE: continuity/container_test.go function TestContainer (line 17) | func TestContainer(t *testing.T) { FILE: continuity/manager.go type ManagementProvider (line 19) | type ManagementProvider interface type Manager (line 23) | type Manager interface type managerOptions (line 29) | type managerOptions struct type ManagerOption (line 37) | type ManagerOption function newManagerOptions (line 39) | func newManagerOptions(opts []ManagerOption) (*managerOptions, error) { function WithIdentity (line 51) | func WithIdentity(i *identity.Identity) ManagerOption { function WithLifespan (line 60) | func WithLifespan(ttl time.Duration) ManagerOption { function WithPayload (line 67) | func WithPayload(payload interface{}) ManagerOption { function WithExpireInsteadOfDelete (line 79) | func WithExpireInsteadOfDelete(duration time.Duration) ManagerOption { FILE: continuity/manager_cookie.go constant CookieName (line 29) | CookieName = "ory_kratos_continuity" type managerCookieDependencies (line 32) | type managerCookieDependencies interface type ManagerCookie (line 38) | type ManagerCookie struct method Pause (line 47) | func (m *ManagerCookie) Pause(ctx context.Context, w http.ResponseWrit... method Continue (line 73) | func (m *ManagerCookie) Continue(ctx context.Context, w http.ResponseW... method sessionID (line 118) | func (m *ManagerCookie) sessionID(ctx context.Context, w http.Response... method container (line 134) | func (m *ManagerCookie) container(ctx context.Context, w http.Response... method Abort (line 158) | func (m ManagerCookie) Abort(ctx context.Context, w http.ResponseWrite... function NewManagerCookie (line 43) | func NewManagerCookie(d managerCookieDependencies) *ManagerCookie { FILE: continuity/manager_options_test.go function TestManagerOptions (line 15) | func TestManagerOptions(t *testing.T) { FILE: continuity/manager_test.go type persisterTestCase (line 31) | type persisterTestCase struct type persisterTestPayload (line 38) | type persisterTestPayload struct function TestManager (line 42) | func TestManager(t *testing.T) { FILE: continuity/persistence.go type PersistenceProvider (line 13) | type PersistenceProvider interface type Persister (line 17) | type Persister interface FILE: continuity/test/persistence.go function TestPersister (line 26) | func TestPersister(ctx context.Context, p interface { FILE: corpx/faker.go function RegisterFakes (line 26) | func RegisterFakes() { function registerFakes (line 30) | func registerFakes() { FILE: courier/channel.go type Channel (line 10) | type Channel interface FILE: courier/courier.go type Dependencies (line 24) | type Dependencies interface type Courier (line 33) | type Courier interface type Provider (line 43) | type Provider interface type ConfigProvider (line 47) | type ConfigProvider interface type courier (line 51) | type courier struct method FailOnDispatchError (line 71) | func (c *courier) FailOnDispatchError() { method Work (line 75) | func (c *courier) Work(ctx context.Context) error { method UseBackoff (line 92) | func (c *courier) UseBackoff(b backoff.BackOff) { method watchMessages (line 96) | func (c *courier) watchMessages(ctx context.Context, errChan chan erro... function NewCourier (line 59) | func NewCourier(ctx context.Context, deps Dependencies) (Courier, error) { function NewCourierWithCustomTemplates (line 63) | func NewCourierWithCustomTemplates(_ context.Context, deps Dependencies,... FILE: courier/courier_dispatcher.go method channels (line 18) | func (c *courier) channels(ctx context.Context, id string) (Channel, err... method DispatchMessage (line 45) | func (c *courier) DispatchMessage(ctx context.Context, msg Message) (err... method DispatchQueue (line 97) | func (c *courier) DispatchQueue(ctx context.Context) (err error) { FILE: courier/courier_dispatcher_test.go function queueNewMessage (line 22) | func queueNewMessage(t *testing.T, c courier.Courier) uuid.UUID { function TestDispatchMessageWithInvalidSMTP (line 33) | func TestDispatchMessageWithInvalidSMTP(t *testing.T) { function TestDispatchMessage (line 58) | func TestDispatchMessage(t *testing.T) { function TestDispatchQueue (line 81) | func TestDispatchQueue(t *testing.T) { FILE: courier/email_templates.go type Template (line 19) | type Template interface type EmailTemplate (line 24) | type EmailTemplate interface type RequestHeadersCarrier (line 32) | type RequestHeadersCarrier interface function NewEmailTemplateFromMessage (line 37) | func NewEmailTemplateFromMessage(d template.Dependencies, msg Message) (... FILE: courier/email_templates_test.go function TestNewEmailTemplateFromMessage (line 20) | func TestNewEmailTemplateFromMessage(t *testing.T) { FILE: courier/handler.go constant AdminRouteCourier (line 23) | AdminRouteCourier = "/courier" constant AdminRouteListMessages (line 24) | AdminRouteListMessages = AdminRouteCourier + "/messages" constant AdminRouteGetMessage (line 25) | AdminRouteGetMessage = AdminRouteCourier + "/messages/{msgID}" type handlerDependencies (line 29) | type handlerDependencies interface type Handler (line 36) | type Handler struct method RegisterPublicRoutes (line 48) | func (h *Handler) RegisterPublicRoutes(public *httprouterx.RouterPubli... method RegisterAdminRoutes (line 54) | func (h *Handler) RegisterAdminRoutes(admin *httprouterx.RouterAdmin) { method listCourierMessages (line 116) | func (h *Handler) listCourierMessages(w http.ResponseWriter, r *http.R... method getCourierMessage (line 200) | func (h *Handler) getCourierMessage(w http.ResponseWriter, r *http.Req... type HandlerProvider (line 39) | type HandlerProvider interface function NewHandler (line 44) | func NewHandler(r handlerDependencies) *Handler { type listCourierMessagesResponse (line 65) | type listCourierMessagesResponse struct type ListCourierMessagesParameters (line 77) | type ListCourierMessagesParameters struct function parseMessagesFilter (line 142) | func parseMessagesFilter(r *http.Request, keys [][32]byte) (ListCourierM... type getCourierMessage (line 171) | type getCourierMessage struct FILE: courier/handler_test.go function TestHandler (line 34) | func TestHandler(t *testing.T) { FILE: courier/http_channel.go type httpChannel (line 25) | type httpChannel struct method ID (line 49) | func (c *httpChannel) ID() string { method Dispatch (line 65) | func (c *httpChannel) Dispatch(ctx context.Context, msg Message) (err ... method tryPopulateHTMLBody (line 135) | func (c *httpChannel) tryPopulateHTMLBody(ctx context.Context, tmpl Te... type channelDependencies (line 30) | type channelDependencies interface function newHttpChannel (line 41) | func newHttpChannel(id string, requestConfig *request.Config, d channelD... type httpDataModel (line 53) | type httpDataModel struct function newTemplate (line 147) | func newTemplate(d template.Dependencies, msg Message) (Template, error) { FILE: courier/http_test.go function TestQueueHTTPEmail (line 24) | func TestQueueHTTPEmail(t *testing.T) { FILE: courier/message.go type MessageStatus (line 23) | type MessageStatus method String (line 54) | func (ms MessageStatus) String() string { method IsValid (line 69) | func (ms MessageStatus) IsValid() error { method MarshalJSON (line 78) | func (ms MessageStatus) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 85) | func (ms *MessageStatus) UnmarshalJSON(data []byte) error { constant MessageStatusQueued (line 26) | MessageStatusQueued MessageStatus = iota + 1 constant MessageStatusSent (line 27) | MessageStatusSent constant MessageStatusProcessing (line 28) | MessageStatusProcessing constant MessageStatusAbandoned (line 29) | MessageStatusAbandoned constant messageStatusQueuedText (line 33) | messageStatusQueuedText = "queued" constant messageStatusSentText (line 34) | messageStatusSentText = "sent" constant messageStatusProcessingText (line 35) | messageStatusProcessingText = "processing" constant messageStatusAbandonedText (line 36) | messageStatusAbandonedText = "abandoned" function ToMessageStatus (line 39) | func ToMessageStatus(str string) (MessageStatus, error) { type MessageType (line 105) | type MessageType method String (line 128) | func (mt MessageType) String() string { method IsValid (line 139) | func (mt MessageType) IsValid() error { method MarshalJSON (line 148) | func (mt MessageType) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 155) | func (mt *MessageType) UnmarshalJSON(data []byte) error { constant MessageTypeEmail (line 108) | MessageTypeEmail MessageType = iota + 1 constant MessageTypeSMS (line 109) | MessageTypeSMS constant messageTypeEmailText (line 113) | messageTypeEmailText = "email" constant messageTypeSMSText (line 114) | messageTypeSMSText = "sms" function ToMessageType (line 117) | func ToMessageType(str string) (MessageType, error) { type Message (line 171) | type Message struct method PageToken (line 208) | func (m Message) PageToken() keysetpagination.PageToken { method DefaultPageToken (line 221) | func (m Message) DefaultPageToken() keysetpagination.PageToken { method TableName (line 225) | func (m Message) TableName() string { return "courier_messages" } method GetID (line 226) | func (m *Message) GetID() uuid.UUID { return m.ID } FILE: courier/message_dispatch.go type CourierMessageDispatchStatus (line 15) | type CourierMessageDispatchStatus constant CourierMessageDispatchStatusFailed (line 18) | CourierMessageDispatchStatusFailed CourierMessageDispatchStatus = "failed" constant CourierMessageDispatchStatusSuccess (line 19) | CourierMessageDispatchStatusSuccess CourierMessageDispatchStatus = "succ... type MessageDispatch (line 26) | type MessageDispatch struct method TableName (line 53) | func (MessageDispatch) TableName() string { FILE: courier/message_test.go function TestMessageStatusValidity (line 15) | func TestMessageStatusValidity(t *testing.T) { function TestToMessageStatus (line 20) | func TestToMessageStatus(t *testing.T) { function TestMessageTypeValidity (line 40) | func TestMessageTypeValidity(t *testing.T) { function TestToMessageType (line 45) | func TestToMessageType(t *testing.T) { FILE: courier/persistence.go type Persister (line 18) | type Persister interface type PersistenceProvider (line 40) | type PersistenceProvider interface FILE: courier/sms.go method QueueSMS (line 13) | func (c *courier) QueueSMS(ctx context.Context, t SMSTemplate) (uuid.UUI... FILE: courier/sms_templates.go type SMSTemplate (line 16) | type SMSTemplate interface function NewSMSTemplateFromMessage (line 22) | func NewSMSTemplateFromMessage(d template.Dependencies, m Message) (SMST... FILE: courier/sms_templates_test.go function TestSMSTemplateType (line 20) | func TestSMSTemplateType(t *testing.T) { function TestNewSMSTemplateFromMessage (line 31) | func TestNewSMSTemplateFromMessage(t *testing.T) { FILE: courier/sms_test.go function TestQueueSMS (line 24) | func TestQueueSMS(t *testing.T) { function TestDisallowedInternalNetwork (line 110) | func TestDisallowedInternalNetwork(t *testing.T) { FILE: courier/smtp.go type SMTPClient (line 25) | type SMTPClient struct function NewSMTPClient (line 29) | func NewSMTPClient(deps Dependencies, cfg *config.SMTPConfig) (*SMTPClie... method QueueEmail (line 99) | func (c *courier) QueueEmail(ctx context.Context, t EmailTemplate) (uuid... FILE: courier/smtp_channel.go type SMTPChannel (line 25) | type SMTPChannel struct method ID (line 51) | func (c *SMTPChannel) ID() string { method Dispatch (line 55) | func (c *SMTPChannel) Dispatch(ctx context.Context, msg Message) (err ... function NewSMTPChannel (line 35) | func NewSMTPChannel(deps Dependencies, cfg *config.SMTPConfig) (*SMTPCha... function NewSMTPChannelWithCustomTemplates (line 39) | func NewSMTPChannelWithCustomTemplates(deps Dependencies, cfg *config.SM... FILE: courier/smtp_test.go function TestNewSMTPClientPreventLeak (line 36) | func TestNewSMTPClientPreventLeak(t *testing.T) { function TestNewSMTP (line 51) | func TestNewSMTP(t *testing.T) { function TestQueueEmail (line 104) | func TestQueueEmail(t *testing.T) { function generateTestClientCert (line 176) | func generateTestClientCert(t *testing.T) (clientCert *os.File, clientKe... FILE: courier/template/email/login_code_valid.go type LoginCodeValid (line 17) | type LoginCodeValid struct method EmailRecipient (line 36) | func (t *LoginCodeValid) EmailRecipient() (string, error) { method EmailSubject (line 40) | func (t *LoginCodeValid) EmailSubject(ctx context.Context) (string, er... method EmailBody (line 46) | func (t *LoginCodeValid) EmailBody(ctx context.Context) (string, error) { method EmailBodyPlaintext (line 50) | func (t *LoginCodeValid) EmailBodyPlaintext(ctx context.Context) (stri... method MarshalJSON (line 54) | func (t *LoginCodeValid) MarshalJSON() ([]byte, error) { method TemplateType (line 58) | func (t *LoginCodeValid) TemplateType() template.TemplateType { method RequestHeaders (line 61) | func (t *LoginCodeValid) RequestHeaders() http.Header { type LoginCodeValidModel (line 21) | type LoginCodeValidModel struct function NewLoginCodeValid (line 32) | func NewLoginCodeValid(d template.Dependencies, m *LoginCodeValidModel) ... FILE: courier/template/email/login_code_valid_test.go function TestLoginCodeValid (line 16) | func TestLoginCodeValid(t *testing.T) { FILE: courier/template/email/recovery_code_invalid.go type RecoveryCodeInvalid (line 16) | type RecoveryCodeInvalid struct method EmailRecipient (line 31) | func (t *RecoveryCodeInvalid) EmailRecipient() (string, error) { method EmailSubject (line 35) | func (t *RecoveryCodeInvalid) EmailSubject(ctx context.Context) (strin... method EmailBody (line 44) | func (t *RecoveryCodeInvalid) EmailBody(ctx context.Context) (string, ... method EmailBodyPlaintext (line 48) | func (t *RecoveryCodeInvalid) EmailBodyPlaintext(ctx context.Context) ... method MarshalJSON (line 52) | func (t *RecoveryCodeInvalid) MarshalJSON() ([]byte, error) { method TemplateType (line 56) | func (t *RecoveryCodeInvalid) TemplateType() template.TemplateType { type RecoveryCodeInvalidModel (line 20) | type RecoveryCodeInvalidModel struct function NewRecoveryCodeInvalid (line 27) | func NewRecoveryCodeInvalid(d template.Dependencies, m *RecoveryCodeInva... FILE: courier/template/email/recovery_code_invalid_test.go function TestRecoveryCodeInvalid (line 16) | func TestRecoveryCodeInvalid(t *testing.T) { FILE: courier/template/email/recovery_code_valid.go type RecoveryCodeValid (line 17) | type RecoveryCodeValid struct method EmailRecipient (line 36) | func (t *RecoveryCodeValid) EmailRecipient() (string, error) { method EmailSubject (line 40) | func (t *RecoveryCodeValid) EmailSubject(ctx context.Context) (string,... method EmailBody (line 46) | func (t *RecoveryCodeValid) EmailBody(ctx context.Context) (string, er... method EmailBodyPlaintext (line 50) | func (t *RecoveryCodeValid) EmailBodyPlaintext(ctx context.Context) (s... method MarshalJSON (line 54) | func (t *RecoveryCodeValid) MarshalJSON() ([]byte, error) { method TemplateType (line 58) | func (t *RecoveryCodeValid) TemplateType() template.TemplateType { method RequestHeaders (line 61) | func (t *RecoveryCodeValid) RequestHeaders() http.Header { type RecoveryCodeValidModel (line 21) | type RecoveryCodeValidModel struct function NewRecoveryCodeValid (line 32) | func NewRecoveryCodeValid(d template.Dependencies, m *RecoveryCodeValidM... FILE: courier/template/email/recovery_code_valid_test.go function TestRecoveryCodeValid (line 16) | func TestRecoveryCodeValid(t *testing.T) { FILE: courier/template/email/recovery_invalid.go type RecoveryInvalid (line 16) | type RecoveryInvalid struct method EmailRecipient (line 31) | func (t *RecoveryInvalid) EmailRecipient() (string, error) { method EmailSubject (line 35) | func (t *RecoveryInvalid) EmailSubject(ctx context.Context) (string, e... method EmailBody (line 41) | func (t *RecoveryInvalid) EmailBody(ctx context.Context) (string, erro... method EmailBodyPlaintext (line 45) | func (t *RecoveryInvalid) EmailBodyPlaintext(ctx context.Context) (str... method MarshalJSON (line 49) | func (t *RecoveryInvalid) MarshalJSON() ([]byte, error) { method TemplateType (line 53) | func (t *RecoveryInvalid) TemplateType() template.TemplateType { type RecoveryInvalidModel (line 20) | type RecoveryInvalidModel struct function NewRecoveryInvalid (line 27) | func NewRecoveryInvalid(d template.Dependencies, m *RecoveryInvalidModel... FILE: courier/template/email/recovery_invalid_test.go function TestRecoverInvalid (line 16) | func TestRecoverInvalid(t *testing.T) { FILE: courier/template/email/recovery_valid.go type RecoveryValid (line 16) | type RecoveryValid struct method EmailRecipient (line 34) | func (t *RecoveryValid) EmailRecipient() (string, error) { method EmailSubject (line 38) | func (t *RecoveryValid) EmailSubject(ctx context.Context) (string, err... method EmailBody (line 44) | func (t *RecoveryValid) EmailBody(ctx context.Context) (string, error) { method EmailBodyPlaintext (line 48) | func (t *RecoveryValid) EmailBodyPlaintext(ctx context.Context) (strin... method MarshalJSON (line 52) | func (t *RecoveryValid) MarshalJSON() ([]byte, error) { method TemplateType (line 56) | func (t *RecoveryValid) TemplateType() template.TemplateType { type RecoveryValidModel (line 20) | type RecoveryValidModel struct function NewRecoveryValid (line 30) | func NewRecoveryValid(d template.Dependencies, m *RecoveryValidModel) *R... FILE: courier/template/email/recovery_valid_test.go function TestRecoverValid (line 16) | func TestRecoverValid(t *testing.T) { FILE: courier/template/email/registration_code_valid.go type RegistrationCodeValid (line 17) | type RegistrationCodeValid struct method EmailRecipient (line 36) | func (t *RegistrationCodeValid) EmailRecipient() (string, error) { method EmailSubject (line 40) | func (t *RegistrationCodeValid) EmailSubject(ctx context.Context) (str... method EmailBody (line 46) | func (t *RegistrationCodeValid) EmailBody(ctx context.Context) (string... method EmailBodyPlaintext (line 50) | func (t *RegistrationCodeValid) EmailBodyPlaintext(ctx context.Context... method MarshalJSON (line 54) | func (t *RegistrationCodeValid) MarshalJSON() ([]byte, error) { method TemplateType (line 58) | func (t *RegistrationCodeValid) TemplateType() template.TemplateType { method RequestHeaders (line 61) | func (t *RegistrationCodeValid) RequestHeaders() http.Header { type RegistrationCodeValidModel (line 21) | type RegistrationCodeValidModel struct function NewRegistrationCodeValid (line 32) | func NewRegistrationCodeValid(d template.Dependencies, m *RegistrationCo... FILE: courier/template/email/registration_code_valid_test.go function TestRegistrationCodeValid (line 16) | func TestRegistrationCodeValid(t *testing.T) { FILE: courier/template/email/stub.go type TestStub (line 14) | type TestStub struct method EmailRecipient (line 29) | func (t *TestStub) EmailRecipient() (string, error) { ret... method EmailSubject (line 30) | func (t *TestStub) EmailSubject(context.Context) (string, error) { ret... method EmailBody (line 32) | func (t *TestStub) EmailBody(ctx context.Context) (string, error) { method EmailBodyPlaintext (line 39) | func (t *TestStub) EmailBodyPlaintext(context.Context) (string, error)... method MarshalJSON (line 40) | func (t *TestStub) MarshalJSON() ([]byte, error) ... method TemplateType (line 41) | func (t *TestStub) TemplateType() template.TemplateType ... type TestStubModel (line 17) | type TestStubModel struct function NewTestStub (line 25) | func NewTestStub(m *TestStubModel) *TestStub { FILE: courier/template/email/verification_code_invalid.go type VerificationCodeInvalid (line 16) | type VerificationCodeInvalid struct method EmailRecipient (line 31) | func (t *VerificationCodeInvalid) EmailRecipient() (string, error) { method EmailSubject (line 35) | func (t *VerificationCodeInvalid) EmailSubject(ctx context.Context) (s... method EmailBody (line 49) | func (t *VerificationCodeInvalid) EmailBody(ctx context.Context) (stri... method EmailBodyPlaintext (line 61) | func (t *VerificationCodeInvalid) EmailBodyPlaintext(ctx context.Conte... method MarshalJSON (line 73) | func (t *VerificationCodeInvalid) MarshalJSON() ([]byte, error) { method TemplateType (line 77) | func (t *VerificationCodeInvalid) TemplateType() template.TemplateType { type VerificationCodeInvalidModel (line 20) | type VerificationCodeInvalidModel struct function NewVerificationCodeInvalid (line 27) | func NewVerificationCodeInvalid(d template.Dependencies, m *Verification... FILE: courier/template/email/verification_code_invalid_test.go function TestVerifyCodeInvalid (line 16) | func TestVerifyCodeInvalid(t *testing.T) { FILE: courier/template/email/verification_code_valid.go type VerificationCodeValid (line 16) | type VerificationCodeValid struct method EmailRecipient (line 35) | func (t *VerificationCodeValid) EmailRecipient() (string, error) { method EmailSubject (line 39) | func (t *VerificationCodeValid) EmailSubject(ctx context.Context) (str... method EmailBody (line 53) | func (t *VerificationCodeValid) EmailBody(ctx context.Context) (string... method EmailBodyPlaintext (line 64) | func (t *VerificationCodeValid) EmailBodyPlaintext(ctx context.Context... method MarshalJSON (line 75) | func (t *VerificationCodeValid) MarshalJSON() ([]byte, error) { method TemplateType (line 79) | func (t *VerificationCodeValid) TemplateType() template.TemplateType { type VerificationCodeValidModel (line 20) | type VerificationCodeValidModel struct function NewVerificationCodeValid (line 31) | func NewVerificationCodeValid(d template.Dependencies, m *VerificationCo... FILE: courier/template/email/verification_code_valid_test.go function TestVerifyCodeValid (line 16) | func TestVerifyCodeValid(t *testing.T) { FILE: courier/template/email/verification_invalid.go type VerificationInvalid (line 16) | type VerificationInvalid struct method EmailRecipient (line 31) | func (t *VerificationInvalid) EmailRecipient() (string, error) { method EmailSubject (line 35) | func (t *VerificationInvalid) EmailSubject(ctx context.Context) (strin... method EmailBody (line 41) | func (t *VerificationInvalid) EmailBody(ctx context.Context) (string, ... method EmailBodyPlaintext (line 45) | func (t *VerificationInvalid) EmailBodyPlaintext(ctx context.Context) ... method MarshalJSON (line 49) | func (t *VerificationInvalid) MarshalJSON() ([]byte, error) { method TemplateType (line 53) | func (t *VerificationInvalid) TemplateType() template.TemplateType { type VerificationInvalidModel (line 20) | type VerificationInvalidModel struct function NewVerificationInvalid (line 27) | func NewVerificationInvalid(d template.Dependencies, m *VerificationInva... FILE: courier/template/email/verification_invalid_test.go function TestVerifyInvalid (line 16) | func TestVerifyInvalid(t *testing.T) { FILE: courier/template/email/verification_valid.go type VerificationValid (line 16) | type VerificationValid struct method EmailRecipient (line 34) | func (t *VerificationValid) EmailRecipient() (string, error) { method EmailSubject (line 38) | func (t *VerificationValid) EmailSubject(ctx context.Context) (string,... method EmailBody (line 44) | func (t *VerificationValid) EmailBody(ctx context.Context) (string, er... method EmailBodyPlaintext (line 48) | func (t *VerificationValid) EmailBodyPlaintext(ctx context.Context) (s... method MarshalJSON (line 52) | func (t *VerificationValid) MarshalJSON() ([]byte, error) { method TemplateType (line 56) | func (t *VerificationValid) TemplateType() template.TemplateType { type VerificationValidModel (line 20) | type VerificationValidModel struct function NewVerificationValid (line 30) | func NewVerificationValid(d template.Dependencies, m *VerificationValidM... FILE: courier/template/email/verification_valid_test.go function TestVerifyValid (line 16) | func TestVerifyValid(t *testing.T) { FILE: courier/template/load_template.go type Template (line 29) | type Template interface type templateDependencies (line 33) | type templateDependencies interface function loadBuiltInTemplate (line 37) | func loadBuiltInTemplate(filesystem fs.FS, name string, html bool) (Temp... function loadRemoteTemplate (line 79) | func loadRemoteTemplate(ctx context.Context, d templateDependencies, url... function loadTemplate (line 107) | func loadTemplate(filesystem fs.FS, name, pattern string, html bool) (Te... function LoadText (line 148) | func LoadText(ctx context.Context, d templateDependencies, filesystem fs... function LoadHTML (line 170) | func LoadHTML(ctx context.Context, d templateDependencies, filesystem fs... FILE: courier/template/load_template_test.go function TestLoadTextTemplate (line 29) | func TestLoadTextTemplate(t *testing.T) { FILE: courier/template/sms/login_code_valid.go type LoginCodeValid (line 16) | type LoginCodeValid struct method PhoneNumber (line 35) | func (t *LoginCodeValid) PhoneNumber() (string, error) { method SMSBody (line 39) | func (t *LoginCodeValid) SMSBody(ctx context.Context) (string, error) { method MarshalJSON (line 51) | func (t *LoginCodeValid) MarshalJSON() ([]byte, error) { method TemplateType (line 55) | func (t *LoginCodeValid) TemplateType() template.TemplateType { method RequestHeaders (line 58) | func (t *LoginCodeValid) RequestHeaders() http.Header { type LoginCodeValidModel (line 20) | type LoginCodeValidModel struct function NewLoginCodeValid (line 31) | func NewLoginCodeValid(d template.Dependencies, m *LoginCodeValidModel) ... FILE: courier/template/sms/login_code_valid_test.go function TestNewLoginCodeValid (line 18) | func TestNewLoginCodeValid(t *testing.T) { FILE: courier/template/sms/recovery_code.go type RecoveryCodeValid (line 16) | type RecoveryCodeValid struct method PhoneNumber (line 37) | func (t *RecoveryCodeValid) PhoneNumber() (string, error) { method SMSBody (line 41) | func (t *RecoveryCodeValid) SMSBody(ctx context.Context) (string, erro... method MarshalJSON (line 53) | func (t *RecoveryCodeValid) MarshalJSON() ([]byte, error) { method TemplateType (line 56) | func (t *RecoveryCodeValid) TemplateType() template.TemplateType { method RequestHeaders (line 59) | func (t *RecoveryCodeValid) RequestHeaders() http.Header { type RecoveryCodeValidModel (line 21) | type RecoveryCodeValidModel struct function NewRecoveryCodeValid (line 33) | func NewRecoveryCodeValid(d template.Dependencies, m *RecoveryCodeValidM... FILE: courier/template/sms/registration_code_valid.go type RegistrationCodeValid (line 16) | type RegistrationCodeValid struct method PhoneNumber (line 35) | func (t *RegistrationCodeValid) PhoneNumber() (string, error) { method SMSBody (line 39) | func (t *RegistrationCodeValid) SMSBody(ctx context.Context) (string, ... method MarshalJSON (line 51) | func (t *RegistrationCodeValid) MarshalJSON() ([]byte, error) { method TemplateType (line 55) | func (t *RegistrationCodeValid) TemplateType() template.TemplateType { method RequestHeaders (line 59) | func (t *RegistrationCodeValid) RequestHeaders() http.Header { type RegistrationCodeValidModel (line 20) | type RegistrationCodeValidModel struct function NewRegistrationCodeValid (line 31) | func NewRegistrationCodeValid(d template.Dependencies, m *RegistrationCo... FILE: courier/template/sms/registration_code_valid_test.go function TestNewRegistrationCodeValid (line 18) | func TestNewRegistrationCodeValid(t *testing.T) { FILE: courier/template/sms/stub.go type TestStub (line 14) | type TestStub struct method PhoneNumber (line 24) | func (t *TestStub) PhoneNumber() (string, error) { return t... method SMSBody (line 25) | func (t *TestStub) SMSBody(context.Context) (string, error) { return t... method MarshalJSON (line 26) | func (t *TestStub) MarshalJSON() ([]byte, error) { return j... method TemplateType (line 27) | func (t *TestStub) TemplateType() template.TemplateType { return t... type TestStubModel (line 16) | type TestStubModel struct function NewTestStub (line 23) | func NewTestStub(m *TestStubModel) *TestStub { return &Te... FILE: courier/template/sms/verification_code.go type VerificationCodeValid (line 15) | type VerificationCodeValid struct method PhoneNumber (line 34) | func (t *VerificationCodeValid) PhoneNumber() (string, error) { method SMSBody (line 38) | func (t *VerificationCodeValid) SMSBody(ctx context.Context) (string, ... method MarshalJSON (line 50) | func (t *VerificationCodeValid) MarshalJSON() ([]byte, error) { method TemplateType (line 54) | func (t *VerificationCodeValid) TemplateType() template.TemplateType { type VerificationCodeValidModel (line 20) | type VerificationCodeValidModel struct function NewVerificationCodeValid (line 30) | func NewVerificationCodeValid(d template.Dependencies, m *VerificationCo... FILE: courier/template/sms/verification_code_test.go function TestNewOTPMessage (line 18) | func TestNewOTPMessage(t *testing.T) { FILE: courier/template/template.go type Dependencies (line 11) | type Dependencies interface FILE: courier/template/testhelpers/testhelpers.go function SetupRemoteConfig (line 26) | func SetupRemoteConfig(t *testing.T, ctx context.Context, plaintext stri... function TestRendered (line 38) | func TestRendered(t *testing.T, ctx context.Context, tpl interface { function TestRemoteTemplates (line 52) | func TestRemoteTemplates(t *testing.T, basePath string, tmplType templat... FILE: courier/template/type.go type TemplateType (line 9) | type TemplateType constant TypeRecoveryInvalid (line 12) | TypeRecoveryInvalid TemplateType = "recovery_invalid" constant TypeRecoveryValid (line 13) | TypeRecoveryValid TemplateType = "recovery_valid" constant TypeRecoveryCodeInvalid (line 14) | TypeRecoveryCodeInvalid TemplateType = "recovery_code_invalid" constant TypeRecoveryCodeValid (line 15) | TypeRecoveryCodeValid TemplateType = "recovery_code_valid" constant TypeVerificationInvalid (line 16) | TypeVerificationInvalid TemplateType = "verification_invalid" constant TypeVerificationValid (line 17) | TypeVerificationValid TemplateType = "verification_valid" constant TypeVerificationCodeInvalid (line 18) | TypeVerificationCodeInvalid TemplateType = "verification_code_invalid" constant TypeVerificationCodeValid (line 19) | TypeVerificationCodeValid TemplateType = "verification_code_valid" constant TypeTestStub (line 20) | TypeTestStub TemplateType = "stub" constant TypeLoginCodeValid (line 21) | TypeLoginCodeValid TemplateType = "login_code_valid" constant TypeRegistrationCodeValid (line 22) | TypeRegistrationCodeValid TemplateType = "registration_code_valid" FILE: courier/test/persistence.go type PersisterWrapper (line 27) | type PersisterWrapper interface type NetworkWrapper (line 33) | type NetworkWrapper function TestPersister (line 35) | func TestPersister(ctx context.Context, newNetworkUnlessExisting Network... FILE: driver/config/config.go constant DefaultIdentityTraitsSchemaID (line 49) | DefaultIdentityTraitsSchemaID = "default" constant DefaultBrowserReturnURL (line 50) | DefaultBrowserReturnURL = "default_brow... constant DefaultSQLiteMemoryDSN (line 51) | DefaultSQLiteMemoryDSN = "sqlite://fil... constant DefaultPasswordHashingAlgorithm (line 52) | DefaultPasswordHashingAlgorithm = "argon2" constant DefaultCipherAlgorithm (line 53) | DefaultCipherAlgorithm = "noop" constant UnknownVersion (line 54) | UnknownVersion = "unknown vers... constant ViperKeyDSN (line 55) | ViperKeyDSN = "dsn" constant ViperKeyCourierSMTPURL (line 56) | ViperKeyCourierSMTPURL = "courier.smtp... constant ViperKeyCourierSMTPClientCertPath (line 57) | ViperKeyCourierSMTPClientCertPath = "courier.smtp... constant ViperKeyCourierSMTPClientKeyPath (line 58) | ViperKeyCourierSMTPClientKeyPath = "courier.smtp... constant ViperKeyCourierTemplatesPath (line 59) | ViperKeyCourierTemplatesPath = "courier.temp... constant ViperKeyCourierTemplatesRecoveryInvalidEmail (line 60) | ViperKeyCourierTemplatesRecoveryInvalidEmail = "courier.temp... constant ViperKeyCourierTemplatesRecoveryValidEmail (line 61) | ViperKeyCourierTemplatesRecoveryValidEmail = "courier.temp... constant ViperKeyCourierTemplatesRecoveryCodeInvalidEmail (line 62) | ViperKeyCourierTemplatesRecoveryCodeInvalidEmail = "courier.temp... constant ViperKeyCourierTemplatesRecoveryCodeValidEmail (line 63) | ViperKeyCourierTemplatesRecoveryCodeValidEmail = "courier.temp... constant ViperKeyCourierTemplatesVerificationInvalidEmail (line 64) | ViperKeyCourierTemplatesVerificationInvalidEmail = "courier.temp... constant ViperKeyCourierTemplatesVerificationValidEmail (line 65) | ViperKeyCourierTemplatesVerificationValidEmail = "courier.temp... constant ViperKeyCourierTemplatesVerificationCodeInvalidEmail (line 66) | ViperKeyCourierTemplatesVerificationCodeInvalidEmail = "courier.temp... constant ViperKeyCourierTemplatesVerificationCodeValidEmail (line 67) | ViperKeyCourierTemplatesVerificationCodeValidEmail = "courier.temp... constant ViperKeyCourierTemplatesVerificationCodeValidSMS (line 68) | ViperKeyCourierTemplatesVerificationCodeValidSMS = "courier.temp... constant ViperKeyCourierTemplatesRecoveryCodeValidSMS (line 69) | ViperKeyCourierTemplatesRecoveryCodeValidSMS = "courier.temp... constant ViperKeyCourierTemplatesLoginCodeValidSMS (line 70) | ViperKeyCourierTemplatesLoginCodeValidSMS = "courier.temp... constant ViperKeyCourierTemplatesRegistrationCodeValidSMS (line 71) | ViperKeyCourierTemplatesRegistrationCodeValidSMS = "courier.temp... constant ViperKeyCourierDeliveryStrategy (line 72) | ViperKeyCourierDeliveryStrategy = "courier.deli... constant ViperKeyCourierHTTPRequestConfig (line 73) | ViperKeyCourierHTTPRequestConfig = "courier.http... constant ViperKeyCourierTemplatesLoginCodeValidEmail (line 74) | ViperKeyCourierTemplatesLoginCodeValidEmail = "courier.temp... constant ViperKeyCourierTemplatesRegistrationCodeValidEmail (line 75) | ViperKeyCourierTemplatesRegistrationCodeValidEmail = "courier.temp... constant ViperKeyCourierSMTP (line 76) | ViperKeyCourierSMTP = "courier.smtp" constant ViperKeyCourierSMTPFrom (line 77) | ViperKeyCourierSMTPFrom = "courier.smtp... constant ViperKeyCourierSMTPFromName (line 78) | ViperKeyCourierSMTPFromName = "courier.smtp... constant ViperKeyCourierSMTPHeaders (line 79) | ViperKeyCourierSMTPHeaders = "courier.smtp... constant ViperKeyCourierSMTPLocalName (line 80) | ViperKeyCourierSMTPLocalName = "courier.smtp... constant ViperKeyCourierMessageRetries (line 81) | ViperKeyCourierMessageRetries = "courier.mess... constant ViperKeyCourierWorkerPullCount (line 82) | ViperKeyCourierWorkerPullCount = "courier.work... constant ViperKeyCourierWorkerPullWait (line 83) | ViperKeyCourierWorkerPullWait = "courier.work... constant ViperKeyCourierChannels (line 84) | ViperKeyCourierChannels = "courier.chan... constant ViperKeySecretsDefault (line 85) | ViperKeySecretsDefault = "secrets.defa... constant ViperKeySecretsCookie (line 86) | ViperKeySecretsCookie = "secrets.cookie" constant ViperKeySecretsCipher (line 87) | ViperKeySecretsCipher = "secrets.cipher" constant ViperKeySecretsPagination (line 88) | ViperKeySecretsPagination = "secrets.pagi... constant ViperKeyPublicBaseURL (line 89) | ViperKeyPublicBaseURL = "serve.public... constant ViperKeyAdminBaseURL (line 90) | ViperKeyAdminBaseURL = "serve.admin.... constant ViperKeySessionLifespan (line 91) | ViperKeySessionLifespan = "session.life... constant ViperKeySessionSameSite (line 92) | ViperKeySessionSameSite = "session.cook... constant ViperKeySessionSecure (line 93) | ViperKeySessionSecure = "session.cook... constant ViperKeySessionDomain (line 94) | ViperKeySessionDomain = "session.cook... constant ViperKeySessionName (line 95) | ViperKeySessionName = "session.cook... constant ViperKeySessionPath (line 96) | ViperKeySessionPath = "session.cook... constant ViperKeySessionPersistentCookie (line 97) | ViperKeySessionPersistentCookie = "session.cook... constant ViperKeySessionTokenizerTemplates (line 98) | ViperKeySessionTokenizerTemplates = "session.whoa... constant ViperKeySessionWhoAmIAAL (line 99) | ViperKeySessionWhoAmIAAL = "session.whoa... constant ViperKeySessionWhoAmICaching (line 100) | ViperKeySessionWhoAmICaching = "feature_flag... constant ViperKeyFeatureFlagFasterSessionExtend (line 101) | ViperKeyFeatureFlagFasterSessionExtend = "feature_flag... constant ViperKeySessionWhoAmICachingMaxAge (line 102) | ViperKeySessionWhoAmICachingMaxAge = "feature_flag... constant ViperKeyUseContinueWithTransitions (line 103) | ViperKeyUseContinueWithTransitions = "feature_flag... constant ViperKeyChooseRecoveryAddress (line 104) | ViperKeyChooseRecoveryAddress = "feature_flag... constant ViperKeyUseLegacyShowVerificationUI (line 105) | ViperKeyUseLegacyShowVerificationUI = "feature_flag... constant ViperKeyLegacyOIDCRegistrationGroup (line 106) | ViperKeyLegacyOIDCRegistrationGroup = "feature_flag... constant ViperKeyUseLegacyRequireVerifiedLoginError (line 107) | ViperKeyUseLegacyRequireVerifiedLoginError = "feature_flag... constant ViperKeySessionRefreshMinTimeLeft (line 108) | ViperKeySessionRefreshMinTimeLeft = "session.earl... constant ViperKeyCookieSameSite (line 109) | ViperKeyCookieSameSite = "cookies.same... constant ViperKeyCookieDomain (line 110) | ViperKeyCookieDomain = "cookies.domain" constant ViperKeyCookiePath (line 111) | ViperKeyCookiePath = "cookies.path" constant ViperKeyCookieSecure (line 112) | ViperKeyCookieSecure = "cookies.secure" constant ViperKeySelfServiceStrategyConfig (line 113) | ViperKeySelfServiceStrategyConfig = "selfservice.... constant ViperKeySelfServiceBrowserDefaultReturnTo (line 114) | ViperKeySelfServiceBrowserDefaultReturnTo = "selfservice.... constant ViperKeyURLsAllowedReturnToDomains (line 115) | ViperKeyURLsAllowedReturnToDomains = "selfservice.... constant ViperKeySelfServiceRegistrationEnabled (line 116) | ViperKeySelfServiceRegistrationEnabled = "selfservice.... constant ViperKeySelfServiceRegistrationLoginHints (line 117) | ViperKeySelfServiceRegistrationLoginHints = "selfservice.... constant ViperKeySelfServiceRegistrationEnableLegacyOneStep (line 118) | ViperKeySelfServiceRegistrationEnableLegacyOneStep = "selfservice.... constant ViperKeySelfServiceRegistrationFlowStyle (line 119) | ViperKeySelfServiceRegistrationFlowStyle = "selfservice.... constant ViperKeySelfServiceRegistrationUI (line 120) | ViperKeySelfServiceRegistrationUI = "selfservice.... constant ViperKeySelfServiceRegistrationRequestLifespan (line 121) | ViperKeySelfServiceRegistrationRequestLifespan = "selfservice.... constant ViperKeySelfServiceRegistrationAfter (line 122) | ViperKeySelfServiceRegistrationAfter = "selfservice.... constant ViperKeySelfServiceRegistrationBeforeHooks (line 123) | ViperKeySelfServiceRegistrationBeforeHooks = "selfservice.... constant ViperKeySelfServiceLoginUI (line 124) | ViperKeySelfServiceLoginUI = "selfservice.... constant ViperKeySelfServiceLoginFlowStyle (line 125) | ViperKeySelfServiceLoginFlowStyle = "selfservice.... constant ViperKeySecurityAccountEnumerationMitigate (line 126) | ViperKeySecurityAccountEnumerationMitigate = "security.acc... constant ViperKeySelfServiceLoginRequestLifespan (line 127) | ViperKeySelfServiceLoginRequestLifespan = "selfservice.... constant ViperKeySelfServiceLoginAfter (line 128) | ViperKeySelfServiceLoginAfter = "selfservice.... constant ViperKeySelfServiceLoginBeforeHooks (line 129) | ViperKeySelfServiceLoginBeforeHooks = "selfservice.... constant ViperKeySelfServiceErrorUI (line 130) | ViperKeySelfServiceErrorUI = "selfservice.... constant ViperKeySelfServiceLogoutBrowserDefaultReturnTo (line 131) | ViperKeySelfServiceLogoutBrowserDefaultReturnTo = "selfservice.... constant ViperKeySelfServiceSettingsURL (line 132) | ViperKeySelfServiceSettingsURL = "selfservice.... constant ViperKeySelfServiceSettingsAfter (line 133) | ViperKeySelfServiceSettingsAfter = "selfservice.... constant ViperKeySelfServiceSettingsBeforeHooks (line 134) | ViperKeySelfServiceSettingsBeforeHooks = "selfservice.... constant ViperKeySelfServiceSettingsRequestLifespan (line 135) | ViperKeySelfServiceSettingsRequestLifespan = "selfservice.... constant ViperKeySelfServiceSettingsPrivilegedAuthenticationAfter (line 136) | ViperKeySelfServiceSettingsPrivilegedAuthenticationAfter = "selfservice.... constant ViperKeySelfServiceSettingsRequiredAAL (line 137) | ViperKeySelfServiceSettingsRequiredAAL = "selfservice.... constant ViperKeySelfServiceRecoveryAfter (line 138) | ViperKeySelfServiceRecoveryAfter = "selfservice.... constant ViperKeySelfServiceRecoveryBeforeHooks (line 139) | ViperKeySelfServiceRecoveryBeforeHooks = "selfservice.... constant ViperKeySelfServiceRecoveryEnabled (line 140) | ViperKeySelfServiceRecoveryEnabled = "selfservice.... constant ViperKeySelfServiceRecoveryUse (line 141) | ViperKeySelfServiceRecoveryUse = "selfservice.... constant ViperKeySelfServiceRecoveryUI (line 142) | ViperKeySelfServiceRecoveryUI = "selfservice.... constant ViperKeySelfServiceRecoveryRequestLifespan (line 143) | ViperKeySelfServiceRecoveryRequestLifespan = "selfservice.... constant ViperKeySelfServiceRecoveryBrowserDefaultReturnTo (line 144) | ViperKeySelfServiceRecoveryBrowserDefaultReturnTo = "selfservice.... constant ViperKeySelfServiceRecoveryNotifyUnknownRecipients (line 145) | ViperKeySelfServiceRecoveryNotifyUnknownRecipients = "selfservice.... constant ViperKeySelfServiceVerificationEnabled (line 146) | ViperKeySelfServiceVerificationEnabled = "selfservice.... constant ViperKeySelfServiceVerificationUI (line 147) | ViperKeySelfServiceVerificationUI = "selfservice.... constant ViperKeySelfServiceVerificationRequestLifespan (line 148) | ViperKeySelfServiceVerificationRequestLifespan = "selfservice.... constant ViperKeySelfServiceVerificationBrowserDefaultReturnTo (line 149) | ViperKeySelfServiceVerificationBrowserDefaultReturnTo = "selfservice.... constant ViperKeySelfServiceVerificationAfter (line 150) | ViperKeySelfServiceVerificationAfter = "selfservice.... constant ViperKeySelfServiceVerificationBeforeHooks (line 151) | ViperKeySelfServiceVerificationBeforeHooks = "selfservice.... constant ViperKeySelfServiceVerificationUse (line 152) | ViperKeySelfServiceVerificationUse = "selfservice.... constant ViperKeySelfServiceVerificationNotifyUnknownRecipients (line 153) | ViperKeySelfServiceVerificationNotifyUnknownRecipients = "selfservice.... constant ViperKeyDefaultIdentitySchemaID (line 154) | ViperKeyDefaultIdentitySchemaID = "identity.def... constant ViperKeyIdentitySchemas (line 155) | ViperKeyIdentitySchemas = "identity.sch... constant ViperKeyHasherAlgorithm (line 156) | ViperKeyHasherAlgorithm = "hashers.algo... constant ViperKeyHasherArgon2ConfigMemory (line 157) | ViperKeyHasherArgon2ConfigMemory = "hashers.argo... constant ViperKeyHasherArgon2ConfigIterations (line 158) | ViperKeyHasherArgon2ConfigIterations = "hashers.argo... constant ViperKeyHasherArgon2ConfigParallelism (line 159) | ViperKeyHasherArgon2ConfigParallelism = "hashers.argo... constant ViperKeyHasherArgon2ConfigSaltLength (line 160) | ViperKeyHasherArgon2ConfigSaltLength = "hashers.argo... constant ViperKeyHasherArgon2ConfigKeyLength (line 161) | ViperKeyHasherArgon2ConfigKeyLength = "hashers.argo... constant ViperKeyHasherArgon2ConfigExpectedDuration (line 162) | ViperKeyHasherArgon2ConfigExpectedDuration = "hashers.argo... constant ViperKeyHasherArgon2ConfigExpectedDeviation (line 163) | ViperKeyHasherArgon2ConfigExpectedDeviation = "hashers.argo... constant ViperKeyHasherArgon2ConfigDedicatedMemory (line 164) | ViperKeyHasherArgon2ConfigDedicatedMemory = "hashers.argo... constant ViperKeyHasherBcryptCost (line 165) | ViperKeyHasherBcryptCost = "hashers.bcry... constant ViperKeyCipherAlgorithm (line 166) | ViperKeyCipherAlgorithm = "ciphers.algo... constant ViperKeyDatabaseCleanupSleepTables (line 167) | ViperKeyDatabaseCleanupSleepTables = "database.cle... constant ViperKeyDatabaseCleanupBatchSize (line 168) | ViperKeyDatabaseCleanupBatchSize = "database.cle... constant ViperKeyLinkLifespan (line 169) | ViperKeyLinkLifespan = "selfservice.... constant ViperKeyCodeLifespan (line 170) | ViperKeyCodeLifespan = "selfservice.... constant ViperKeyCodeMaxSubmissions (line 171) | ViperKeyCodeMaxSubmissions = "selfservice.... constant ViperKeyCodeConfigMissingCredentialFallbackEnabled (line 172) | ViperKeyCodeConfigMissingCredentialFallbackEnabled = "selfservice.... constant ViperKeyPasswordHaveIBeenPwnedHost (line 173) | ViperKeyPasswordHaveIBeenPwnedHost = "selfservice.... constant ViperKeyPasswordHaveIBeenPwnedEnabled (line 174) | ViperKeyPasswordHaveIBeenPwnedEnabled = "selfservice.... constant ViperKeyPasswordMaxBreaches (line 175) | ViperKeyPasswordMaxBreaches = "selfservice.... constant ViperKeyPasswordMinLength (line 176) | ViperKeyPasswordMinLength = "selfservice.... constant ViperKeyPasswordIdentifierSimilarityCheckEnabled (line 177) | ViperKeyPasswordIdentifierSimilarityCheckEnabled = "selfservice.... constant ViperKeyIgnoreNetworkErrors (line 178) | ViperKeyIgnoreNetworkErrors = "selfservice.... constant ViperKeyPasswordRegistrationProfileGroup (line 179) | ViperKeyPasswordRegistrationProfileGroup = "selfservice.... constant ViperKeyTOTPIssuer (line 180) | ViperKeyTOTPIssuer = "selfservice.... constant ViperKeyOIDCBaseRedirectURL (line 181) | ViperKeyOIDCBaseRedirectURL = "selfservice.... constant ViperKeySAMLBaseRedirectURL (line 182) | ViperKeySAMLBaseRedirectURL = "selfservice.... constant ViperKeyWebAuthnRPDisplayName (line 183) | ViperKeyWebAuthnRPDisplayName = "selfservice.... constant ViperKeyWebAuthnRPID (line 184) | ViperKeyWebAuthnRPID = "selfservice.... constant ViperKeyWebAuthnRPOrigin (line 185) | ViperKeyWebAuthnRPOrigin = "selfservice.... constant ViperKeyWebAuthnRPOrigins (line 186) | ViperKeyWebAuthnRPOrigins = "selfservice.... constant ViperKeyWebAuthnPasswordless (line 187) | ViperKeyWebAuthnPasswordless = "selfservice.... constant ViperKeyPasskeyEnabled (line 188) | ViperKeyPasskeyEnabled = "selfservice.... constant ViperKeyPasskeyRPDisplayName (line 189) | ViperKeyPasskeyRPDisplayName = "selfservice.... constant ViperKeyPasskeyRPID (line 190) | ViperKeyPasskeyRPID = "selfservice.... constant ViperKeyPasskeyRPOrigins (line 191) | ViperKeyPasskeyRPOrigins = "selfservice.... constant ViperKeyOAuth2ProviderURL (line 192) | ViperKeyOAuth2ProviderURL = "oauth2_provi... constant ViperKeyOAuth2ProviderHeader (line 193) | ViperKeyOAuth2ProviderHeader = "oauth2_provi... constant ViperKeyOAuth2ProviderOverrideReturnTo (line 194) | ViperKeyOAuth2ProviderOverrideReturnTo = "oauth2_provi... constant ViperKeyClientHTTPNoPrivateIPRanges (line 195) | ViperKeyClientHTTPNoPrivateIPRanges = "clients.http... constant ViperKeyClientHTTPPrivateIPExceptionURLs (line 196) | ViperKeyClientHTTPPrivateIPExceptionURLs = "clients.http... constant ViperKeyWebhookHeaderAllowlist (line 197) | ViperKeyWebhookHeaderAllowlist = "clients.web_... constant ViperKeyPreviewDefaultReadConsistencyLevel (line 198) | ViperKeyPreviewDefaultReadConsistencyLevel = "preview.defa... constant ViperKeyVersion (line 199) | ViperKeyVersion = "version" constant ViperKeyPasswordMigrationHook (line 200) | ViperKeyPasswordMigrationHook = "selfservice.... constant HighestAvailableAAL (line 204) | HighestAvailableAAL = "highest_available" constant Argon2DefaultMemory (line 205) | Argon2DefaultMemory = 128 * bytesize.MB constant Argon2DefaultIterations (line 206) | Argon2DefaultIterations uint32 = 1 constant Argon2DefaultSaltLength (line 207) | Argon2DefaultSaltLength uint32 = 16 constant Argon2DefaultKeyLength (line 208) | Argon2DefaultKeyLength uint32 = 32 constant Argon2DefaultDuration (line 209) | Argon2DefaultDuration = 500 * time.Millisecond constant Argon2DefaultDeviation (line 210) | Argon2DefaultDeviation = 500 * time.Millisecond constant Argon2DefaultDedicatedMemory (line 211) | Argon2DefaultDedicatedMemory = 1 * bytesize.GB constant BcryptDefaultCost (line 212) | BcryptDefaultCost uint32 = 12 constant DefaultSessionCookieName (line 216) | DefaultSessionCookieName = "ory_kratos_session" type Argon2 (line 219) | type Argon2 struct method MarshalJSON (line 325) | func (c *Argon2) MarshalJSON() ([]byte, error) { type Bcrypt (line 229) | type Bcrypt struct type SelfServiceHook (line 232) | type SelfServiceHook struct type SelfServiceStrategy (line 236) | type SelfServiceStrategy struct type SelfServiceStrategyCode (line 240) | type SelfServiceStrategyCode struct type Schema (line 245) | type Schema struct type PasswordPolicy (line 250) | type PasswordPolicy struct type Schemas (line 258) | type Schemas method FindSchemaByID (line 361) | func (s Schemas) FindSchemaByID(id string) (*Schema, error) { type CourierEmailBodyTemplate (line 259) | type CourierEmailBodyTemplate struct type CourierEmailTemplate (line 263) | type CourierEmailTemplate struct type CourierSMSTemplate (line 267) | type CourierSMSTemplate struct type CourierSMSTemplateBody (line 270) | type CourierSMSTemplateBody struct type CourierChannel (line 273) | type CourierChannel struct type SMTPConfig (line 279) | type SMTPConfig struct type PasswordMigrationHook (line 288) | type PasswordMigrationHook struct type Config (line 292) | type Config struct method getIdentitySchemaValidator (line 422) | func (p *Config) getIdentitySchemaValidator(ctx context.Context) (*jso... method validateIdentitySchemas (line 446) | func (p *Config) validateIdentitySchemas(ctx context.Context) error { method formatJsonErrors (line 493) | func (p *Config) formatJsonErrors(schema []byte, err error) { method ServePublic (line 498) | func (p *Config) ServePublic(ctx context.Context) *configx.Serve { method ServeAdmin (line 504) | func (p *Config) ServeAdmin(ctx context.Context) *configx.Serve { method CORSPublic (line 510) | func (p *Config) CORSPublic(ctx context.Context) (cors.Options, bool) { method Set (line 520) | func (p *Config) Set(_ context.Context, key string, value interface{})... method MustSet (line 525) | func (p *Config) MustSet(_ context.Context, key string, value interfac... method SessionName (line 531) | func (p *Config) SessionName(ctx context.Context) string { method HasherArgon2 (line 535) | func (p *Config) HasherArgon2(ctx context.Context) *Argon2 { method HasherBcrypt (line 554) | func (p *Config) HasherBcrypt(ctx context.Context) *Bcrypt { method DefaultIdentityTraitsSchemaURL (line 563) | func (p *Config) DefaultIdentityTraitsSchemaURL(ctx context.Context) (... method DefaultIdentityTraitsSchemaID (line 578) | func (p *Config) DefaultIdentityTraitsSchemaID(ctx context.Context) st... method IdentityTraitsSchemaURL (line 582) | func (p *Config) IdentityTraitsSchemaURL(ctx context.Context, schemaID... method TOTPIssuer (line 601) | func (p *Config) TOTPIssuer(ctx context.Context) string { method OIDCRedirectURIBase (line 605) | func (p *Config) OIDCRedirectURIBase(ctx context.Context) *url.URL { method SAMLRedirectURIBase (line 609) | func (p *Config) SAMLRedirectURIBase(ctx context.Context) *url.URL { method IdentityTraitsSchemas (line 613) | func (p *Config) IdentityTraitsSchemas(ctx context.Context) (ss Schema... method DSN (line 621) | func (p *Config) DSN(ctx context.Context) string { method DisableAPIFlowEnforcement (line 638) | func (p *Config) DisableAPIFlowEnforcement(ctx context.Context) bool { method ClientHTTPNoPrivateIPRanges (line 646) | func (p *Config) ClientHTTPNoPrivateIPRanges(ctx context.Context) bool { method ClientHTTPPrivateIPExceptionURLs (line 650) | func (p *Config) ClientHTTPPrivateIPExceptionURLs(ctx context.Context)... method SelfServiceFlowRegistrationEnabled (line 654) | func (p *Config) SelfServiceFlowRegistrationEnabled(ctx context.Contex... method SelfServiceFlowRegistrationLoginHints (line 658) | func (p *Config) SelfServiceFlowRegistrationLoginHints(ctx context.Con... method SelfServiceFlowRegistrationPasswordMethodProfileGroup (line 662) | func (p *Config) SelfServiceFlowRegistrationPasswordMethodProfileGroup... method SelfServiceLegacyOIDCRegistrationGroup (line 671) | func (p *Config) SelfServiceLegacyOIDCRegistrationGroup(ctx context.Co... method SelfServiceFlowRegistrationTwoSteps (line 675) | func (p *Config) SelfServiceFlowRegistrationTwoSteps(ctx context.Conte... method SelfServiceFlowIdentitySchema (line 692) | func (p *Config) SelfServiceFlowIdentitySchema(ctx context.Context, re... method SelfServiceFlowVerificationEnabled (line 711) | func (p *Config) SelfServiceFlowVerificationEnabled(ctx context.Contex... method UseLegacyShowVerificationUI (line 715) | func (p *Config) UseLegacyShowVerificationUI(ctx context.Context) bool { method UseLegacyRequireVerifiedLoginError (line 719) | func (p *Config) UseLegacyRequireVerifiedLoginError(ctx context.Contex... method SelfServiceFlowRecoveryEnabled (line 723) | func (p *Config) SelfServiceFlowRecoveryEnabled(ctx context.Context) b... method SelfServiceFlowRecoveryUse (line 727) | func (p *Config) SelfServiceFlowRecoveryUse(ctx context.Context) string { method SelfServiceFlowLoginBeforeHooks (line 731) | func (p *Config) SelfServiceFlowLoginBeforeHooks(ctx context.Context) ... method SelfServiceFlowRecoveryBeforeHooks (line 735) | func (p *Config) SelfServiceFlowRecoveryBeforeHooks(ctx context.Contex... method SelfServiceFlowVerificationBeforeHooks (line 739) | func (p *Config) SelfServiceFlowVerificationBeforeHooks(ctx context.Co... method SelfServiceFlowVerificationUse (line 743) | func (p *Config) SelfServiceFlowVerificationUse(ctx context.Context) s... method SelfServiceFlowVerificationNotifyUnknownRecipients (line 747) | func (p *Config) SelfServiceFlowVerificationNotifyUnknownRecipients(ct... method SelfServiceFlowSettingsBeforeHooks (line 751) | func (p *Config) SelfServiceFlowSettingsBeforeHooks(ctx context.Contex... method SelfServiceFlowRegistrationBeforeHooks (line 755) | func (p *Config) SelfServiceFlowRegistrationBeforeHooks(ctx context.Co... method selfServiceHooks (line 764) | func (p *Config) selfServiceHooks(ctx context.Context, key string) []S... method SelfServiceFlowLoginAfterHooks (line 790) | func (p *Config) SelfServiceFlowLoginAfterHooks(ctx context.Context, s... method SelfServiceFlowSettingsAfterHooks (line 794) | func (p *Config) SelfServiceFlowSettingsAfterHooks(ctx context.Context... method SelfServiceFlowRegistrationAfterHooks (line 798) | func (p *Config) SelfServiceFlowRegistrationAfterHooks(ctx context.Con... method SelfServiceStrategy (line 802) | func (p *Config) SelfServiceStrategy(ctx context.Context, strategy str... method SelfServiceCodeStrategy (line 837) | func (p *Config) SelfServiceCodeStrategy(ctx context.Context) *SelfSer... method SecretsDefault (line 859) | func (p *Config) SecretsDefault(ctx context.Context) [][]byte { method SecretsSession (line 876) | func (p *Config) SecretsSession(ctx context.Context) [][]byte { method SecretsCipher (line 890) | func (p *Config) SecretsCipher(ctx context.Context) [][32]byte { method SecretsPagination (line 914) | func (p *Config) SecretsPagination(ctx context.Context) [][32]byte { method SelfServiceBrowserDefaultReturnTo (line 925) | func (p *Config) SelfServiceBrowserDefaultReturnTo(ctx context.Context... method SelfPublicURL (line 929) | func (p *Config) SelfPublicURL(ctx context.Context) *url.URL { method SelfAdminURL (line 934) | func (p *Config) SelfAdminURL(ctx context.Context) *url.URL { method WebhookHeaderAllowlist (line 939) | func (p *Config) WebhookHeaderAllowlist(ctx context.Context) []string { method OAuth2ProviderHeader (line 943) | func (p *Config) OAuth2ProviderHeader(ctx context.Context) http.Header { method OAuth2ProviderOverrideReturnTo (line 959) | func (p *Config) OAuth2ProviderOverrideReturnTo(ctx context.Context) b... method OAuth2ProviderURL (line 963) | func (p *Config) OAuth2ProviderURL(ctx context.Context) *url.URL { method SelfServiceFlowLoginUI (line 978) | func (p *Config) SelfServiceFlowLoginUI(ctx context.Context) *url.URL { method SelfServiceFlowSettingsUI (line 982) | func (p *Config) SelfServiceFlowSettingsUI(ctx context.Context) *url.U... method SelfServiceFlowErrorURL (line 986) | func (p *Config) SelfServiceFlowErrorURL(ctx context.Context) *url.URL { method SelfServiceFlowRegistrationUI (line 990) | func (p *Config) SelfServiceFlowRegistrationUI(ctx context.Context) *u... method SelfServiceFlowRecoveryUI (line 994) | func (p *Config) SelfServiceFlowRecoveryUI(ctx context.Context) *url.U... method SessionLifespan (line 999) | func (p *Config) SessionLifespan(ctx context.Context) time.Duration { method SessionPersistentCookie (line 1003) | func (p *Config) SessionPersistentCookie(ctx context.Context) bool { method SelfServiceBrowserAllowedReturnToDomains (line 1007) | func (p *Config) SelfServiceBrowserAllowedReturnToDomains(ctx context.... method SelfServiceFlowLoginRequestLifespan (line 1038) | func (p *Config) SelfServiceFlowLoginRequestLifespan(ctx context.Conte... method SelfServiceFlowSettingsFlowLifespan (line 1042) | func (p *Config) SelfServiceFlowSettingsFlowLifespan(ctx context.Conte... method SelfServiceFlowRegistrationRequestLifespan (line 1046) | func (p *Config) SelfServiceFlowRegistrationRequestLifespan(ctx contex... method SelfServiceFlowLogoutRedirectURL (line 1050) | func (p *Config) SelfServiceFlowLogoutRedirectURL(ctx context.Context)... method CourierEmailStrategy (line 1054) | func (p *Config) CourierEmailStrategy(ctx context.Context) string { method CourierEmailRequestConfig (line 1058) | func (p *Config) CourierEmailRequestConfig(ctx context.Context) json.R... method CourierTemplatesRoot (line 1072) | func (p *Config) CourierTemplatesRoot(ctx context.Context) string { method CourierEmailTemplatesHelper (line 1076) | func (p *Config) CourierEmailTemplatesHelper(ctx context.Context, key ... method CourierSMSTemplatesHelper (line 1102) | func (p *Config) CourierSMSTemplatesHelper(ctx context.Context, key st... method CourierTemplatesVerificationInvalid (line 1126) | func (p *Config) CourierTemplatesVerificationInvalid(ctx context.Conte... method CourierTemplatesVerificationValid (line 1130) | func (p *Config) CourierTemplatesVerificationValid(ctx context.Context... method CourierTemplatesRecoveryInvalid (line 1134) | func (p *Config) CourierTemplatesRecoveryInvalid(ctx context.Context) ... method CourierTemplatesRecoveryValid (line 1138) | func (p *Config) CourierTemplatesRecoveryValid(ctx context.Context) *C... method CourierTemplatesRecoveryCodeInvalid (line 1142) | func (p *Config) CourierTemplatesRecoveryCodeInvalid(ctx context.Conte... method CourierTemplatesRecoveryCodeValid (line 1146) | func (p *Config) CourierTemplatesRecoveryCodeValid(ctx context.Context... method CourierTemplatesVerificationCodeInvalid (line 1150) | func (p *Config) CourierTemplatesVerificationCodeInvalid(ctx context.C... method CourierTemplatesVerificationCodeValid (line 1154) | func (p *Config) CourierTemplatesVerificationCodeValid(ctx context.Con... method CourierSMSTemplatesVerificationCodeValid (line 1158) | func (p *Config) CourierSMSTemplatesVerificationCodeValid(ctx context.... method CourierSMSTemplatesRecoveryCodeValid (line 1162) | func (p *Config) CourierSMSTemplatesRecoveryCodeValid(ctx context.Cont... method CourierSMSTemplatesLoginCodeValid (line 1166) | func (p *Config) CourierSMSTemplatesLoginCodeValid(ctx context.Context... method CourierSMSTemplatesRegistrationCodeValid (line 1170) | func (p *Config) CourierSMSTemplatesRegistrationCodeValid(ctx context.... method CourierTemplatesLoginCodeValid (line 1174) | func (p *Config) CourierTemplatesLoginCodeValid(ctx context.Context) *... method CourierTemplatesRegistrationCodeValid (line 1178) | func (p *Config) CourierTemplatesRegistrationCodeValid(ctx context.Con... method CourierMessageRetries (line 1182) | func (p *Config) CourierMessageRetries(ctx context.Context) int { method CourierWorkerPullCount (line 1186) | func (p *Config) CourierWorkerPullCount(ctx context.Context) int { method CourierWorkerPullWait (line 1190) | func (p *Config) CourierWorkerPullWait(ctx context.Context) time.Durat... method CourierSMTPHeaders (line 1194) | func (p *Config) CourierSMTPHeaders(ctx context.Context) map[string]st... method CourierChannels (line 1198) | func (p *Config) CourierChannels(ctx context.Context) (ccs []*CourierC... method ParseAbsoluteOrRelativeURIOrFail (line 1229) | func (p *Config) ParseAbsoluteOrRelativeURIOrFail(ctx context.Context,... method ParseURIOrFail (line 1238) | func (p *Config) ParseURIOrFail(ctx context.Context, key string) *url.... method ParseAbsoluteOrRelativeURI (line 1247) | func (p *Config) ParseAbsoluteOrRelativeURI(rawUrl string) (*url.URL, ... method ParseURI (line 1261) | func (p *Config) ParseURI(rawUrl string) (*url.URL, error) { method Tracing (line 1272) | func (p *Config) Tracing(ctx context.Context) *otelx.Config { method IsInsecureDevMode (line 1276) | func (p *Config) IsInsecureDevMode(ctx context.Context) bool { method IsBackgroundCourierEnabled (line 1280) | func (p *Config) IsBackgroundCourierEnabled(ctx context.Context) bool { method CourierExposeMetricsPort (line 1284) | func (p *Config) CourierExposeMetricsPort(ctx context.Context) int { method SelfServiceFlowVerificationUI (line 1288) | func (p *Config) SelfServiceFlowVerificationUI(ctx context.Context) *u... method SelfServiceFlowVerificationRequestLifespan (line 1292) | func (p *Config) SelfServiceFlowVerificationRequestLifespan(ctx contex... method SelfServiceFlowVerificationReturnTo (line 1296) | func (p *Config) SelfServiceFlowVerificationReturnTo(ctx context.Conte... method SelfServiceFlowVerificationAfterHooks (line 1300) | func (p *Config) SelfServiceFlowVerificationAfterHooks(ctx context.Con... method SelfServiceFlowRecoveryReturnTo (line 1304) | func (p *Config) SelfServiceFlowRecoveryReturnTo(ctx context.Context, ... method SelfServiceFlowRecoveryRequestLifespan (line 1308) | func (p *Config) SelfServiceFlowRecoveryRequestLifespan(ctx context.Co... method SelfServiceFlowRecoveryNotifyUnknownRecipients (line 1312) | func (p *Config) SelfServiceFlowRecoveryNotifyUnknownRecipients(ctx co... method SelfServiceLinkMethodLifespan (line 1316) | func (p *Config) SelfServiceLinkMethodLifespan(ctx context.Context) ti... method SelfServiceLinkMethodBaseURL (line 1320) | func (p *Config) SelfServiceLinkMethodBaseURL(ctx context.Context) *ur... method SelfServiceCodeMethodLifespan (line 1324) | func (p *Config) SelfServiceCodeMethodLifespan(ctx context.Context) ti... method SelfServiceCodeMethodMaxSubmissions (line 1328) | func (p *Config) SelfServiceCodeMethodMaxSubmissions(ctx context.Conte... method SelfServiceCodeMethodMissingCredentialFallbackEnabled (line 1332) | func (p *Config) SelfServiceCodeMethodMissingCredentialFallbackEnabled... method DatabaseCleanupSleepTables (line 1336) | func (p *Config) DatabaseCleanupSleepTables(ctx context.Context) time.... method DatabaseCleanupBatchSize (line 1340) | func (p *Config) DatabaseCleanupBatchSize(ctx context.Context) int { method SelfServiceFlowRecoveryAfterHooks (line 1344) | func (p *Config) SelfServiceFlowRecoveryAfterHooks(ctx context.Context... method SelfServiceFlowSettingsPrivilegedSessionMaxAge (line 1348) | func (p *Config) SelfServiceFlowSettingsPrivilegedSessionMaxAge(ctx co... method SessionSameSiteMode (line 1352) | func (p *Config) SessionSameSiteMode(ctx context.Context) http.SameSite { method SessionDomain (line 1368) | func (p *Config) SessionDomain(ctx context.Context) string { method SessionCookieSecure (line 1375) | func (p *Config) SessionCookieSecure(ctx context.Context) bool { method CookieDomain (line 1382) | func (p *Config) CookieDomain(ctx context.Context) string { method SessionWhoAmIAAL (line 1386) | func (p *Config) SessionWhoAmIAAL(ctx context.Context) string { method SessionWhoAmICaching (line 1390) | func (p *Config) SessionWhoAmICaching(ctx context.Context) bool { method FeatureFlagFasterSessionExtend (line 1394) | func (p *Config) FeatureFlagFasterSessionExtend(ctx context.Context) b... method SessionWhoAmICachingMaxAge (line 1398) | func (p *Config) SessionWhoAmICachingMaxAge(ctx context.Context) time.... method UseContinueWithTransitions (line 1402) | func (p *Config) UseContinueWithTransitions(ctx context.Context) bool { method ChooseRecoveryAddress (line 1406) | func (p *Config) ChooseRecoveryAddress(ctx context.Context) bool { method SessionRefreshMinTimeLeft (line 1410) | func (p *Config) SessionRefreshMinTimeLeft(ctx context.Context) time.D... method SelfServiceSettingsRequiredAAL (line 1414) | func (p *Config) SelfServiceSettingsRequiredAAL(ctx context.Context) s... method CookieSameSiteMode (line 1418) | func (p *Config) CookieSameSiteMode(ctx context.Context) http.SameSite { method SessionPath (line 1430) | func (p *Config) SessionPath(ctx context.Context) string { method CookiePath (line 1437) | func (p *Config) CookiePath(ctx context.Context) string { method CookieSecure (line 1441) | func (p *Config) CookieSecure(ctx context.Context) bool { method SelfServiceFlowLoginReturnTo (line 1448) | func (p *Config) SelfServiceFlowLoginReturnTo(ctx context.Context, str... method SelfServiceFlowRegistrationReturnTo (line 1452) | func (p *Config) SelfServiceFlowRegistrationReturnTo(ctx context.Conte... method SelfServiceFlowSettingsReturnTo (line 1456) | func (p *Config) SelfServiceFlowSettingsReturnTo(ctx context.Context, ... method selfServiceReturnTo (line 1465) | func (p *Config) selfServiceReturnTo(ctx context.Context, key string, ... method ConfigVersion (line 1474) | func (p *Config) ConfigVersion(ctx context.Context) string { method PasswordPolicyConfig (line 1478) | func (p *Config) PasswordPolicyConfig(ctx context.Context) *PasswordPo... method WebAuthnForPasswordless (line 1489) | func (p *Config) WebAuthnForPasswordless(ctx context.Context) bool { method WebAuthnConfig (line 1493) | func (p *Config) WebAuthnConfig(ctx context.Context) *webauthn.Config { method PasskeyConfig (line 1509) | func (p *Config) PasskeyConfig(ctx context.Context) *webauthn.Config { method HasherPasswordHashingAlgorithm (line 1527) | func (p *Config) HasherPasswordHashingAlgorithm(ctx context.Context) s... method CipherAlgorithm (line 1539) | func (p *Config) CipherAlgorithm(ctx context.Context) string { method GetProvider (line 1553) | func (p *Config) GetProvider(ctx context.Context) *configx.Provider { method TokenizeTemplate (line 1564) | func (p *Config) TokenizeTemplate(ctx context.Context, key string) (_ ... method DefaultConsistencyLevel (line 1578) | func (p *Config) DefaultConsistencyLevel(ctx context.Context) crdbx.Co... method PasswordMigrationHook (line 1582) | func (p *Config) PasswordMigrationHook(ctx context.Context) *PasswordM... method SelfServiceLoginFlowIdentifierFirstEnabled (line 1595) | func (p *Config) SelfServiceLoginFlowIdentifierFirstEnabled(ctx contex... method SecurityAccountEnumerationMitigate (line 1604) | func (p *Config) SecurityAccountEnumerationMitigate(ctx context.Contex... type Provider (line 299) | type Provider interface type CourierConfigs (line 302) | type CourierConfigs interface constant HookGlobal (line 351) | HookGlobal = "global" function HookStrategyKey (line 353) | func HookStrategyKey(key, strategy string) string { function MustNew (line 371) | func MustNew(t testing.TB, l *logrusx.Logger, ctxer contextx.Contextuali... function New (line 377) | func New(ctx context.Context, l *logrusx.Logger, stdOutOrErr io.Writer, ... function NewCustom (line 417) | func NewCustom(l *logrusx.Logger, p *configx.Provider, stdOutOrErr io.Wr... type validateIdentitySchemasContextKey (line 438) | type validateIdentitySchemasContextKey constant validateIdentitySchemasClientKey (line 440) | validateIdentitySchemasClientKey validateIdentitySchemasContextKey = 1 function SetValidateIdentitySchemaResilientClientOptions (line 442) | func SetValidateIdentitySchemaResilientClientOptions(ctx context.Context... function ToCipherSecrets (line 895) | func ToCipherSecrets(secrets []string) [][32]byte { function splitUrlAndFragment (line 1221) | func splitUrlAndFragment(s string) (string, string) { type SessionTokenizeFormat (line 1557) | type SessionTokenizeFormat struct FILE: driver/config/config_test.go function TestViperProvider (line 49) | func TestViperProvider(t *testing.T) { function TestBcrypt (line 405) | func TestBcrypt(t *testing.T) { function TestProviderBaseURLs (line 421) | func TestProviderBaseURLs(t *testing.T) { function TestDefaultWebhookHeaderAllowlist (line 461) | func TestDefaultWebhookHeaderAllowlist(t *testing.T) { function TestViperProvider_Secrets (line 468) | func TestViperProvider_Secrets(t *testing.T) { function TestViperProvider_Defaults (line 483) | func TestViperProvider_Defaults(t *testing.T) { function TestViperProvider_ReturnTo (line 594) | func TestViperProvider_ReturnTo(t *testing.T) { function TestSession (line 611) | func TestSession(t *testing.T) { function TestCookies (line 638) | func TestCookies(t *testing.T) { function TestViperProvider_DSN (line 684) | func TestViperProvider_DSN(t *testing.T) { function TestViperProvider_ParseURIOrFail (line 718) | func TestViperProvider_ParseURIOrFail(t *testing.T) { function TestViperProvider_HaveIBeenPwned (line 777) | func TestViperProvider_HaveIBeenPwned(t *testing.T) { function newTestConfig (line 813) | func newTestConfig(t *testing.T, opts ...configx.OptionModifier) (c *con... function TestLoadingTLSConfig (line 823) | func TestLoadingTLSConfig(t *testing.T) { function TestIdentitySchemaValidation (line 947) | func TestIdentitySchemaValidation(t *testing.T) { function TestPasswordless (line 1101) | func TestPasswordless(t *testing.T) { function TestPasswordlessCode (line 1115) | func TestPasswordlessCode(t *testing.T) { function TestChangeMinPasswordLength (line 1132) | func TestChangeMinPasswordLength(t *testing.T) { function TestCourierEmailHTTP (line 1155) | func TestCourierEmailHTTP(t *testing.T) { function TestCourierChannels (line 1173) | func TestCourierChannels(t *testing.T) { function TestCourierMessageTTL (line 1219) | func TestCourierMessageTTL(t *testing.T) { function TestTwoStep (line 1235) | func TestTwoStep(t *testing.T) { function TestOAuth2Provider (line 1292) | func TestOAuth2Provider(t *testing.T) { function TestWebauthn (line 1312) | func TestWebauthn(t *testing.T) { function TestCourierTemplatesConfig (line 1358) | func TestCourierTemplatesConfig(t *testing.T) { function TestCleanup (line 1413) | func TestCleanup(t *testing.T) { constant keyPublicTLSCertBase64 (line 1430) | keyPublicTLSCertBase64 = "serve.public.tls.cert.base64" constant keyPublicTLSKeyBase64 (line 1431) | keyPublicTLSKeyBase64 = "serve.public.tls.key.base64" constant keyPublicTLSCertPath (line 1432) | keyPublicTLSCertPath = "serve.public.tls.cert.path" constant keyPublicTLSKeyPath (line 1433) | keyPublicTLSKeyPath = "serve.public.tls.key.path" constant keyAdminTLSCertBase64 (line 1434) | keyAdminTLSCertBase64 = "serve.admin.tls.cert.base64" constant keyAdminTLSKeyBase64 (line 1435) | keyAdminTLSKeyBase64 = "serve.admin.tls.key.base64" constant keyAdminTLSCertPath (line 1436) | keyAdminTLSCertPath = "serve.admin.tls.cert.path" constant keyAdminTLSKeyPath (line 1437) | keyAdminTLSKeyPath = "serve.admin.tls.key.path" FILE: driver/config/handler.go function RegisterConfigHashRoute (line 16) | func RegisterConfigHashRoute(c Provider, router *httprouterx.RouterAdmin) { FILE: driver/config/handler_test.go type configProvider (line 20) | type configProvider struct method Config (line 24) | func (c *configProvider) Config() *config.Config { function TestNewConfigHashHandler (line 28) | func TestNewConfigHashHandler(t *testing.T) { FILE: driver/factory.go function New (line 16) | func New(ctx context.Context, stdOutOrErr io.Writer, dOpts ...RegistryOp... function NewWithoutInit (line 31) | func NewWithoutInit(ctx context.Context, stdOutOrErr io.Writer, dOpts ..... FILE: driver/factory_test.go function TestDriverNew (line 23) | func TestDriverNew(t *testing.T) { FILE: driver/registry.go type Registry (line 49) | type Registry interface function NewRegistryFromDSN (line 156) | func NewRegistryFromDSN(ctx context.Context, c *config.Config, l *logrus... type options (line 171) | type options struct type RegistryOption (line 189) | type RegistryOption function WithDBOptions (line 193) | func WithDBOptions(opts ...func(details *pop.ConnectionDetails)) Registr... function SkipNetworkInit (line 199) | func SkipNetworkInit(o *options) { function WithJsonnetPool (line 203) | func WithJsonnetPool(pool jsonnetsecure.Pool) RegistryOption { function WithConfig (line 209) | func WithConfig(config *config.Config) RegistryOption { function WithConfigOptions (line 215) | func WithConfigOptions(opts ...configx.OptionModifier) RegistryOption { function WithIdentitySchemaProvider (line 221) | func WithIdentitySchemaProvider(f func(r Registry) schema.IdentitySchema... function ReplaceTracer (line 227) | func ReplaceTracer(f func(*otelx.Tracer) *otelx.Tracer) RegistryOption { type NewStrategy (line 233) | type NewStrategy function WithReplaceStrategies (line 238) | func WithReplaceStrategies(s ...NewStrategy) RegistryOption { function WithExtraHooks (line 244) | func WithExtraHooks(hooks map[string]func(config.SelfServiceHook) any) R... type NewHandler (line 250) | type NewHandler function WithExtraHandlers (line 252) | func WithExtraHandlers(handlers ...NewHandler) RegistryOption { function Inspect (line 258) | func Inspect(f func(reg Registry) error) RegistryOption { function WithExtraMigrations (line 264) | func WithExtraMigrations(m ...fs.FS) RegistryOption { function WithExtraGoMigrations (line 270) | func WithExtraGoMigrations(m ...popx.Migration) RegistryOption { function WithDisabledMigrationLogging (line 276) | func WithDisabledMigrationLogging() RegistryOption { function WithServiceLocatorOptions (line 282) | func WithServiceLocatorOptions(opts ...servicelocatorx.Option) RegistryO... function newOptions (line 288) | func newOptions(os []RegistryOption) *options { FILE: driver/registry_default.go type RegistryDefault (line 74) | type RegistryDefault struct method JsonnetVM (line 161) | func (m *RegistryDefault) JsonnetVM(ctx context.Context) (jsonnetsecur... method Audit (line 167) | func (m *RegistryDefault) Audit() *logrusx.Logger { method RegisterPublicRoutes (line 171) | func (m *RegistryDefault) RegisterPublicRoutes(ctx context.Context, ro... method RegisterAdminRoutes (line 200) | func (m *RegistryDefault) RegisterAdminRoutes(ctx context.Context, rou... method HTTPMiddlewares (line 231) | func (m *RegistryDefault) HTTPMiddlewares() []negroni.Handler { method SetLogger (line 245) | func (m *RegistryDefault) SetLogger(l *logrusx.Logger) { method SetJSONNetVMProvider (line 249) | func (m *RegistryDefault) SetJSONNetVMProvider(p jsonnetsecure.VMProvi... method LogoutHandler (line 253) | func (m *RegistryDefault) LogoutHandler() *logout.Handler { method HealthHandler (line 260) | func (m *RegistryDefault) HealthHandler(_ context.Context) *healthx.Ha... method WithCSRFHandler (line 290) | func (m *RegistryDefault) WithCSRFHandler(c nosurf.Handler) { method CSRFHandler (line 294) | func (m *RegistryDefault) CSRFHandler() nosurf.Handler { method Config (line 301) | func (m *RegistryDefault) Config() *config.Config { method CourierConfig (line 308) | func (m *RegistryDefault) CourierConfig() config.CourierConfigs { method selfServiceStrategies (line 312) | func (m *RegistryDefault) selfServiceStrategies() []any { method strategyRegistrationEnabled (line 339) | func (m *RegistryDefault) strategyRegistrationEnabled(ctx context.Cont... method strategyLoginEnabled (line 346) | func (m *RegistryDefault) strategyLoginEnabled(ctx context.Context, id... method RegistrationStrategies (line 350) | func (m *RegistryDefault) RegistrationStrategies(ctx context.Context, ... method AllRegistrationStrategies (line 367) | func (m *RegistryDefault) AllRegistrationStrategies() registration.Str... method LoginStrategies (line 378) | func (m *RegistryDefault) LoginStrategies(ctx context.Context, filters... method AllLoginStrategies (line 396) | func (m *RegistryDefault) AllLoginStrategies() login.Strategies { method ActiveCredentialsCounterStrategies (line 406) | func (m *RegistryDefault) ActiveCredentialsCounterStrategies(_ context... method IdentityValidator (line 415) | func (m *RegistryDefault) IdentityValidator() *identity.Validator { method SetConfig (line 419) | func (m *RegistryDefault) SetConfig(c *config.Config) { method WithSelfserviceStrategies (line 425) | func (m *RegistryDefault) WithSelfserviceStrategies(t testing.TB, stra... method Writer (line 433) | func (m *RegistryDefault) Writer() herodot.Writer { method Logger (line 441) | func (m *RegistryDefault) Logger() *logrusx.Logger { method IdentityHandler (line 448) | func (m *RegistryDefault) IdentityHandler() *identity.Handler { method CourierHandler (line 455) | func (m *RegistryDefault) CourierHandler() *courier.Handler { method SchemaHandler (line 462) | func (m *RegistryDefault) SchemaHandler() *schema.Handler { method SessionHandler (line 469) | func (m *RegistryDefault) SessionHandler() *session.Handler { method Cipher (line 476) | func (m *RegistryDefault) Cipher(ctx context.Context) cipher.Cipher { method Hasher (line 490) | func (m *RegistryDefault) Hasher(ctx context.Context) hash.Hasher { method PasswordValidator (line 499) | func (m *RegistryDefault) PasswordValidator() password.Validator { method SelfServiceErrorHandler (line 510) | func (m *RegistryDefault) SelfServiceErrorHandler() *errorx.Handler { method CookieManager (line 517) | func (m *RegistryDefault) CookieManager(ctx context.Context) sessions.... method ContinuityCookieManager (line 548) | func (m *RegistryDefault) ContinuityCookieManager(ctx context.Context)... method Tracer (line 557) | func (m *RegistryDefault) Tracer(context.Context) *otelx.Tracer { method SetTracer (line 564) | func (m *RegistryDefault) SetTracer(t *otelx.Tracer) { method SessionManager (line 568) | func (m *RegistryDefault) SessionManager() session.Manager { method Hydra (line 572) | func (m *RegistryDefault) Hydra() hydra.Hydra { method SetHydra (line 578) | func (m *RegistryDefault) SetHydra(h hydra.Hydra) { method SelfServiceErrorManager (line 582) | func (m *RegistryDefault) SelfServiceErrorManager() *errorx.Manager { method Init (line 586) | func (m *RegistryDefault) Init(ctx context.Context, ctxer contextx.Con... method SetPersister (line 711) | func (m *RegistryDefault) SetPersister(p persistence.Persister) { method Courier (line 715) | func (m *RegistryDefault) Courier(ctx context.Context) (courier.Courie... method ContinuityManager (line 719) | func (m *RegistryDefault) ContinuityManager() continuity.Manager { method Persister (line 723) | func (m *RegistryDefault) Persister() persistence.Persister ... method ContinuityPersister (line 724) | func (m *RegistryDefault) ContinuityPersister() continuity.Persister ... method IdentityPool (line 725) | func (m *RegistryDefault) IdentityPool() identity.Pool ... method PrivilegedIdentityPool (line 726) | func (m *RegistryDefault) PrivilegedIdentityPool() identity.Privileged... method RegistrationFlowPersister (line 727) | func (m *RegistryDefault) RegistrationFlowPersister() registration.Flo... method RecoveryFlowPersister (line 728) | func (m *RegistryDefault) RecoveryFlowPersister() recovery.FlowPersist... method LoginFlowPersister (line 729) | func (m *RegistryDefault) LoginFlowPersister() login.FlowPersister ... method SettingsFlowPersister (line 730) | func (m *RegistryDefault) SettingsFlowPersister() settings.FlowPersist... method SelfServiceErrorPersister (line 731) | func (m *RegistryDefault) SelfServiceErrorPersister() errorx.Persister... method SessionPersister (line 732) | func (m *RegistryDefault) SessionPersister() session.Persister ... method CourierPersister (line 733) | func (m *RegistryDefault) CourierPersister() courier.Persister ... method RecoveryTokenPersister (line 734) | func (m *RegistryDefault) RecoveryTokenPersister() link.RecoveryTokenP... method RecoveryCodePersister (line 735) | func (m *RegistryDefault) RecoveryCodePersister() code.RecoveryCodePer... method LoginCodePersister (line 736) | func (m *RegistryDefault) LoginCodePersister() code.LoginCodePersister... method VerificationTokenPersister (line 737) | func (m *RegistryDefault) VerificationTokenPersister() link.Verificati... method VerificationCodePersister (line 740) | func (m *RegistryDefault) VerificationCodePersister() code.Verificatio... method RegistrationCodePersister (line 743) | func (m *RegistryDefault) RegistrationCodePersister() code.Registratio... method TransactionalPersisterProvider (line 746) | func (m *RegistryDefault) TransactionalPersisterProvider() x.Transacti... method PingContext (line 750) | func (m *RegistryDefault) PingContext(ctx context.Context) error { method Ping (line 754) | func (m *RegistryDefault) Ping() error { method WithCSRFTokenGenerator (line 758) | func (m *RegistryDefault) WithCSRFTokenGenerator(cg nosurfx.CSRFToken) { method GenerateCSRFToken (line 762) | func (m *RegistryDefault) GenerateCSRFToken(r *http.Request) string { method IdentityManager (line 769) | func (m *RegistryDefault) IdentityManager() *identity.Manager { method HTTPClient (line 773) | func (m *RegistryDefault) HTTPClient(_ context.Context, opts ...httpx.... method SetContextualizer (line 792) | func (m *RegistryDefault) SetContextualizer(ctxer contextx.Contextuali... method Contextualizer (line 796) | func (m *RegistryDefault) Contextualizer() contextx.Contextualizer { method JWKSFetcher (line 803) | func (m *RegistryDefault) JWKSFetcher() *jwksx.FetcherNext { method SessionTokenizer (line 820) | func (m *RegistryDefault) SessionTokenizer() *session.Tokenizer { method ExtraHandlers (line 824) | func (m *RegistryDefault) ExtraHandlers() []x.Handler { method initCheapMembers (line 834) | func (m *RegistryDefault) initCheapMembers() { function NewRegistryDefault (line 235) | func NewRegistryDefault() *RegistryDefault { type initOnce (line 842) | type initOnce struct method Set (line 848) | func (o *initOnce[T]) Set(val T) { method Get (line 858) | func (o *initOnce[T]) Get(newT func() T) T { FILE: driver/registry_default_hooks.go method HookVerifier (line 17) | func (m *RegistryDefault) HookVerifier() *hook.Verifier { method HookSessionIssuer (line 24) | func (m *RegistryDefault) HookSessionIssuer() *hook.SessionIssuer { method HookSessionDestroyer (line 31) | func (m *RegistryDefault) HookSessionDestroyer() *hook.SessionDestroyer { method HookAddressVerifier (line 38) | func (m *RegistryDefault) HookAddressVerifier() *hook.AddressVerifier { method HookShowVerificationUI (line 45) | func (m *RegistryDefault) HookShowVerificationUI() *hook.ShowVerificatio... method WithHooks (line 52) | func (m *RegistryDefault) WithHooks(hooks map[string]func(config.SelfSer... method WithExtraHandlers (line 55) | func (m *RegistryDefault) WithExtraHandlers(handlers []NewHandler) { function getHooks (line 59) | func getHooks[T any](m *RegistryDefault, credentialsType string, configs... FILE: driver/registry_default_login.go method LoginHookExecutor (line 14) | func (m *RegistryDefault) LoginHookExecutor() *login.HookExecutor { method PreLoginHooks (line 21) | func (m *RegistryDefault) PreLoginHooks(ctx context.Context) ([]login.Pr... method PostLoginHooks (line 25) | func (m *RegistryDefault) PostLoginHooks(ctx context.Context, credential... method LoginHandler (line 39) | func (m *RegistryDefault) LoginHandler() *login.Handler { method LoginFlowErrorHandler (line 47) | func (m *RegistryDefault) LoginFlowErrorHandler() *login.ErrorHandler { FILE: driver/registry_default_recovery.go method RecoveryFlowErrorHandler (line 17) | func (m *RegistryDefault) RecoveryFlowErrorHandler() *recovery.ErrorHand... method RecoveryHandler (line 25) | func (m *RegistryDefault) RecoveryHandler() *recovery.Handler { method RecoveryStrategies (line 33) | func (m *RegistryDefault) RecoveryStrategies(ctx context.Context) (recov... method GetActiveRecoveryStrategies (line 47) | func (m *RegistryDefault) GetActiveRecoveryStrategies(ctx context.Contex... method AllRecoveryStrategies (line 57) | func (m *RegistryDefault) AllRecoveryStrategies() (recoveryStrategies re... method RecoveryExecutor (line 66) | func (m *RegistryDefault) RecoveryExecutor() *recovery.HookExecutor { method PreRecoveryHooks (line 73) | func (m *RegistryDefault) PreRecoveryHooks(ctx context.Context) ([]recov... method PostRecoveryHooks (line 77) | func (m *RegistryDefault) PostRecoveryHooks(ctx context.Context) ([]reco... method CodeSender (line 81) | func (m *RegistryDefault) CodeSender() *code.Sender { FILE: driver/registry_default_registration.go method PostRegistrationPrePersistHooks (line 15) | func (m *RegistryDefault) PostRegistrationPrePersistHooks(ctx context.Co... method PostRegistrationPostPersistHooks (line 24) | func (m *RegistryDefault) PostRegistrationPostPersistHooks(ctx context.C... method PreRegistrationHooks (line 46) | func (m *RegistryDefault) PreRegistrationHooks(ctx context.Context) ([]r... method RegistrationExecutor (line 50) | func (m *RegistryDefault) RegistrationExecutor() *registration.HookExecu... method RegistrationHookExecutor (line 57) | func (m *RegistryDefault) RegistrationHookExecutor() *registration.HookE... method RegistrationErrorHandler (line 64) | func (m *RegistryDefault) RegistrationErrorHandler() *registration.Error... method RegistrationHandler (line 71) | func (m *RegistryDefault) RegistrationHandler() *registration.Handler { method RegistrationFlowErrorHandler (line 79) | func (m *RegistryDefault) RegistrationFlowErrorHandler() *registration.E... FILE: driver/registry_default_schemas.go method IdentityTraitsSchemas (line 12) | func (m *RegistryDefault) IdentityTraitsSchemas(ctx context.Context) (sc... FILE: driver/registry_default_schemas_test.go function TestRegistryDefault_IdentityTraitsSchemas (line 20) | func TestRegistryDefault_IdentityTraitsSchemas(t *testing.T) { FILE: driver/registry_default_sessiontokenexchange.go method SessionTokenExchangePersister (line 8) | func (m *RegistryDefault) SessionTokenExchangePersister() sessiontokenex... FILE: driver/registry_default_settings.go method PostSettingsPrePersistHooks (line 14) | func (m *RegistryDefault) PostSettingsPrePersistHooks(ctx context.Contex... method PreSettingsHooks (line 18) | func (m *RegistryDefault) PreSettingsHooks(ctx context.Context) ([]setti... method PostSettingsPostPersistHooks (line 22) | func (m *RegistryDefault) PostSettingsPostPersistHooks(ctx context.Conte... method SettingsHookExecutor (line 43) | func (m *RegistryDefault) SettingsHookExecutor() *settings.HookExecutor { method SettingsHandler (line 50) | func (m *RegistryDefault) SettingsHandler() *settings.Handler { method SettingsFlowErrorHandler (line 57) | func (m *RegistryDefault) SettingsFlowErrorHandler() *settings.ErrorHand... method SettingsStrategies (line 64) | func (m *RegistryDefault) SettingsStrategies(ctx context.Context) (profi... method AllSettingsStrategies (line 75) | func (m *RegistryDefault) AllSettingsStrategies() settings.Strategies { FILE: driver/registry_default_test.go function TestDriverDefault_Hooks (line 31) | func TestDriverDefault_Hooks(t *testing.T) { function TestDriverDefault_Strategies (line 627) | func TestDriverDefault_Strategies(t *testing.T) { function TestDefaultRegistry_AllStrategies (line 868) | func TestDefaultRegistry_AllStrategies(t *testing.T) { function TestGetActiveRecoveryStrategy (line 909) | func TestGetActiveRecoveryStrategy(t *testing.T) { function TestGetActiveVerificationStrategy (line 943) | func TestGetActiveVerificationStrategy(t *testing.T) { FILE: driver/registry_default_verification.go method VerificationFlowPersister (line 18) | func (m *RegistryDefault) VerificationFlowPersister() verification.FlowP... method VerificationFlowErrorHandler (line 22) | func (m *RegistryDefault) VerificationFlowErrorHandler() *verification.E... method VerificationManager (line 30) | func (m *RegistryDefault) VerificationManager() *identity.Manager { method VerificationHandler (line 38) | func (m *RegistryDefault) VerificationHandler() *verification.Handler { method LinkSender (line 46) | func (m *RegistryDefault) LinkSender() *link.Sender { method GetActiveVerificationStrategies (line 57) | func (m *RegistryDefault) GetActiveVerificationStrategies(ctx context.Co... method VerificationStrategies (line 67) | func (m *RegistryDefault) VerificationStrategies(ctx context.Context) (v... method AllVerificationStrategies (line 78) | func (m *RegistryDefault) AllVerificationStrategies() (verificationStrat... method VerificationExecutor (line 88) | func (m *RegistryDefault) VerificationExecutor() *verification.HookExecu... method PreVerificationHooks (line 95) | func (m *RegistryDefault) PreVerificationHooks(ctx context.Context) ([]v... method PostVerificationHooks (line 99) | func (m *RegistryDefault) PostVerificationHooks(ctx context.Context) ([]... FILE: embedx/embedx.go type SchemaType (line 27) | type SchemaType method GetSchemaID (line 72) | func (s SchemaType) GetSchemaID() string { constant Config (line 30) | Config SchemaType = iota + 1 constant IdentityMeta (line 31) | IdentityMeta constant IdentityExtension (line 32) | IdentityExtension type Schema (line 35) | type Schema struct function getSchema (line 65) | func getSchema(schema SchemaType) (*Schema, error) { function AddSchemaResources (line 78) | func AddSchemaResources(c interface { function addSchemaResources (line 102) | func addSchemaResources(c interface { FILE: embedx/embedx_test.go function TestAddSchemaResources (line 20) | func TestAddSchemaResources(t *testing.T) { function TestIdentityMetaSchema (line 79) | func TestIdentityMetaSchema(t *testing.T) { FILE: examples/go/identity/create/main.go function createIdentity (line 19) | func createIdentity() *ory.Identity { function main (line 34) | func main() { FILE: examples/go/identity/create/main_test.go function TestFunc (line 14) | func TestFunc(t *testing.T) { FILE: examples/go/identity/delete/main.go function deleteIdentity (line 18) | func deleteIdentity() { function main (line 27) | func main() { FILE: examples/go/identity/delete/main_test.go function TestFunc (line 14) | func TestFunc(t *testing.T) { FILE: examples/go/identity/get/main.go function getIdentity (line 18) | func getIdentity() *ory.Identity { function main (line 28) | func main() { FILE: examples/go/identity/get/main_test.go function TestFunc (line 14) | func TestFunc(t *testing.T) { FILE: examples/go/identity/update/main.go function updateIdentity (line 19) | func updateIdentity() *ory.Identity { function main (line 33) | func main() { FILE: examples/go/identity/update/main_test.go function TestFunc (line 17) | func TestFunc(t *testing.T) { FILE: examples/go/pkg/common.go function PrintJSONPretty (line 19) | func PrintJSONPretty(v interface{}) { function TestClient (line 24) | func TestClient(t *testing.T) *ory.APIClient { function NewSDK (line 29) | func NewSDK(project string) *ory.APIClient { function NewSDKForSelfHosted (line 33) | func NewSDKForSelfHosted(endpoint string) *ory.APIClient { function ExitOnError (line 41) | func ExitOnError(err error) { function SDKExitOnError (line 50) | func SDKExitOnError(err error, res *http.Response) { FILE: examples/go/pkg/resources.go function RandomCredentials (line 16) | func RandomCredentials() (email, password string) { function CreateIdentityWithSession (line 23) | func CreateIdentityWithSession(c *ory.APIClient, email, password string)... function CreateIdentity (line 55) | func CreateIdentity(c *ory.APIClient) *ory.Identity { FILE: examples/go/selfservice/error/main.go function getError (line 19) | func getError() *ory.FlowError { function main (line 25) | func main() { FILE: examples/go/selfservice/error/main_test.go function TestError (line 16) | func TestError(t *testing.T) { FILE: examples/go/selfservice/login/main.go function performLogin (line 19) | func performLogin() *ory.SuccessfulNativeLogin { function main (line 47) | func main() { FILE: examples/go/selfservice/login/main_test.go function TestFunc (line 16) | func TestFunc(t *testing.T) { FILE: examples/go/selfservice/logout/main.go function performLogout (line 20) | func performLogout() { function main (line 31) | func main() { FILE: examples/go/selfservice/logout/main_test.go function TestFunc (line 14) | func TestFunc(t *testing.T) { FILE: examples/go/selfservice/recovery/main.go function performRecovery (line 19) | func performRecovery(email string) *ory.RecoveryFlow { function main (line 41) | func main() { FILE: examples/go/selfservice/recovery/main_test.go function TestFunc (line 18) | func TestFunc(t *testing.T) { FILE: examples/go/selfservice/registration/main.go function initRegistration (line 19) | func initRegistration() *ory.SuccessfulNativeRegistration { function main (line 44) | func main() { FILE: examples/go/selfservice/registration/main_test.go function TestFunc (line 16) | func TestFunc(t *testing.T) { FILE: examples/go/selfservice/settings/main.go function initFlow (line 21) | func initFlow(email, password string) (string, *ory.SettingsFlow) { function changePassword (line 35) | func changePassword(email, password string) *ory.SettingsFlow { function changeTraits (line 50) | func changeTraits(email, password string) *ory.SettingsFlow { function main (line 67) | func main() { FILE: examples/go/selfservice/settings/main_test.go function TestSettings (line 20) | func TestSettings(t *testing.T) { FILE: examples/go/selfservice/verification/main.go function performVerification (line 19) | func performVerification(email string) *ory.VerificationFlow { function main (line 41) | func main() { FILE: examples/go/selfservice/verification/main_test.go function TestFunc (line 18) | func TestFunc(t *testing.T) { FILE: examples/go/session/tosession/main.go function toSession (line 17) | func toSession() *ory.Session { function main (line 28) | func main() { FILE: examples/go/session/tosession/main_test.go function TestFunc (line 18) | func TestFunc(t *testing.T) { FILE: gen/oidc/v1/state.pb.go constant _ (line 20) | _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) constant _ (line 22) | _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) type FlowKind (line 25) | type FlowKind method Enum (line 50) | func (x FlowKind) Enum() *FlowKind { method String (line 56) | func (x FlowKind) String() string { method Descriptor (line 60) | func (FlowKind) Descriptor() protoreflect.EnumDescriptor { method Type (line 64) | func (FlowKind) Type() protoreflect.EnumType { method Number (line 68) | func (x FlowKind) Number() protoreflect.EnumNumber { method EnumDescriptor (line 73) | func (FlowKind) EnumDescriptor() ([]byte, []int) { constant FlowKind_FLOW_KIND_UNSPECIFIED (line 28) | FlowKind_FLOW_KIND_UNSPECIFIED FlowKind = 0 constant FlowKind_FLOW_KIND_LOGIN (line 29) | FlowKind_FLOW_KIND_LOGIN FlowKind = 1 constant FlowKind_FLOW_KIND_REGISTRATION (line 30) | FlowKind_FLOW_KIND_REGISTRATION FlowKind = 2 constant FlowKind_FLOW_KIND_SETTINGS (line 31) | FlowKind_FLOW_KIND_SETTINGS FlowKind = 3 type State (line 77) | type State struct method Reset (line 88) | func (x *State) Reset() { method String (line 95) | func (x *State) String() string { method ProtoMessage (line 99) | func (*State) ProtoMessage() {} method ProtoReflect (line 101) | func (x *State) ProtoReflect() protoreflect.Message { method Descriptor (line 114) | func (*State) Descriptor() ([]byte, []int) { method GetFlowId (line 118) | func (x *State) GetFlowId() []byte { method GetSessionTokenExchangeCodeSha512 (line 125) | func (x *State) GetSessionTokenExchangeCodeSha512() []byte { method GetProviderId (line 132) | func (x *State) GetProviderId() string { method GetPkceVerifier (line 139) | func (x *State) GetPkceVerifier() string { method GetFlowKind (line 146) | func (x *State) GetFlowKind() FlowKind { constant file_oidc_v1_state_proto_rawDesc (line 155) | file_oidc_v1_state_proto_rawDesc = "" + function file_oidc_v1_state_proto_rawDescGZIP (line 178) | func file_oidc_v1_state_proto_rawDescGZIP() []byte { function init (line 200) | func init() { file_oidc_v1_state_proto_init() } function file_oidc_v1_state_proto_init (line 201) | func file_oidc_v1_state_proto_init() { FILE: hash/hash_comparator.go function NewCryptDecoder (line 45) | func NewCryptDecoder() *crypt.Decoder { type SupportedHasher (line 63) | type SupportedHasher struct function AddSupportedHasher (line 69) | func AddSupportedHasher(s SupportedHasher) { function Compare (line 141) | func Compare(ctx context.Context, password, hash []byte) (err error) { function CompareMD5Crypt (line 156) | func CompareMD5Crypt(_ context.Context, password, hash []byte) error { function CompareBcrypt (line 166) | func CompareBcrypt(ctx context.Context, password, hash []byte) error { function CompareSHA256Crypt (line 187) | func CompareSHA256Crypt(_ context.Context, password, hash []byte) error { function CompareSHA512Crypt (line 194) | func CompareSHA512Crypt(_ context.Context, password, hash []byte) error { function CompareArgon2id (line 201) | func CompareArgon2id(ctx context.Context, password, hash []byte) error { function CompareArgon2i (line 221) | func CompareArgon2i(ctx context.Context, password, hash []byte) error { function ComparePbkdf2 (line 240) | func ComparePbkdf2(ctx context.Context, password, hash []byte) error { function CompareScrypt (line 259) | func CompareScrypt(ctx context.Context, password, hash []byte) error { function CompareSSHA (line 281) | func CompareSSHA(ctx context.Context, password, hash []byte) error { function CompareSHA (line 297) | func CompareSHA(ctx context.Context, password, hash []byte) error { function CompareFirebaseScrypt (line 314) | func CompareFirebaseScrypt(ctx context.Context, password, hash []byte) e... function CompareMD5 (line 347) | func CompareMD5(ctx context.Context, password, hash []byte) error { function CompareHMAC (line 371) | func CompareHMAC(ctx context.Context, password, hash []byte) error { function IsMD5CryptHash (line 410) | func IsMD5CryptHash(hash []byte) bool { return isMD5CryptHash.Matc... function IsBcryptHash (line 411) | func IsBcryptHash(hash []byte) bool { return isBcryptHash.Match(... function IsSHA256CryptHash (line 412) | func IsSHA256CryptHash(hash []byte) bool { return isSHA256CryptHash.M... function IsSHA512CryptHash (line 413) | func IsSHA512CryptHash(hash []byte) bool { return isSHA512CryptHash.M... function IsArgon2idHash (line 414) | func IsArgon2idHash(hash []byte) bool { return isArgon2idHash.Matc... function IsArgon2iHash (line 415) | func IsArgon2iHash(hash []byte) bool { return isArgon2iHash.Match... function IsPbkdf2Hash (line 416) | func IsPbkdf2Hash(hash []byte) bool { return isPbkdf2Hash.Match(... function IsScryptHash (line 417) | func IsScryptHash(hash []byte) bool { return isScryptHash.Match(... function IsSSHAHash (line 418) | func IsSSHAHash(hash []byte) bool { return isSSHAHash.Match(ha... function IsSHAHash (line 419) | func IsSHAHash(hash []byte) bool { return isSHAHash.Match(has... function IsFirebaseScryptHash (line 420) | func IsFirebaseScryptHash(hash []byte) bool { return isFirebaseScryptHas... function IsMD5Hash (line 421) | func IsMD5Hash(hash []byte) bool { return isMD5Hash.Match(has... function IsHMACHash (line 422) | func IsHMACHash(hash []byte) bool { return isHMACHash.Match(ha... function IsValidHashFormat (line 424) | func IsValidHashFormat(hash []byte) bool { function decodeArgon2idHash (line 434) | func decodeArgon2idHash(encodedHash string) (p *config.Argon2, salt, has... function decodePbkdf2Hash (line 472) | func decodePbkdf2Hash(encodedHash string) (p *Pbkdf2, salt, hash []byte,... function decodeScryptHash (line 507) | func decodeScryptHash(encodedHash string) (p *Scrypt, salt, hash []byte,... function decodeSHAHash (line 537) | func decodeSHAHash(encodedHash string) (hasher string, pf, salt, hash []... function CompareSHAHelper (line 570) | func CompareSHAHelper(hasher string, raw []byte, hash []byte) error { function compareCryptHelper (line 593) | func compareCryptHelper(password []byte, hash string) error { function decodeSSHAHash (line 609) | func decodeSSHAHash(encodedHash string) (hasher string, salt, hash []byt... function decodeFirebaseScryptHash (line 652) | func decodeFirebaseScryptHash(encodedHash string) (p *Scrypt, salt, salt... function decodeMD5Hash (line 697) | func decodeMD5Hash(encodedHash string) (pf, salt, hash []byte, err error) { function decodeHMACHash (line 733) | func decodeHMACHash(encodedHash string) (hasher func() hash.Hash, hash, ... function comparePasswordHashConstantTime (line 778) | func comparePasswordHashConstantTime(hash, otherHash []byte) error { FILE: hash/hasher.go type Hasher (line 11) | type Hasher interface type HashProvider (line 19) | type HashProvider interface constant tracingComponent (line 23) | tracingComponent = "github.com/ory/kratos/hash" FILE: hash/hasher_argon2.go type Argon2 (line 32) | type Argon2 struct method Generate (line 49) | func (h *Argon2) Generate(ctx context.Context, password []byte) (_ []b... method Understands (line 89) | func (h *Argon2) Understands(hash []byte) bool { type Argon2Configuration (line 36) | type Argon2Configuration interface function NewHasherArgon2 (line 40) | func NewHasherArgon2(c Argon2Configuration) *Argon2 { function toKB (line 44) | func toKB(mem bytesize.ByteSize) uint32 { FILE: hash/hasher_bcrypt.go type Bcrypt (line 24) | type Bcrypt struct method Generate (line 36) | func (h *Bcrypt) Generate(ctx context.Context, password []byte) (_ []b... method Understands (line 75) | func (h *Bcrypt) Understands(hash []byte) bool { type BcryptConfiguration (line 28) | type BcryptConfiguration interface function NewHasherBcrypt (line 32) | func NewHasherBcrypt(c BcryptConfiguration) *Bcrypt { function validateBcryptPasswordLength (line 62) | func validateBcryptPasswordLength(password []byte) error { FILE: hash/hasher_pbkdf2.go type Pbkdf2 (line 28) | type Pbkdf2 struct method Generate (line 35) | func (h *Pbkdf2) Generate(ctx context.Context, password []byte) (_ []b... method Understands (line 72) | func (h *Pbkdf2) Understands(hash []byte) bool { function getPseudorandomFunctionForPbkdf2 (line 76) | func getPseudorandomFunctionForPbkdf2(alg string) func() hash.Hash { FILE: hash/hasher_scrypt.go type Scrypt (line 6) | type Scrypt struct FILE: hash/hasher_test.go function mkpw (line 19) | func mkpw(t *testing.T, length int) []byte { function TestArgonHasher (line 26) | func TestArgonHasher(t *testing.T) { function TestBcryptHasherGeneratesErrorWhenPasswordIsLong (line 57) | func TestBcryptHasherGeneratesErrorWhenPasswordIsLong(t *testing.T) { function TestBcryptHasherGeneratesHash (line 71) | func TestBcryptHasherGeneratesHash(t *testing.T) { function TestComparatorBcryptFailsWhenPasswordIsTooLong (line 99) | func TestComparatorBcryptFailsWhenPasswordIsTooLong(t *testing.T) { function TestComparatorBcryptSuccess (line 108) | func TestComparatorBcryptSuccess(t *testing.T) { function TestComparatorBcryptFail (line 136) | func TestComparatorBcryptFail(t *testing.T) { function TestPbkdf2Hasher (line 160) | func TestPbkdf2Hasher(t *testing.T) { function TestCompare (line 210) | func TestCompare(t *testing.T) { FILE: hydra/fake.go constant FakeInvalidLoginChallenge (line 15) | FakeInvalidLoginChallenge = "2e98454e-031b-4870-9ad6-8517df1ce604" constant FakeValidLoginChallenge (line 16) | FakeValidLoginChallenge = "5ff59a39-ecc5-467e-bb10-26644c0700ee" constant FakePostLoginURL (line 17) | FakePostLoginURL = "https://www.example.com/fake-post-login" type FakeHydra (line 22) | type FakeHydra struct method AcceptLoginRequest (line 35) | func (h *FakeHydra) AcceptLoginRequest(_ context.Context, params Accep... method GetLoginRequest (line 49) | func (h *FakeHydra) GetLoginRequest(_ context.Context, loginChallenge ... function NewFake (line 29) | func NewFake() *FakeHydra { FILE: hydra/hydra.go type hydraDependencies (line 23) | type hydraDependencies interface type Provider (line 27) | type Provider interface type AcceptLoginRequestParams (line 30) | type AcceptLoginRequestParams struct type Hydra (line 36) | type Hydra interface type DefaultHydra (line 40) | type DefaultHydra struct method getAdminURL (line 66) | func (h *DefaultHydra) getAdminURL(ctx context.Context) (string, error) { method getAdminAPIClient (line 74) | func (h *DefaultHydra) getAdminAPIClient(ctx context.Context) (hydracl... method AcceptLoginRequest (line 92) | func (h *DefaultHydra) AcceptLoginRequest(ctx context.Context, params ... method GetLoginRequest (line 134) | func (h *DefaultHydra) GetLoginRequest(ctx context.Context, loginChall... function NewDefaultHydra (line 45) | func NewDefaultHydra(d hydraDependencies) *DefaultHydra { function GetLoginChallengeID (line 51) | func GetLoginChallengeID(conf *config.Config, r *http.Request) (sqlxx.Nu... FILE: hydra/hydra_test.go function requestFromChallenge (line 21) | func requestFromChallenge(s string) *http.Request { function TestGetLoginChallengeID (line 25) | func TestGetLoginChallengeID(t *testing.T) { FILE: identity/address.go constant AddressTypeEmail (line 7) | AddressTypeEmail = "email" constant AddressTypeSMS (line 8) | AddressTypeSMS = "sms" FILE: identity/credentials.go type AuthenticatorAssuranceLevel (line 50) | type AuthenticatorAssuranceLevel constant NoAuthenticatorAssuranceLevel (line 53) | NoAuthenticatorAssuranceLevel AuthenticatorAssuranceLevel = "aal0" constant AuthenticatorAssuranceLevel1 (line 54) | AuthenticatorAssuranceLevel1 AuthenticatorAssuranceLevel = "aal1" constant AuthenticatorAssuranceLevel2 (line 55) | AuthenticatorAssuranceLevel2 AuthenticatorAssuranceLevel = "aal2" type NullableAuthenticatorAssuranceLevel (line 58) | type NullableAuthenticatorAssuranceLevel struct method ToAAL (line 80) | func (n NullableAuthenticatorAssuranceLevel) ToAAL() (AuthenticatorAss... function NewNullableAuthenticatorAssuranceLevel (line 63) | func NewNullableAuthenticatorAssuranceLevel(aal AuthenticatorAssuranceLe... type CredentialsType (line 100) | type CredentialsType method String (line 115) | func (c CredentialsType) String() string { method ToUiNodeGroup (line 119) | func (c CredentialsType) ToUiNodeGroup() node.UiNodeGroup { constant CredentialsTypePassword (line 104) | CredentialsTypePassword CredentialsType = "password" constant CredentialsTypeOIDC (line 105) | CredentialsTypeOIDC CredentialsType = "oidc" constant CredentialsTypeTOTP (line 106) | CredentialsTypeTOTP CredentialsType = "totp" constant CredentialsTypeLookup (line 107) | CredentialsTypeLookup CredentialsType = "lookup_secret" constant CredentialsTypeWebAuthn (line 108) | CredentialsTypeWebAuthn CredentialsType = "webauthn" constant CredentialsTypeCodeAuth (line 109) | CredentialsTypeCodeAuth CredentialsType = "code" constant CredentialsTypePasskey (line 110) | CredentialsTypePasskey CredentialsType = "passkey" constant CredentialsTypeProfile (line 111) | CredentialsTypeProfile CredentialsType = "profile" constant CredentialsTypeSAML (line 112) | CredentialsTypeSAML CredentialsType = "saml" constant CredentialsTypeRecoveryLink (line 154) | CredentialsTypeRecoveryLink CredentialsType = "link_recovery" constant CredentialsTypeRecoveryCode (line 155) | CredentialsTypeRecoveryCode CredentialsType = "code_recovery" function ParseCredentialsType (line 159) | func ParseCredentialsType(in string) (CredentialsType, bool) { type Credentials (line 179) | type Credentials struct method TableName (line 206) | func (c Credentials) TableName(context.Context) string { method GetID (line 210) | func (c Credentials) GetID() uuid.UUID { method Signature (line 215) | func (c Credentials) Signature() string { type CredentialIdentifier (line 233) | type CredentialIdentifier struct method TableName (line 267) | func (c CredentialIdentifier) TableName(context.Context) string { type CredentialsTypeTable (line 245) | type CredentialsTypeTable struct method TableName (line 263) | func (c CredentialsTypeTable) TableName(context.Context) string { type ActiveCredentialsCounter (line 251) | type ActiveCredentialsCounter interface type ActiveCredentialsCounterStrategyProvider (line 258) | type ActiveCredentialsCounterStrategyProvider interface function CredentialsEqual (line 271) | func CredentialsEqual(a, b map[CredentialsType]Credentials) bool { FILE: identity/credentials_code.go type CodeChannel (line 17) | type CodeChannel method Scan (line 23) | func (c *CodeChannel) Scan(src interface{}) error { constant CodeChannelEmail (line 42) | CodeChannelEmail CodeChannel = AddressTypeEmail constant CodeChannelSMS (line 43) | CodeChannelSMS CodeChannel = AddressTypeSMS function NewCodeChannel (line 46) | func NewCodeChannel(value string) (CodeChannel, error) { type CredentialsCode (line 60) | type CredentialsCode struct type CredentialsCodeAddress (line 65) | type CredentialsCodeAddress struct method UnmarshalJSON (line 75) | func (c *CredentialsCodeAddress) UnmarshalJSON(data []byte) (err error) { FILE: identity/credentials_code_test.go function TestCredentialsCodeAddressUnmarshalJSON (line 13) | func TestCredentialsCodeAddressUnmarshalJSON(t *testing.T) { function TestNewCodeAddressType (line 72) | func TestNewCodeAddressType(t *testing.T) { FILE: identity/credentials_lookup.go type CredentialsLookupConfig (line 16) | type CredentialsLookupConfig struct method ToNode (line 21) | func (c *CredentialsLookupConfig) ToNode() *node.Node { type RecoveryCode (line 38) | type RecoveryCode struct FILE: identity/credentials_lookup_test.go function TestToNode (line 17) | func TestToNode(t *testing.T) { FILE: identity/credentials_migrate.go function UpgradeWebAuthnCredentials (line 17) | func UpgradeWebAuthnCredentials(i *Identity, c *Credentials) (err error) { function UpgradeCredentials (line 58) | func UpgradeCredentials(i *Identity) error { function UpgradeCodeCredentials (line 72) | func UpgradeCodeCredentials(c *Credentials) (err error) { FILE: identity/credentials_migrate_test.go function TestUpgradeCredentials (line 24) | func TestUpgradeCredentials(t *testing.T) { FILE: identity/credentials_oidc.go type CredentialsOIDC (line 19) | type CredentialsOIDC struct method Organization (line 115) | func (c *CredentialsOIDC) Organization() string { type CredentialsOIDCProvider (line 26) | type CredentialsOIDCProvider struct method GetTokens (line 103) | func (c *CredentialsOIDCProvider) GetTokens() *CredentialsOIDCEncrypte... type CredentialsOIDCEncryptedTokens (line 37) | type CredentialsOIDCEncryptedTokens struct method GetRefreshToken (line 43) | func (c *CredentialsOIDCEncryptedTokens) GetRefreshToken() string { method GetAccessToken (line 50) | func (c *CredentialsOIDCEncryptedTokens) GetAccessToken() string { method GetIDToken (line 57) | func (c *CredentialsOIDCEncryptedTokens) GetIDToken() string { function NewCredentialsOIDC (line 65) | func NewCredentialsOIDC(tokens *CredentialsOIDCEncryptedTokens, provider... function NewOIDCLikeCredentials (line 70) | func NewOIDCLikeCredentials(tokens *CredentialsOIDCEncryptedTokens, t Cr... function OIDCUniqueID (line 111) | func OIDCUniqueID(provider, subject string) string { FILE: identity/credentials_oidc_test.go function TestNewCredentialsOIDC (line 12) | func TestNewCredentialsOIDC(t *testing.T) { FILE: identity/credentials_password.go type CredentialsPassword (line 9) | type CredentialsPassword struct method ShouldUsePasswordMigrationHook (line 19) | func (cp *CredentialsPassword) ShouldUsePasswordMigrationHook() bool { FILE: identity/credentials_password_test.go function TestCredentialsPassword_ShouldUsePasswordMigrationHook (line 12) | func TestCredentialsPassword_ShouldUsePasswordMigrationHook(t *testing.T) { FILE: identity/credentials_test.go function TestCredentialsEqual (line 17) | func TestCredentialsEqual(t *testing.T) { function TestAALOrder (line 28) | func TestAALOrder(t *testing.T) { function TestParseCredentialsType (line 33) | func TestParseCredentialsType(t *testing.T) { function TestCredentials_Hash (line 59) | func TestCredentials_Hash(t *testing.T) { FILE: identity/credentials_totp.go type CredentialsTOTPConfig (line 7) | type CredentialsTOTPConfig struct FILE: identity/credentials_webauthn.go type CredentialsWebAuthnConfig (line 17) | type CredentialsWebAuthnConfig struct type CredentialsWebAuthn (line 23) | type CredentialsWebAuthn method ToWebAuthn (line 52) | func (c CredentialsWebAuthn) ToWebAuthn() (result []webauthn.Credentia... method PasswordlessOnly (line 60) | func (c CredentialsWebAuthn) PasswordlessOnly(authenticatorResponseFla... method ToWebAuthnFiltered (line 83) | func (c CredentialsWebAuthn) ToWebAuthnFiltered(aal AuthenticatorAssur... function CredentialFromWebAuthn (line 25) | func CredentialFromWebAuthn(credential *webauthn.Credential, isPasswordl... type CredentialWebAuthn (line 139) | type CredentialWebAuthn struct method ToWebAuthn (line 101) | func (c *CredentialWebAuthn) ToWebAuthn() *webauthn.Credential { type CredentialWebAuthnFlags (line 152) | type CredentialWebAuthnFlags struct type CredentialWebAuthnAttestation (line 159) | type CredentialWebAuthnAttestation struct type AuthenticatorWebAuthn (line 167) | type AuthenticatorWebAuthn struct FILE: identity/credentials_webauthn_test.go function TestCredentialConversion (line 16) | func TestCredentialConversion(t *testing.T) { function TestPasswordlessOnly (line 53) | func TestPasswordlessOnly(t *testing.T) { FILE: identity/error_test.go function TestErrDuplicateCredentials (line 13) | func TestErrDuplicateCredentials(t *testing.T) { FILE: identity/expandables.go constant ExpandFieldVerifiableAddresses (line 12) | ExpandFieldVerifiableAddresses Expandable = "VerifiableAddresses" constant ExpandFieldRecoveryAddresses (line 13) | ExpandFieldRecoveryAddresses Expandable = "RecoveryAddresses" constant ExpandFieldCredentials (line 14) | ExpandFieldCredentials Expandable = "Credentials" FILE: identity/extension_credentials.go type SchemaExtensionCredentials (line 24) | type SchemaExtensionCredentials struct method setIdentifier (line 35) | func (r *SchemaExtensionCredentials) setIdentifier(ct CredentialsType,... method Run (line 54) | func (r *SchemaExtensionCredentials) Run(ctx jsonschema.ValidationCont... method Finish (line 128) | func (r *SchemaExtensionCredentials) Finish() error { function NewSchemaExtensionCredentials (line 31) | func NewSchemaExtensionCredentials(i *Identity) *SchemaExtensionCredenti... FILE: identity/extension_credentials_test.go function TestSchemaExtensionCredentials (line 22) | func TestSchemaExtensionCredentials(t *testing.T) { FILE: identity/extension_recovery.go type SchemaExtensionRecovery (line 18) | type SchemaExtensionRecovery struct method Run (line 28) | func (r *SchemaExtensionRecovery) Run(ctx jsonschema.ValidationContext... method has (line 86) | func (r *SchemaExtensionRecovery) has(haystack []RecoveryAddress, need... method Finish (line 95) | func (r *SchemaExtensionRecovery) Finish() error { function NewSchemaExtensionRecovery (line 24) | func NewSchemaExtensionRecovery(i *Identity) *SchemaExtensionRecovery { FILE: identity/extension_recovery_test.go function TestSchemaExtensionRecovery (line 23) | func TestSchemaExtensionRecovery(t *testing.T) { FILE: identity/extension_verification.go function init (line 18) | func init() { type SchemaExtensionVerification (line 24) | type SchemaExtensionVerification struct method Run (line 40) | func (r *SchemaExtensionVerification) Run(ctx jsonschema.ValidationCon... method Finish (line 88) | func (r *SchemaExtensionVerification) Finish() error { method appendAddress (line 104) | func (r *SchemaExtensionVerification) appendAddress(address *Verifiabl... function NewSchemaExtensionVerification (line 31) | func NewSchemaExtensionVerification(i *Identity, lifespan time.Duration)... constant ChannelTypeEmail (line 36) | ChannelTypeEmail = "email" constant ChannelTypeSMS (line 37) | ChannelTypeSMS = "sms" function merge (line 94) | func merge(base []VerifiableAddress, overrides []VerifiableAddress) []Ve... function has (line 117) | func has(haystack []VerifiableAddress, needle *VerifiableAddress) *Verif... FILE: identity/extension_verification_test.go constant emailSchemaPath (line 25) | emailSchemaPath = "file://./stub/extension/verify/ema... constant phoneSchemaPath (line 26) | phoneSchemaPath = "file://./stub/extension/verify/pho... constant missingFormatSchemaPath (line 27) | missingFormatSchemaPath = "file://./stub/extension/verify/mis... constant legacyEmailMissingFormatSchemaPath (line 28) | legacyEmailMissingFormatSchemaPath = "file://./stub/extension/verify/leg... constant noValidateSchemaPath (line 29) | noValidateSchemaPath = "file://./stub/extension/verify/no-... function TestSchemaExtensionVerification (line 32) | func TestSchemaExtensionVerification(t *testing.T) { function mustContainAddress (line 415) | func mustContainAddress(t *testing.T, expected, actual []VerifiableAddre... function TestMergeVerifiableAddresses (line 428) | func TestMergeVerifiableAddresses(t *testing.T) { FILE: identity/handler.go constant RouteCollection (line 47) | RouteCollection = "/identities" constant RouteItem (line 48) | RouteItem = RouteCollection + "/{id}" constant RouteCredentialItem (line 49) | RouteCredentialItem = RouteItem + "/credentials/{type}" constant BatchPatchIdentitiesLimit (line 51) | BatchPatchIdentitiesLimit = 1000 constant BatchPatchIdentitiesWithPasswordLimit (line 52) | BatchPatchIdentitiesWithPasswordLimit = 200 type dependencies (line 56) | type dependencies interface type HandlerProvider (line 66) | type HandlerProvider interface type Handler (line 69) | type Handler struct method RegisterPublicRoutes (line 74) | func (h *Handler) RegisterPublicRoutes(public *httprouterx.RouterPubli... method RegisterAdminRoutes (line 103) | func (h *Handler) RegisterAdminRoutes(admin *httprouterx.RouterAdmin) { method list (line 266) | func (h *Handler) list(w http.ResponseWriter, r *http.Request) { method get (line 381) | func (h *Handler) get(w http.ResponseWriter, r *http.Request) { method getByExternalID (line 433) | func (h *Handler) getByExternalID(w http.ResponseWriter, r *http.Reque... method create (line 670) | func (h *Handler) create(w http.ResponseWriter, r *http.Request) { method identityFromCreateIdentityBody (line 702) | func (h *Handler) identityFromCreateIdentityBody(ctx context.Context, ... method batchPatchIdentities (line 785) | func (h *Handler) batchPatchIdentities(w http.ResponseWriter, r *http.... method update (line 952) | func (h *Handler) update(w http.ResponseWriter, r *http.Request) { method delete (line 1044) | func (h *Handler) delete(w http.ResponseWriter, r *http.Request) { method patch (line 1097) | func (h *Handler) patch(w http.ResponseWriter, r *http.Request) { method deleteIdentityCredentials (line 1206) | func (h *Handler) deleteIdentityCredentials(w http.ResponseWriter, r *... function NewHandler (line 72) | func NewHandler(r dependencies) *Handler { return &Handler{r: r} } type _ (line 120) | type _ struct type _ (line 134) | type _ struct function parseListIdentitiesParameters (line 184) | func parseListIdentitiesParameters(r *http.Request) (params ListIdentity... type getIdentity (line 316) | type getIdentity struct type getIdentityByExternalID (line 339) | type getIdentityByExternalID struct type createIdentity (line 471) | type createIdentity struct type CreateIdentityBody (line 479) | type CreateIdentityBody struct type IdentityWithCredentials (line 539) | type IdentityWithCredentials struct type AdminIdentityImportCredentialsPassword (line 553) | type AdminIdentityImportCredentialsPassword struct type AdminIdentityImportCredentialsPasswordConfig (line 561) | type AdminIdentityImportCredentialsPasswordConfig struct type AdminIdentityImportCredentialsOIDC (line 575) | type AdminIdentityImportCredentialsOIDC struct type AdminIdentityImportCredentialsOIDCConfig (line 581) | type AdminIdentityImportCredentialsOIDCConfig struct type AdminCreateIdentityImportCredentialsOIDCProvider (line 589) | type AdminCreateIdentityImportCredentialsOIDCProvider struct type AdminIdentityImportCredentialsSAML (line 612) | type AdminIdentityImportCredentialsSAML struct type AdminIdentityImportCredentialsSAMLConfig (line 620) | type AdminIdentityImportCredentialsSAMLConfig struct type AdminCreateIdentityImportCredentialsSAMLProvider (line 628) | type AdminCreateIdentityImportCredentialsSAMLProvider struct type updateIdentity (line 867) | type updateIdentity struct type UpdateIdentityBody (line 881) | type UpdateIdentityBody struct type deleteIdentity (line 1014) | type deleteIdentity struct type patchIdentity (line 1059) | type patchIdentity struct type _ (line 1160) | type _ struct FILE: identity/handler_import.go method importCredentials (line 17) | func (h *Handler) importCredentials(ctx context.Context, i *Identity, cr... method importPasswordCredentials (line 51) | func (h *Handler) importPasswordCredentials(ctx context.Context, i *Iden... method importOIDCCredentials (line 76) | func (h *Handler) importOIDCCredentials(_ context.Context, i *Identity, ... method importSAMLCredentials (line 121) | func (h *Handler) importSAMLCredentials(_ context.Context, i *Identity, ... FILE: identity/handler_import_test.go function TestImportCredentials (line 17) | func TestImportCredentials(t *testing.T) { FILE: identity/handler_test.go function TestHandler (line 47) | func TestHandler(t *testing.T) { function validCreateIdentityBody (line 2529) | func validCreateIdentityBody(t *testing.T, prefix string, i int, plainPa... function assertJSONArrayElementsMatch (line 2590) | func assertJSONArrayElementsMatch(t *testing.T, expected, actual gjson.R... FILE: identity/identity.go type State (line 32) | type State method IsValid (line 39) | func (lt State) IsValid() error { constant StateActive (line 35) | StateActive State = "active" constant StateInactive (line 36) | StateInactive State = "inactive" type Identity (line 52) | type Identity struct method PageToken (line 144) | func (i *Identity) PageToken() keysetpagination.PageToken { method TableName (line 188) | func (i Identity) TableName(context.Context) string { method IsActive (line 192) | func (i *Identity) IsActive() bool { method SetCredentials (line 196) | func (i *Identity) SetCredentials(t CredentialsType, c Credentials) { method SetCredentialsWithConfig (line 206) | func (i *Identity) SetCredentialsWithConfig(t CredentialsType, c Crede... method DeleteCredentialsType (line 221) | func (i *Identity) DeleteCredentialsType(t CredentialsType) { method GetCredentialsOr (line 231) | func (i *Identity) GetCredentialsOr(t CredentialsType, fallback *Crede... method UpsertCredentialsConfig (line 247) | func (i *Identity) UpsertCredentialsConfig(t CredentialsType, conf []b... method GetCredentials (line 265) | func (i *Identity) GetCredentials(t CredentialsType) (*Credentials, bo... method ParseCredentials (line 273) | func (i *Identity) ParseCredentials(t CredentialsType, config any) (*C... method CopyWithoutCredentials (line 284) | func (i *Identity) CopyWithoutCredentials() *Identity { method MergeOIDCCredentials (line 294) | func (i *Identity) MergeOIDCCredentials(t CredentialsType, newCreds Cr... method GetID (line 357) | func (i Identity) GetID() uuid.UUID { method MarshalJSON (line 361) | func (i Identity) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 372) | func (i *Identity) UnmarshalJSON(b []byte) error { method SetAvailableAAL (line 385) | func (i *Identity) SetAvailableAAL(ctx context.Context, m *Manager) (e... method Validate (line 430) | func (i *Identity) Validate() error { method WithDeclassifiedCredentials (line 475) | func (i *Identity) WithDeclassifiedCredentials(ctx context.Context, c ... method deleteCredentialPassword (line 554) | func (i *Identity) deleteCredentialPassword() error { method deleteCredentialWebAuthFromIdentity (line 564) | func (i *Identity) deleteCredentialWebAuthFromIdentity() error { method deleteCredentialOIDCSAMLFromIdentity (line 601) | func (i *Identity) deleteCredentialOIDCSAMLFromIdentity(ct Credentials... function DefaultPageToken (line 148) | func DefaultPageToken() keysetpagination.PageToken { type Traits (line 157) | type Traits method Scan (line 159) | func (t *Traits) Scan(value any) error { method Value (line 163) | func (t Traits) Value() (driver.Value, error) { method String (line 167) | func (t *Traits) String() string { method MarshalJSON (line 172) | func (t Traits) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 180) | func (t *Traits) UnmarshalJSON(data []byte) error { type CredentialsOptions (line 239) | type CredentialsOptions function WithAdditionalIdentifier (line 241) | func WithAdditionalIdentifier(identifier string) CredentialsOptions { function NewIdentity (line 340) | func NewIdentity(traitsSchemaID string) *Identity { type WithAdminMetadataInJSON (line 404) | type WithAdminMetadataInJSON method MarshalJSON (line 406) | func (i WithAdminMetadataInJSON) MarshalJSON() ([]byte, error) { type WithCredentialsAndAdminMetadataInJSON (line 412) | type WithCredentialsAndAdminMetadataInJSON method MarshalJSON (line 414) | func (i WithCredentialsAndAdminMetadataInJSON) MarshalJSON() ([]byte, ... type WithCredentialsNoConfigAndAdminMetadataInJSON (line 419) | type WithCredentialsNoConfigAndAdminMetadataInJSON method MarshalJSON (line 421) | func (i WithCredentialsNoConfigAndAdminMetadataInJSON) MarshalJSON() (... function CollectVerifiableAddresses (line 456) | func CollectVerifiableAddresses(i []*Identity) (res []VerifiableAddress) { function CollectRecoveryAddresses (line 466) | func CollectRecoveryAddresses(i []*Identity) (res []RecoveryAddress) { type batchPatchIdentitites (line 650) | type batchPatchIdentitites struct type BatchPatchIdentitiesBody (line 660) | type BatchPatchIdentitiesBody struct type BatchIdentityPatch (line 676) | type BatchIdentityPatch struct type BatchPatchAction (line 691) | type BatchPatchAction constant ActionCreate (line 695) | ActionCreate BatchPatchAction = "create" constant ActionError (line 698) | ActionError BatchPatchAction = "error" type batchPatchIdentitiesResponse (line 713) | type batchPatchIdentitiesResponse struct type BatchIdentityPatchResponse (line 723) | type BatchIdentityPatchResponse struct FILE: identity/identity_recovery.go type RecoveryAddressStatus (line 15) | type RecoveryAddressStatus type RecoveryAddress (line 18) | type RecoveryAddress struct method TableName (line 37) | func (a RecoveryAddress) TableName() string { return "identity_recover... method GetID (line 38) | func (a RecoveryAddress) GetID() uuid.UUID { return a.ID } method Signature (line 41) | func (a RecoveryAddress) Signature() string { function NewRecoveryEmailAddress (line 45) | func NewRecoveryEmailAddress( function NewRecoverySMSAddress (line 56) | func NewRecoverySMSAddress( FILE: identity/identity_recovery_test.go function TestNewRecoveryEmailAddress (line 16) | func TestNewRecoveryEmailAddress(t *testing.T) { function TestRecoveryAddress_Hash (line 29) | func TestRecoveryAddress_Hash(t *testing.T) { FILE: identity/identity_test.go function TestNewIdentity (line 25) | func TestNewIdentity(t *testing.T) { function TestIdentityCredentialsOr (line 35) | func TestIdentityCredentialsOr(t *testing.T) { function TestIdentityCredentialsOrCreate (line 50) | func TestIdentityCredentialsOrCreate(t *testing.T) { function TestIdentityCredentials (line 63) | func TestIdentityCredentials(t *testing.T) { function TestMarshalExcludesCredentials (line 100) | func TestMarshalExcludesCredentials(t *testing.T) { function TestMarshalExcludesCredentialsByReference (line 120) | func TestMarshalExcludesCredentialsByReference(t *testing.T) { function TestMarshalIgnoresAdminMetadata (line 139) | func TestMarshalIgnoresAdminMetadata(t *testing.T) { function TestUnMarshallIgnoresCredentials (line 157) | func TestUnMarshallIgnoresCredentials(t *testing.T) { function TestUnMarshallIgnoresAdminMetadata (line 169) | func TestUnMarshallIgnoresAdminMetadata(t *testing.T) { function TestMarshalIdentityWithCredentialsWhenCredentialsNil (line 180) | func TestMarshalIdentityWithCredentialsWhenCredentialsNil(t *testing.T) { function TestMarshalIdentityWithAdminMetadata (line 192) | func TestMarshalIdentityWithAdminMetadata(t *testing.T) { function TestMarshalIdentityWithCredentialsNoConfig (line 203) | func TestMarshalIdentityWithCredentialsNoConfig(t *testing.T) { function TestMarshalIdentityWithAll (line 227) | func TestMarshalIdentityWithAll(t *testing.T) { function TestValidateNID (line 251) | func TestValidateNID(t *testing.T) { function TestRecoveryAddresses (line 310) | func TestRecoveryAddresses(t *testing.T) { function TestVerifiableAddresses (line 329) | func TestVerifiableAddresses(t *testing.T) { type cipherProvider (line 347) | type cipherProvider struct method Cipher (line 349) | func (c *cipherProvider) Cipher(context.Context) cipher.Cipher { function TestWithDeclassifiedCredentials (line 353) | func TestWithDeclassifiedCredentials(t *testing.T) { function TestDeleteCredentialOIDCSAMLFromIdentity (line 440) | func TestDeleteCredentialOIDCSAMLFromIdentity(t *testing.T) { function TestMergeOIDCCredentials (line 524) | func TestMergeOIDCCredentials(t *testing.T) { FILE: identity/identity_verification.go constant VerifiableAddressStatusPending (line 16) | VerifiableAddressStatusPending VerifiableAddressStatus = "pending" constant VerifiableAddressStatusSent (line 17) | VerifiableAddressStatusSent VerifiableAddressStatus = "sent" constant VerifiableAddressStatusCompleted (line 18) | VerifiableAddressStatusCompleted VerifiableAddressStatus = "completed" type VerifiableAddressStatus (line 24) | type VerifiableAddressStatus type VerifiableAddress (line 29) | type VerifiableAddress struct method TableName (line 81) | func (a VerifiableAddress) TableName() string { method GetID (line 99) | func (a VerifiableAddress) GetID() uuid.UUID { method Signature (line 104) | func (a VerifiableAddress) Signature() string { function NewVerifiableEmailAddress (line 85) | func NewVerifiableEmailAddress(value string, identity uuid.UUID) *Verifi... function NewVerifiableAddress (line 89) | func NewVerifiableAddress(value string, identity uuid.UUID, channel stri... FILE: identity/identity_verification_test.go function TestNewVerifiableEmailAddress (line 22) | func TestNewVerifiableEmailAddress(t *testing.T) { function reflectiveHash (line 43) | func reflectiveHash(record any) string { function TestVerifiableAddress_Hash (line 68) | func TestVerifiableAddress_Hash(t *testing.T) { FILE: identity/manager.go type managerDependencies (line 35) | type managerDependencies interface type ManagementProvider (line 45) | type ManagementProvider interface type Manager (line 48) | type Manager struct method Create (line 80) | func (m *Manager) Create(ctx context.Context, i *Identity, opts ...Man... method ConflictingIdentity (line 103) | func (m *Manager) ConflictingIdentity(ctx context.Context, i *Identity... method findExistingAuthMethod (line 159) | func (m *Manager) findExistingAuthMethod(ctx context.Context, e error,... method CreateIdentities (line 383) | func (m *Manager) CreateIdentities(ctx context.Context, identities []*... method requiresPrivilegedAccess (line 417) | func (m *Manager) requiresPrivilegedAccess(ctx context.Context, origin... method Update (line 440) | func (m *Manager) Update(ctx context.Context, updated *Identity, opts ... method UpdateSchemaID (line 461) | func (m *Manager) UpdateSchemaID(ctx context.Context, id uuid.UUID, sc... method SetTraits (line 483) | func (m *Manager) SetTraits(ctx context.Context, id uuid.UUID, traits ... method RefreshAvailableAAL (line 512) | func (m *Manager) RefreshAvailableAAL(ctx context.Context, i *Identity... method UpdateTraits (line 531) | func (m *Manager) UpdateTraits(ctx context.Context, id uuid.UUID, trai... method ValidateIdentity (line 543) | func (m *Manager) ValidateIdentity(ctx context.Context, i *Identity, o... method CountActiveFirstFactorCredentials (line 559) | func (m *Manager) CountActiveFirstFactorCredentials(ctx context.Contex... method CountActiveMultiFactorCredentials (line 575) | func (m *Manager) CountActiveMultiFactorCredentials(ctx context.Contex... type ManagerOptions (line 52) | type ManagerOptions struct type ManagerOption (line 57) | type ManagerOption function NewManager (line 60) | func NewManager(r managerDependencies) *Manager { function ManagerExposeValidationErrorsForInternalTypeAssertion (line 64) | func ManagerExposeValidationErrorsForInternalTypeAssertion(options *Mana... function ManagerAllowWriteProtectedTraits (line 68) | func ManagerAllowWriteProtectedTraits(options *ManagerOptions) { function newManagerOptions (line 72) | func newManagerOptions(opts []ManagerOption) *ManagerOptions { type ErrDuplicateCredentials (line 264) | type ErrDuplicateCredentials struct method Unwrap (line 274) | func (e *ErrDuplicateCredentials) Unwrap() error { method AddCredentialsType (line 278) | func (e *ErrDuplicateCredentials) AddCredentialsType(ct CredentialsTyp... method SetIdentifierHint (line 282) | func (e *ErrDuplicateCredentials) SetIdentifierHint(hint string) { method AvailableCredentials (line 288) | func (e *ErrDuplicateCredentials) AvailableCredentials() []string { method AvailableOIDCProviders (line 298) | func (e *ErrDuplicateCredentials) AvailableOIDCProviders() []string { method IdentifierHint (line 306) | func (e *ErrDuplicateCredentials) IdentifierHint() string { method HasHints (line 310) | func (e *ErrDuplicateCredentials) HasHints() bool { type FailedIdentity (line 314) | type FailedIdentity struct type CreateIdentitiesError (line 319) | type CreateIdentitiesError struct method Error (line 329) | func (e *CreateIdentitiesError) Error() string { method Unwrap (line 334) | func (e *CreateIdentitiesError) Unwrap() []error { method AddFailedIdentity (line 343) | func (e *CreateIdentitiesError) AddFailedIdentity(ident *Identity, err... method Merge (line 348) | func (e *CreateIdentitiesError) Merge(other *CreateIdentitiesError) { method Contains (line 355) | func (e *CreateIdentitiesError) Contains(ident *Identity) bool { method Find (line 361) | func (e *CreateIdentitiesError) Find(ident *Identity) *FailedIdentity { method ErrOrNil (line 370) | func (e *CreateIdentitiesError) ErrOrNil() error { method init (line 377) | func (e *CreateIdentitiesError) init() { function NewCreateIdentitiesError (line 323) | func NewCreateIdentitiesError(capacity int) *CreateIdentitiesError { FILE: identity/manager_test.go function TestManagerNoDefaultNamedSchema (line 812) | func TestManagerNoDefaultNamedSchema(t *testing.T) { FILE: identity/pool.go function NewUpdateIdentityOptions (line 17) | func NewUpdateIdentityOptions(opts []UpdateIdentityModifier) UpdateIdent... function DiffAgainst (line 31) | func DiffAgainst(existing *Identity) UpdateIdentityModifier { type ListIdentityParameters (line 42) | type ListIdentityParameters struct method TransformStatement (line 155) | func (p ListIdentityParameters) TransformStatement(statement string) s... type UpdateIdentityModifier (line 57) | type UpdateIdentityModifier type UpdateIdentityOptions (line 58) | type UpdateIdentityOptions struct method FromDatabase (line 37) | func (o UpdateIdentityOptions) FromDatabase() *Identity { type Pool (line 62) | type Pool interface type PoolProvider (line 83) | type PoolProvider interface type PrivilegedPoolProvider (line 87) | type PrivilegedPoolProvider interface type PrivilegedPool (line 91) | type PrivilegedPool interface FILE: identity/registry.go type Registry (line 10) | type Registry interface type Configuration (line 14) | type Configuration interface FILE: identity/test/pool.go function assertContainsValues (line 42) | func assertContainsValues(t *testing.T, actual []string, shouldContain, ... function TestPool (line 52) | func TestPool(ctx context.Context, p persistence.Persister, m *identity.... function NewTestIdentity (line 2270) | func NewTestIdentity(numAddresses int, prefix string, i int) *identity.I... FILE: identity/validator.go type validatorDependencies (line 21) | type validatorDependencies interface type Validator (line 25) | type Validator struct method ValidateWithRunner (line 38) | func (v *Validator) ValidateWithRunner(ctx context.Context, i *Identit... method Validate (line 66) | func (v *Validator) Validate(ctx context.Context, i *Identity) error { type ValidationProvider (line 29) | type ValidationProvider interface function NewValidator (line 34) | func NewValidator(d validatorDependencies) *Validator { FILE: identity/validator_test.go function TestSchemaValidatorDisallowsInternalNetworkRequests (line 28) | func TestSchemaValidatorDisallowsInternalNetworkRequests(t *testing.T) { function TestSchemaValidator (line 68) | func TestSchemaValidator(t *testing.T) { FILE: main.go function main (line 13) | func main() { FILE: oryx/assertx/assertx.go function PrettifyJSONPayload (line 18) | func PrettifyJSONPayload(t testing.TB, payload interface{}) string { function EqualAsJSON (line 25) | func EqualAsJSON(t testing.TB, expected, actual interface{}, args ...int... function EqualAsJSONExcept (line 37) | func EqualAsJSONExcept(t testing.TB, expected, actual interface{}, excep... FILE: oryx/cachex/ristretto.go type RistrettoCollector (line 12) | type RistrettoCollector struct method Describe (line 41) | func (c *RistrettoCollector) Describe(ch chan<- *prometheus.Desc) { method Collect (line 55) | func (c *RistrettoCollector) Collect(ch chan<- prometheus.Metric) { function NewRistrettoCollector (line 32) | func NewRistrettoCollector(prefix string, metricsFunc func() *ristretto.... FILE: oryx/castx/castx.go function ToFloatSlice (line 16) | func ToFloatSlice(i interface{}) []float64 { function ToFloatSliceE (line 22) | func ToFloatSliceE(i interface{}) ([]float64, error) { function ToStringSlice (line 51) | func ToStringSlice(i interface{}) []string { function ToStringSliceE (line 57) | func ToStringSliceE(i interface{}) ([]string, error) { function parseCSV (line 66) | func parseCSV(v string) ([]string, error) { FILE: oryx/clidoc/generate.go function Generate (line 17) | func Generate(cmd *cobra.Command, args []string) error { function trimExt (line 25) | func trimExt(s string) string { function generate (line 29) | func generate(cmd *cobra.Command, dir string) error { FILE: oryx/clidoc/md_docs.go function printOptions (line 32) | func printOptions(buf *bytes.Buffer, cmd *cobra.Command, name string) er... function GenMarkdown (line 52) | func GenMarkdown(cmd *cobra.Command, w io.Writer) error { function GenMarkdownCustom (line 57) | func GenMarkdownCustom(cmd *cobra.Command, w io.Writer, linkHandler func... function GenMarkdownTree (line 141) | func GenMarkdownTree(cmd *cobra.Command, dir string) error { function GenMarkdownTreeCustom (line 149) | func GenMarkdownTreeCustom(cmd *cobra.Command, dir string, filePrepender... function fenceIndentedBlocks (line 178) | func fenceIndentedBlocks(s string) string { FILE: oryx/clidoc/util.go function hasSeeAlso (line 23) | func hasSeeAlso(cmd *cobra.Command) bool { type byName (line 36) | type byName method Len (line 38) | func (s byName) Len() int { return len(s) } method Swap (line 39) | func (s byName) Swap(i, j int) { s[i], s[j] = s[j], s[i] } method Less (line 40) | func (s byName) Less(i, j int) bool { return s[i].Name() < s[j].Name() } FILE: oryx/cmdx/args.go function MinArgs (line 14) | func MinArgs(cmd *cobra.Command, args []string, min int) { function ExactArgs (line 24) | func ExactArgs(cmd *cobra.Command, args []string, l int) { function RangeArgs (line 34) | func RangeArgs(cmd *cobra.Command, args []string, r []int) { function ZeroOrTwoArgs (line 46) | func ZeroOrTwoArgs(cmd *cobra.Command, args []string) error { FILE: oryx/cmdx/env.go function EnvVarExamplesHelpMessage (line 7) | func EnvVarExamplesHelpMessage(name string) string { FILE: oryx/cmdx/helper.go function init (line 37) | func init() { function FailSilently (line 46) | func FailSilently(cmd *cobra.Command) error { function Must (line 54) | func Must(err error, message string, args ...interface{}) { function CheckResponse (line 65) | func CheckResponse(err error, expectedStatusCode int, response *http.Res... function FormatResponse (line 93) | func FormatResponse(o interface{}) string { function Fatalf (line 101) | func Fatalf(message string, args ...interface{}) { function ExpectDependency (line 112) | func ExpectDependency(logger *logrusx.Logger, dependencies ...interface{... type CallbackWriter (line 125) | type CallbackWriter struct method Write (line 130) | func (c *CallbackWriter) Write(msg []byte) (int, error) { method String (line 141) | func (c *CallbackWriter) String() string { function prepareCmd (line 147) | func prepareCmd(cmd *cobra.Command, stdIn io.Reader, stdOut, stdErr io.W... function ExecBackgroundCtx (line 167) | func ExecBackgroundCtx(ctx context.Context, cmd *cobra.Command, stdIn io... function Exec (line 181) | func Exec(t testing.TB, cmd *cobra.Command, stdIn io.Reader, args ...str... function ExecCtx (line 185) | func ExecCtx(ctx context.Context, cmd *cobra.Command, stdIn io.Reader, a... function ExecNoErr (line 198) | func ExecNoErr(t testing.TB, cmd *cobra.Command, args ...string) string { function ExecNoErrCtx (line 202) | func ExecNoErrCtx(ctx context.Context, t require.TestingT, cmd *cobra.Co... function ExecExpectedErr (line 214) | func ExecExpectedErr(t testing.TB, cmd *cobra.Command, args ...string) s... function ExecExpectedErrCtx (line 218) | func ExecExpectedErrCtx(ctx context.Context, t require.TestingT, cmd *co... type CommandExecuter (line 225) | type CommandExecuter struct method Exec (line 231) | func (c *CommandExecuter) Exec(stdin io.Reader, args ...string) (strin... method ExecBackground (line 235) | func (c *CommandExecuter) ExecBackground(stdin io.Reader, stdOut, stdE... method ExecNoErr (line 239) | func (c *CommandExecuter) ExecNoErr(t require.TestingT, args ...string... method ExecExpectedErr (line 243) | func (c *CommandExecuter) ExecExpectedErr(t require.TestingT, args ...... type URL (line 247) | type URL struct method Set (line 253) | func (u *URL) Set(s string) error { method Type (line 262) | func (*URL) Type() string { FILE: oryx/cmdx/http.go constant envKeyEndpoint (line 24) | envKeyEndpoint = "ORY_SDK_URL" constant FlagEndpoint (line 25) | FlagEndpoint = "endpoint" constant FlagSkipTLSVerify (line 26) | FlagSkipTLSVerify = "skip-tls-verify" constant FlagHeaders (line 27) | FlagHeaders = "http-header" function Remote (line 31) | func Remote(cmd *cobra.Command) (string, error) { function RemoteURI (line 48) | func RemoteURI(cmd *cobra.Command) (*url.URL, error) { function NewClient (line 64) | func NewClient(cmd *cobra.Command) (*http.Client, *url.URL, error) { function RegisterHTTPClientFlags (line 121) | func RegisterHTTPClientFlags(flags *pflag.FlagSet) { FILE: oryx/cmdx/noise_printer.go type ConditionalPrinter (line 14) | type ConditionalPrinter struct method Println (line 118) | func (p *ConditionalPrinter) Println(a ...interface{}) (n int, err err... method Print (line 125) | func (p *ConditionalPrinter) Print(a ...interface{}) (n int, err error) { method Printf (line 132) | func (p *ConditionalPrinter) Printf(format string, a ...interface{}) (... constant FlagQuiet (line 20) | FlagQuiet = "quiet" function RegisterNoiseFlags (line 23) | func RegisterNoiseFlags(flags *pflag.FlagSet) { function NewLoudOutPrinter (line 29) | func NewLoudOutPrinter(cmd *cobra.Command) *ConditionalPrinter { function NewQuietOutPrinter (line 43) | func NewQuietOutPrinter(cmd *cobra.Command) *ConditionalPrinter { function NewLoudErrPrinter (line 57) | func NewLoudErrPrinter(cmd *cobra.Command) *ConditionalPrinter { function NewQuietErrPrinter (line 71) | func NewQuietErrPrinter(cmd *cobra.Command) *ConditionalPrinter { function NewLoudPrinter (line 85) | func NewLoudPrinter(cmd *cobra.Command, w io.Writer) *ConditionalPrinter { function NewQuietPrinter (line 99) | func NewQuietPrinter(cmd *cobra.Command, w io.Writer) *ConditionalPrinter { function NewConditionalPrinter (line 111) | func NewConditionalPrinter(w io.Writer, print bool) *ConditionalPrinter { FILE: oryx/cmdx/output.go type OutputIder (line 10) | type OutputIder method Header (line 17) | func (OutputIder) Header() []string { method Columns (line 21) | func (i OutputIder) Columns() []string { method Interface (line 25) | func (i OutputIder) Interface() interface{} { type OutputIderCollection (line 12) | type OutputIderCollection struct method Header (line 29) | func (OutputIderCollection) Header() []string { method Table (line 33) | func (c OutputIderCollection) Table() [][]string { method Interface (line 41) | func (c OutputIderCollection) Interface() interface{} { method Len (line 45) | func (c OutputIderCollection) Len() int { type PaginatedList (line 49) | type PaginatedList struct method Header (line 59) | func (r *PaginatedList) Header() []string { method Table (line 63) | func (r *PaginatedList) Table() [][]string { method Interface (line 72) | func (r *PaginatedList) Interface() interface{} { method Len (line 76) | func (r *PaginatedList) Len() int { method IDs (line 80) | func (r *PaginatedList) IDs() []string { FILE: oryx/cmdx/pagination.go constant FlagPageSize (line 14) | FlagPageSize = "page-size" constant FlagPageToken (line 15) | FlagPageToken = "page-token" function RegisterTokenPaginationFlags (line 18) | func RegisterTokenPaginationFlags(cmd *cobra.Command) (pageSize int, pag... function ParsePaginationArgs (line 25) | func ParsePaginationArgs(cmd *cobra.Command, pageArg, perPageArg string)... function ParseTokenPaginationArgs (line 43) | func ParseTokenPaginationArgs(cmd *cobra.Command) (page string, perPage ... FILE: oryx/cmdx/printing.go type TableHeader (line 23) | type TableHeader interface type TableRow (line 26) | type TableRow interface type Table (line 31) | type Table interface type Nil (line 37) | type Nil struct method String (line 57) | func (Nil) String() string { method Interface (line 61) | func (Nil) Interface() interface{} { type Format (line 39) | type Format constant FormatQuiet (line 43) | FormatQuiet Format = "quiet" constant FormatTable (line 44) | FormatTable Format = "table" constant FormatJSON (line 45) | FormatJSON Format = "json" constant FormatJSONPath (line 46) | FormatJSONPath Format = "jsonpath" constant FormatJSONPointer (line 47) | FormatJSONPointer Format = "jsonpointer" constant FormatJSONPretty (line 48) | FormatJSONPretty Format = "json-pretty" constant FormatYAML (line 49) | FormatYAML Format = "yaml" constant FormatDefault (line 50) | FormatDefault Format = "default" constant FlagFormat (line 52) | FlagFormat = "format" constant None (line 54) | None = "" type printOptions (line 65) | type printOptions struct type PrintOption (line 69) | type PrintOption function WithFormat (line 71) | func WithFormat(v string) PrintOption { function PrintErrors (line 77) | func PrintErrors(cmd *cobra.Command, errs map[string]error) { function PrintRow (line 83) | func PrintRow(cmd *cobra.Command, row TableRow) { function PrintRowf (line 87) | func PrintRowf(w io.Writer, row TableRow, opts ...PrintOption) { function filterJSONPointer (line 122) | func filterJSONPointer(f string, data any) any { function PrintTable (line 139) | func PrintTable(cmd *cobra.Command, table Table) { function PrintTablef (line 143) | func PrintTablef(w io.Writer, table Table, opts ...PrintOption) { type interfacer (line 191) | type interfacer interface function PrintJSONAble (line 193) | func PrintJSONAble(cmd *cobra.Command, d interface{ String() string }) { function PrintJSONAblef (line 197) | func PrintJSONAblef(w io.Writer, d interface{ String() string }, opts ..... function getQuiet (line 241) | func getQuiet(cmd *cobra.Command) bool { function getFormatValue (line 247) | func getFormatValue(cmd *cobra.Command) string { function parseFormat (line 256) | func parseFormat(f string) Format { function getPath (line 277) | func getPath(f string) string { function printJSON (line 289) | func printJSON(w io.Writer, v interface{}, pretty bool, path string) { function printYAML (line 305) | func printYAML(w io.Writer, v interface{}) { function RegisterJSONFormatFlags (line 313) | func RegisterJSONFormatFlags(flags *pflag.FlagSet) { function RegisterFormatFlags (line 317) | func RegisterFormatFlags(flags *pflag.FlagSet) { function PrintOpenAPIError (line 322) | func PrintOpenAPIError(cmd *cobra.Command, err error) error { FILE: oryx/cmdx/usage.go function AddUsageTemplateFunc (line 19) | func AddUsageTemplateFunc(name string, f interface{}) { constant helpTemplate (line 24) | helpTemplate = `{{insertTemplate . (or .Long .Short) | trimTrailingWhite... constant usageTemplate (line 27) | usageTemplate = `Usage:{{if .Runnable}} function EnableUsageTemplating (line 56) | func EnableUsageTemplating(cmds ...*cobra.Command) { function TemplateCommandField (line 64) | func TemplateCommandField(cmd *cobra.Command, field string) (string, err... function DisableUsageTemplating (line 80) | func DisableUsageTemplating(cmds ...*cobra.Command) { function AssertUsageTemplates (line 89) | func AssertUsageTemplates(t require.TestingT, cmd *cobra.Command) { FILE: oryx/cmdx/user_input.go function AskForConfirmation (line 18) | func AskForConfirmation(s string, stdin io.Reader, stdout io.Writer) bool { function AskScannerForConfirmation (line 34) | func AskScannerForConfirmation(s string, reader *bufio.Reader, stdout io... FILE: oryx/cmdx/version.go function Version (line 14) | func Version(gitTag, gitHash, buildTime *string) *cobra.Command { FILE: oryx/configx/context.go type contextKey (line 8) | type contextKey constant configContextKey (line 10) | configContextKey contextKey = iota + 1 function ContextWithConfigOptions (line 12) | func ContextWithConfigOptions(ctx context.Context, opts ...OptionModifie... function ConfigOptionsFromContext (line 16) | func ConfigOptionsFromContext(ctx context.Context) []OptionModifier { FILE: oryx/configx/cors.go constant CORSConfigSchemaID (line 12) | CORSConfigSchemaID = "ory://cors-config" method CORS (line 17) | func (p *Provider) CORS(prefix string, defaults cors.Options) (cors.Opti... FILE: oryx/configx/error.go type ImmutableError (line 12) | type ImmutableError struct method Error (line 28) | func (e *ImmutableError) Error() string { function NewImmutableError (line 19) | func NewImmutableError(key string, from, to interface{}) error { FILE: oryx/configx/helpers.go function RegisterFlags (line 16) | func RegisterFlags(flags *pflag.FlagSet) { function GetAddress (line 21) | func GetAddress(host string, port int) string { method GetAddress (line 28) | func (s *Serve) GetAddress() string { function AddSchemaResources (line 34) | func AddSchemaResources(c interface { function cleanPrefix (line 46) | func cleanPrefix(prefix string) string { FILE: oryx/configx/koanf_confmap.go type KoanfConfmap (line 16) | type KoanfConfmap struct method ReadBytes (line 52) | func (e *KoanfConfmap) ReadBytes() ([]byte, error) { method Read (line 57) | func (e *KoanfConfmap) Read() (map[string]interface{}, error) { function NewKoanfConfmap (line 23) | func NewKoanfConfmap(tuples []tuple) *KoanfConfmap { function jsonify (line 27) | func jsonify(tuples []tuple) []tuple { FILE: oryx/configx/koanf_env.go function NewKoanfEnv (line 26) | func NewKoanfEnv(prefix string, rawSchema []byte, schema *jsonschema.Sch... type Env (line 39) | type Env struct method ReadBytes (line 45) | func (e *Env) ReadBytes() ([]byte, error) { method Read (line 51) | func (e *Env) Read() (map[string]interface{}, error) { method Watch (line 90) | func (e *Env) Watch(cb func(event interface{}, err error)) error { method extract (line 94) | func (e *Env) extract(key string, value string) (string, interface{}) { function decode (line 174) | func decode(value string) (v interface{}) { FILE: oryx/configx/koanf_file.go type KoanfFile (line 23) | type KoanfFile struct method ReadBytes (line 55) | func (f *KoanfFile) ReadBytes() ([]byte, error) { method Read (line 60) | func (f *KoanfFile) Read() (map[string]interface{}, error) { method WatchChannel (line 88) | func (f *KoanfFile) WatchChannel(ctx context.Context, c watcherx.Event... function NewKoanfFile (line 30) | func NewKoanfFile(path string) (*KoanfFile, error) { function NewKoanfFileSubKey (line 34) | func NewKoanfFileSubKey(path, subKey string) (*KoanfFile, error) { FILE: oryx/configx/koanf_full_merge.go function MergeAllTypes (line 15) | func MergeAllTypes(src, dst map[string]interface{}) error { FILE: oryx/configx/koanf_memory.go type KoanfMemory (line 18) | type KoanfMemory struct method SetDoc (line 34) | func (f *KoanfMemory) SetDoc(doc stdjson.RawMessage) { method ReadBytes (line 39) | func (f *KoanfMemory) ReadBytes() ([]byte, error) { method Read (line 44) | func (f *KoanfMemory) Read() (map[string]interface{}, error) { function NewKoanfMemory (line 26) | func NewKoanfMemory(ctx context.Context, doc stdjson.RawMessage) *KoanfM... FILE: oryx/configx/koanf_schema_defaults.go type KoanfSchemaDefaults (line 16) | type KoanfSchemaDefaults struct method ReadBytes (line 29) | func (k *KoanfSchemaDefaults) ReadBytes() ([]byte, error) { method Read (line 33) | func (k *KoanfSchemaDefaults) Read() (map[string]interface{}, error) { function NewKoanfSchemaDefaults (line 20) | func NewKoanfSchemaDefaults(rawSchema []byte, schema *jsonschema.Schema)... FILE: oryx/configx/options.go type OptionModifier (line 24) | type OptionModifier function WithContext (line 27) | func WithContext(ctx context.Context) OptionModifier { function WithConfigFiles (line 35) | func WithConfigFiles(files ...string) OptionModifier { function WithImmutables (line 41) | func WithImmutables(immutables ...string) OptionModifier { function WithExceptImmutables (line 47) | func WithExceptImmutables(exceptImmutables ...string) OptionModifier { function WithFlags (line 53) | func WithFlags(flags *pflag.FlagSet) OptionModifier { function WithLogger (line 59) | func WithLogger(l *logrusx.Logger) OptionModifier { function SkipValidation (line 65) | func SkipValidation() OptionModifier { function DisableEnvLoading (line 71) | func DisableEnvLoading() OptionModifier { function WithValue (line 77) | func WithValue(key string, value interface{}) OptionModifier { function WithValues (line 83) | func WithValues(values map[string]interface{}) OptionModifier { function WithBaseValues (line 91) | func WithBaseValues(values map[string]interface{}) OptionModifier { function WithUserProviders (line 99) | func WithUserProviders(providers ...koanf.Provider) OptionModifier { function OmitKeysFromTracing (line 106) | func OmitKeysFromTracing(keys ...string) OptionModifier { function AttachWatcher (line 110) | func AttachWatcher(watcher func(event watcherx.Event, err error)) Option... function WithLogrusWatcher (line 116) | func WithLogrusWatcher(l *logrusx.Logger) OptionModifier { function LogrusWatcher (line 120) | func LogrusWatcher(l *logrusx.Logger) func(e watcherx.Event, err error) { function WithStderrValidationReporter (line 145) | func WithStderrValidationReporter() OptionModifier { function WithStandardValidationReporter (line 153) | func WithStandardValidationReporter(w io.Writer) OptionModifier { FILE: oryx/configx/permission.go type UnixPermission (line 12) | type UnixPermission struct method SetPermission (line 18) | func (p *UnixPermission) SetPermission(file string) error { FILE: oryx/configx/pflag.go type PFlagProvider (line 18) | type PFlagProvider struct method ReadBytes (line 34) | func (p *PFlagProvider) ReadBytes() ([]byte, error) { method Read (line 38) | func (p *PFlagProvider) Read() (map[string]interface{}, error) { function NewPFlagProvider (line 23) | func NewPFlagProvider(rawSchema []byte, schema *jsonschema.Schema, f *pf... FILE: oryx/configx/provider.go type tuple (line 32) | type tuple struct type Provider (line 37) | type Provider struct method SkipValidation (line 118) | func (p *Provider) SkipValidation() bool { method createProviders (line 122) | func (p *Provider) createProviders(ctx context.Context) (providers []k... method replaceKoanf (line 188) | func (p *Provider) replaceKoanf(k *koanf.Koanf) { method validate (line 192) | func (p *Provider) validate(k *koanf.Koanf) error { method newKoanf (line 215) | func (p *Provider) newKoanf() (_ *koanf.Koanf, err error) { method SetTracer (line 243) | func (p *Provider) SetTracer(_ context.Context, _ *otelx.Tracer) { method runOnChanges (line 246) | func (p *Provider) runOnChanges(e watcherx.Event, err error) { method reload (line 264) | func (p *Provider) reload(e watcherx.Event) { method watchForFileChanges (line 301) | func (p *Provider) watchForFileChanges(ctx context.Context, c watcherx... method DirtyPatch (line 327) | func (p *Provider) DirtyPatch(key string, value any) error { method Set (line 344) | func (p *Provider) Set(key string, value interface{}) error { method BoolF (line 360) | func (p *Provider) BoolF(key string, fallback bool) bool { method StringF (line 371) | func (p *Provider) StringF(key string, fallback string) string { method StringsF (line 382) | func (p *Provider) StringsF(key string, fallback []string) (val []stri... method IntF (line 393) | func (p *Provider) IntF(key string, fallback int) (val int) { method Float64F (line 404) | func (p *Provider) Float64F(key string, fallback float64) (val float64) { method DurationF (line 415) | func (p *Provider) DurationF(key string, fallback time.Duration) (val ... method ByteSizeF (line 426) | func (p *Provider) ByteSizeF(key string, fallback bytesize.ByteSize) b... method GetF (line 454) | func (p *Provider) GetF(key string, fallback interface{}) (val interfa... method TracingConfig (line 465) | func (p *Provider) TracingConfig(serviceName string) *otelx.Config { method RequestURIF (line 496) | func (p *Provider) RequestURIF(path string, fallback *url.URL) *url.URL { method URIF (line 514) | func (p *Provider) URIF(path string, fallback *url.URL) *url.URL { method PrintHumanReadableValidationErrors (line 533) | func (p *Provider) PrintHumanReadableValidationErrors(w io.Writer, err... method printHumanReadableValidationErrors (line 537) | func (p *Provider) printHumanReadableValidationErrors(k *koanf.Koanf, ... constant FlagConfig (line 62) | FlagConfig = "config" constant Delimiter (line 63) | Delimiter = "." function RegisterConfigFlag (line 67) | func RegisterConfigFlag(flags *pflag.FlagSet, fallback []string) { function New (line 81) | func New(ctx context.Context, schema []byte, modifiers ...OptionModifier... function deleteOtherKeys (line 252) | func deleteOtherKeys(k *koanf.Koanf, keys []string) { FILE: oryx/configx/schema.go function newCompiler (line 20) | func newCompiler(schema []byte) (string, *jsonschema.Compiler, error) { FILE: oryx/configx/schema_cache.go function getSchema (line 29) | func getSchema(ctx context.Context, schema []byte) (*jsonschema.Schema, ... FILE: oryx/configx/schema_path_cache.go function getSchemaPaths (line 27) | func getSchemaPaths(rawSchema []byte, schema *jsonschema.Schema) ([]json... FILE: oryx/configx/serve.go constant ServeConfigSchemaID (line 20) | ServeConfigSchemaID = "ory://serve-config" constant TLSConfigSchemaID (line 21) | TLSConfigSchemaID = "ory://tls-config" type Serve (line 31) | type Serve struct type TLS (line 39) | type TLS struct method GetCertFunc (line 106) | func (t *TLS) GetCertFunc(ctx context.Context, l *logrusx.Logger, ifac... type ServeRequestLog (line 44) | type ServeRequestLog struct method Serve (line 49) | func (p *Provider) Serve(prefix string, isDev bool, defaults Serve) *Ser... method TLS (line 93) | func (p *Provider) TLS(prefix string, defaults TLS) TLS { FILE: oryx/configx/span.go constant LoadSpanOpName (line 7) | LoadSpanOpName = "config-load" constant UpdatedSpanOpName (line 8) | UpdatedSpanOpName = "config-update" constant SnapshotSpanOpName (line 9) | SnapshotSpanOpName = "config-snapshot" FILE: oryx/contextx/contextual.go type Contextualizer (line 15) | type Contextualizer interface type Provider (line 22) | type Provider interface type Static (line 25) | type Static struct method Network (line 31) | func (d *Static) Network(_ context.Context, nid uuid.UUID) uuid.UUID { method Config (line 38) | func (d *Static) Config(_ context.Context, c *configx.Provider) *confi... FILE: oryx/contextx/contextual_mock.go type TestContextualizer (line 15) | type TestContextualizer struct method Network (line 28) | func (d *TestContextualizer) Network(ctx context.Context, network uuid... method Config (line 37) | func (d *TestContextualizer) Config(ctx context.Context, config *confi... type contextKeyFake (line 17) | type contextKeyFake constant fakeNIDContext (line 20) | fakeNIDContext contextKeyFake = 1 function SetNIDContext (line 23) | func SetNIDContext(ctx context.Context, nid uuid.UUID) context.Context { FILE: oryx/contextx/default.go type Default (line 14) | type Default struct method Network (line 18) | func (d *Default) Network(_ context.Context, network uuid.UUID) uuid.U... method Config (line 25) | func (d *Default) Config(_ context.Context, config *configx.Provider) ... FILE: oryx/contextx/testhelpers.go type TestConfigProvider (line 17) | type TestConfigProvider struct method Network (line 31) | func (t *TestConfigProvider) Network(ctx context.Context, network uuid... method Config (line 35) | func (t *TestConfigProvider) Config(ctx context.Context, config *confi... type contextKey (line 21) | type contextKey function NewTestConfigProvider (line 24) | func NewTestConfigProvider(schema []byte, opts ...configx.OptionModifier... constant contextConfigKey (line 54) | contextConfigKey contextKey = 1 function WithConfigValue (line 60) | func WithConfigValue(ctx context.Context, key string, value any) context... function WithConfigValues (line 64) | func WithConfigValues(ctx context.Context, setValues ...map[string]any) ... type ConfigurableTestHandler (line 76) | type ConfigurableTestHandler struct method ServeHTTP (line 88) | func (t *ConfigurableTestHandler) ServeHTTP(w http.ResponseWriter, r *... method RegisterConfig (line 96) | func (t *ConfigurableTestHandler) RegisterConfig(config ...map[string]... method UseConfig (line 102) | func (t *ConfigurableTestHandler) UseConfig(r *http.Request, id uuid.U... method UseConfigValues (line 107) | func (t *ConfigurableTestHandler) UseConfigValues(r *http.Request, val... function NewConfigurableTestHandler (line 81) | func NewConfigurableTestHandler(h http.Handler) *ConfigurableTestHandler { type ConfigurableTestServer (line 111) | type ConfigurableTestServer struct method RoundTrip (line 131) | func (t *ConfigurableTestServer) RoundTrip(r *http.Request) (*http.Res... method Client (line 145) | func (t *ConfigurableTestServer) Client(ctx context.Context) *AutoCont... function NewConfigurableTestServer (line 117) | func NewConfigurableTestServer(h http.Handler) *ConfigurableTestServer { type AutoContextClient (line 139) | type AutoContextClient struct method RoundTrip (line 156) | func (c *AutoContextClient) RoundTrip(r *http.Request) (*http.Response... FILE: oryx/contextx/tree.go type ContextKey (line 11) | type ContextKey constant ValidContextKey (line 14) | ValidContextKey ContextKey = iota + 1 function TestRootContext (line 19) | func TestRootContext(t testing.TB) context.Context { function IsRootContext (line 23) | func IsRootContext(ctx context.Context) bool { FILE: oryx/corsx/check_origin.go function CheckOrigin (line 27) | func CheckOrigin(allowedOrigins []string, origin string) bool { FILE: oryx/corsx/cmd.go function HelpMessage (line 7) | func HelpMessage() string { FILE: oryx/corsx/middleware.go function ContextualizedMiddleware (line 24) | func ContextualizedMiddleware(provider func(context.Context) (opts cors.... FILE: oryx/corsx/normalize.go function NormalizeOrigins (line 9) | func NormalizeOrigins(origins []url.URL) []string { function NormalizeOriginStrings (line 18) | func NormalizeOriginStrings(origins []string) ([]string, error) { FILE: oryx/crdbx/readonly.go function SetTransactionReadOnly (line 14) | func SetTransactionReadOnly(c *pop.Connection) error { FILE: oryx/crdbx/staleness.go type ConsistencyRequestParameters (line 19) | type ConsistencyRequestParameters struct type ConsistencyLevel (line 44) | type ConsistencyLevel constant ConsistencyLevelUnset (line 48) | ConsistencyLevelUnset ConsistencyLevel = "" constant ConsistencyLevelStrong (line 50) | ConsistencyLevelStrong ConsistencyLevel = "strong" constant ConsistencyLevelEventual (line 52) | ConsistencyLevelEventual ConsistencyLevel = "eventual" function ConsistencyLevelFromRequest (line 56) | func ConsistencyLevelFromRequest(r *http.Request) ConsistencyLevel { function ConsistencyLevelFromString (line 62) | func ConsistencyLevelFromString(in string) ConsistencyLevel { function SetTransactionConsistency (line 75) | func SetTransactionConsistency(c *pop.Connection, level ConsistencyLevel... constant transactionFollowerReadTimestamp (line 84) | transactionFollowerReadTimestamp = "SET TRANSACTION AS OF SYSTEM TIME fo... function getTransactionConsistencyQuery (line 86) | func getTransactionConsistencyQuery(dialect string, level ConsistencyLev... FILE: oryx/dbal/canonicalize.go constant DriverMySQL (line 7) | DriverMySQL = "mysql" constant DriverCockroachDB (line 8) | DriverCockroachDB = "cockroach" FILE: oryx/dbal/driver.go function IsSQLite (line 11) | func IsSQLite(dsn string) bool { FILE: oryx/dbal/dsn.go function IsMemorySQLite (line 24) | func IsMemorySQLite(dsn string) bool { return sqliteMemoryRegexp.MatchSt... function NewSQLiteTestDatabase (line 30) | func NewSQLiteTestDatabase(t testing.TB) string { function NewSQLiteInMemoryDatabase (line 38) | func NewSQLiteInMemoryDatabase(name string) string { function NewSQLiteDatabase (line 49) | func NewSQLiteDatabase(name string) string { FILE: oryx/dbal/testhelpers.go function RestoreFromSchemaDump (line 26) | func RestoreFromSchemaDump(t testing.TB, c *pop.Connection, migrations f... FILE: oryx/decoderx/http.go type httpDecoderOptions (line 32) | type httpDecoderOptions struct type HTTPDecoderOption (line 46) | type HTTPDecoderOption type parseErrorStrategy (line 48) | type parseErrorStrategy constant httpContentTypeMultipartForm (line 52) | httpContentTypeMultipartForm = "multipart/form-data" constant httpContentTypeURLEncodedForm (line 53) | httpContentTypeURLEncodedForm = "application/x-www-form-urlencoded" constant httpContentTypeJSON (line 54) | httpContentTypeJSON = "application/json" constant ParseErrorIgnoreConversionErrors (line 64) | ParseErrorIgnoreConversionErrors parseErrorStrategy = iota + 1 constant ParseErrorUseEmptyValueOnConversionErrors (line 72) | ParseErrorUseEmptyValueOnConversionErrors constant ParseErrorReturnOnConversionErrors (line 79) | ParseErrorReturnOnConversionErrors function HTTPFormDecoder (line 86) | func HTTPFormDecoder() HTTPDecoderOption { function HTTPJSONDecoder (line 94) | func HTTPJSONDecoder() HTTPDecoderOption { function HTTPKeepRequestBody (line 103) | func HTTPKeepRequestBody(keep bool) HTTPDecoderOption { function HTTPDecoderSetValidatePayloads (line 110) | func HTTPDecoderSetValidatePayloads(validate bool) HTTPDecoderOption { function HTTPDecoderJSONFollowsFormFormat (line 119) | func HTTPDecoderJSONFollowsFormFormat() HTTPDecoderOption { function HTTPDecoderAllowedMethods (line 127) | func HTTPDecoderAllowedMethods(method ...string) HTTPDecoderOption { function HTTPDecoderUseQueryAndBody (line 135) | func HTTPDecoderUseQueryAndBody() HTTPDecoderOption { function HTTPDecoderSetIgnoreParseErrorsStrategy (line 149) | func HTTPDecoderSetIgnoreParseErrorsStrategy(strategy parseErrorStrategy... function HTTPDecoderSetMaxCircularReferenceDepth (line 156) | func HTTPDecoderSetMaxCircularReferenceDepth(depth uint8) HTTPDecoderOpt... function HTTPJSONSchemaCompiler (line 164) | func HTTPJSONSchemaCompiler(ref string, compiler *jsonschema.Compiler) H... function HTTPRawJSONSchemaCompiler (line 177) | func HTTPRawJSONSchemaCompiler(raw []byte) (HTTPDecoderOption, error) { function MustHTTPRawJSONSchemaCompiler (line 193) | func MustHTTPRawJSONSchemaCompiler(raw []byte) HTTPDecoderOption { function newHTTPDecoderOptions (line 201) | func newHTTPDecoderOptions(fs []HTTPDecoderOption) *httpDecoderOptions { function validateRequest (line 218) | func validateRequest(r *http.Request, c *httpDecoderOptions) error { function validatePayload (line 238) | func validatePayload(ctx context.Context, raw json.RawMessage, c *httpDe... function Decode (line 263) | func Decode(r *http.Request, destination any, opts ...HTTPDecoderOption)... function requestBody (line 283) | func requestBody(r *http.Request, o *httpDecoderOptions) (reader io.Read... function decodeJSONForm (line 303) | func decodeJSONForm(r *http.Request, destination interface{}, o *httpDec... function decodeForm (line 353) | func decodeForm(r *http.Request, destination interface{}, o *httpDecoder... function decodeURLValues (line 393) | func decodeURLValues(values url.Values, paths []jsonschemax.Path, o *htt... function decodeJSON (line 537) | func decodeJSON(r *http.Request, destination interface{}, o *httpDecoder... FILE: oryx/errorsx/errors.go function Cause (line 24) | func Cause(err error) error { function WithStack (line 42) | func WithStack(err error) error { type StatusCodeCarrier (line 51) | type StatusCodeCarrier interface type RequestIDCarrier (line 57) | type RequestIDCarrier interface type ReasonCarrier (line 63) | type ReasonCarrier interface type DebugCarrier (line 69) | type DebugCarrier interface type StatusCarrier (line 75) | type StatusCarrier interface type DetailsCarrier (line 81) | type DetailsCarrier interface type IDCarrier (line 87) | type IDCarrier interface type StackTracer (line 92) | type StackTracer interface function GetCodeFromHerodotError (line 96) | func GetCodeFromHerodotError(err error) (code int, ok bool) { FILE: oryx/fetcher/fetcher.go type Fetcher (line 27) | type Fetcher struct method FetchContext (line 87) | func (f *Fetcher) FetchContext(ctx context.Context, source string) (*b... method FetchBytes (line 97) | func (f *Fetcher) FetchBytes(ctx context.Context, source string) ([]by... method fetchRemote (line 114) | func (f *Fetcher) fetchRemote(ctx context.Context, source string) (b [... method fetchFile (line 159) | func (f *Fetcher) fetchFile(source string) ([]byte, error) { type opts (line 34) | type opts struct function WithClient (line 44) | func WithClient(hc *retryablehttp.Client) Modifier { function WithMaxHTTPMaxBytes (line 52) | func WithMaxHTTPMaxBytes(limit int64) Modifier { function WithCache (line 58) | func WithCache(cache *ristretto.Cache[[]byte, []byte], ttl time.Duration... function newOpts (line 68) | func newOpts() *opts { type Modifier (line 74) | type Modifier function NewFetcher (line 77) | func NewFetcher(opts ...Modifier) *Fetcher { FILE: oryx/flagx/flagx.go function NewFlagSet (line 16) | func NewFlagSet(name string) *pflag.FlagSet { function MustGetBool (line 22) | func MustGetBool(cmd *cobra.Command, name string) bool { function MustGetString (line 32) | func MustGetString(cmd *cobra.Command, name string) string { function MustGetDuration (line 42) | func MustGetDuration(cmd *cobra.Command, name string) time.Duration { function MustGetStringSlice (line 52) | func MustGetStringSlice(cmd *cobra.Command, name string) []string { function MustGetStringArray (line 62) | func MustGetStringArray(cmd *cobra.Command, name string) []string { function MustGetStringToStringMap (line 72) | func MustGetStringToStringMap(cmd *cobra.Command, name string) map[strin... function MustGetInt (line 82) | func MustGetInt(cmd *cobra.Command, name string) int { function MustGetUint8 (line 92) | func MustGetUint8(cmd *cobra.Command, name string) uint8 { function MustGetUint32 (line 102) | func MustGetUint32(cmd *cobra.Command, name string) uint32 { FILE: oryx/fsx/dirhash.go function DirHash (line 13) | func DirHash(dir fs.FS) ([]byte, error) { FILE: oryx/fsx/merge.go type mergedFS (line 16) | type mergedFS method Open (line 38) | func (m mergedFS) Open(name string) (fs.File, error) { method Stat (line 58) | func (m mergedFS) Stat(name string) (fs.FileInfo, error) { method ReadDir (line 88) | func (m mergedFS) ReadDir(name string) ([]fs.DirEntry, error) { type mergedFile (line 17) | type mergedFile struct method Stat (line 164) | func (m *mergedFile) Stat() (fs.FileInfo, error) { method Read (line 168) | func (m *mergedFile) Read(bytes []byte) (int, error) { method Close (line 172) | func (m *mergedFile) Close() error { method ReadDir (line 184) | func (m *mergedFile) ReadDir(n int) ([]fs.DirEntry, error) { type mergedFileInfo (line 21) | type mergedFileInfo method Name (line 109) | func (m mergedFileInfo) Name() string { method Size (line 113) | func (m mergedFileInfo) Size() int64 { method Mode (line 117) | func (m mergedFileInfo) Mode() fs.FileMode { method ModTime (line 121) | func (m mergedFileInfo) ModTime() time.Time { method IsDir (line 125) | func (m mergedFileInfo) IsDir() bool { method Sys (line 129) | func (m mergedFileInfo) Sys() interface{} { type dirEntries (line 22) | type dirEntries method Len (line 133) | func (d dirEntries) Len() int { method Less (line 137) | func (d dirEntries) Less(i, j int) bool { method Swap (line 141) | func (d dirEntries) Swap(i, j int) { method clean (line 145) | func (d *dirEntries) clean() { function Merge (line 34) | func Merge(fss ...fs.FS) fs.FS { FILE: oryx/hasherx/hash_comparator.go function Compare (line 21) | func Compare(ctx context.Context, password []byte, hash []byte) error { function CompareBcrypt (line 36) | func CompareBcrypt(_ context.Context, password []byte, hash []byte) error { function CompareArgon2id (line 49) | func CompareArgon2id(_ context.Context, password []byte, hash []byte) er... function CompareArgon2i (line 74) | func CompareArgon2i(_ context.Context, password []byte, hash []byte) err... function ComparePbkdf2 (line 99) | func ComparePbkdf2(_ context.Context, password []byte, hash []byte) error { function IsBcryptHash (line 126) | func IsBcryptHash(hash []byte) bool { function IsArgon2idHash (line 130) | func IsArgon2idHash(hash []byte) bool { function IsArgon2iHash (line 134) | func IsArgon2iHash(hash []byte) bool { function IsPbkdf2Hash (line 138) | func IsPbkdf2Hash(hash []byte) bool { function decodeArgon2idHash (line 142) | func decodeArgon2idHash(encodedHash string) (p *Argon2Config, salt, hash... function decodePbkdf2Hash (line 188) | func decodePbkdf2Hash(encodedHash string) (p *PBKDF2Config, salt, hash [... FILE: oryx/hasherx/hasher.go type Hasher (line 8) | type Hasher interface type HashProvider (line 16) | type HashProvider interface constant tracingComponent (line 20) | tracingComponent = "github.com/ory/kratos/hash" FILE: oryx/hasherx/hasher_argon2.go type Argon2Config (line 31) | type Argon2Config struct type Argon2 (line 57) | type Argon2 struct method Generate (line 79) | func (h *Argon2) Generate(ctx context.Context, password []byte) (_ []b... method Understands (line 116) | func (h *Argon2) Understands(hash []byte) bool { type Argon2Configurator (line 61) | type Argon2Configurator interface function NewHasherArgon2 (line 66) | func NewHasherArgon2(c Argon2Configurator) *Argon2 { function toKB (line 70) | func toKB(mem bytesize.ByteSize) (uint32, error) { FILE: oryx/hasherx/hasher_bcrypt.go type Bcrypt (line 19) | type Bcrypt struct method Generate (line 37) | func (h *Bcrypt) Generate(ctx context.Context, password []byte) (hash ... method Understands (line 66) | func (h *Bcrypt) Understands(hash []byte) bool { type BCryptConfig (line 23) | type BCryptConfig struct type BCryptConfigurator (line 27) | type BCryptConfigurator interface function NewHasherBcrypt (line 32) | func NewHasherBcrypt(c BCryptConfigurator) *Bcrypt { function validateBcryptPasswordLength (line 55) | func validateBcryptPasswordLength(password []byte) error { FILE: oryx/hasherx/hasher_pbkdf2.go type PBKDF2 (line 25) | type PBKDF2 struct method Generate (line 53) | func (h *PBKDF2) Generate(ctx context.Context, password []byte) (hash ... method Understands (line 84) | func (h *PBKDF2) Understands(hash []byte) bool { type PBKDF2Config (line 30) | type PBKDF2Config struct type PBKDF2Configurator (line 42) | type PBKDF2Configurator interface function NewHasherPBKDF2 (line 48) | func NewHasherPBKDF2(c PBKDF2Configurator) *PBKDF2 { function getPseudorandomFunctionForPbkdf2 (line 88) | func getPseudorandomFunctionForPbkdf2(alg string) func() hash.Hash { FILE: oryx/healthx/doc.go type swaggerHealthStatus (line 12) | type swaggerHealthStatus struct type swaggerNotReadyStatus (line 20) | type swaggerNotReadyStatus struct method Error (line 25) | func (s swaggerNotReadyStatus) Error() string { type swaggerVersion (line 34) | type swaggerVersion struct FILE: oryx/healthx/handler.go constant AliveCheckPath (line 14) | AliveCheckPath = "/health/alive" constant ReadyCheckPath (line 16) | ReadyCheckPath = "/health/ready" constant VersionPath (line 18) | VersionPath = "/version" function RoutesToObserve (line 22) | func RoutesToObserve() []string { type ReadyChecker (line 31) | type ReadyChecker type ReadyCheckers (line 34) | type ReadyCheckers function NoopReadyChecker (line 37) | func NoopReadyChecker() error { type Handler (line 42) | type Handler struct method SetHealthRoutes (line 72) | func (h *Handler) SetHealthRoutes(r router, shareErrors bool, opts ...... method SetVersionRoutes (line 91) | func (h *Handler) SetVersionRoutes(r router, opts ...Options) { method Alive (line 128) | func (h *Handler) Alive() http.Handler { method Ready (line 165) | func (h *Handler) Ready(shareErrors bool) http.Handler { method Version (line 211) | func (h *Handler) Version() http.Handler { type options (line 48) | type options struct type Options (line 52) | type Options function NewHandler (line 55) | func NewHandler( type router (line 67) | type router interface type unexpectedError (line 140) | type unexpectedError function WithMiddleware (line 221) | func WithMiddleware(h func(http.Handler) http.Handler) Options { FILE: oryx/httprouterx/router.go constant AdminPrefix (line 15) | AdminPrefix = "/admin" type router (line 18) | type router struct method GET (line 77) | func (r *router) GET(route string, handle http.HandlerFunc) { method HEAD (line 81) | func (r *router) HEAD(route string, handle http.HandlerFunc) { method POST (line 85) | func (r *router) POST(route string, handle http.HandlerFunc) { method PUT (line 89) | func (r *router) PUT(route string, handle http.HandlerFunc) { method PATCH (line 93) | func (r *router) PATCH(route string, handle http.HandlerFunc) { method DELETE (line 97) | func (r *router) DELETE(route string, handle http.HandlerFunc) { method Handler (line 101) | func (r *router) Handler(method, route string, handler http.Handler) { method handle (line 105) | func (r *router) handle(method string, route string, handler http.Hand... method ServeHTTP (line 113) | func (r *router) ServeHTTP(w http.ResponseWriter, req *http.Request) {... type RouterAdmin (line 23) | type RouterAdmin struct method ToPublic (line 57) | func (r *RouterAdmin) ToPublic() *RouterPublic { type RouterPublic (line 24) | type RouterPublic struct type Router (line 26) | type Router interface function newRouter (line 38) | func newRouter(metrics *prometheusx.HTTPMetrics) *router { function NewRouter (line 46) | func NewRouter(metrics *prometheusx.HTTPMetrics) Router { return newRout... function NewRouterAdmin (line 49) | func NewRouterAdmin(metrics *prometheusx.HTTPMetrics) *RouterAdmin { function NewTestRouterAdmin (line 53) | func NewTestRouterAdmin(_ testing.TB) *RouterAdmin { return Ne... function NewTestRouterAdminWithPrefix (line 54) | func NewTestRouterAdminWithPrefix(_ testing.TB) *RouterAdmin { return Ne... function NewTestRouterPublic (line 55) | func NewTestRouterPublic(_ testing.TB) *RouterPublic { return Ne... function NewRouterPublic (line 66) | func NewRouterPublic(metrics *prometheusx.HTTPMetrics) *RouterPublic { function NewRouterAdminWithPrefix (line 71) | func NewRouterAdminWithPrefix(metricsManager *prometheusx.HTTPMetrics) *... function TrimTrailingSlashNegroni (line 115) | func TrimTrailingSlashNegroni(rw http.ResponseWriter, r *http.Request, n... function NoCacheNegroni (line 121) | func NoCacheNegroni(rw http.ResponseWriter, r *http.Request, next http.H... function AddAdminPrefixIfNotPresentNegroni (line 129) | func AddAdminPrefixIfNotPresentNegroni(rw http.ResponseWriter, r *http.R... FILE: oryx/httpx/assert.go function GetResponseMeta (line 10) | func GetResponseMeta(w http.ResponseWriter) (status, size int) { FILE: oryx/httpx/chan_handler.go type chanHandler (line 8) | type chanHandler method ServeHTTP (line 12) | func (c chanHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { function NewChanHandler (line 18) | func NewChanHandler(buf int) (http.Handler, chan<- http.HandlerFunc) { FILE: oryx/httpx/client_info.go type GeoLocation (line 13) | type GeoLocation struct function GetClientIPAddressesWithoutInternalIPs (line 21) | func GetClientIPAddressesWithoutInternalIPs(ipAddresses []string) (strin... function ClientIP (line 36) | func ClientIP(r *http.Request) string { function parseFloatHeaderValue (line 51) | func parseFloatHeaderValue(headerValue string) *float64 { function ClientGeoLocation (line 64) | func ClientGeoLocation(r *http.Request) *GeoLocation { FILE: oryx/httpx/content_type.go function HasContentType (line 17) | func HasContentType(r *http.Request, mimetypes ...string) bool { FILE: oryx/httpx/gzip_server.go type CompressionRequestReader (line 14) | type CompressionRequestReader struct method ServeHTTP (line 32) | func (c *CompressionRequestReader) ServeHTTP(w http.ResponseWriter, r ... function defaultCompressionErrorHandler (line 18) | func defaultCompressionErrorHandler(w http.ResponseWriter, r *http.Reque... function NewCompressionRequestReader (line 22) | func NewCompressionRequestReader(eh func(w http.ResponseWriter, r *http.... FILE: oryx/httpx/private_ip_validator.go type ErrPrivateIPAddressDisallowed (line 17) | type ErrPrivateIPAddressDisallowed function DisallowIPPrivateAddresses (line 26) | func DisallowIPPrivateAddresses(ipOrHostnameOrURL string) error { FILE: oryx/httpx/request.go function NewRequestJSON (line 18) | func NewRequestJSON(method, url string, data interface{}) (*http.Request... function NewRequestForm (line 32) | func NewRequestForm(method, url string, data url.Values) (*http.Request,... function MustNewRequest (line 42) | func MustNewRequest(method, url string, body io.Reader, contentType stri... FILE: oryx/httpx/resilient_client.go type resilientOptions (line 20) | type resilientOptions struct function newResilientOptions (line 30) | func newResilientOptions() *resilientOptions { type ResilientOptions (line 41) | type ResilientOptions function ResilientClientWithMaxRetry (line 44) | func ResilientClientWithMaxRetry(retryMax int) ResilientOptions { function ResilientClientWithMinxRetryWait (line 49) | func ResilientClientWithMinxRetryWait(retryWaitMin time.Duration) Resili... function ResilientClientWithMaxRetryWait (line 54) | func ResilientClientWithMaxRetryWait(retryWaitMax time.Duration) Resilie... function ResilientClientWithConnectionTimeout (line 59) | func ResilientClientWithConnectionTimeout(connTimeout time.Duration) Res... function ResilientClientWithLogger (line 64) | func ResilientClientWithLogger(l *logrusx.Logger) ResilientOptions { function ResilientClientDisallowInternalIPs (line 69) | func ResilientClientDisallowInternalIPs() ResilientOptions { function ResilientClientAllowInternalIPRequestsTo (line 75) | func ResilientClientAllowInternalIPRequestsTo(urlGlobs ...string) Resili... function NewResilientClient (line 80) | func NewResilientClient(opts ...ResilientOptions) *retryablehttp.Client { function SetOAuth2 (line 115) | func SetOAuth2(ctx context.Context, cl *retryablehttp.Client, c OAuth2Co... type OAuth2Config (line 122) | type OAuth2Config interface type ClientProvider (line 125) | type ClientProvider interface type WriterProvider (line 128) | type WriterProvider interface FILE: oryx/httpx/ssrf.go type noInternalIPRoundTripper (line 22) | type noInternalIPRoundTripper struct method RoundTrip (line 28) | func (n noInternalIPRoundTripper) RoundTrip(request *http.Request) (*h... function init (line 50) | func init() { function init (line 59) | func init() { function init (line 70) | func init() { function init (line 90) | func init() { function newDefaultTransport (line 112) | func newDefaultTransport() (*http.Transport, *net.Dialer) { function OTELTraceTransport (line 129) | func OTELTraceTransport(t *http.Transport) http.RoundTripper { FILE: oryx/httpx/transports.go function WrapTransportWithHeader (line 9) | func WrapTransportWithHeader(parent http.RoundTripper, h http.Header) *T... function NewTransportWithHeader (line 17) | func NewTransportWithHeader(h http.Header) *TransportWithHeader { type TransportWithHeader (line 25) | type TransportWithHeader struct method RoundTrip (line 31) | func (ct *TransportWithHeader) RoundTrip(req *http.Request) (*http.Res... function NewTransportWithHost (line 39) | func NewTransportWithHost(host string) *TransportWithHost { function WrapRoundTripperWithHost (line 47) | func WrapRoundTripperWithHost(parent http.RoundTripper, host string) *Tr... type TransportWithHost (line 55) | type TransportWithHost struct method RoundTrip (line 61) | func (ct *TransportWithHost) RoundTrip(req *http.Request) (*http.Respo... FILE: oryx/httpx/url.go function IncomingRequestURL (line 13) | func IncomingRequestURL(r *http.Request) *url.URL { FILE: oryx/httpx/wait_for.go function WaitForEndpoint (line 18) | func WaitForEndpoint(ctx context.Context, endpoint string, opts ...retry... function WaitForEndpointWithClient (line 23) | func WaitForEndpointWithClient(ctx context.Context, client *http.Client,... FILE: oryx/ioutilx/pkger.go function MustReadAll (line 11) | func MustReadAll(r io.Reader) []byte { FILE: oryx/ipx/cidr.go function Hosts (line 11) | func Hosts(prefix netip.Prefix) iter.Seq[netip.Addr] { FILE: oryx/ipx/ip_validator.go function IsAssociatedIPAllowedWhenSet (line 19) | func IsAssociatedIPAllowedWhenSet(ipOrHostnameOrURL string) error { function AreAllAssociatedIPsAllowed (line 27) | func AreAllAssociatedIPsAllowed(pairs map[string]string) error { function IsAssociatedIPAllowed (line 46) | func IsAssociatedIPAllowed(ipOrHostnameOrURL string) error { FILE: oryx/josex/encoding.go type Base64Reader (line 25) | type Base64Reader struct method Read (line 29) | func (r Base64Reader) Read(p []byte) (n int, err error) { FILE: oryx/josex/generate.go function NewSigningKey (line 33) | func NewSigningKey(alg jose.SignatureAlgorithm, bits int) (crypto.Public... function NewEncryptionKey (line 87) | func NewEncryptionKey(alg jose.KeyAlgorithm, bits int) (crypto.PublicKey... FILE: oryx/josex/public.go function ToPublicKey (line 10) | func ToPublicKey(k *jose.JSONWebKey) jose.JSONWebKey { FILE: oryx/josex/utils.go function LoadJSONWebKey (line 29) | func LoadJSONWebKey(json []byte, pub bool) (*jose.JSONWebKey, error) { function LoadPublicKey (line 45) | func LoadPublicKey(data []byte) (interface{}, error) { function LoadPrivateKey (line 73) | func LoadPrivateKey(data []byte) (interface{}, error) { FILE: oryx/jsonnetsecure/cmd.go constant GiB (line 16) | GiB uint64 = 1024 * 1024 * 1024 constant virtualMemoryLimitBytes (line 23) | virtualMemoryLimitBytes = 2 * GiB function NewJsonnetCmd (line 26) | func NewJsonnetCmd() *cobra.Command { function scan (line 67) | func scan(w io.Writer, r io.Reader) error { function eval (line 82) | func eval(input []byte) (json string, err error) { FILE: oryx/jsonnetsecure/cmd/root.go function main (line 14) | func main() { FILE: oryx/jsonnetsecure/jsonnet.go type VM (line 19) | type VM interface type kv (line 27) | type kv struct type processParameters (line 30) | type processParameters struct method EncodeTo (line 45) | func (pp *processParameters) EncodeTo(w io.Writer) error { method Decode (line 49) | func (pp *processParameters) Decode(d []byte) error { type vmOptions (line 35) | type vmOptions struct type Option (line 42) | type Option function newVMOptions (line 53) | func newVMOptions() *vmOptions { function WithContext (line 61) | func WithContext(ctx context.Context) Option { function WithProcessPool (line 67) | func WithProcessPool(p Pool) Option { function WithJsonnetBinary (line 74) | func WithJsonnetBinary(jsonnetBinaryPath string) Option { function WithProcessArgs (line 80) | func WithProcessArgs(args ...string) Option { function MakeSecureVM (line 86) | func MakeSecureVM(opts ...Option) VM { type ErrorImporter (line 102) | type ErrorImporter struct method Import (line 106) | func (importer *ErrorImporter) Import(importedFrom, importedPath strin... function JsonnetTestBinary (line 110) | func JsonnetTestBinary(t testing.TB) string { FILE: oryx/jsonnetsecure/jsonnet_pool.go constant KiB (line 38) | KiB = 1024 constant jsonnetOutputLimit (line 39) | jsonnetOutputLimit = 512 * KiB constant jsonnetErrLimit (line 40) | jsonnetErrLimit = 1 * KiB type processPoolVM (line 44) | type processPoolVM struct method EvaluateAnonymousSnippet (line 220) | func (vm *processPoolVM) EvaluateAnonymousSnippet(filename string, sni... method ExtCode (line 270) | func (vm *processPoolVM) ExtCode(key string, val string) { method ExtVar (line 274) | func (vm *processPoolVM) ExtVar(key string, val string) { method TLACode (line 278) | func (vm *processPoolVM) TLACode(key string, val string) { method TLAVar (line 282) | func (vm *processPoolVM) TLAVar(key string, val string) { type Pool (line 51) | type Pool interface type pool (line 55) | type pool struct method private (line 106) | func (*pool) private() {} method Close (line 108) | func (p *pool) Close() { type worker (line 58) | type worker struct method destroy (line 191) | func (w worker) destroy() { method eval (line 197) | func (w worker) eval(ctx context.Context, processParams []byte) (outpu... type contextKeyType (line 64) | type contextKeyType function NewProcessPool (line 77) | func NewProcessPool(size int) Pool { function newWorker (line 112) | func newWorker(ctx context.Context) (_ worker, err error) { function NewProcessPoolVM (line 257) | func NewProcessPoolVM(opts *vmOptions) VM { FILE: oryx/jsonnetsecure/limit_unix.go function SetVirtualMemoryLimit (line 16) | func SetVirtualMemoryLimit(limitBytes uint64) error { FILE: oryx/jsonnetsecure/limit_windows.go function SetVirtualMemoryLimit (line 10) | func SetVirtualMemoryLimit(limitBytes uint64) error { FILE: oryx/jsonnetsecure/null.go function splitNull (line 8) | func splitNull(data []byte, atEOF bool) (advance int, token []byte, err ... FILE: oryx/jsonnetsecure/provider.go type VMProvider (line 14) | type VMProvider interface type TestProvider (line 22) | type TestProvider struct method JsonnetVM (line 41) | func (p *TestProvider) JsonnetVM(ctx context.Context) (VM, error) { type DefaultProvider (line 29) | type DefaultProvider struct method JsonnetVM (line 49) | func (p *DefaultProvider) JsonnetVM(ctx context.Context) (VM, error) { function NewTestProvider (line 35) | func NewTestProvider(t testing.TB) *TestProvider { FILE: oryx/jsonnetx/format.go function NewFormatCommand (line 17) | func NewFormatCommand() *cobra.Command { FILE: oryx/jsonnetx/lint.go function NewLintCommand (line 18) | func NewLintCommand() *cobra.Command { FILE: oryx/jsonnetx/root.go constant GlobHelp (line 10) | GlobHelp = `Glob patterns supports the following special terms in the pa... function RegisterCommandRecursive (line 42) | func RegisterCommandRecursive(parent *cobra.Command) { function NewRootCommand (line 49) | func NewRootCommand() *cobra.Command { FILE: oryx/jsonschemax/error.go type ErrorType (line 11) | type ErrorType constant ErrorTypeMissing (line 15) | ErrorTypeMissing ErrorType = iota + 1 type Error (line 19) | type Error struct function NewFromSanthoshError (line 34) | func NewFromSanthoshError(validationError jsonschema.ValidationError) *E... FILE: oryx/jsonschemax/keys.go type byName (line 24) | type byName method Len (line 31) | func (s byName) Len() int { return len(s) } method Swap (line 32) | func (s byName) Swap(i, j int) { s[i], s[j] = s[j], s[i] } method Less (line 33) | func (s byName) Less(i, j int) bool { return s[i].Name < s[j].Name } type PathEnhancer (line 25) | type PathEnhancer interface type TypeHint (line 28) | type TypeHint constant String (line 36) | String TypeHint = iota + 1 constant Float (line 37) | Float constant Int (line 38) | Int constant Bool (line 39) | Bool constant JSON (line 40) | JSON constant Nil (line 41) | Nil constant BoolSlice (line 43) | BoolSlice constant StringSlice (line 44) | StringSlice constant IntSlice (line 45) | IntSlice constant FloatSlice (line 46) | FloatSlice type Path (line 50) | type Path struct function ListPathsBytes (line 102) | func ListPathsBytes(ctx context.Context, raw json.RawMessage, maxRecursi... function ListPathsWithRecursion (line 115) | func ListPathsWithRecursion(ctx context.Context, ref string, compiler *j... function ListPaths (line 121) | func ListPaths(ctx context.Context, ref string, compiler *jsonschema.Com... function ListPathsWithArraysIncluded (line 128) | func ListPathsWithArraysIncluded(ctx context.Context, ref string, compil... function ListPathsWithInitializedSchema (line 135) | func ListPathsWithInitializedSchema(schema *jsonschema.Schema) ([]Path, ... function ListPathsWithInitializedSchemaAndArraysIncluded (line 143) | func ListPathsWithInitializedSchemaAndArraysIncluded(schema *jsonschema.... function runPathsFromCompiler (line 147) | func runPathsFromCompiler(ctx context.Context, ref string, compiler *jso... function runPaths (line 162) | func runPaths(schema *jsonschema.Schema, maxRecursion int16, includeArra... function makeUnique (line 173) | func makeUnique(in byName) (byName, error) { function appendPointer (line 203) | func appendPointer(in map[string]bool, pointer *jsonschema.Schema) map[s... function listPaths (line 212) | func listPaths(schema *jsonschema.Schema, parent *jsonschema.Schema, par... FILE: oryx/jsonschemax/pointer.go function JSONPointerToDotNotation (line 14) | func JSONPointerToDotNotation(pointer string) (string, error) { FILE: oryx/jsonschemax/print.go function FormatValidationErrorForCLI (line 17) | func FormatValidationErrorForCLI(w io.Writer, conf []byte, err error) { function FormatError (line 48) | func FormatError(e *jsonschema.ValidationError) (string, string) { FILE: oryx/jsonx/debug.go function Anonymize (line 16) | func Anonymize(data []byte, except ...string) []byte { function anonymize (line 32) | func anonymize(obj map[string]any, except ...string) { function jsonType (line 59) | func jsonType(v any) string { FILE: oryx/jsonx/decoder.go function NewStrictDecoder (line 12) | func NewStrictDecoder(b io.Reader) *json.Decoder { FILE: oryx/jsonx/embed.go type options (line 20) | type options struct type OptionsModifier (line 25) | type OptionsModifier function newOptions (line 27) | func newOptions(o []OptionsModifier) *options { function WithIgnoreKeys (line 35) | func WithIgnoreKeys(keys ...string) OptionsModifier { function WithOnlySchemes (line 41) | func WithOnlySchemes(scheme ...string) OptionsModifier { function EmbedSources (line 47) | func EmbedSources(in json.RawMessage, opts ...OptionsModifier) (out json... function embed (line 56) | func embed(parsed gjson.Result, parents []string, result *json.RawMessag... FILE: oryx/jsonx/flatten.go function Flatten (line 15) | func Flatten(raw json.RawMessage) map[string]interface{} { function flatten (line 26) | func flatten(parsed gjson.Result, parents []string, flattened map[string... FILE: oryx/jsonx/get.go function jsonKey (line 14) | func jsonKey(f reflect.StructField) *string { function AllValidJSONKeys (line 30) | func AllValidJSONKeys(s interface{}) (keys []string) { function ParseEnsureKeys (line 57) | func ParseEnsureKeys(original interface{}, raw []byte) *Result { type Result (line 64) | type Result struct method GetRequireValidKey (line 70) | func (r *Result) GetRequireValidKey(t require.TestingT, key string) gj... function GetRequireValidKey (line 75) | func GetRequireValidKey(t require.TestingT, original interface{}, raw []... FILE: oryx/jsonx/helpers.go function TestMarshalJSONString (line 13) | func TestMarshalJSONString(t *testing.T, i interface{}) string { FILE: oryx/jsonx/patch.go function isUnsupported (line 23) | func isUnsupported(op jsonpatch.Operation) bool { function isElementAccess (line 29) | func isElementAccess(path string) bool { function ApplyJSONPatch (line 50) | func ApplyJSONPatch[T any](p json.RawMessage, object T, denyPaths ...str... FILE: oryx/jwksx/fetcher.go type Fetcher (line 18) | type Fetcher struct method GetKey (line 39) | func (f *Fetcher) GetKey(kid string) (*jose.JSONWebKey, error) { function NewFetcher (line 28) | func NewFetcher(remote string) *Fetcher { FILE: oryx/jwksx/fetcher_v2.go type fetcherNextOptions (line 31) | type fetcherNextOptions struct type FetcherNext (line 38) | type FetcherNext struct method ResolveKey (line 80) | func (f *FetcherNext) ResolveKey(ctx context.Context, locations string... method ResolveKeyFromLocations (line 84) | func (f *FetcherNext) ResolveKeyFromLocations(ctx context.Context, loc... method fetch (line 137) | func (f *FetcherNext) fetch(ctx context.Context, location string, opts... type FetcherNextOption (line 42) | type FetcherNextOption function NewFetcherNext (line 46) | func NewFetcherNext(cache *ristretto.Cache[[]byte, jwk.Set]) *FetcherNext { function WithForceKID (line 53) | func WithForceKID(kid string) FetcherNextOption { function WithCacheTTL (line 60) | func WithCacheTTL(ttl time.Duration) FetcherNextOption { function WithCacheEnabled (line 67) | func WithCacheEnabled() FetcherNextOption { function WithHTTPClient (line 74) | func WithHTTPClient(c *retryablehttp.Client) FetcherNextOption { FILE: oryx/jwksx/generator.go function GenerateSigningKeys (line 22) | func GenerateSigningKeys(id, alg string, bits int) (*jose.JSONWebKeySet,... function GenerateSigningKeysAvailableAlgorithms (line 46) | func GenerateSigningKeysAvailableAlgorithms() []string { function generate (line 55) | func generate(alg jose.SignatureAlgorithm, bits int) (crypto.PrivateKey,... FILE: oryx/jwtmiddleware/middleware.go type Middleware (line 24) | type Middleware struct method NegroniHandler (line 142) | func (h *Middleware) NegroniHandler() negroni.Handler { method ServeHTTP (line 146) | func (h *Middleware) ServeHTTP(w http.ResponseWriter, r *http.Request,... type middlewareOptions (line 30) | type middlewareOptions struct type MiddlewareOption (line 37) | type MiddlewareOption function SessionFromContext (line 39) | func SessionFromContext(ctx context.Context) (json.RawMessage, error) { function MiddlewareDebugEnabled (line 58) | func MiddlewareDebugEnabled() MiddlewareOption { function MiddlewareExcludePaths (line 64) | func MiddlewareExcludePaths(paths ...string) MiddlewareOption { function MiddlewareAllowSigningMethod (line 70) | func MiddlewareAllowSigningMethod(method jwt.SigningMethod) MiddlewareOp... function MiddlewareErrorWriter (line 76) | func MiddlewareErrorWriter(w herodot.Writer) MiddlewareOption { function NewMiddleware (line 82) | func NewMiddleware( FILE: oryx/jwtx/claims.go type Claims (line 15) | type Claims struct function ParseMapStringInterfaceClaims (line 39) | func ParseMapStringInterfaceClaims(claims map[string]interface{}) *Claims { function ParseMapInterfaceInterfaceClaims (line 48) | func ParseMapInterfaceInterfaceClaims(claims map[interface{}]interface{}... FILE: oryx/logrusx/helper.go type Logger (line 26) | type Logger struct method Logrus (line 40) | func (l *Logger) Logrus() *logrus.Logger { method NewEntry (line 44) | func (l *Logger) NewEntry() *Logger { method WithContext (line 50) | func (l *Logger) WithContext(ctx context.Context) *Logger { method HTTPHeadersRedacted (line 56) | func (l *Logger) HTTPHeadersRedacted(h http.Header) map[string]any { method WithRequest (line 88) | func (l *Logger) WithRequest(r *http.Request) *Logger { method WithSpanFromContext (line 126) | func (l *Logger) WithSpanFromContext(ctx context.Context) *Logger { method Logf (line 142) | func (l *Logger) Logf(level logrus.Level, format string, args ...any) { method Tracef (line 160) | func (l *Logger) Tracef(format string, args ...any) { method Debugf (line 164) | func (l *Logger) Debugf(format string, args ...any) { method Infof (line 168) | func (l *Logger) Infof(format string, args ...any) { method Warnf (line 172) | func (l *Logger) Warnf(format string, args ...any) { method Errorf (line 176) | func (l *Logger) Errorf(format string, args ...any) { method Fatalf (line 180) | func (l *Logger) Fatalf(format string, args ...any) { method Panicf (line 185) | func (l *Logger) Panicf(format string, args ...any) { method WithFields (line 189) | func (l *Logger) WithFields(f logrus.Fields) *Logger { method WithField (line 195) | func (l *Logger) WithField(key string, value any) *Logger { method maybeRedact (line 201) | func (l *Logger) maybeRedact(value any) any { method WithSensitiveField (line 211) | func (l *Logger) WithSensitiveField(key string, value any) *Logger { method WithError (line 215) | func (l *Logger) WithError(err error) *Logger { method StdLogger (line 250) | func (l *Logger) StdLogger(lvl logrus.Level) *log.Logger { type Provider (line 33) | type Provider interface type writer (line 254) | type writer struct method Write (line 259) | func (w writer) Write(p []byte) (n int, err error) { FILE: oryx/logrusx/logrus.go type options (line 25) | type options struct type Option (line 38) | type Option type nullConfigurator (line 39) | type nullConfigurator struct method Bool (line 201) | func (c *nullConfigurator) Bool(_ string) bool { return false } method String (line 202) | func (c *nullConfigurator) String(_ string) string { return "" } method Strings (line 203) | func (c *nullConfigurator) Strings(_ string) []string { return []strin... type configurator (line 40) | type configurator interface constant ConfigSchemaID (line 50) | ConfigSchemaID = "ory://logging-config" function AddConfigSchema (line 54) | func AddConfigSchema(c interface { function newLogger (line 61) | func newLogger(parent *logrus.Logger, o *options) *logrus.Logger { function setLevel (line 82) | func setLevel(l *logrus.Logger, o *options) { function setFormatter (line 96) | func setFormatter(l *logrus.Logger, o *options) { function ForceLevel (line 127) | func ForceLevel(level logrus.Level) Option { function ForceFormatter (line 133) | func ForceFormatter(formatter logrus.Formatter) Option { function WithConfigurator (line 139) | func WithConfigurator(c configurator) Option { function ForceFormat (line 145) | func ForceFormat(format string) Option { function WithHook (line 151) | func WithHook(hook logrus.Hook) Option { function WithExitFunc (line 157) | func WithExitFunc(exitFunc func(int)) Option { function ReportCaller (line 163) | func ReportCaller(reportCaller bool) Option { function UseLogger (line 169) | func UseLogger(l *logrus.Logger) Option { function LeakSensitive (line 175) | func LeakSensitive() Option { function RedactionText (line 181) | func RedactionText(text string) Option { function WithAdditionalRedactedHeaders (line 187) | func WithAdditionalRedactedHeaders(headers []string) Option { function toHeaderMap (line 193) | func toHeaderMap(headers []string) map[string]struct{} { function newOptions (line 205) | func newOptions(opts []Option) *options { function New (line 215) | func New(name string, version string, opts ...Option) *Logger { function NewT (line 233) | func NewT(t testing.TB, opts ...Option) *Logger { method UseConfig (line 242) | func (l *Logger) UseConfig(c configurator) { method ReportError (line 254) | func (l *Logger) ReportError(r *http.Request, code int, err error, args ... FILE: oryx/mapx/type_assert.go function GetString (line 20) | func GetString[K comparable](values map[K]any, key K) (string, error) { function GetStringSlice (line 31) | func GetStringSlice[K comparable](values map[K]any, key K) ([]string, er... function GetTime (line 54) | func GetTime[K comparable](values map[K]any, key K) (time.Time, error) { function GetInt64 (line 85) | func GetInt64[K comparable](values map[K]any, key K) (int64, error) { function GetInt32 (line 117) | func GetInt32[K comparable](values map[K]any, key K) (int32, error) { function GetInt (line 129) | func GetInt[K comparable](values map[K]any, key K) (int, error) { function GetFloat64Default (line 141) | func GetFloat64Default[K comparable](values map[K]any, key K, defaultVal... function GetFloat64 (line 150) | func GetFloat64[K comparable](values map[K]any, key K) (float64, error) { function GetStringDefault (line 167) | func GetStringDefault[K comparable](values map[K]any, key K, defaultValu... function GetStringSliceDefault (line 175) | func GetStringSliceDefault[K comparable](values map[K]any, key K, defaul... FILE: oryx/metricsx/metrics.go type MemoryStatistics (line 12) | type MemoryStatistics struct method ToMap (line 45) | func (ms *MemoryStatistics) ToMap() map[string]interface{} { method Update (line 65) | func (ms *MemoryStatistics) Update() { FILE: oryx/metricsx/middleware.go constant XForwardedHostHeader (line 38) | XForwardedHostHeader = "X-Forwarded-Host" constant AuthorityHeader (line 39) | AuthorityHeader = ":authority" type Service (line 49) | type Service struct method Identify (line 206) | func (sw *Service) Identify() { method Track (line 239) | func (sw *Service) Track() { method ServeHTTP (line 275) | func (sw *Service) ServeHTTP(rw http.ResponseWriter, r *http.Request, ... method UnaryInterceptor (line 308) | func (sw *Service) UnaryInterceptor(ctx context.Context, req interface... method StreamInterceptor (line 348) | func (sw *Service) StreamInterceptor(srv interface{}, stream grpc.Serv... method Close (line 354) | func (sw *Service) Close() error { method anonymizePath (line 358) | func (sw *Service) anonymizePath(path string) string { method anonymizeQuery (line 374) | func (sw *Service) anonymizeQuery(query url.Values, salt string) string { function Hash (line 62) | func Hash(value string) string { type Options (line 68) | type Options struct type void (line 109) | type void struct method Logf (line 111) | func (v *void) Logf(format string, args ...interface{}) { method Errorf (line 114) | func (v *void) Errorf(format string, args ...interface{}) { function New (line 118) | func New( function IdentifySend (line 217) | func IdentifySend(sw *Service, startup bool) { FILE: oryx/migratest/refresh.go function WriteFixtureOnError (line 18) | func WriteFixtureOnError(t *testing.T, err error, actual interface{}, lo... FILE: oryx/migratest/run.go function ContainsExpectedIds (line 17) | func ContainsExpectedIds(t *testing.T, path string, ids []string) { function CompareWithFixture (line 29) | func CompareWithFixture(t *testing.T, actual interface{}, prefix string,... FILE: oryx/migratest/strict.go function WriteFixtureOnError (line 15) | func WriteFixtureOnError(t *testing.T, err error, actual interface{}, lo... FILE: oryx/networkx/listener.go function AddressIsUnixSocket (line 13) | func AddressIsUnixSocket(address string) bool { function MakeListener (line 17) | func MakeListener(address string, socketPermission *configx.UnixPermissi... FILE: oryx/networkx/manager.go function Determine (line 21) | func Determine(c *pop.Connection) (*Network, error) { FILE: oryx/networkx/migrations/sql/20150100000001000000_networks.cockroach.up.sql type "networks" (line 1) | CREATE TABLE "networks" ( FILE: oryx/networkx/migrations/sql/20150100000001000000_networks.mysql.up.sql type `networks` (line 1) | CREATE TABLE `networks` ( FILE: oryx/networkx/migrations/sql/20150100000001000000_networks.postgres.up.sql type "networks" (line 1) | CREATE TABLE "networks" ( FILE: oryx/networkx/migrations/sql/20150100000001000000_networks.sqlite3.up.sql type "networks" (line 1) | CREATE TABLE "networks" ( FILE: oryx/networkx/network.go type Network (line 12) | type Network struct method TableName (line 22) | func (p Network) TableName() string { function NewNetwork (line 26) | func NewNetwork() *Network { FILE: oryx/openapix/jsonpatch.go type JSONPatchDocument (line 9) | type JSONPatchDocument type JSONPatch (line 14) | type JSONPatch struct FILE: oryx/openapix/pagination.go type TokenPaginationHeaders (line 7) | type TokenPaginationHeaders struct type TokenPaginationParams (line 22) | type TokenPaginationParams struct FILE: oryx/osx/env.go function GetenvDefault (line 12) | func GetenvDefault(key string, def string) string { FILE: oryx/osx/file.go type options (line 20) | type options struct method apply (line 31) | func (o *options) apply(opts []Option) *options { type Option (line 29) | type Option function newOptions (line 38) | func newOptions() *options { function WithDisabledFileLoader (line 49) | func WithDisabledFileLoader() Option { function WithEnabledFileLoader (line 56) | func WithEnabledFileLoader() Option { function WithDisabledHTTPLoader (line 63) | func WithDisabledHTTPLoader() Option { function WithEnabledHTTPLoader (line 70) | func WithEnabledHTTPLoader() Option { function WithDisabledBase64Loader (line 77) | func WithDisabledBase64Loader() Option { function WithEnabledBase64Loader (line 84) | func WithEnabledBase64Loader() Option { function WithBase64Encoding (line 91) | func WithBase64Encoding(enc *base64.Encoding) Option { function WithoutResilientBase64Encoding (line 98) | func WithoutResilientBase64Encoding() Option { function WithHTTPClient (line 105) | func WithHTTPClient(hc *retryablehttp.Client) Option { function RestrictedReadFile (line 114) | func RestrictedReadFile(source string, opts ...Option) (bytes []byte, er... function ReadFileFromAllSources (line 144) | func ReadFileFromAllSources(source string, opts ...Option) (bytes []byte... function readFile (line 148) | func readFile(source string, o *options) (bytes []byte, err error) { FILE: oryx/otelx/attribute.go constant nullString (line 13) | nullString = "" function StringAttrs (line 15) | func StringAttrs(attrs map[string]string) []attribute.KeyValue { function AutoInt (line 23) | func AutoInt[I int | int32 | int64](k string, v I) attribute.KeyValue { function Nullable (line 28) | func Nullable[V any, VN *V | sql.Null[V], A func(string, V) attribute.Ke... function NullString (line 45) | func NullString[V *string | sql.Null[string]](k string, v V) attribute.K... function NullStringer (line 49) | func NullStringer(k string, v fmt.Stringer) attribute.KeyValue { FILE: oryx/otelx/config.go type JaegerConfig (line 12) | type JaegerConfig struct type ZipkinConfig (line 17) | type ZipkinConfig struct type OTLPConfig (line 22) | type OTLPConfig struct type JaegerSampling (line 29) | type JaegerSampling struct type ZipkinSampling (line 34) | type ZipkinSampling struct type OTLPSampling (line 38) | type OTLPSampling struct type ProvidersConfig (line 42) | type ProvidersConfig struct type Config (line 48) | type Config struct constant ConfigSchemaID (line 58) | ConfigSchemaID = "ory://tracing-config" function AddConfigSchema (line 62) | func AddConfigSchema(c interface { FILE: oryx/otelx/jaeger.go function SetupJaeger (line 30) | func SetupJaeger(t *Tracer, tracerName string, c *Config) (trace.Tracer,... FILE: oryx/otelx/middleware.go type contextKey (line 22) | type contextKey constant callbackContextKey (line 24) | callbackContextKey contextKey = iota function SpanNameRecorderMiddleware (line 26) | func SpanNameRecorderMiddleware(next http.Handler) http.Handler { function SpanNameRecorderNegroniFunc (line 41) | func SpanNameRecorderNegroniFunc(w http.ResponseWriter, r *http.Request,... function NewMiddleware (line 54) | func NewMiddleware(next http.Handler, operation string, opts ...otelhttp... FILE: oryx/otelx/otel.go type Tracer (line 18) | type Tracer struct method setup (line 46) | func (t *Tracer) setup(name string, l *logrusx.Logger, c *Config) error { method IsLoaded (line 83) | func (t *Tracer) IsLoaded() bool { method Tracer (line 91) | func (t *Tracer) Tracer() trace.Tracer { method WithOTLP (line 97) | func (t *Tracer) WithOTLP(other trace.Tracer) *Tracer { method Provider (line 102) | func (t *Tracer) Provider() trace.TracerProvider { type Provider (line 21) | type Provider interface function New (line 28) | func New(name string, l *logrusx.Logger, c *Config) (*Tracer, error) { function NewNoop (line 39) | func NewNoop() *Tracer { type tracerProvider (line 106) | type tracerProvider struct method Tracer (line 114) | func (tp tracerProvider) Tracer(name string, options ...trace.TracerOp... FILE: oryx/otelx/otlp.go function SetupOTLP (line 21) | func SetupOTLP(t *Tracer, tracerName string, c *Config) (trace.Tracer, e... FILE: oryx/otelx/semconv/context.go type contextKey (line 15) | type contextKey constant contextKeyAttributes (line 17) | contextKeyAttributes contextKey = iota function ContextWithAttributes (line 19) | func ContextWithAttributes(ctx context.Context, attrs ...attribute.KeyVa... function AttributesFromContext (line 24) | func AttributesFromContext(ctx context.Context) []attribute.KeyValue { function Middleware (line 38) | func Middleware(rw http.ResponseWriter, r *http.Request, next http.Handl... function reverse (line 49) | func reverse[S ~[]E, E any](s S) { FILE: oryx/otelx/semconv/deprecated.go function NewDeprecatedFeatureUsedEvent (line 18) | func NewDeprecatedFeatureUsedEvent(ctx context.Context, deprecatedCodeFe... constant AttributeKeyDeprecatedCodePathIDAttributeKey (line 32) | AttributeKeyDeprecatedCodePathIDAttributeKey AttributeKey = "DeprecatedF... constant DeprecatedFeatureUsed (line 33) | DeprecatedFeatureUsed Event = "DeprecatedF... function AttrDeprecatedFeatureID (line 36) | func AttrDeprecatedFeatureID(id string) otelattr.KeyValue { FILE: oryx/otelx/semconv/events.go type Event (line 14) | type Event method String (line 16) | func (e Event) String() string { type AttributeKey (line 20) | type AttributeKey method String (line 22) | func (a AttributeKey) String() string { constant AttributeKeyIdentityID (line 27) | AttributeKeyIdentityID AttributeKey = "IdentityID" constant AttributeKeyNID (line 28) | AttributeKeyNID AttributeKey = "ProjectID" constant AttributeKeyClientIP (line 29) | AttributeKeyClientIP AttributeKey = "ClientIP" constant AttributeKeyGeoLocationCity (line 30) | AttributeKeyGeoLocationCity AttributeKey = "GeoLocationCity" constant AttributeKeyGeoLocationRegion (line 31) | AttributeKeyGeoLocationRegion AttributeKey = "GeoLocationRegion" constant AttributeKeyGeoLocationCountry (line 32) | AttributeKeyGeoLocationCountry AttributeKey = "GeoLocationCountry" constant AttributeKeyGeoLocationLatitude (line 33) | AttributeKeyGeoLocationLatitude AttributeKey = "GeoLocationLatitude" constant AttributeKeyGeoLocationLongitude (line 34) | AttributeKeyGeoLocationLongitude AttributeKey = "GeoLocationLongitude" constant AttributeKeyWorkspace (line 35) | AttributeKeyWorkspace AttributeKey = "WorkspaceID" constant AttributeKeySubscriptionID (line 36) | AttributeKeySubscriptionID AttributeKey = "SubscriptionID" constant AttributeKeyProjectEnvironment (line 37) | AttributeKeyProjectEnvironment AttributeKey = "ProjectEnvironment" constant AttributeKeyWorkspaceAPIKeyID (line 38) | AttributeKeyWorkspaceAPIKeyID AttributeKey = "WorkspaceAPIKeyID" constant AttributeKeyProjectAPIKeyID (line 39) | AttributeKeyProjectAPIKeyID AttributeKey = "ProjectAPIKeyID" function AttrIdentityID (line 42) | func AttrIdentityID[V string | uuid.UUID](val V) otelattr.KeyValue { function AttrNID (line 46) | func AttrNID(val uuid.UUID) otelattr.KeyValue { function AttrWorkspace (line 50) | func AttrWorkspace(val uuid.UUID) otelattr.KeyValue { function AttrSubscription (line 54) | func AttrSubscription(val uuid.UUID) otelattr.KeyValue { function AttrProjectEnvironment (line 58) | func AttrProjectEnvironment(val string) otelattr.KeyValue { function AttrClientIP (line 62) | func AttrClientIP(val string) otelattr.KeyValue { function AttrGeoLocation (line 66) | func AttrGeoLocation(val httpx.GeoLocation) []otelattr.KeyValue { function AttrWorkspaceAPIKeyID (line 88) | func AttrWorkspaceAPIKeyID[V string | uuid.UUID](val V) otelattr.KeyValue { function AttrProjectAPIKeyID (line 92) | func AttrProjectAPIKeyID[V string | uuid.UUID](val V) otelattr.KeyValue { function uuidOrString (line 96) | func uuidOrString[V string | uuid.UUID](val V) string { FILE: oryx/otelx/semconv/warning.go function NewWarning (line 18) | func NewWarning(ctx context.Context, id string, attrs ...otelattr.KeyVal... constant Warning (line 32) | Warning Event = "Warning" constant AttributeWarningID (line 33) | AttributeWarningID AttributeKey = "WarningID" function AttrWarningID (line 36) | func AttrWarningID(id string) otelattr.KeyValue { FILE: oryx/otelx/withspan.go function WithSpan (line 28) | func WithSpan(ctx context.Context, name string, f func(context.Context) ... function End (line 66) | func End(span trace.Span, err *error) { function setErrorStatusPanic (line 79) | func setErrorStatusPanic(span trace.Span, recovered any) { function setErrorTags (line 105) | func setErrorTags(span trace.Span, err error) { function stacktrace (line 130) | func stacktrace() string { FILE: oryx/otelx/zipkin.go function SetupZipkin (line 15) | func SetupZipkin(t *Tracer, tracerName string, c *Config) (trace.Tracer,... FILE: oryx/pagination/header.go function header (line 15) | func header(u *url.URL, rel string, limit, offset int64) string { type formatter (line 23) | type formatter function HeaderWithFormatter (line 26) | func HeaderWithFormatter(w http.ResponseWriter, u *url.URL, total int64,... function Header (line 88) | func Header(w http.ResponseWriter, u *url.URL, total int, limit, offset ... FILE: oryx/pagination/items.go function MaxItemsPerPage (line 7) | func MaxItemsPerPage(max, is int) int { FILE: oryx/pagination/keysetpagination/header.go type RequestParameters (line 25) | type RequestParameters struct type ResponseHeaders (line 56) | type ResponseHeaders struct function header (line 71) | func header(u *url.URL, rel, token string, size int) string { function Header (line 81) | func Header(w http.ResponseWriter, u *url.URL, p *Paginator) { function Parse (line 91) | func Parse(q url.Values, p PageTokenConstructor) ([]Option, error) { FILE: oryx/pagination/keysetpagination/page_token.go type StringPageToken (line 20) | type StringPageToken method Parse (line 22) | func (s StringPageToken) Parse(idField string) map[string]string { method Encode (line 26) | func (s StringPageToken) Encode() string { function NewStringPageToken (line 30) | func NewStringPageToken(s string) (PageToken, error) { type MapPageToken (line 34) | type MapPageToken method Parse (line 36) | func (m MapPageToken) Parse(_ string) map[string]string { method Encode (line 42) | func (m MapPageToken) Encode() string { constant pageTokenColumnDelim (line 40) | pageTokenColumnDelim = "/" function NewMapPageToken (line 53) | func NewMapPageToken(s string) (PageToken, error) { FILE: oryx/pagination/keysetpagination/paginator.go type Order (line 17) | type Order method extract (line 42) | func (o Order) extract() (string, string, error) { type columnOrdering (line 19) | type columnOrdering struct type Paginator (line 23) | type Paginator struct method Token (line 53) | func (p *Paginator) Token() PageToken { method Size (line 60) | func (p *Paginator) Size() int { method IsLast (line 74) | func (p *Paginator) IsLast() bool { method ToOptions (line 78) | func (p *Paginator) ToOptions() []Option { method multipleOrderFieldsQuery (line 104) | func (p *Paginator) multipleOrderFieldsQuery(q *pop.Query, idField str... type Option (line 29) | type Option constant OrderDescending (line 35) | OrderDescending Order = "DESC" constant OrderAscending (line 36) | OrderAscending Order = "ASC" constant DefaultSize (line 38) | DefaultSize = 100 constant DefaultMaxSize (line 39) | DefaultMaxSize = 500 function Paginate (line 144) | func Paginate[I any, PI interface { function Result (line 173) | func Result[I any, PI interface { function WithDefaultToken (line 196) | func WithDefaultToken(t PageToken) Option { function WithDefaultSize (line 203) | func WithDefaultSize(size int) Option { function WithMaxSize (line 210) | func WithMaxSize(size int) Option { function WithToken (line 217) | func WithToken(t PageToken) Option { function WithSize (line 224) | func WithSize(size int) Option { function WithColumn (line 231) | func WithColumn(name string, order Order) Option { function withIsLast (line 241) | func withIsLast(isLast bool) Option { function GetPaginator (line 248) | func GetPaginator(modifiers ...Option) *Paginator { FILE: oryx/pagination/keysetpagination/parse_header.go type PaginationResult (line 14) | type PaginationResult struct function ParseHeader (line 23) | func ParseHeader(r *http.Response) *PaginationResult { function findRel (line 31) | func findRel(links link.Group, rel string) string { FILE: oryx/pagination/keysetpagination_v2/page_token.go type PageToken (line 21) | type PageToken struct method Columns (line 52) | func (t PageToken) Columns() []Column { return t.cols } method Encrypt (line 56) | func (t PageToken) Encrypt(keys [][32]byte) string { method MarshalJSON (line 64) | func (t PageToken) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 114) | func (t *PageToken) UnmarshalJSON(data []byte) error { type Column (line 42) | type Column struct function NewPageToken (line 151) | func NewPageToken(cols ...Column) PageToken { return PageToken{cols: col... FILE: oryx/pagination/keysetpagination_v2/paginator.go type Paginator (line 17) | type Paginator struct method DefaultToken (line 32) | func (p *Paginator) DefaultToken() PageToken { return p.defaultToken } method IsLast (line 33) | func (p *Paginator) IsLast() bool { return p.isLast } method PageToken (line 35) | func (p *Paginator) PageToken() PageToken { method Size (line 42) | func (p *Paginator) Size() int { method ToOptions (line 57) | func (p *Paginator) ToOptions() []Option { method validatePageToken (line 166) | func (p *Paginator) validatePageToken() error { type Option (line 22) | type Option constant DefaultSize (line 26) | DefaultSize = 100 constant DefaultMaxSize (line 27) | DefaultMaxSize = 500 function Result (line 81) | func Result[I any](items []I, p *Paginator) ([]I, *Paginator) { function ResultFunc (line 90) | func ResultFunc[I any](items []I, p *Paginator, extractor func(last I, c... function WithSize (line 126) | func WithSize(size int) Option { function WithDefaultSize (line 130) | func WithDefaultSize(size int) Option { function WithMaxSize (line 134) | func WithMaxSize(size int) Option { function WithToken (line 138) | func WithToken(t PageToken) Option { function WithDefaultToken (line 142) | func WithDefaultToken(t PageToken) Option { function withIsLast (line 146) | func withIsLast(isLast bool) Option { function NewPaginator (line 150) | func NewPaginator(modifiers ...Option) (*Paginator, error) { function columnsMatch (line 178) | func columnsMatch(tokenCols, templateCols []Column) bool { FILE: oryx/pagination/keysetpagination_v2/parse_header.go function ParseHeader (line 14) | func ParseHeader(r *http.Response) (first, next string, isLast bool) { function findRel (line 21) | func findRel(links link.Group, rel string) (string, bool) { FILE: oryx/pagination/keysetpagination_v2/query_builder.go type Order (line 14) | type Order method extract (line 21) | func (o Order) extract() (string, string) { constant OrderAscending (line 17) | OrderAscending Order = iota constant OrderDescending (line 18) | OrderDescending function Paginate (line 36) | func Paginate[I any](p *Paginator) pop.ScopeFunc { function BuildWhereAndOrder (line 60) | func BuildWhereAndOrder(columns []Column, quote func(string) string, dia... function isSQLNull (line 151) | func isSQLNull(v any) bool { FILE: oryx/pagination/keysetpagination_v2/request_params.go type RequestParameters (line 23) | type RequestParameters struct type ResponseHeaders (line 54) | type ResponseHeaders struct function SetLinkHeader (line 71) | func SetLinkHeader(w http.ResponseWriter, keys [][32]byte, u *url.URL, p... function linkPart (line 80) | func linkPart(u *url.URL, rel, token string, size int) string { function ParseQueryParams (line 89) | func ParseQueryParams(keys [][32]byte, q url.Values) ([]Option, error) { function ParsePageToken (line 114) | func ParsePageToken(keys [][32]byte, raw string) (t PageToken, err error) { FILE: oryx/pagination/limit.go function Index (line 8) | func Index(limit, offset, length int) (start, end int) { FILE: oryx/pagination/migrationpagination/header.go type RequestParameters (line 7) | type RequestParameters struct type ResponseHeaderAnnotation (line 66) | type ResponseHeaderAnnotation struct FILE: oryx/pagination/migrationpagination/pagination.go type Paginator (line 16) | type Paginator struct method ParsePagination (line 29) | func (p *Paginator) ParsePagination(r *http.Request) (page, itemsPerPa... function NewPaginator (line 21) | func NewPaginator(p *pagepagination.PagePaginator, t *tokenpagination.To... function NewDefaultPaginator (line 25) | func NewDefaultPaginator() *Paginator { function header (line 36) | func header(u *url.URL, rel string, itemsPerPage, offset int64) string { function PaginationHeader (line 46) | func PaginationHeader(w http.ResponseWriter, u *url.URL, total int64, pa... FILE: oryx/pagination/pagepagination/header.go type RequestParameters (line 14) | type RequestParameters struct type ResponseHeaderAnnotation (line 59) | type ResponseHeaderAnnotation struct FILE: oryx/pagination/pagepagination/pagination.go type PagePaginator (line 15) | type PagePaginator struct method defaults (line 20) | func (p *PagePaginator) defaults() { method ParsePagination (line 31) | func (p *PagePaginator) ParsePagination(r *http.Request) (page, itemsP... function header (line 69) | func header(u *url.URL, rel string, limit, offset int64) string { function PaginationHeader (line 77) | func PaginationHeader(w http.ResponseWriter, u *url.URL, total int64, pa... FILE: oryx/pagination/paginationplanner/planner.go type PaginationPlanner (line 15) | type PaginationPlanner struct method GetPaginator (line 45) | func (p *PaginationPlanner) GetPaginator(q Query, pageOpts ...keysetpa... method pickPlan (line 68) | func (p *PaginationPlanner) pickPlan(q Query) PaginationPlan { function NewPaginationPlanner (line 20) | func NewPaginationPlanner(fallbackPlan PaginationPlan, plans []Paginatio... type PaginationPlan (line 84) | type PaginationPlan struct method populateInternals (line 99) | func (pp *PaginationPlan) populateInternals() { type Table (line 110) | type Table struct method NewColumn (line 122) | func (t *Table) NewColumn(name string) Column { function NewTable (line 115) | func NewTable() *Table { type Column (line 134) | type Column struct method Name (line 139) | func (c Column) Name() string { type ColumnConstraint (line 143) | type ColumnConstraint method IsConstrained (line 151) | func (cs ColumnConstraint) IsConstrained() bool { method IsNull (line 155) | func (cs ColumnConstraint) IsNull() bool { constant colUnconstrained (line 146) | colUnconstrained ColumnConstraint = iota constant colConstraintEq (line 147) | colConstraintEq constant colConstraintIsNull (line 148) | colConstraintIsNull type Query (line 160) | type Query method SetEq (line 164) | func (qc Query) SetEq(cols ...Column) Query { method SetIsNull (line 168) | func (qc Query) SetIsNull(cols ...Column) Query { method set (line 172) | func (qc Query) set(c ColumnConstraint, cols ...Column) Query { method colByName (line 179) | func (qc Query) colByName(name string) (ColumnConstraint, bool) { method constrainedCols (line 188) | func (qc Query) constrainedCols() uint { function NewQuery (line 162) | func NewQuery() Query { return make(Query) } FILE: oryx/pagination/parse.go function Parse (line 12) | func Parse(r *http.Request, defaultLimit, defaultOffset, maxLimit int) (... FILE: oryx/pagination/tokenpagination/header.go type RequestParameters (line 14) | type RequestParameters struct type ResponseHeaders (line 45) | type ResponseHeaders struct FILE: oryx/pagination/tokenpagination/pagination.go function Encode (line 21) | func Encode(offset int64) string { function decode (line 25) | func decode(s string) (int, error) { type TokenPaginator (line 34) | type TokenPaginator struct method defaults (line 39) | func (p *TokenPaginator) defaults() { method ParsePagination (line 50) | func (p *TokenPaginator) ParsePagination(r *http.Request) (page, items... function header (line 83) | func header(u *url.URL, rel string, itemsPerPage, offset int64) string { function PaginationHeader (line 91) | func PaginationHeader(w http.ResponseWriter, u *url.URL, total int64, pa... FILE: oryx/pointerx/pointerx.go function Deref (line 7) | func Deref[T any](p *T) T { FILE: oryx/popx/cmd.go type MigrationProvider (line 18) | type MigrationProvider interface type MigrationPreparer (line 24) | type MigrationPreparer interface function RegisterMigrateSQLUpFlags (line 28) | func RegisterMigrateSQLUpFlags(cmd *cobra.Command) *cobra.Command { function NewMigrateSQLUpCmd (line 33) | func NewMigrateSQLUpCmd(runE func(cmd *cobra.Command, args []string) err... function MigrateSQLUp (line 58) | func MigrateSQLUp(cmd *cobra.Command, p MigrationProvider) (err error) { function RegisterMigrateSQLDownFlags (line 107) | func RegisterMigrateSQLDownFlags(cmd *cobra.Command) *cobra.Command { function NewMigrateSQLDownCmd (line 113) | func NewMigrateSQLDownCmd(runE func(cmd *cobra.Command, args []string) e... function MigrateSQLDown (line 141) | func MigrateSQLDown(cmd *cobra.Command, p MigrationProvider) (err error) { function RegisterMigrateStatusFlags (line 217) | func RegisterMigrateStatusFlags(cmd *cobra.Command) *cobra.Command { function NewMigrateSQLStatusCmd (line 224) | func NewMigrateSQLStatusCmd(runE func(cmd *cobra.Command, args []string)... function MigrateStatus (line 244) | func MigrateStatus(cmd *cobra.Command, p MigrationProvider) (err error) { FILE: oryx/popx/db_columns.go function DBColumns (line 12) | func DBColumns[T any](quoter Quoter) string { function IndexHint (line 18) | func IndexHint(conn *pop.Connection, table string, index string) string { function DBColumnsExcluding (line 25) | func DBColumnsExcluding[T any](quoter Quoter, exclude ...string) string { type AliasQuoter (line 34) | type AliasQuoter struct method Quote (line 43) | func (pq *AliasQuoter) Quote(key string) string { type Quoter (line 38) | type Quoter interface FILE: oryx/popx/loggers.go function formatter (line 14) | func formatter(lvl logging.Level, s string, args ...interface{}) string { function TestingLogger (line 41) | func TestingLogger(t testing.TB) func(lvl logging.Level, s string, args ... function NullLogger (line 49) | func NullLogger() func(lvl logging.Level, s string, args ...interface{}) { FILE: oryx/popx/match.go constant versionIdx (line 20) | versionIdx = iota + 1 constant nameIdx (line 21) | nameIdx constant dbTypeIdx (line 22) | dbTypeIdx constant autocommitIdx (line 23) | autocommitIdx constant directionIdx (line 24) | directionIdx constant typeIdx (line 25) | typeIdx type match (line 29) | type match struct function parseMigrationFilename (line 39) | func parseMigrationFilename(filename string) (*match, error) { FILE: oryx/popx/migration_box.go type MigrationBox (line 28) | type MigrationBox struct method findMigrations (line 198) | func (mb *MigrationBox) findMigrations( method hasDownMigrationWithVersion (line 271) | func (mb *MigrationBox) hasDownMigrationWithVersion(version string) bo... method check (line 281) | func (mb *MigrationBox) check() error { type MigrationContent (line 36) | type MigrationContent type MigrationBoxOption (line 37) | type MigrationBoxOption function WithTemplateValues (line 40) | func WithTemplateValues(v map[string]interface{}) MigrationBoxOption { function WithMigrationContentMiddleware (line 46) | func WithMigrationContentMiddleware(middleware func(content string, err ... function WithGoMigrations (line 58) | func WithGoMigrations(migrations Migrations) MigrationBoxOption { function WithPerMigrationTimeout (line 73) | func WithPerMigrationTimeout(timeout time.Duration) MigrationBoxOption { function WithTestdata (line 82) | func WithTestdata(t *testing.T, testdata fs.FS) MigrationBoxOption { function isMigrationEmpty (line 144) | func isMigrationEmpty(content string) bool { type queryExecutor (line 148) | type queryExecutor interface function NewMigrationBox (line 153) | func NewMigrationBox(dir fs.FS, c *pop.Connection, l *logrusx.Logger, op... FILE: oryx/popx/migration_content.go function ParameterizedMigrationContent (line 15) | func ParameterizedMigrationContent(params map[string]interface{}) func(m... FILE: oryx/popx/migration_info.go type Migration (line 16) | type Migration struct method Valid (line 38) | func (m Migration) Valid() error { type Migrations (line 47) | type Migrations method Len (line 49) | func (mfs Migrations) Len() int { return len(mfs) } method Less (line 50) | func (mfs Migrations) Less(i, j int) bool { return compareMigration(mf... method Swap (line 51) | func (mfs Migrations) Swap(i, j int) { mfs[i], mfs[j] = mfs[j], m... method sortAndFilter (line 82) | func (mfs Migrations) sortAndFilter(dialect string) Migrations { method find (line 105) | func (mfs Migrations) find(version, dbType string) *Migration { function compareMigration (line 53) | func compareMigration(a, b Migration) int { function specificity (line 68) | func specificity(m *Migration) int { function isApplicable (line 78) | func isApplicable(m Migration, dialect string) bool { FILE: oryx/popx/migrator.go constant Pending (line 29) | Pending = "Pending" constant Applied (line 30) | Applied = "Applied" constant tracingComponent (line 31) | tracingComponent = "github.com/ory/x/popx" method shouldNotUseTransaction (line 34) | func (mb *MigrationBox) shouldNotUseTransaction(m Migration) bool { method Up (line 39) | func (mb *MigrationBox) Up(ctx context.Context) error { method UpTo (line 46) | func (mb *MigrationBox) UpTo(ctx context.Context, step int) (applied int... method Down (line 144) | func (mb *MigrationBox) Down(ctx context.Context, steps int) (err error) { method createTransactionalMigrationTable (line 240) | func (mb *MigrationBox) createTransactionalMigrationTable(ctx context.Co... method migrateToTransactionalMigrationTable (line 256) | func (mb *MigrationBox) migrateToTransactionalMigrationTable(ctx context... method isolatedTransaction (line 290) | func (mb *MigrationBox) isolatedTransaction(ctx context.Context, directi... method createMigrationStatusTableTransaction (line 305) | func (mb *MigrationBox) createMigrationStatusTableTransaction(ctx contex... method CreateSchemaMigrations (line 334) | func (mb *MigrationBox) CreateSchemaMigrations(ctx context.Context) error { type MigrationStatus (line 360) | type MigrationStatus struct type MigrationStatuses (line 368) | type MigrationStatuses method Header (line 372) | func (m MigrationStatuses) Header() []string { method Table (line 376) | func (m MigrationStatuses) Table() [][]string { method Interface (line 384) | func (m MigrationStatuses) Interface() interface{} { method Len (line 388) | func (m MigrationStatuses) Len() int { method IDs (line 392) | func (m MigrationStatuses) IDs() []string { method HasPending (line 400) | func (m MigrationStatuses) HasPending() bool { function sanitizedMigrationTableName (line 409) | func sanitizedMigrationTableName(con *pop.Connection) string { function errIsTableNotFound (line 413) | func errIsTableNotFound(err error) bool { method Status (line 420) | func (mb *MigrationBox) Status(ctx context.Context) (MigrationStatuses, ... method DumpMigrationSchema (line 471) | func (mb *MigrationBox) DumpMigrationSchema(ctx context.Context) error { method exec (line 486) | func (mb *MigrationBox) exec(ctx context.Context, fn func() error) error { method printTimer (line 521) | func (mb *MigrationBox) printTimer(timerStart time.Time) { FILE: oryx/popx/span.go constant MigrationStatusOpName (line 13) | MigrationStatusOpName = "migration-status" constant MigrationInitOpName (line 14) | MigrationInitOpName = "migration-init" constant MigrationUpOpName (line 15) | MigrationUpOpName = "migration-up" constant MigrationRunTransactionOpName (line 16) | MigrationRunTransactionOpName = "migration-run-transaction" constant MigrationDownOpName (line 17) | MigrationDownOpName = "migration-down" function startSpan (line 20) | func startSpan(ctx context.Context, opName string, opts ...trace.SpanSta... FILE: oryx/popx/sql_template_funcs.go function Identifier (line 18) | func Identifier(i string) (string, error) { FILE: oryx/popx/stub/migrations/legacy/20191100000001_identities.cockroach.up.sql type "identities" (line 1) | CREATE TABLE "identities" ( type "identity_credential_types" (line 9) | CREATE TABLE "identity_credential_types" ( type "identity_credential_types" (line 14) | CREATE UNIQUE INDEX "identity_credential_types_name_idx" ON "identity_cr... type "identity_credentials" (line 15) | CREATE TABLE "identity_credentials" ( type "identity_credential_identifiers" (line 26) | CREATE TABLE "identity_credential_identifiers" ( type "identity_credential_identifiers" (line 35) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_idx" ON ... FILE: oryx/popx/stub/migrations/legacy/20191100000001_identities.mysql.up.sql type `identities` (line 1) | CREATE TABLE `identities` ( type `identity_credential_types` (line 9) | CREATE TABLE `identity_credential_types` ( type `identity_credential_types_name_idx` (line 14) | CREATE UNIQUE INDEX `identity_credential_types_name_idx` ON `identity_cr... type `identity_credentials` (line 15) | CREATE TABLE `identity_credentials` ( type `identity_credential_identifiers` (line 26) | CREATE TABLE `identity_credential_identifiers` ( type `identity_credential_identifiers_identifier_idx` (line 35) | CREATE UNIQUE INDEX `identity_credential_identifiers_identifier_idx` ON ... FILE: oryx/popx/stub/migrations/legacy/20191100000001_identities.postgres.up.sql type "identities" (line 1) | CREATE TABLE "identities" ( type "identity_credential_types" (line 9) | CREATE TABLE "identity_credential_types" ( type "identity_credential_types" (line 14) | CREATE UNIQUE INDEX "identity_credential_types_name_idx" ON "identity_cr... type "identity_credentials" (line 15) | CREATE TABLE "identity_credentials" ( type "identity_credential_identifiers" (line 26) | CREATE TABLE "identity_credential_identifiers" ( type "identity_credential_identifiers" (line 35) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_idx" ON ... FILE: oryx/popx/stub/migrations/legacy/20191100000001_identities.sqlite3.up.sql type "identities" (line 1) | CREATE TABLE "identities" ( type "identity_credential_types" (line 8) | CREATE TABLE "identity_credential_types" ( type "identity_credential_types" (line 12) | CREATE UNIQUE INDEX "identity_credential_types_name_idx" ON "identity_cr... type "identity_credentials" (line 13) | CREATE TABLE "identity_credentials" ( type "identity_credential_identifiers" (line 23) | CREATE TABLE "identity_credential_identifiers" ( type "identity_credential_identifiers" (line 31) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_idx" ON ... FILE: oryx/popx/stub/migrations/legacy/20191100000002_requests.cockroach.up.sql type "selfservice_login_requests" (line 1) | CREATE TABLE "selfservice_login_requests" ( type "selfservice_login_request_methods" (line 12) | CREATE TABLE "selfservice_login_request_methods" ( type "selfservice_registration_requests" (line 22) | CREATE TABLE "selfservice_registration_requests" ( type "selfservice_registration_request_methods" (line 33) | CREATE TABLE "selfservice_registration_request_methods" ( type "selfservice_profile_management_requests" (line 43) | CREATE TABLE "selfservice_profile_management_requests" ( FILE: oryx/popx/stub/migrations/legacy/20191100000002_requests.mysql.up.sql type `selfservice_login_requests` (line 1) | CREATE TABLE `selfservice_login_requests` ( type `selfservice_login_request_methods` (line 12) | CREATE TABLE `selfservice_login_request_methods` ( type `selfservice_registration_requests` (line 22) | CREATE TABLE `selfservice_registration_requests` ( type `selfservice_registration_request_methods` (line 33) | CREATE TABLE `selfservice_registration_request_methods` ( type `selfservice_profile_management_requests` (line 43) | CREATE TABLE `selfservice_profile_management_requests` ( FILE: oryx/popx/stub/migrations/legacy/20191100000002_requests.postgres.up.sql type "selfservice_login_requests" (line 1) | CREATE TABLE "selfservice_login_requests" ( type "selfservice_login_request_methods" (line 12) | CREATE TABLE "selfservice_login_request_methods" ( type "selfservice_registration_requests" (line 22) | CREATE TABLE "selfservice_registration_requests" ( type "selfservice_registration_request_methods" (line 33) | CREATE TABLE "selfservice_registration_request_methods" ( type "selfservice_profile_management_requests" (line 43) | CREATE TABLE "selfservice_profile_management_requests" ( FILE: oryx/popx/stub/migrations/legacy/20191100000002_requests.sqlite3.up.sql type "selfservice_login_requests" (line 1) | CREATE TABLE "selfservice_login_requests" ( type "selfservice_login_request_methods" (line 11) | CREATE TABLE "selfservice_login_request_methods" ( type "selfservice_registration_requests" (line 20) | CREATE TABLE "selfservice_registration_requests" ( type "selfservice_registration_request_methods" (line 30) | CREATE TABLE "selfservice_registration_request_methods" ( type "selfservice_profile_management_requests" (line 39) | CREATE TABLE "selfservice_profile_management_requests" ( FILE: oryx/popx/stub/migrations/legacy/20191100000003_sessions.cockroach.up.sql type "sessions" (line 1) | CREATE TABLE "sessions" ( FILE: oryx/popx/stub/migrations/legacy/20191100000003_sessions.mysql.up.sql type `sessions` (line 1) | CREATE TABLE `sessions` ( FILE: oryx/popx/stub/migrations/legacy/20191100000003_sessions.postgres.up.sql type "sessions" (line 1) | CREATE TABLE "sessions" ( FILE: oryx/popx/stub/migrations/legacy/20191100000003_sessions.sqlite3.up.sql type "sessions" (line 1) | CREATE TABLE "sessions" ( FILE: oryx/popx/stub/migrations/legacy/20191100000004_errors.cockroach.up.sql type "selfservice_errors" (line 1) | CREATE TABLE "selfservice_errors" ( FILE: oryx/popx/stub/migrations/legacy/20191100000004_errors.mysql.up.sql type `selfservice_errors` (line 1) | CREATE TABLE `selfservice_errors` ( FILE: oryx/popx/stub/migrations/legacy/20191100000004_errors.postgres.up.sql type "selfservice_errors" (line 1) | CREATE TABLE "selfservice_errors" ( FILE: oryx/popx/stub/migrations/legacy/20191100000004_errors.sqlite3.up.sql type "selfservice_errors" (line 1) | CREATE TABLE "selfservice_errors" ( FILE: oryx/popx/stub/migrations/legacy/20191100000006_courier.cockroach.up.sql type "courier_messages" (line 1) | CREATE TABLE "courier_messages" ( FILE: oryx/popx/stub/migrations/legacy/20191100000006_courier.mysql.up.sql type `courier_messages` (line 1) | CREATE TABLE `courier_messages` ( FILE: oryx/popx/stub/migrations/legacy/20191100000006_courier.postgres.up.sql type "courier_messages" (line 1) | CREATE TABLE "courier_messages" ( FILE: oryx/popx/stub/migrations/legacy/20191100000006_courier.sqlite3.up.sql type "courier_messages" (line 1) | CREATE TABLE "courier_messages" ( FILE: oryx/popx/stub/migrations/legacy/20191100000007_errors.sqlite3.down.sql type "_selfservice_errors_tmp" (line 1) | CREATE TABLE "_selfservice_errors_tmp" ( FILE: oryx/popx/stub/migrations/legacy/20191100000008_selfservice_verification.cockroach.up.sql type "identity_verifiable_addresses" (line 1) | CREATE TABLE "identity_verifiable_addresses" ( type "identity_verifiable_addresses" (line 16) | CREATE UNIQUE INDEX "identity_verifiable_addresses_code_uq_idx" ON "iden... type "identity_verifiable_addresses" (line 17) | CREATE INDEX "identity_verifiable_addresses_code_idx" ON "identity_verif... type "identity_verifiable_addresses" (line 18) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... type "identity_verifiable_addresses" (line 19) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "identity... type "selfservice_verification_requests" (line 20) | CREATE TABLE "selfservice_verification_requests" ( FILE: oryx/popx/stub/migrations/legacy/20191100000008_selfservice_verification.mysql.up.sql type `identity_verifiable_addresses` (line 1) | CREATE TABLE `identity_verifiable_addresses` ( type `identity_verifiable_addresses_code_uq_idx` (line 16) | CREATE UNIQUE INDEX `identity_verifiable_addresses_code_uq_idx` ON `iden... type `identity_verifiable_addresses_code_idx` (line 17) | CREATE INDEX `identity_verifiable_addresses_code_idx` ON `identity_verif... type `identity_verifiable_addresses_status_via_uq_idx` (line 18) | CREATE UNIQUE INDEX `identity_verifiable_addresses_status_via_uq_idx` ON... type `identity_verifiable_addresses_status_via_idx` (line 19) | CREATE INDEX `identity_verifiable_addresses_status_via_idx` ON `identity... type `selfservice_verification_requests` (line 20) | CREATE TABLE `selfservice_verification_requests` ( FILE: oryx/popx/stub/migrations/legacy/20191100000008_selfservice_verification.postgres.up.sql type "identity_verifiable_addresses" (line 1) | CREATE TABLE "identity_verifiable_addresses" ( type "identity_verifiable_addresses" (line 16) | CREATE UNIQUE INDEX "identity_verifiable_addresses_code_uq_idx" ON "iden... type "identity_verifiable_addresses" (line 17) | CREATE INDEX "identity_verifiable_addresses_code_idx" ON "identity_verif... type "identity_verifiable_addresses" (line 18) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... type "identity_verifiable_addresses" (line 19) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "identity... type "selfservice_verification_requests" (line 20) | CREATE TABLE "selfservice_verification_requests" ( FILE: oryx/popx/stub/migrations/legacy/20191100000008_selfservice_verification.sqlite3.up.sql type "identity_verifiable_addresses" (line 1) | CREATE TABLE "identity_verifiable_addresses" ( type "identity_verifiable_addresses" (line 15) | CREATE UNIQUE INDEX "identity_verifiable_addresses_code_uq_idx" ON "iden... type "identity_verifiable_addresses" (line 16) | CREATE INDEX "identity_verifiable_addresses_code_idx" ON "identity_verif... type "identity_verifiable_addresses" (line 17) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... type "identity_verifiable_addresses" (line 18) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "identity... type "selfservice_verification_requests" (line 19) | CREATE TABLE "selfservice_verification_requests" ( FILE: oryx/popx/stub/migrations/legacy/20191100000010_errors.sqlite3.down.sql type "_selfservice_errors_tmp" (line 2) | CREATE TABLE "_selfservice_errors_tmp" ( FILE: oryx/popx/stub/migrations/legacy/20191100000010_errors.sqlite3.up.sql type "_selfservice_errors_tmp" (line 1) | CREATE TABLE "_selfservice_errors_tmp" ( FILE: oryx/popx/stub/migrations/legacy/20191100000011_courier_body_type.sqlite3.up.sql type "_courier_messages_tmp" (line 1) | CREATE TABLE "_courier_messages_tmp" ( FILE: oryx/popx/stub/migrations/legacy/20191100000012_login_request_forced.sqlite3.down.sql type "_selfservice_login_requests_tmp" (line 1) | CREATE TABLE "_selfservice_login_requests_tmp" ( FILE: oryx/popx/stub/migrations/legacy/20200317160354_create_profile_request_forms.cockroach.up.sql type "selfservice_profile_management_request_methods" (line 1) | CREATE TABLE "selfservice_profile_management_request_methods" ( FILE: oryx/popx/stub/migrations/legacy/20200317160354_create_profile_request_forms.mysql.up.sql type `selfservice_profile_management_request_methods` (line 1) | CREATE TABLE `selfservice_profile_management_request_methods` ( FILE: oryx/popx/stub/migrations/legacy/20200317160354_create_profile_request_forms.postgres.up.sql type "selfservice_profile_management_request_methods" (line 1) | CREATE TABLE "selfservice_profile_management_request_methods" ( FILE: oryx/popx/stub/migrations/legacy/20200317160354_create_profile_request_forms.sqlite3.down.sql type "_selfservice_profile_management_requests_tmp" (line 2) | CREATE TABLE "_selfservice_profile_management_requests_tmp" ( FILE: oryx/popx/stub/migrations/legacy/20200317160354_create_profile_request_forms.sqlite3.up.sql type "selfservice_profile_management_request_methods" (line 1) | CREATE TABLE "selfservice_profile_management_request_methods" ( type "_selfservice_profile_management_requests_tmp" (line 11) | CREATE TABLE "_selfservice_profile_management_requests_tmp" ( FILE: oryx/popx/stub/migrations/legacy/20200401183443_continuity_containers.cockroach.up.sql type "continuity_containers" (line 1) | CREATE TABLE "continuity_containers" ( FILE: oryx/popx/stub/migrations/legacy/20200401183443_continuity_containers.mysql.up.sql type `continuity_containers` (line 1) | CREATE TABLE `continuity_containers` ( FILE: oryx/popx/stub/migrations/legacy/20200401183443_continuity_containers.postgres.up.sql type "continuity_containers" (line 1) | CREATE TABLE "continuity_containers" ( FILE: oryx/popx/stub/migrations/legacy/20200401183443_continuity_containers.sqlite3.up.sql type "continuity_containers" (line 1) | CREATE TABLE "continuity_containers" ( FILE: oryx/popx/stub/migrations/legacy/20200519101057_create_recovery_addresses.cockroach.up.sql type "identity_recovery_addresses" (line 1) | CREATE TABLE "identity_recovery_addresses" ( type "identity_recovery_addresses" (line 11) | CREATE UNIQUE INDEX "identity_recovery_addresses_status_via_uq_idx" ON "... type "identity_recovery_addresses" (line 12) | CREATE INDEX "identity_recovery_addresses_status_via_idx" ON "identity_r... type "selfservice_recovery_requests" (line 13) | CREATE TABLE "selfservice_recovery_requests" ( type "selfservice_recovery_request_methods" (line 28) | CREATE TABLE "selfservice_recovery_request_methods" ( type "identity_recovery_tokens" (line 38) | CREATE TABLE "identity_recovery_tokens" ( type "identity_recovery_tokens" (line 51) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "identi... type "identity_recovery_tokens" (line 52) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "identity_recover... FILE: oryx/popx/stub/migrations/legacy/20200519101057_create_recovery_addresses.mysql.up.sql type `identity_recovery_addresses` (line 1) | CREATE TABLE `identity_recovery_addresses` ( type `identity_recovery_addresses_status_via_uq_idx` (line 11) | CREATE UNIQUE INDEX `identity_recovery_addresses_status_via_uq_idx` ON `... type `identity_recovery_addresses_status_via_idx` (line 12) | CREATE INDEX `identity_recovery_addresses_status_via_idx` ON `identity_r... type `selfservice_recovery_requests` (line 13) | CREATE TABLE `selfservice_recovery_requests` ( type `selfservice_recovery_request_methods` (line 28) | CREATE TABLE `selfservice_recovery_request_methods` ( type `identity_recovery_tokens` (line 38) | CREATE TABLE `identity_recovery_tokens` ( type `identity_recovery_addresses_code_uq_idx` (line 51) | CREATE UNIQUE INDEX `identity_recovery_addresses_code_uq_idx` ON `identi... type `identity_recovery_addresses_code_idx` (line 52) | CREATE INDEX `identity_recovery_addresses_code_idx` ON `identity_recover... FILE: oryx/popx/stub/migrations/legacy/20200519101057_create_recovery_addresses.postgres.up.sql type "identity_recovery_addresses" (line 1) | CREATE TABLE "identity_recovery_addresses" ( type "identity_recovery_addresses" (line 11) | CREATE UNIQUE INDEX "identity_recovery_addresses_status_via_uq_idx" ON "... type "identity_recovery_addresses" (line 12) | CREATE INDEX "identity_recovery_addresses_status_via_idx" ON "identity_r... type "selfservice_recovery_requests" (line 13) | CREATE TABLE "selfservice_recovery_requests" ( type "selfservice_recovery_request_methods" (line 28) | CREATE TABLE "selfservice_recovery_request_methods" ( type "identity_recovery_tokens" (line 38) | CREATE TABLE "identity_recovery_tokens" ( type "identity_recovery_tokens" (line 51) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "identi... type "identity_recovery_tokens" (line 52) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "identity_recover... FILE: oryx/popx/stub/migrations/legacy/20200519101057_create_recovery_addresses.sqlite3.up.sql type "identity_recovery_addresses" (line 1) | CREATE TABLE "identity_recovery_addresses" ( type "identity_recovery_addresses" (line 10) | CREATE UNIQUE INDEX "identity_recovery_addresses_status_via_uq_idx" ON "... type "identity_recovery_addresses" (line 11) | CREATE INDEX "identity_recovery_addresses_status_via_idx" ON "identity_r... type "selfservice_recovery_requests" (line 12) | CREATE TABLE "selfservice_recovery_requests" ( type "selfservice_recovery_request_methods" (line 26) | CREATE TABLE "selfservice_recovery_request_methods" ( type "identity_recovery_tokens" (line 35) | CREATE TABLE "identity_recovery_tokens" ( type "identity_recovery_tokens" (line 47) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "identi... type "identity_recovery_tokens" (line 48) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "identity_recover... FILE: oryx/popx/stub/migrations/legacy/20200601101000_create_messages.sqlite3.down.sql type "_selfservice_settings_requests_tmp" (line 1) | CREATE TABLE "_selfservice_settings_requests_tmp" ( FILE: oryx/popx/stub/migrations/legacy/20200605111551_messages.sqlite3.down.sql type "_selfservice_verification_requests_tmp" (line 1) | CREATE TABLE "_selfservice_verification_requests_tmp" ( type "_selfservice_login_requests_tmp" (line 16) | CREATE TABLE "_selfservice_login_requests_tmp" ( type "_selfservice_registration_requests_tmp" (line 31) | CREATE TABLE "_selfservice_registration_requests_tmp" ( FILE: oryx/popx/stub/migrations/legacy/20200607165100_settings.sqlite3.down.sql type "_selfservice_settings_requests_tmp" (line 1) | CREATE TABLE "_selfservice_settings_requests_tmp" ( FILE: oryx/popx/stub/migrations/legacy/20200607165100_settings.sqlite3.up.sql type "_selfservice_settings_requests_tmp" (line 2) | CREATE TABLE "_selfservice_settings_requests_tmp" ( FILE: oryx/popx/stub/migrations/legacy/20200810141652_flow_type.sqlite3.down.sql type "_selfservice_login_requests_tmp" (line 1) | CREATE TABLE "_selfservice_login_requests_tmp" ( type "_selfservice_registration_requests_tmp" (line 17) | CREATE TABLE "_selfservice_registration_requests_tmp" ( type "_selfservice_settings_requests_tmp" (line 32) | CREATE TABLE "_selfservice_settings_requests_tmp" ( type "_selfservice_recovery_requests_tmp" (line 49) | CREATE TABLE "_selfservice_recovery_requests_tmp" ( type "_selfservice_verification_requests_tmp" (line 67) | CREATE TABLE "_selfservice_verification_requests_tmp" ( FILE: oryx/popx/stub/migrations/legacy/20200812124254_add_session_token.cockroach.up.sql type "sessions" (line 7) | CREATE UNIQUE INDEX "sessions_token_uq_idx" ON "sessions" (token) type "sessions" (line 8) | CREATE INDEX "sessions_token_idx" ON "sessions" (token) FILE: oryx/popx/stub/migrations/legacy/20200812124254_add_session_token.mysql.up.sql type `sessions_token_uq_idx` (line 4) | CREATE UNIQUE INDEX `sessions_token_uq_idx` ON `sessions` (`token`) type `sessions_token_idx` (line 5) | CREATE INDEX `sessions_token_idx` ON `sessions` (`token`) FILE: oryx/popx/stub/migrations/legacy/20200812124254_add_session_token.postgres.up.sql type "sessions" (line 4) | CREATE UNIQUE INDEX "sessions_token_uq_idx" ON "sessions" (token) type "sessions" (line 5) | CREATE INDEX "sessions_token_idx" ON "sessions" (token) FILE: oryx/popx/stub/migrations/legacy/20200812124254_add_session_token.sqlite3.down.sql type "_sessions_tmp" (line 3) | CREATE TABLE "_sessions_tmp" ( FILE: oryx/popx/stub/migrations/legacy/20200812124254_add_session_token.sqlite3.up.sql type "_sessions_tmp" (line 3) | CREATE TABLE "_sessions_tmp" ( type "sessions" (line 17) | CREATE UNIQUE INDEX "sessions_token_uq_idx" ON "sessions" (token) type "sessions" (line 18) | CREATE INDEX "sessions_token_idx" ON "sessions" (token) FILE: oryx/popx/stub/migrations/legacy/20200812160551_add_session_revoke.sqlite3.down.sql type "_sessions_tmp" (line 3) | CREATE TABLE "_sessions_tmp" ( type "_sessions_tmp" (line 14) | CREATE INDEX "sessions_token_idx" ON "_sessions_tmp" (token) type "_sessions_tmp" (line 15) | CREATE UNIQUE INDEX "sessions_token_uq_idx" ON "_sessions_tmp" (token) FILE: oryx/popx/stub/migrations/legacy/20200830130642_add_verification_methods.sqlite3.down.sql type "_selfservice_verification_flows_tmp" (line 2) | CREATE TABLE "_selfservice_verification_flows_tmp" ( type "_selfservice_verification_flows_tmp" (line 18) | CREATE TABLE "_selfservice_verification_flows_tmp" ( FILE: oryx/popx/stub/migrations/legacy/20200830130644_add_verification_methods.cockroach.up.sql type "selfservice_verification_flow_methods" (line 1) | CREATE TABLE "selfservice_verification_flow_methods" ( FILE: oryx/popx/stub/migrations/legacy/20200830130644_add_verification_methods.mysql.up.sql type `selfservice_verification_flow_methods` (line 1) | CREATE TABLE `selfservice_verification_flow_methods` ( FILE: oryx/popx/stub/migrations/legacy/20200830130644_add_verification_methods.postgres.up.sql type "selfservice_verification_flow_methods" (line 1) | CREATE TABLE "selfservice_verification_flow_methods" ( FILE: oryx/popx/stub/migrations/legacy/20200830130644_add_verification_methods.sqlite3.up.sql type "selfservice_verification_flow_methods" (line 1) | CREATE TABLE "selfservice_verification_flow_methods" ( FILE: oryx/popx/stub/migrations/legacy/20200830130646_add_verification_methods.sqlite3.up.sql type "_selfservice_verification_flows_tmp" (line 1) | CREATE TABLE "_selfservice_verification_flows_tmp" ( type "_selfservice_verification_flows_tmp" (line 20) | CREATE TABLE "_selfservice_verification_flows_tmp" ( type "_selfservice_verification_flows_tmp" (line 38) | CREATE TABLE "_selfservice_verification_flows_tmp" ( FILE: oryx/popx/stub/migrations/legacy/20200830154602_add_verification_token.cockroach.up.sql type "identity_verification_tokens" (line 1) | CREATE TABLE "identity_verification_tokens" ( type "identity_verification_tokens" (line 16) | CREATE UNIQUE INDEX "identity_verification_tokens_token_uq_idx" ON "iden... type "identity_verification_tokens" (line 17) | CREATE INDEX "identity_verification_tokens_token_idx" ON "identity_verif... type "identity_verification_tokens" (line 18) | CREATE INDEX "identity_verification_tokens_verifiable_address_id_idx" ON... type "identity_verification_tokens" (line 19) | CREATE INDEX "identity_verification_tokens_verification_flow_id_idx" ON ... FILE: oryx/popx/stub/migrations/legacy/20200830154602_add_verification_token.mysql.up.sql type `identity_verification_tokens` (line 1) | CREATE TABLE `identity_verification_tokens` ( type `identity_verification_tokens_token_uq_idx` (line 16) | CREATE UNIQUE INDEX `identity_verification_tokens_token_uq_idx` ON `iden... type `identity_verification_tokens_token_idx` (line 17) | CREATE INDEX `identity_verification_tokens_token_idx` ON `identity_verif... type `identity_verification_tokens_verifiable_address_id_idx` (line 18) | CREATE INDEX `identity_verification_tokens_verifiable_address_id_idx` ON... type `identity_verification_tokens_verification_flow_id_idx` (line 19) | CREATE INDEX `identity_verification_tokens_verification_flow_id_idx` ON ... FILE: oryx/popx/stub/migrations/legacy/20200830154602_add_verification_token.postgres.up.sql type "identity_verification_tokens" (line 1) | CREATE TABLE "identity_verification_tokens" ( type "identity_verification_tokens" (line 16) | CREATE UNIQUE INDEX "identity_verification_tokens_token_uq_idx" ON "iden... type "identity_verification_tokens" (line 17) | CREATE INDEX "identity_verification_tokens_token_idx" ON "identity_verif... type "identity_verification_tokens" (line 18) | CREATE INDEX "identity_verification_tokens_verifiable_address_id_idx" ON... type "identity_verification_tokens" (line 19) | CREATE INDEX "identity_verification_tokens_verification_flow_id_idx" ON ... FILE: oryx/popx/stub/migrations/legacy/20200830154602_add_verification_token.sqlite3.up.sql type "identity_verification_tokens" (line 1) | CREATE TABLE "identity_verification_tokens" ( type "identity_verification_tokens" (line 15) | CREATE UNIQUE INDEX "identity_verification_tokens_token_uq_idx" ON "iden... type "identity_verification_tokens" (line 16) | CREATE INDEX "identity_verification_tokens_token_idx" ON "identity_verif... type "identity_verification_tokens" (line 17) | CREATE INDEX "identity_verification_tokens_verifiable_address_id_idx" ON... type "identity_verification_tokens" (line 18) | CREATE INDEX "identity_verification_tokens_verification_flow_id_idx" ON ... FILE: oryx/popx/stub/migrations/legacy/20200830172221_recovery_token_expires.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 4) | CREATE TABLE "_identity_recovery_tokens_tmp" ( type "_identity_recovery_tokens_tmp" (line 18) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "_ident... type "_identity_recovery_tokens_tmp" (line 19) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "_identity_recove... type "_identity_recovery_tokens_tmp" (line 25) | CREATE TABLE "_identity_recovery_tokens_tmp" ( type "_identity_recovery_tokens_tmp" (line 38) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "_ident... type "_identity_recovery_tokens_tmp" (line 39) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "_identity_recove... type "_identity_recovery_tokens_tmp" (line 46) | CREATE TABLE "_identity_recovery_tokens_tmp" ( type "_identity_recovery_tokens_tmp" (line 58) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "_ident... type "_identity_recovery_tokens_tmp" (line 59) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "_identity_recove... FILE: oryx/popx/stub/migrations/legacy/20200830172221_recovery_token_expires.sqlite3.up.sql type "_identity_recovery_tokens_tmp" (line 5) | CREATE TABLE "_identity_recovery_tokens_tmp" ( type "_identity_recovery_tokens_tmp" (line 19) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "_identity_recove... type "_identity_recovery_tokens_tmp" (line 20) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "_ident... FILE: oryx/popx/stub/migrations/legacy/20200831110752_identity_verifiable_address_remove_code.cockroach.down.sql type "identity_verifiable_addresses" (line 14) | CREATE UNIQUE INDEX "identity_verifiable_addresses_code_uq_idx" ON "iden... type "identity_verifiable_addresses" (line 15) | CREATE INDEX "identity_verifiable_addresses_code_idx" ON "identity_verif... FILE: oryx/popx/stub/migrations/legacy/20200831110752_identity_verifiable_address_remove_code.mysql.down.sql type `identity_verifiable_addresses_code_uq_idx` (line 7) | CREATE UNIQUE INDEX `identity_verifiable_addresses_code_uq_idx` ON `iden... type `identity_verifiable_addresses_code_idx` (line 8) | CREATE INDEX `identity_verifiable_addresses_code_idx` ON `identity_verif... FILE: oryx/popx/stub/migrations/legacy/20200831110752_identity_verifiable_address_remove_code.postgres.down.sql type "identity_verifiable_addresses" (line 7) | CREATE UNIQUE INDEX "identity_verifiable_addresses_code_uq_idx" ON "iden... type "identity_verifiable_addresses" (line 8) | CREATE INDEX "identity_verifiable_addresses_code_idx" ON "identity_verif... FILE: oryx/popx/stub/migrations/legacy/20200831110752_identity_verifiable_address_remove_code.sqlite3.down.sql type "_identity_verifiable_addresses_tmp" (line 7) | CREATE TABLE "_identity_verifiable_addresses_tmp" ( type "_identity_verifiable_addresses_tmp" (line 21) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... type "_identity_verifiable_addresses_tmp" (line 22) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "_identit... type "_identity_verifiable_addresses_tmp" (line 28) | CREATE TABLE "_identity_verifiable_addresses_tmp" ( type "_identity_verifiable_addresses_tmp" (line 42) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... type "_identity_verifiable_addresses_tmp" (line 43) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "_identit... type "identity_verifiable_addresses" (line 47) | CREATE UNIQUE INDEX "identity_verifiable_addresses_code_uq_idx" ON "iden... type "identity_verifiable_addresses" (line 48) | CREATE INDEX "identity_verifiable_addresses_code_idx" ON "identity_verif... FILE: oryx/popx/stub/migrations/legacy/20200831110752_identity_verifiable_address_remove_code.sqlite3.up.sql type "_identity_verifiable_addresses_tmp" (line 5) | CREATE TABLE "_identity_verifiable_addresses_tmp" ( type "_identity_verifiable_addresses_tmp" (line 18) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "_identit... type "_identity_verifiable_addresses_tmp" (line 19) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... type "_identity_verifiable_addresses_tmp" (line 26) | CREATE TABLE "_identity_verifiable_addresses_tmp" ( type "_identity_verifiable_addresses_tmp" (line 38) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "_identit... type "_identity_verifiable_addresses_tmp" (line 39) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... FILE: oryx/popx/stub/migrations/templating/0_sql_create_tablename_template.up.sql type identifier (line 1) | CREATE TABLE {{ identifier .Parameters.tableName }} ( "id" UUID NOT NULL... FILE: oryx/popx/stub/migrations/testdata_migrations/20220513_create_table.up.sql type "testdata" (line 1) | CREATE TABLE "testdata" ( FILE: oryx/popx/stub/migrations/transactional/20191100000001000000_identities.cockroach.up.sql type "identities" (line 1) | CREATE TABLE "identities" ( FILE: oryx/popx/stub/migrations/transactional/20191100000001000000_identities.mysql.up.sql type `identities` (line 1) | CREATE TABLE `identities` ( FILE: oryx/popx/stub/migrations/transactional/20191100000001000000_identities.postgres.up.sql type "identities" (line 1) | CREATE TABLE "identities" ( FILE: oryx/popx/stub/migrations/transactional/20191100000001000000_identities.sqlite3.up.sql type "identities" (line 1) | CREATE TABLE "identities" ( FILE: oryx/popx/stub/migrations/transactional/20191100000001000001_identities.cockroach.up.sql type "identity_credential_types" (line 1) | CREATE TABLE "identity_credential_types" ( FILE: oryx/popx/stub/migrations/transactional/20191100000001000001_identities.mysql.up.sql type `identity_credential_types` (line 1) | CREATE TABLE `identity_credential_types` ( FILE: oryx/popx/stub/migrations/transactional/20191100000001000001_identities.postgres.up.sql type "identity_credential_types" (line 1) | CREATE TABLE "identity_credential_types" ( FILE: oryx/popx/stub/migrations/transactional/20191100000001000001_identities.sqlite3.up.sql type "identity_credential_types" (line 1) | CREATE TABLE "identity_credential_types" ( FILE: oryx/popx/stub/migrations/transactional/20191100000001000002_identities.cockroach.up.sql type "identity_credential_types" (line 1) | CREATE UNIQUE INDEX "identity_credential_types_name_idx" ON "identity_cr... FILE: oryx/popx/stub/migrations/transactional/20191100000001000002_identities.mysql.up.sql type `identity_credential_types_name_idx` (line 1) | CREATE UNIQUE INDEX `identity_credential_types_name_idx` ON `identity_cr... FILE: oryx/popx/stub/migrations/transactional/20191100000001000002_identities.postgres.up.sql type "identity_credential_types" (line 1) | CREATE UNIQUE INDEX "identity_credential_types_name_idx" ON "identity_cr... FILE: oryx/popx/stub/migrations/transactional/20191100000001000002_identities.sqlite3.up.sql type "identity_credential_types" (line 1) | CREATE UNIQUE INDEX "identity_credential_types_name_idx" ON "identity_cr... FILE: oryx/popx/stub/migrations/transactional/20191100000001000003_identities.cockroach.up.sql type "identity_credentials" (line 1) | CREATE TABLE "identity_credentials" ( FILE: oryx/popx/stub/migrations/transactional/20191100000001000003_identities.mysql.up.sql type `identity_credentials` (line 1) | CREATE TABLE `identity_credentials` ( FILE: oryx/popx/stub/migrations/transactional/20191100000001000003_identities.postgres.up.sql type "identity_credentials" (line 1) | CREATE TABLE "identity_credentials" ( FILE: oryx/popx/stub/migrations/transactional/20191100000001000003_identities.sqlite3.up.sql type "identity_credentials" (line 1) | CREATE TABLE "identity_credentials" ( FILE: oryx/popx/stub/migrations/transactional/20191100000001000004_identities.cockroach.up.sql type "identity_credential_identifiers" (line 1) | CREATE TABLE "identity_credential_identifiers" ( FILE: oryx/popx/stub/migrations/transactional/20191100000001000004_identities.mysql.up.sql type `identity_credential_identifiers` (line 1) | CREATE TABLE `identity_credential_identifiers` ( FILE: oryx/popx/stub/migrations/transactional/20191100000001000004_identities.postgres.up.sql type "identity_credential_identifiers" (line 1) | CREATE TABLE "identity_credential_identifiers" ( FILE: oryx/popx/stub/migrations/transactional/20191100000001000004_identities.sqlite3.up.sql type "identity_credential_identifiers" (line 1) | CREATE TABLE "identity_credential_identifiers" ( FILE: oryx/popx/stub/migrations/transactional/20191100000001000005_identities.cockroach.up.sql type "identity_credential_identifiers" (line 1) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_idx" ON ... FILE: oryx/popx/stub/migrations/transactional/20191100000001000005_identities.mysql.up.sql type `identity_credential_identifiers_identifier_idx` (line 1) | CREATE UNIQUE INDEX `identity_credential_identifiers_identifier_idx` ON ... FILE: oryx/popx/stub/migrations/transactional/20191100000001000005_identities.postgres.up.sql type "identity_credential_identifiers" (line 1) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_idx" ON ... FILE: oryx/popx/stub/migrations/transactional/20191100000001000005_identities.sqlite3.up.sql type "identity_credential_identifiers" (line 1) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_idx" ON ... FILE: oryx/popx/stub/migrations/transactional/20191100000002000000_requests.cockroach.up.sql type "selfservice_login_requests" (line 1) | CREATE TABLE "selfservice_login_requests" ( FILE: oryx/popx/stub/migrations/transactional/20191100000002000000_requests.mysql.up.sql type `selfservice_login_requests` (line 1) | CREATE TABLE `selfservice_login_requests` ( FILE: oryx/popx/stub/migrations/transactional/20191100000002000000_requests.postgres.up.sql type "selfservice_login_requests" (line 1) | CREATE TABLE "selfservice_login_requests" ( FILE: oryx/popx/stub/migrations/transactional/20191100000002000000_requests.sqlite3.up.sql type "selfservice_login_requests" (line 1) | CREATE TABLE "selfservice_login_requests" ( FILE: oryx/popx/stub/migrations/transactional/20191100000002000001_requests.cockroach.up.sql type "selfservice_login_request_methods" (line 1) | CREATE TABLE "selfservice_login_request_methods" ( FILE: oryx/popx/stub/migrations/transactional/20191100000002000001_requests.mysql.up.sql type `selfservice_login_request_methods` (line 1) | CREATE TABLE `selfservice_login_request_methods` ( FILE: oryx/popx/stub/migrations/transactional/20191100000002000001_requests.postgres.up.sql type "selfservice_login_request_methods" (line 1) | CREATE TABLE "selfservice_login_request_methods" ( FILE: oryx/popx/stub/migrations/transactional/20191100000002000001_requests.sqlite3.up.sql type "selfservice_login_request_methods" (line 1) | CREATE TABLE "selfservice_login_request_methods" ( FILE: oryx/popx/stub/migrations/transactional/20191100000002000002_requests.cockroach.up.sql type "selfservice_registration_requests" (line 1) | CREATE TABLE "selfservice_registration_requests" ( FILE: oryx/popx/stub/migrations/transactional/20191100000002000002_requests.mysql.up.sql type `selfservice_registration_requests` (line 1) | CREATE TABLE `selfservice_registration_requests` ( FILE: oryx/popx/stub/migrations/transactional/20191100000002000002_requests.postgres.up.sql type "selfservice_registration_requests" (line 1) | CREATE TABLE "selfservice_registration_requests" ( FILE: oryx/popx/stub/migrations/transactional/20191100000002000002_requests.sqlite3.up.sql type "selfservice_registration_requests" (line 1) | CREATE TABLE "selfservice_registration_requests" ( FILE: oryx/popx/stub/migrations/transactional/20191100000002000003_requests.cockroach.up.sql type "selfservice_registration_request_methods" (line 1) | CREATE TABLE "selfservice_registration_request_methods" ( FILE: oryx/popx/stub/migrations/transactional/20191100000002000003_requests.mysql.up.sql type `selfservice_registration_request_methods` (line 1) | CREATE TABLE `selfservice_registration_request_methods` ( FILE: oryx/popx/stub/migrations/transactional/20191100000002000003_requests.postgres.up.sql type "selfservice_registration_request_methods" (line 1) | CREATE TABLE "selfservice_registration_request_methods" ( FILE: oryx/popx/stub/migrations/transactional/20191100000002000003_requests.sqlite3.up.sql type "selfservice_registration_request_methods" (line 1) | CREATE TABLE "selfservice_registration_request_methods" ( FILE: oryx/popx/stub/migrations/transactional/20191100000002000004_requests.cockroach.up.sql type "selfservice_profile_management_requests" (line 1) | CREATE TABLE "selfservice_profile_management_requests" ( FILE: oryx/popx/stub/migrations/transactional/20191100000002000004_requests.mysql.up.sql type `selfservice_profile_management_requests` (line 1) | CREATE TABLE `selfservice_profile_management_requests` ( FILE: oryx/popx/stub/migrations/transactional/20191100000002000004_requests.postgres.up.sql type "selfservice_profile_management_requests" (line 1) | CREATE TABLE "selfservice_profile_management_requests" ( FILE: oryx/popx/stub/migrations/transactional/20191100000002000004_requests.sqlite3.up.sql type "selfservice_profile_management_requests" (line 1) | CREATE TABLE "selfservice_profile_management_requests" ( FILE: oryx/popx/stub/migrations/transactional/20191100000003000000_sessions.cockroach.up.sql type "sessions" (line 1) | CREATE TABLE "sessions" ( FILE: oryx/popx/stub/migrations/transactional/20191100000003000000_sessions.mysql.up.sql type `sessions` (line 1) | CREATE TABLE `sessions` ( FILE: oryx/popx/stub/migrations/transactional/20191100000003000000_sessions.postgres.up.sql type "sessions" (line 1) | CREATE TABLE "sessions" ( FILE: oryx/popx/stub/migrations/transactional/20191100000003000000_sessions.sqlite3.up.sql type "sessions" (line 1) | CREATE TABLE "sessions" ( FILE: oryx/popx/stub/migrations/transactional/20191100000004000000_errors.cockroach.up.sql type "selfservice_errors" (line 1) | CREATE TABLE "selfservice_errors" ( FILE: oryx/popx/stub/migrations/transactional/20191100000004000000_errors.mysql.up.sql type `selfservice_errors` (line 1) | CREATE TABLE `selfservice_errors` ( FILE: oryx/popx/stub/migrations/transactional/20191100000004000000_errors.postgres.up.sql type "selfservice_errors" (line 1) | CREATE TABLE "selfservice_errors" ( FILE: oryx/popx/stub/migrations/transactional/20191100000004000000_errors.sqlite3.up.sql type "selfservice_errors" (line 1) | CREATE TABLE "selfservice_errors" ( FILE: oryx/popx/stub/migrations/transactional/20191100000006000000_courier.cockroach.up.sql type "courier_messages" (line 1) | CREATE TABLE "courier_messages" ( FILE: oryx/popx/stub/migrations/transactional/20191100000006000000_courier.mysql.up.sql type `courier_messages` (line 1) | CREATE TABLE `courier_messages` ( FILE: oryx/popx/stub/migrations/transactional/20191100000006000000_courier.postgres.up.sql type "courier_messages" (line 1) | CREATE TABLE "courier_messages" ( FILE: oryx/popx/stub/migrations/transactional/20191100000006000000_courier.sqlite3.up.sql type "courier_messages" (line 1) | CREATE TABLE "courier_messages" ( FILE: oryx/popx/stub/migrations/transactional/20191100000007000003_errors.sqlite3.down.sql type "_selfservice_errors_tmp" (line 1) | CREATE TABLE "_selfservice_errors_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20191100000008000000_selfservice_verification.cockroach.up.sql type "identity_verifiable_addresses" (line 1) | CREATE TABLE "identity_verifiable_addresses" ( FILE: oryx/popx/stub/migrations/transactional/20191100000008000000_selfservice_verification.mysql.up.sql type `identity_verifiable_addresses` (line 1) | CREATE TABLE `identity_verifiable_addresses` ( FILE: oryx/popx/stub/migrations/transactional/20191100000008000000_selfservice_verification.postgres.up.sql type "identity_verifiable_addresses" (line 1) | CREATE TABLE "identity_verifiable_addresses" ( FILE: oryx/popx/stub/migrations/transactional/20191100000008000000_selfservice_verification.sqlite3.up.sql type "identity_verifiable_addresses" (line 1) | CREATE TABLE "identity_verifiable_addresses" ( FILE: oryx/popx/stub/migrations/transactional/20191100000008000001_selfservice_verification.cockroach.up.sql type "identity_verifiable_addresses" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_code_uq_idx" ON "iden... FILE: oryx/popx/stub/migrations/transactional/20191100000008000001_selfservice_verification.mysql.up.sql type `identity_verifiable_addresses_code_uq_idx` (line 1) | CREATE UNIQUE INDEX `identity_verifiable_addresses_code_uq_idx` ON `iden... FILE: oryx/popx/stub/migrations/transactional/20191100000008000001_selfservice_verification.postgres.up.sql type "identity_verifiable_addresses" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_code_uq_idx" ON "iden... FILE: oryx/popx/stub/migrations/transactional/20191100000008000001_selfservice_verification.sqlite3.up.sql type "identity_verifiable_addresses" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_code_uq_idx" ON "iden... FILE: oryx/popx/stub/migrations/transactional/20191100000008000002_selfservice_verification.cockroach.up.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_code_idx" ON "identity_verif... FILE: oryx/popx/stub/migrations/transactional/20191100000008000002_selfservice_verification.mysql.up.sql type `identity_verifiable_addresses_code_idx` (line 1) | CREATE INDEX `identity_verifiable_addresses_code_idx` ON `identity_verif... FILE: oryx/popx/stub/migrations/transactional/20191100000008000002_selfservice_verification.postgres.up.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_code_idx" ON "identity_verif... FILE: oryx/popx/stub/migrations/transactional/20191100000008000002_selfservice_verification.sqlite3.up.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_code_idx" ON "identity_verif... FILE: oryx/popx/stub/migrations/transactional/20191100000008000003_selfservice_verification.cockroach.up.sql type "identity_verifiable_addresses" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... FILE: oryx/popx/stub/migrations/transactional/20191100000008000003_selfservice_verification.mysql.up.sql type `identity_verifiable_addresses_status_via_uq_idx` (line 1) | CREATE UNIQUE INDEX `identity_verifiable_addresses_status_via_uq_idx` ON... FILE: oryx/popx/stub/migrations/transactional/20191100000008000003_selfservice_verification.postgres.up.sql type "identity_verifiable_addresses" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... FILE: oryx/popx/stub/migrations/transactional/20191100000008000003_selfservice_verification.sqlite3.up.sql type "identity_verifiable_addresses" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... FILE: oryx/popx/stub/migrations/transactional/20191100000008000004_selfservice_verification.cockroach.up.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "identity... FILE: oryx/popx/stub/migrations/transactional/20191100000008000004_selfservice_verification.mysql.up.sql type `identity_verifiable_addresses_status_via_idx` (line 1) | CREATE INDEX `identity_verifiable_addresses_status_via_idx` ON `identity... FILE: oryx/popx/stub/migrations/transactional/20191100000008000004_selfservice_verification.postgres.up.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "identity... FILE: oryx/popx/stub/migrations/transactional/20191100000008000004_selfservice_verification.sqlite3.up.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "identity... FILE: oryx/popx/stub/migrations/transactional/20191100000008000005_selfservice_verification.cockroach.up.sql type "selfservice_verification_requests" (line 1) | CREATE TABLE "selfservice_verification_requests" ( FILE: oryx/popx/stub/migrations/transactional/20191100000008000005_selfservice_verification.mysql.up.sql type `selfservice_verification_requests` (line 1) | CREATE TABLE `selfservice_verification_requests` ( FILE: oryx/popx/stub/migrations/transactional/20191100000008000005_selfservice_verification.postgres.up.sql type "selfservice_verification_requests" (line 1) | CREATE TABLE "selfservice_verification_requests" ( FILE: oryx/popx/stub/migrations/transactional/20191100000008000005_selfservice_verification.sqlite3.up.sql type "selfservice_verification_requests" (line 1) | CREATE TABLE "selfservice_verification_requests" ( FILE: oryx/popx/stub/migrations/transactional/20191100000010000000_errors.sqlite3.up.sql type "_selfservice_errors_tmp" (line 1) | CREATE TABLE "_selfservice_errors_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20191100000010000003_errors.sqlite3.down.sql type "_selfservice_errors_tmp" (line 1) | CREATE TABLE "_selfservice_errors_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20191100000011000000_courier_body_type.sqlite3.up.sql type "_courier_messages_tmp" (line 1) | CREATE TABLE "_courier_messages_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20191100000012000003_login_request_forced.sqlite3.down.sql type "_selfservice_login_requests_tmp" (line 1) | CREATE TABLE "_selfservice_login_requests_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200317160354000000_create_profile_request_forms.cockroach.up.sql type "selfservice_profile_management_request_methods" (line 1) | CREATE TABLE "selfservice_profile_management_request_methods" ( FILE: oryx/popx/stub/migrations/transactional/20200317160354000000_create_profile_request_forms.mysql.up.sql type `selfservice_profile_management_request_methods` (line 1) | CREATE TABLE `selfservice_profile_management_request_methods` ( FILE: oryx/popx/stub/migrations/transactional/20200317160354000000_create_profile_request_forms.postgres.up.sql type "selfservice_profile_management_request_methods" (line 1) | CREATE TABLE "selfservice_profile_management_request_methods" ( FILE: oryx/popx/stub/migrations/transactional/20200317160354000000_create_profile_request_forms.sqlite3.up.sql type "selfservice_profile_management_request_methods" (line 1) | CREATE TABLE "selfservice_profile_management_request_methods" ( FILE: oryx/popx/stub/migrations/transactional/20200317160354000003_create_profile_request_forms.sqlite3.down.sql type "_selfservice_profile_management_requests_tmp" (line 1) | CREATE TABLE "_selfservice_profile_management_requests_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200317160354000003_create_profile_request_forms.sqlite3.up.sql type "_selfservice_profile_management_requests_tmp" (line 1) | CREATE TABLE "_selfservice_profile_management_requests_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200401183443000000_continuity_containers.cockroach.up.sql type "continuity_containers" (line 1) | CREATE TABLE "continuity_containers" ( FILE: oryx/popx/stub/migrations/transactional/20200401183443000000_continuity_containers.mysql.up.sql type `continuity_containers` (line 1) | CREATE TABLE `continuity_containers` ( FILE: oryx/popx/stub/migrations/transactional/20200401183443000000_continuity_containers.postgres.up.sql type "continuity_containers" (line 1) | CREATE TABLE "continuity_containers" ( FILE: oryx/popx/stub/migrations/transactional/20200401183443000000_continuity_containers.sqlite3.up.sql type "continuity_containers" (line 1) | CREATE TABLE "continuity_containers" ( FILE: oryx/popx/stub/migrations/transactional/20200519101057000000_create_recovery_addresses.cockroach.up.sql type "identity_recovery_addresses" (line 1) | CREATE TABLE "identity_recovery_addresses" ( FILE: oryx/popx/stub/migrations/transactional/20200519101057000000_create_recovery_addresses.mysql.up.sql type `identity_recovery_addresses` (line 1) | CREATE TABLE `identity_recovery_addresses` ( FILE: oryx/popx/stub/migrations/transactional/20200519101057000000_create_recovery_addresses.postgres.up.sql type "identity_recovery_addresses" (line 1) | CREATE TABLE "identity_recovery_addresses" ( FILE: oryx/popx/stub/migrations/transactional/20200519101057000000_create_recovery_addresses.sqlite3.up.sql type "identity_recovery_addresses" (line 1) | CREATE TABLE "identity_recovery_addresses" ( FILE: oryx/popx/stub/migrations/transactional/20200519101057000001_create_recovery_addresses.cockroach.up.sql type "identity_recovery_addresses" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_status_via_uq_idx" ON "... FILE: oryx/popx/stub/migrations/transactional/20200519101057000001_create_recovery_addresses.mysql.up.sql type `identity_recovery_addresses_status_via_uq_idx` (line 1) | CREATE UNIQUE INDEX `identity_recovery_addresses_status_via_uq_idx` ON `... FILE: oryx/popx/stub/migrations/transactional/20200519101057000001_create_recovery_addresses.postgres.up.sql type "identity_recovery_addresses" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_status_via_uq_idx" ON "... FILE: oryx/popx/stub/migrations/transactional/20200519101057000001_create_recovery_addresses.sqlite3.up.sql type "identity_recovery_addresses" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_status_via_uq_idx" ON "... FILE: oryx/popx/stub/migrations/transactional/20200519101057000002_create_recovery_addresses.cockroach.up.sql type "identity_recovery_addresses" (line 1) | CREATE INDEX "identity_recovery_addresses_status_via_idx" ON "identity_r... FILE: oryx/popx/stub/migrations/transactional/20200519101057000002_create_recovery_addresses.mysql.up.sql type `identity_recovery_addresses_status_via_idx` (line 1) | CREATE INDEX `identity_recovery_addresses_status_via_idx` ON `identity_r... FILE: oryx/popx/stub/migrations/transactional/20200519101057000002_create_recovery_addresses.postgres.up.sql type "identity_recovery_addresses" (line 1) | CREATE INDEX "identity_recovery_addresses_status_via_idx" ON "identity_r... FILE: oryx/popx/stub/migrations/transactional/20200519101057000002_create_recovery_addresses.sqlite3.up.sql type "identity_recovery_addresses" (line 1) | CREATE INDEX "identity_recovery_addresses_status_via_idx" ON "identity_r... FILE: oryx/popx/stub/migrations/transactional/20200519101057000003_create_recovery_addresses.cockroach.up.sql type "selfservice_recovery_requests" (line 1) | CREATE TABLE "selfservice_recovery_requests" ( FILE: oryx/popx/stub/migrations/transactional/20200519101057000003_create_recovery_addresses.mysql.up.sql type `selfservice_recovery_requests` (line 1) | CREATE TABLE `selfservice_recovery_requests` ( FILE: oryx/popx/stub/migrations/transactional/20200519101057000003_create_recovery_addresses.postgres.up.sql type "selfservice_recovery_requests" (line 1) | CREATE TABLE "selfservice_recovery_requests" ( FILE: oryx/popx/stub/migrations/transactional/20200519101057000003_create_recovery_addresses.sqlite3.up.sql type "selfservice_recovery_requests" (line 1) | CREATE TABLE "selfservice_recovery_requests" ( FILE: oryx/popx/stub/migrations/transactional/20200519101057000004_create_recovery_addresses.cockroach.up.sql type "selfservice_recovery_request_methods" (line 1) | CREATE TABLE "selfservice_recovery_request_methods" ( FILE: oryx/popx/stub/migrations/transactional/20200519101057000004_create_recovery_addresses.mysql.up.sql type `selfservice_recovery_request_methods` (line 1) | CREATE TABLE `selfservice_recovery_request_methods` ( FILE: oryx/popx/stub/migrations/transactional/20200519101057000004_create_recovery_addresses.postgres.up.sql type "selfservice_recovery_request_methods" (line 1) | CREATE TABLE "selfservice_recovery_request_methods" ( FILE: oryx/popx/stub/migrations/transactional/20200519101057000004_create_recovery_addresses.sqlite3.up.sql type "selfservice_recovery_request_methods" (line 1) | CREATE TABLE "selfservice_recovery_request_methods" ( FILE: oryx/popx/stub/migrations/transactional/20200519101057000005_create_recovery_addresses.cockroach.up.sql type "identity_recovery_tokens" (line 1) | CREATE TABLE "identity_recovery_tokens" ( FILE: oryx/popx/stub/migrations/transactional/20200519101057000005_create_recovery_addresses.mysql.up.sql type `identity_recovery_tokens` (line 1) | CREATE TABLE `identity_recovery_tokens` ( FILE: oryx/popx/stub/migrations/transactional/20200519101057000005_create_recovery_addresses.postgres.up.sql type "identity_recovery_tokens" (line 1) | CREATE TABLE "identity_recovery_tokens" ( FILE: oryx/popx/stub/migrations/transactional/20200519101057000005_create_recovery_addresses.sqlite3.up.sql type "identity_recovery_tokens" (line 1) | CREATE TABLE "identity_recovery_tokens" ( FILE: oryx/popx/stub/migrations/transactional/20200519101057000006_create_recovery_addresses.cockroach.up.sql type "identity_recovery_tokens" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "identi... FILE: oryx/popx/stub/migrations/transactional/20200519101057000006_create_recovery_addresses.mysql.up.sql type `identity_recovery_addresses_code_uq_idx` (line 1) | CREATE UNIQUE INDEX `identity_recovery_addresses_code_uq_idx` ON `identi... FILE: oryx/popx/stub/migrations/transactional/20200519101057000006_create_recovery_addresses.postgres.up.sql type "identity_recovery_tokens" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "identi... FILE: oryx/popx/stub/migrations/transactional/20200519101057000006_create_recovery_addresses.sqlite3.up.sql type "identity_recovery_tokens" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "identi... FILE: oryx/popx/stub/migrations/transactional/20200519101057000007_create_recovery_addresses.cockroach.up.sql type "identity_recovery_tokens" (line 1) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "identity_recover... FILE: oryx/popx/stub/migrations/transactional/20200519101057000007_create_recovery_addresses.mysql.up.sql type `identity_recovery_addresses_code_idx` (line 1) | CREATE INDEX `identity_recovery_addresses_code_idx` ON `identity_recover... FILE: oryx/popx/stub/migrations/transactional/20200519101057000007_create_recovery_addresses.postgres.up.sql type "identity_recovery_tokens" (line 1) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "identity_recover... FILE: oryx/popx/stub/migrations/transactional/20200519101057000007_create_recovery_addresses.sqlite3.up.sql type "identity_recovery_tokens" (line 1) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "identity_recover... FILE: oryx/popx/stub/migrations/transactional/20200601101000000003_create_messages.sqlite3.down.sql type "_selfservice_settings_requests_tmp" (line 1) | CREATE TABLE "_selfservice_settings_requests_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200605111551000003_messages.sqlite3.down.sql type "_selfservice_registration_requests_tmp" (line 1) | CREATE TABLE "_selfservice_registration_requests_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200605111551000007_messages.sqlite3.down.sql type "_selfservice_login_requests_tmp" (line 1) | CREATE TABLE "_selfservice_login_requests_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200605111551000011_messages.sqlite3.down.sql type "_selfservice_verification_requests_tmp" (line 1) | CREATE TABLE "_selfservice_verification_requests_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200607165100000001_settings.sqlite3.up.sql type "_selfservice_settings_requests_tmp" (line 1) | CREATE TABLE "_selfservice_settings_requests_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200607165100000004_settings.sqlite3.down.sql type "_selfservice_settings_requests_tmp" (line 1) | CREATE TABLE "_selfservice_settings_requests_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200810141652000003_flow_type.sqlite3.down.sql type "_selfservice_verification_requests_tmp" (line 1) | CREATE TABLE "_selfservice_verification_requests_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200810141652000007_flow_type.sqlite3.down.sql type "_selfservice_recovery_requests_tmp" (line 1) | CREATE TABLE "_selfservice_recovery_requests_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200810141652000011_flow_type.sqlite3.down.sql type "_selfservice_settings_requests_tmp" (line 1) | CREATE TABLE "_selfservice_settings_requests_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200810141652000015_flow_type.sqlite3.down.sql type "_selfservice_registration_requests_tmp" (line 1) | CREATE TABLE "_selfservice_registration_requests_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200810141652000019_flow_type.sqlite3.down.sql type "_selfservice_login_requests_tmp" (line 1) | CREATE TABLE "_selfservice_login_requests_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200812124254000002_add_session_token.sqlite3.up.sql type "_sessions_tmp" (line 1) | CREATE TABLE "_sessions_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200812124254000003_add_session_token.mysql.up.sql type `sessions_token_uq_idx` (line 1) | CREATE UNIQUE INDEX `sessions_token_uq_idx` ON `sessions` (`token`) FILE: oryx/popx/stub/migrations/transactional/20200812124254000003_add_session_token.postgres.up.sql type "sessions" (line 1) | CREATE UNIQUE INDEX "sessions_token_uq_idx" ON "sessions" (token) FILE: oryx/popx/stub/migrations/transactional/20200812124254000003_add_session_token.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE TABLE "_sessions_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200812124254000004_add_session_token.mysql.up.sql type `sessions_token_idx` (line 1) | CREATE INDEX `sessions_token_idx` ON `sessions` (`token`) FILE: oryx/popx/stub/migrations/transactional/20200812124254000004_add_session_token.postgres.up.sql type "sessions" (line 1) | CREATE INDEX "sessions_token_idx" ON "sessions" (token) FILE: oryx/popx/stub/migrations/transactional/20200812124254000006_add_session_token.cockroach.up.sql type "sessions" (line 1) | CREATE UNIQUE INDEX "sessions_token_uq_idx" ON "sessions" (token) FILE: oryx/popx/stub/migrations/transactional/20200812124254000006_add_session_token.sqlite3.up.sql type "sessions" (line 1) | CREATE UNIQUE INDEX "sessions_token_uq_idx" ON "sessions" (token) FILE: oryx/popx/stub/migrations/transactional/20200812124254000007_add_session_token.cockroach.up.sql type "sessions" (line 1) | CREATE INDEX "sessions_token_idx" ON "sessions" (token) FILE: oryx/popx/stub/migrations/transactional/20200812124254000007_add_session_token.sqlite3.up.sql type "sessions" (line 1) | CREATE INDEX "sessions_token_idx" ON "sessions" (token) FILE: oryx/popx/stub/migrations/transactional/20200812160551000003_add_session_revoke.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE UNIQUE INDEX "sessions_token_uq_idx" ON "_sessions_tmp" (token) FILE: oryx/popx/stub/migrations/transactional/20200812160551000004_add_session_revoke.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE INDEX "sessions_token_idx" ON "_sessions_tmp" (token) FILE: oryx/popx/stub/migrations/transactional/20200812160551000005_add_session_revoke.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE TABLE "_sessions_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200830130642000005_add_verification_methods.sqlite3.down.sql type "_selfservice_verification_flows_tmp" (line 1) | CREATE TABLE "_selfservice_verification_flows_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200830130642000009_add_verification_methods.sqlite3.down.sql type "_selfservice_verification_flows_tmp" (line 1) | CREATE TABLE "_selfservice_verification_flows_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200830130644000000_add_verification_methods.cockroach.up.sql type "selfservice_verification_flow_methods" (line 1) | CREATE TABLE "selfservice_verification_flow_methods" ( FILE: oryx/popx/stub/migrations/transactional/20200830130644000000_add_verification_methods.mysql.up.sql type `selfservice_verification_flow_methods` (line 1) | CREATE TABLE `selfservice_verification_flow_methods` ( FILE: oryx/popx/stub/migrations/transactional/20200830130644000000_add_verification_methods.postgres.up.sql type "selfservice_verification_flow_methods" (line 1) | CREATE TABLE "selfservice_verification_flow_methods" ( FILE: oryx/popx/stub/migrations/transactional/20200830130644000000_add_verification_methods.sqlite3.up.sql type "selfservice_verification_flow_methods" (line 1) | CREATE TABLE "selfservice_verification_flow_methods" ( FILE: oryx/popx/stub/migrations/transactional/20200830130646000000_add_verification_methods.sqlite3.up.sql type "_selfservice_verification_flows_tmp" (line 1) | CREATE TABLE "_selfservice_verification_flows_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200830130646000004_add_verification_methods.sqlite3.up.sql type "_selfservice_verification_flows_tmp" (line 1) | CREATE TABLE "_selfservice_verification_flows_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200830130646000008_add_verification_methods.sqlite3.up.sql type "_selfservice_verification_flows_tmp" (line 1) | CREATE TABLE "_selfservice_verification_flows_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200830154602000000_add_verification_token.cockroach.up.sql type "identity_verification_tokens" (line 1) | CREATE TABLE "identity_verification_tokens" ( FILE: oryx/popx/stub/migrations/transactional/20200830154602000000_add_verification_token.mysql.up.sql type `identity_verification_tokens` (line 1) | CREATE TABLE `identity_verification_tokens` ( FILE: oryx/popx/stub/migrations/transactional/20200830154602000000_add_verification_token.postgres.up.sql type "identity_verification_tokens" (line 1) | CREATE TABLE "identity_verification_tokens" ( FILE: oryx/popx/stub/migrations/transactional/20200830154602000000_add_verification_token.sqlite3.up.sql type "identity_verification_tokens" (line 1) | CREATE TABLE "identity_verification_tokens" ( FILE: oryx/popx/stub/migrations/transactional/20200830154602000001_add_verification_token.cockroach.up.sql type "identity_verification_tokens" (line 1) | CREATE UNIQUE INDEX "identity_verification_tokens_token_uq_idx" ON "iden... FILE: oryx/popx/stub/migrations/transactional/20200830154602000001_add_verification_token.mysql.up.sql type `identity_verification_tokens_token_uq_idx` (line 1) | CREATE UNIQUE INDEX `identity_verification_tokens_token_uq_idx` ON `iden... FILE: oryx/popx/stub/migrations/transactional/20200830154602000001_add_verification_token.postgres.up.sql type "identity_verification_tokens" (line 1) | CREATE UNIQUE INDEX "identity_verification_tokens_token_uq_idx" ON "iden... FILE: oryx/popx/stub/migrations/transactional/20200830154602000001_add_verification_token.sqlite3.up.sql type "identity_verification_tokens" (line 1) | CREATE UNIQUE INDEX "identity_verification_tokens_token_uq_idx" ON "iden... FILE: oryx/popx/stub/migrations/transactional/20200830154602000002_add_verification_token.cockroach.up.sql type "identity_verification_tokens" (line 1) | CREATE INDEX "identity_verification_tokens_token_idx" ON "identity_verif... FILE: oryx/popx/stub/migrations/transactional/20200830154602000002_add_verification_token.mysql.up.sql type `identity_verification_tokens_token_idx` (line 1) | CREATE INDEX `identity_verification_tokens_token_idx` ON `identity_verif... FILE: oryx/popx/stub/migrations/transactional/20200830154602000002_add_verification_token.postgres.up.sql type "identity_verification_tokens" (line 1) | CREATE INDEX "identity_verification_tokens_token_idx" ON "identity_verif... FILE: oryx/popx/stub/migrations/transactional/20200830154602000002_add_verification_token.sqlite3.up.sql type "identity_verification_tokens" (line 1) | CREATE INDEX "identity_verification_tokens_token_idx" ON "identity_verif... FILE: oryx/popx/stub/migrations/transactional/20200830154602000003_add_verification_token.cockroach.up.sql type "identity_verification_tokens" (line 1) | CREATE INDEX "identity_verification_tokens_verifiable_address_id_idx" ON... FILE: oryx/popx/stub/migrations/transactional/20200830154602000003_add_verification_token.mysql.up.sql type `identity_verification_tokens_verifiable_address_id_idx` (line 1) | CREATE INDEX `identity_verification_tokens_verifiable_address_id_idx` ON... FILE: oryx/popx/stub/migrations/transactional/20200830154602000003_add_verification_token.postgres.up.sql type "identity_verification_tokens" (line 1) | CREATE INDEX "identity_verification_tokens_verifiable_address_id_idx" ON... FILE: oryx/popx/stub/migrations/transactional/20200830154602000003_add_verification_token.sqlite3.up.sql type "identity_verification_tokens" (line 1) | CREATE INDEX "identity_verification_tokens_verifiable_address_id_idx" ON... FILE: oryx/popx/stub/migrations/transactional/20200830154602000004_add_verification_token.cockroach.up.sql type "identity_verification_tokens" (line 1) | CREATE INDEX "identity_verification_tokens_verification_flow_id_idx" ON ... FILE: oryx/popx/stub/migrations/transactional/20200830154602000004_add_verification_token.mysql.up.sql type `identity_verification_tokens_verification_flow_id_idx` (line 1) | CREATE INDEX `identity_verification_tokens_verification_flow_id_idx` ON ... FILE: oryx/popx/stub/migrations/transactional/20200830154602000004_add_verification_token.postgres.up.sql type "identity_verification_tokens" (line 1) | CREATE INDEX "identity_verification_tokens_verification_flow_id_idx" ON ... FILE: oryx/popx/stub/migrations/transactional/20200830154602000004_add_verification_token.sqlite3.up.sql type "identity_verification_tokens" (line 1) | CREATE INDEX "identity_verification_tokens_verification_flow_id_idx" ON ... FILE: oryx/popx/stub/migrations/transactional/20200830172221000003_recovery_token_expires.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "_identity_recove... FILE: oryx/popx/stub/migrations/transactional/20200830172221000004_recovery_token_expires.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "_ident... FILE: oryx/popx/stub/migrations/transactional/20200830172221000004_recovery_token_expires.sqlite3.up.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE TABLE "_identity_recovery_tokens_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200830172221000005_recovery_token_expires.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE TABLE "_identity_recovery_tokens_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200830172221000005_recovery_token_expires.sqlite3.up.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "_identity_recove... FILE: oryx/popx/stub/migrations/transactional/20200830172221000006_recovery_token_expires.sqlite3.up.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "_ident... FILE: oryx/popx/stub/migrations/transactional/20200830172221000011_recovery_token_expires.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "_identity_recove... FILE: oryx/popx/stub/migrations/transactional/20200830172221000012_recovery_token_expires.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "_ident... FILE: oryx/popx/stub/migrations/transactional/20200830172221000013_recovery_token_expires.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE TABLE "_identity_recovery_tokens_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200830172221000019_recovery_token_expires.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "_identity_recove... FILE: oryx/popx/stub/migrations/transactional/20200830172221000020_recovery_token_expires.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "_ident... FILE: oryx/popx/stub/migrations/transactional/20200830172221000021_recovery_token_expires.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE TABLE "_identity_recovery_tokens_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200831110752000000_identity_verifiable_address_remove_code.cockroach.down.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_code_idx" ON "identity_verif... FILE: oryx/popx/stub/migrations/transactional/20200831110752000000_identity_verifiable_address_remove_code.mysql.down.sql type `identity_verifiable_addresses_code_idx` (line 1) | CREATE INDEX `identity_verifiable_addresses_code_idx` ON `identity_verif... FILE: oryx/popx/stub/migrations/transactional/20200831110752000000_identity_verifiable_address_remove_code.postgres.down.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_code_idx" ON "identity_verif... FILE: oryx/popx/stub/migrations/transactional/20200831110752000000_identity_verifiable_address_remove_code.sqlite3.down.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_code_idx" ON "identity_verif... FILE: oryx/popx/stub/migrations/transactional/20200831110752000001_identity_verifiable_address_remove_code.cockroach.down.sql type "identity_verifiable_addresses" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_code_uq_idx" ON "iden... FILE: oryx/popx/stub/migrations/transactional/20200831110752000001_identity_verifiable_address_remove_code.mysql.down.sql type `identity_verifiable_addresses_code_uq_idx` (line 1) | CREATE UNIQUE INDEX `identity_verifiable_addresses_code_uq_idx` ON `iden... FILE: oryx/popx/stub/migrations/transactional/20200831110752000001_identity_verifiable_address_remove_code.postgres.down.sql type "identity_verifiable_addresses" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_code_uq_idx" ON "iden... FILE: oryx/popx/stub/migrations/transactional/20200831110752000001_identity_verifiable_address_remove_code.sqlite3.down.sql type "identity_verifiable_addresses" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_code_uq_idx" ON "iden... FILE: oryx/popx/stub/migrations/transactional/20200831110752000004_identity_verifiable_address_remove_code.sqlite3.up.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE TABLE "_identity_verifiable_addresses_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200831110752000005_identity_verifiable_address_remove_code.sqlite3.down.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "_identit... FILE: oryx/popx/stub/migrations/transactional/20200831110752000005_identity_verifiable_address_remove_code.sqlite3.up.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "_identit... FILE: oryx/popx/stub/migrations/transactional/20200831110752000006_identity_verifiable_address_remove_code.sqlite3.down.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... FILE: oryx/popx/stub/migrations/transactional/20200831110752000006_identity_verifiable_address_remove_code.sqlite3.up.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... FILE: oryx/popx/stub/migrations/transactional/20200831110752000007_identity_verifiable_address_remove_code.sqlite3.down.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE TABLE "_identity_verifiable_addresses_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200831110752000012_identity_verifiable_address_remove_code.sqlite3.up.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE TABLE "_identity_verifiable_addresses_tmp" ( FILE: oryx/popx/stub/migrations/transactional/20200831110752000013_identity_verifiable_address_remove_code.sqlite3.down.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "_identit... FILE: oryx/popx/stub/migrations/transactional/20200831110752000013_identity_verifiable_address_remove_code.sqlite3.up.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "_identit... FILE: oryx/popx/stub/migrations/transactional/20200831110752000014_identity_verifiable_address_remove_code.sqlite3.down.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... FILE: oryx/popx/stub/migrations/transactional/20200831110752000014_identity_verifiable_address_remove_code.sqlite3.up.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... FILE: oryx/popx/stub/migrations/transactional/20200831110752000015_identity_verifiable_address_remove_code.sqlite3.down.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE TABLE "_identity_verifiable_addresses_tmp" ( FILE: oryx/popx/transaction.go type transactionContextKey (line 21) | type transactionContextKey constant transactionKey (line 23) | transactionKey transactionContextKey = 0 function WithTransaction (line 25) | func WithTransaction(ctx context.Context, tx *pop.Connection) context.Co... function InTransaction (line 29) | func InTransaction(ctx context.Context) bool { function Transaction (line 33) | func Transaction(ctx context.Context, connection *pop.Connection, callba... function GetConnection (line 85) | func GetConnection(ctx context.Context, connection *pop.Connection) *pop... type sqlxTxAdapter (line 95) | type sqlxTxAdapter struct method Exec (line 101) | func (s sqlxTxAdapter) Exec(ctx context.Context, query string, args ..... method Commit (line 106) | func (s sqlxTxAdapter) Commit(ctx context.Context) error { method Rollback (line 110) | func (s sqlxTxAdapter) Rollback(ctx context.Context) error { function caller (line 124) | func caller() string { FILE: oryx/profilex/profiling.go type noop (line 12) | type noop struct method Stop (line 15) | func (p *noop) Stop() {} function Profile (line 18) | func Profile() interface { function HelpMessage (line 35) | func HelpMessage() string { FILE: oryx/prometheusx/handler.go constant MetricsPrometheusPath (line 13) | MetricsPrometheusPath = "/metrics/prometheus" type muxrouter (line 16) | type muxrouter interface function SetMuxRoutes (line 21) | func SetMuxRoutes(mux muxrouter) { FILE: oryx/prometheusx/metrics.go type HTTPMetrics (line 18) | type HTTPMetrics struct method Describe (line 90) | func (h *HTTPMetrics) Describe(in chan<- *prometheus.Desc) { method Collect (line 100) | func (h *HTTPMetrics) Collect(in chan<- prometheus.Metric) { method instrumentHandlerStatusBucket (line 109) | func (h *HTTPMetrics) instrumentHandlerStatusBucket(next http.Handler)... method Instrument (line 132) | func (h *HTTPMetrics) Instrument(next http.Handler, endpoint string) h... constant HTTPPrefix (line 27) | HTTPPrefix = "http" function NewHTTPMetrics (line 29) | func NewHTTPMetrics(app, metricsPrefix, version, hash, date string) *HTT... function GetLabelForPattern (line 147) | func GetLabelForPattern(pattern string) string { FILE: oryx/proxy/proxy.go type RespMiddleware (line 19) | type RespMiddleware type ReqMiddleware (line 20) | type ReqMiddleware type HostMapper (line 21) | type HostMapper type options (line 22) | type options struct method getHostConfig (line 227) | func (o *options) getHostConfig(ctx context.Context, r *http.Request) ... method beforeProxyMiddleware (line 241) | func (o *options) beforeProxyMiddleware(h http.Handler) http.Handler { type HostConfig (line 31) | type HostConfig struct method setScheme (line 75) | func (c *HostConfig) setScheme(r *httputil.ProxyRequest) { method setHost (line 87) | func (c *HostConfig) setHost(r *httputil.ProxyRequest) { type Options (line 67) | type Options type contextKey (line 68) | type contextKey constant hostConfigKey (line 72) | hostConfigKey contextKey = "host config" function rewriter (line 96) | func rewriter(o *options) func(*httputil.ProxyRequest) { function modifyResponse (line 157) | func modifyResponse(o *options) func(*http.Response) error { function WithOnError (line 196) | func WithOnError(onReqErr func(*http.Request, error), onResErr func(*htt... function WithReqMiddleware (line 203) | func WithReqMiddleware(middlewares ...ReqMiddleware) Options { function WithRespMiddleware (line 209) | func WithRespMiddleware(middlewares ...RespMiddleware) Options { function WithTransport (line 215) | func WithTransport(t http.RoundTripper) Options { function WithErrorHandler (line 221) | func WithErrorHandler(eh func(w http.ResponseWriter, r *http.Request, er... function defaultErrorHandler (line 260) | func defaultErrorHandler(w http.ResponseWriter, r *http.Request, err err... function isTimeoutError (line 272) | func isTimeoutError(err error) bool { function New (line 279) | func New(hostMapper HostMapper, opts ...Options) http.Handler { FILE: oryx/proxy/rewrites.go type compressableBody (line 18) | type compressableBody struct method Close (line 26) | func (b *compressableBody) Close() error { method Write (line 36) | func (b *compressableBody) Write(d []byte) (int, error) { method Read (line 50) | func (b *compressableBody) Read(p []byte) (n int, err error) { function headerRequestRewrite (line 58) | func headerRequestRewrite(req *http.Request, c *HostConfig) { function headerResponseRewrite (line 69) | func headerResponseRewrite(resp *http.Response, c *HostConfig) error { function ReplaceCookieDomainAndSecure (line 88) | func ReplaceCookieDomainAndSecure(resp *http.Response, original, replace... function bodyResponseRewrite (line 103) | func bodyResponseRewrite(resp *http.Response, c *HostConfig) ([]byte, *c... function readBody (line 120) | func readBody(h http.Header, body io.ReadCloser) ([]byte, *compressableB... function handleWebsocketResponse (line 145) | func handleWebsocketResponse(n int, cb *compressableBody, body io.ReadCl... function stripPort (line 161) | func stripPort(host string) string { FILE: oryx/randx/sequence.go function RuneSequence (line 37) | func RuneSequence(l int, allowedRunes []rune) (seq []rune, err error) { function MustString (line 54) | func MustString(l int, allowedRunes []rune) string { FILE: oryx/randx/strength/main.go constant iterations (line 18) | iterations = 1000 * 100 type generate (line 20) | type generate function main (line 22) | func main() { function measureResultDistribution (line 28) | func measureResultDistribution(iterations int, length int, characters []... function measureDistribution (line 44) | func measureDistribution(iterations int, characters []rune, fn generate)... function draw (line 64) | func draw(distribution map[string]int, title, filename string) { function orderMap (line 90) | func orderMap(m map[string]int) (keys []string, values []int) { FILE: oryx/reqlog/external_latency.go function withEnableExternalLatencyMeasurement (line 12) | func withEnableExternalLatencyMeasurement(ctx context.Context) context.C... function AccumulateExternalLatency (line 16) | func AccumulateExternalLatency(ctx context.Context, dur time.Duration) { function getExternalLatency (line 24) | func getExternalLatency(ctx context.Context) time.Duration { type contextKey (line 32) | type contextKey constant externalLatencyKey (line 34) | externalLatencyKey contextKey = 1 FILE: oryx/reqlog/middleware.go type timer (line 17) | type timer interface type realClock (line 22) | type realClock struct method Now (line 24) | func (rc *realClock) Now() time.Time { method Since (line 28) | func (rc *realClock) Since(t time.Time) time.Duration { type Middleware (line 33) | type Middleware struct method SetLogStarting (line 91) | func (m *Middleware) SetLogStarting(v bool) { method ExcludePaths (line 96) | func (m *Middleware) ExcludePaths(paths ...string) *Middleware { method Wrap (line 105) | func (m *Middleware) Wrap(handler http.Handler) http.Handler { method WrapFunc (line 111) | func (m *Middleware) WrapFunc(handler http.HandlerFunc) http.HandlerFu... method ServeHTTP (line 117) | func (m *Middleware) ServeHTTP(rw http.ResponseWriter, r *http.Request... function NewMiddleware (line 54) | func NewMiddleware() *Middleware { function NewCustomMiddleware (line 59) | func NewCustomMiddleware(level logrus.Level, formatter logrus.Formatter,... function NewMiddlewareFromLogger (line 75) | func NewMiddlewareFromLogger(logger *logrusx.Logger, name string) *Middl... type BeforeFunc (line 164) | type BeforeFunc type AfterFunc (line 168) | type AfterFunc function DefaultBefore (line 171) | func DefaultBefore(entry *logrusx.Logger, req *http.Request, remoteAddr ... function DefaultAfter (line 176) | func DefaultAfter(entry *logrusx.Logger, req *http.Request, res negroni.... FILE: oryx/resilience/retry.go function Retry (line 16) | func Retry(logger *logrusx.Logger, maxWait time.Duration, failAfter time... FILE: oryx/safecast/safecast.go function Uint64ToInt64 (line 9) | func Uint64ToInt64(in uint64) int64 { FILE: oryx/servicelocatorx/options.go type Options (line 15) | type Options struct method Logger (line 55) | func (o *Options) Logger() *logrusx.Logger { method Contextualizer (line 59) | func (o *Options) Contextualizer() contextx.Contextualizer { method HTTPMiddlewares (line 63) | func (o *Options) HTTPMiddlewares() []negroni.Handler { method GRPCUnaryInterceptors (line 67) | func (o *Options) GRPCUnaryInterceptors() []grpc.UnaryServerInterceptor { method GRPCStreamInterceptors (line 71) | func (o *Options) GRPCStreamInterceptors() []grpc.StreamServerIntercep... type Option (line 22) | type Option function WithLogger (line 25) | func WithLogger(l *logrusx.Logger) Option { function WithContextualizer (line 31) | func WithContextualizer(ctxer contextx.Contextualizer) Option { function WithHTTPMiddlewares (line 37) | func WithHTTPMiddlewares(m ...negroni.Handler) Option { function WithGRPCUnaryInterceptors (line 43) | func WithGRPCUnaryInterceptors(i ...grpc.UnaryServerInterceptor) Option { function WithGRPCStreamInterceptors (line 49) | func WithGRPCStreamInterceptors(i ...grpc.StreamServerInterceptor) Option { function NewOptions (line 75) | func NewOptions(options ...Option) *Options { FILE: oryx/snapshotx/snapshot.go type options (line 22) | type options struct method applyModifiers (line 73) | func (o *options) applyModifiers(t *testing.T, compare []byte) []byte { function ExceptPaths (line 28) | func ExceptPaths(keys ...string) Opt { function ExceptNestedKeys (line 41) | func ExceptNestedKeys(nestedKeys ...string) Opt { function WithReplacement (line 51) | func WithReplacement(str, replace string) Opt { function WithName (line 59) | func WithName(name string) Opt { function newOptions (line 65) | func newOptions(opts ...Opt) *options { function SnapshotTJSON (line 82) | func SnapshotTJSON[C ~string | ~[]byte](t *testing.T, compare C, opts ..... function SnapshotT (line 86) | func SnapshotT(t *testing.T, actual any, opts ...Opt) { function SnapshotTExcept (line 105) | func SnapshotTExcept(t *testing.T, actual interface{}, except []string) { function deleteMatches (line 117) | func deleteMatches(t *testing.T, key string, result gjson.Result, matche... FILE: oryx/sqlcon/connector.go function GetDriverName (line 13) | func GetDriverName(dsn string) string { function maxParallelism (line 16) | func maxParallelism() int { FILE: oryx/sqlcon/dockertest/cockroach.go function NewLocalTestCRDBServer (line 13) | func NewLocalTestCRDBServer(t testing.TB) string { FILE: oryx/sqlcon/dockertest/test_helper.go function ConnectPop (line 28) | func ConnectPop(t require.TestingT, url string) (c *pop.Connection) { function startPostgreSQL (line 43) | func startPostgreSQL(t testing.TB, version string) dockertest.Resource { function RunTestPostgreSQL (line 55) | func RunTestPostgreSQL(t testing.TB) string { function RunTestPostgreSQLWithVersion (line 65) | func RunTestPostgreSQLWithVersion(t testing.TB, version string) string { function startMySQL (line 75) | func startMySQL(t testing.TB, version string) dockertest.Resource { function RunTestMySQL (line 90) | func RunTestMySQL(t testing.TB) string { function RunTestMySQLWithVersion (line 102) | func RunTestMySQLWithVersion(t testing.TB, version string) string { function startCockroachDB (line 113) | func startCockroachDB(t testing.TB, version string) dockertest.Resource { function RunTestCockroachDB (line 125) | func RunTestCockroachDB(t testing.TB) string { function RunTestCockroachDBWithVersion (line 132) | func RunTestCockroachDBWithVersion(t testing.TB, version string) string { function DumpSchema (line 141) | func DumpSchema(t testing.TB, c *pop.Connection) string { function dumpSQLiteSchema (line 193) | func dumpSQLiteSchema(t testing.TB, c *pop.Connection) string { FILE: oryx/sqlcon/error.go function handlePostgres (line 56) | func handlePostgres(err error, sqlState string) error { type stater (line 71) | type stater interface function HandleError (line 76) | func HandleError(err error) error { FILE: oryx/sqlcon/error_nosqlite.go function handleSqlite (line 10) | func handleSqlite(_ error) error { FILE: oryx/sqlcon/error_sqlite.go function handleSqlite (line 17) | func handleSqlite(err error) error { FILE: oryx/sqlcon/message.go function HelpMessage (line 7) | func HelpMessage() string { FILE: oryx/sqlcon/parse_opts.go function ParseConnectionOptions (line 18) | func ParseConnectionOptions(l *logrusx.Logger, dsn string) (maxConns int... function FinalizeDSN (line 91) | func FinalizeDSN(l *logrusx.Logger, dsn string) string { FILE: oryx/sqlxx/batch/create.go type insertQueryArgs (line 31) | type insertQueryArgs struct type quoter (line 37) | type quoter interface type TracerConnection (line 40) | type TracerConnection struct function buildInsertQueryArgs (line 46) | func buildInsertQueryArgs[T any](ctx context.Context, dialect string, ma... function buildInsertQueryValues (line 113) | func buildInsertQueryValues[T any](dialect string, mapper *reflectx.Mapp... type createOptions (line 171) | type createOptions struct type option (line 175) | type option function OnConflictDoNothing (line 177) | func OnConflictDoNothing() func(*createOptions) { function CreateFromSlice (line 185) | func CreateFromSlice[T any](ctx context.Context, p *TracerConnection, mo... function Create (line 195) | func Create[T any](ctx context.Context, p *TracerConnection, models []*T... function setModelID (line 264) | func setModelID(row *sql.Rows, model *pop.Model) error { FILE: oryx/sqlxx/expand.go type Expandable (line 7) | type Expandable method String (line 13) | func (e Expandable) String() string { type Expandables (line 10) | type Expandables method ToEager (line 18) | func (e Expandables) ToEager() []string { method Has (line 27) | func (e Expandables) Has(search Expandable) bool { FILE: oryx/sqlxx/sqlxx.go function keys (line 16) | func keys(t any, exclude []string) []string { function NamedInsertArguments (line 44) | func NamedInsertArguments(t any, exclude ...string) (columns string, arg... function NamedUpdateArguments (line 61) | func NamedUpdateArguments(t any, exclude ...string) string { function OnConflictDoNothing (line 72) | func OnConflictDoNothing(dialect string, columnNoop string) string { function ExtractSchemeFromDSN (line 84) | func ExtractSchemeFromDSN(dsn string) (string, string, error) { function ExtractDbNameFromDSN (line 97) | func ExtractDbNameFromDSN(dsn string) (string, error) { function ReplaceSchemeInDSN (line 115) | func ReplaceSchemeInDSN(dsn string, newScheme string) (string, error) { function DSNRedacted (line 131) | func DSNRedacted(dsn string) (string, error) { FILE: oryx/sqlxx/types.go type Duration (line 22) | type Duration method MarshalJSON (line 25) | func (ns Duration) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 30) | func (ns *Duration) UnmarshalJSON(data []byte) error { method IsZero (line 576) | func (ns Duration) IsZero() bool { return ns == 0 } type StringSliceJSONFormat (line 46) | type StringSliceJSONFormat method Scan (line 49) | func (m *StringSliceJSONFormat) Scan(value interface{}) error { method Value (line 76) | func (m StringSliceJSONFormat) Value() (driver.Value, error) { method IsZero (line 577) | func (m StringSliceJSONFormat) IsZero() bool { return len(m) == 0 } type StringSlicePipeDelimiter (line 86) | type StringSlicePipeDelimiter method Scan (line 89) | func (n *StringSlicePipeDelimiter) Scan(value interface{}) error { method Value (line 99) | func (n StringSlicePipeDelimiter) Value() (driver.Value, error) { method IsZero (line 578) | func (n StringSlicePipeDelimiter) IsZero() bool { return len(n) == 0 } function scanStringSlice (line 103) | func scanStringSlice(delimiter rune, value interface{}) []string { function valueStringSlice (line 120) | func valueStringSlice(delimiter rune, value []string) string { type NullBool (line 132) | type NullBool struct method Scan (line 138) | func (ns *NullBool) Scan(value interface{}) error { method Value (line 150) | func (ns NullBool) Value() (driver.Value, error) { method MarshalJSON (line 158) | func (ns NullBool) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 166) | func (ns *NullBool) UnmarshalJSON(data []byte) error { method IsZero (line 579) | func (ns NullBool) IsZero() bool { return !ns.Valid || ... type FalsyNullBool (line 182) | type FalsyNullBool struct method Scan (line 188) | func (ns *FalsyNullBool) Scan(value interface{}) error { method Value (line 200) | func (ns FalsyNullBool) Value() (driver.Value, error) { method MarshalJSON (line 208) | func (ns FalsyNullBool) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 216) | func (ns *FalsyNullBool) UnmarshalJSON(data []byte) error { method IsZero (line 580) | func (ns FalsyNullBool) IsZero() bool { return !ns.Valid || ... type NullString (line 229) | type NullString method MarshalJSON (line 232) | func (ns NullString) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 237) | func (ns *NullString) UnmarshalJSON(data []byte) error { method Scan (line 248) | func (ns *NullString) Scan(value interface{}) error { method Value (line 258) | func (ns NullString) Value() (driver.Value, error) { method String (line 266) | func (ns NullString) String() string { method IsZero (line 581) | func (ns NullString) IsZero() bool { return len(ns) == 0 } type NullTime (line 274) | type NullTime method Scan (line 277) | func (ns *NullTime) Scan(value interface{}) error { method MarshalJSON (line 287) | func (ns NullTime) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 297) | func (ns *NullTime) UnmarshalJSON(data []byte) error { method Value (line 307) | func (ns NullTime) Value() (driver.Value, error) { method IsZero (line 582) | func (ns NullTime) IsZero() bool { return time.Time(ns)... type MapStringInterface (line 312) | type MapStringInterface method Scan (line 315) | func (n *MapStringInterface) Scan(value interface{}) error { method Value (line 324) | func (n MapStringInterface) Value() (driver.Value, error) { method IsZero (line 583) | func (n MapStringInterface) IsZero() bool { return len(n) == 0 } type JSONArrayRawMessage (line 333) | type JSONArrayRawMessage method Scan (line 336) | func (m *JSONArrayRawMessage) Scan(value interface{}) error { method Value (line 353) | func (m JSONArrayRawMessage) Value() (driver.Value, error) { method IsZero (line 584) | func (m JSONArrayRawMessage) IsZero() bool { return len(m) == 0 |... type JSONRawMessage (line 368) | type JSONRawMessage method Scan (line 371) | func (m *JSONRawMessage) Scan(value interface{}) error { method Value (line 386) | func (m JSONRawMessage) Value() (driver.Value, error) { method MarshalJSON (line 394) | func (m JSONRawMessage) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 402) | func (m *JSONRawMessage) UnmarshalJSON(data []byte) error { method IsZero (line 585) | func (m JSONRawMessage) IsZero() bool { return len(m) == 0 |... type NullJSONRawMessage (line 413) | type NullJSONRawMessage method Scan (line 416) | func (m *NullJSONRawMessage) Scan(value any) error { method Value (line 421) | func (m NullJSONRawMessage) Value() (driver.Value, error) { method MarshalJSON (line 429) | func (m NullJSONRawMessage) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 437) | func (m *NullJSONRawMessage) UnmarshalJSON(data []byte) error { method IsZero (line 586) | func (m NullJSONRawMessage) IsZero() bool { return len(m) == 0 |... function JSONScan (line 446) | func JSONScan(dst, value any) error { type NullInt64 (line 468) | type NullInt64 struct method Scan (line 474) | func (ns *NullInt64) Scan(value interface{}) error { method Value (line 486) | func (ns NullInt64) Value() (driver.Value, error) { method MarshalJSON (line 494) | func (ns NullInt64) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 502) | func (ns *NullInt64) UnmarshalJSON(data []byte) error { method IsZero (line 587) | func (ns NullInt64) IsZero() bool { return !ns.Valid || ... type NullDuration (line 517) | type NullDuration struct method Scan (line 523) | func (ns *NullDuration) Scan(value interface{}) error { method Value (line 535) | func (ns NullDuration) Value() (driver.Value, error) { method MarshalJSON (line 543) | func (ns NullDuration) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 552) | func (ns *NullDuration) UnmarshalJSON(data []byte) error { method IsZero (line 588) | func (ns NullDuration) IsZero() bool { return !ns.Valid || ... FILE: oryx/stringslice/unique.go function Unique (line 8) | func Unique(i []string) []string { FILE: oryx/stringsx/case.go function ToLowerInitial (line 9) | func ToLowerInitial(s string) string { function ToUpperInitial (line 19) | func ToUpperInitial(s string) string { FILE: oryx/stringsx/split.go function Splitx (line 10) | func Splitx(s, sep string) []string { FILE: oryx/stringsx/switch_case.go type RegisteredCases (line 13) | type RegisteredCases struct method AddCase (line 46) | func (r *RegisteredCases) AddCase(cases ...string) bool { method String (line 58) | func (r *RegisteredCases) String() string { method ToUnknownCaseErr (line 66) | func (r *RegisteredCases) ToUnknownCaseErr() error { type errUnknownCase (line 17) | type errUnknownCase struct method Error (line 74) | func (e errUnknownCase) Error() string { method Is (line 78) | func (e errUnknownCase) Is(err error) bool { type RegisteredPrefixes (line 20) | type RegisteredPrefixes struct method HasPrefix (line 51) | func (r *RegisteredPrefixes) HasPrefix(prefixes ...string) bool { method String (line 62) | func (r *RegisteredPrefixes) String() string { method ToUnknownPrefixErr (line 70) | func (r *RegisteredPrefixes) ToUnknownPrefixErr() error { type errUnknownPrefix (line 24) | type errUnknownPrefix struct method Error (line 83) | func (e errUnknownPrefix) Error() string { method Is (line 87) | func (e errUnknownPrefix) Is(err error) bool { function SwitchExact (line 34) | func SwitchExact(actual string) *RegisteredCases { function SwitchPrefix (line 40) | func SwitchPrefix(actual string) *RegisteredPrefixes { FILE: oryx/stringsx/truncate.go function TruncateByteLen (line 9) | func TruncateByteLen(s string, length int) string { FILE: oryx/swaggerx/error.go function FormatSwaggerError (line 15) | func FormatSwaggerError(err error) string { FILE: oryx/testingx/helpers.go function RepoRootPath (line 16) | func RepoRootPath(t require.TestingT) (repoRoot string) { FILE: oryx/tlsx/cert.go function HTTPSCertificate (line 42) | func HTTPSCertificate() ([]tls.Certificate, error) { function HTTPSCertificateHelpMessage (line 51) | func HTTPSCertificateHelpMessage() string { function CertificateHelpMessage (line 56) | func CertificateHelpMessage(prefix string) string { function CertificateFromBase64 (line 73) | func CertificateFromBase64(certBase64, keyBase64 string) (tls.Certificat... function Certificate (line 99) | func Certificate( function GetCertificate (line 139) | func GetCertificate( function PublicKey (line 212) | func PublicKey(key crypto.PrivateKey) interface{ Equal(x crypto.PublicKe... function CreateSelfSignedTLSCertificate (line 226) | func CreateSelfSignedTLSCertificate(key interface{}, opts ...Certificate... function CreateSelfSignedCertificate (line 248) | func CreateSelfSignedCertificate(key interface{}, opts ...CertificateOpt... function PEMBlockForKey (line 290) | func PEMBlockForKey(key interface{}) (*pem.Block, error) { function NewClientCert (line 299) | func NewClientCert(CAcert *x509.Certificate, CAkey crypto.PrivateKey, op... type CertificateOpts (line 351) | type CertificateOpts function CreateSelfSignedCertificateForTest (line 358) | func CreateSelfSignedCertificateForTest(t testing.TB) (certPath, keyPath... FILE: oryx/tlsx/termination.go type dependencies (line 20) | type dependencies interface function EnforceTLSRequests (line 29) | func EnforceTLSRequests(d dependencies, allowTerminationFrom []string) (... function matchesRange (line 75) | func matchesRange(r *http.Request, networks []*net.IPNet) error { FILE: oryx/urlx/copy.go function Copy (line 9) | func Copy(src *url.URL) *url.URL { function CopyWithQuery (line 16) | func CopyWithQuery(src *url.URL, query url.Values) *url.URL { FILE: oryx/urlx/extract.go type hostCache (line 19) | type hostCache struct method get (line 25) | func (hc *hostCache) get(hostname string) (bool, bool) { method set (line 33) | func (hc *hostCache) set(hostname string, isPublic bool) { function ExtractPublicAddress (line 48) | func ExtractPublicAddress(values ...string) string { function isPrivateIP (line 94) | func isPrivateIP(ip net.IP) bool { function isPublicHostname (line 104) | func isPublicHostname(hostname string) bool { function removeWildcardsFromHostname (line 130) | func removeWildcardsFromHostname(hostname string) string { FILE: oryx/urlx/join.go function MustJoin (line 14) | func MustJoin(first string, parts ...string) string { function AppendPaths (line 25) | func AppendPaths(u *url.URL, paths ...string) (ep *url.URL) { function SetQuery (line 42) | func SetQuery(u *url.URL, query url.Values) (ep *url.URL) { FILE: oryx/urlx/parse.go function Parse (line 27) | func Parse(rawURL string) (*url.URL, error) { function ParseOrPanic (line 67) | func ParseOrPanic(in string) *url.URL { function ParseOrFatal (line 76) | func ParseOrFatal(l *logrusx.Logger, in string) *url.URL { function ParseRequestURIOrPanic (line 85) | func ParseRequestURIOrPanic(in string) *url.URL { function ParseRequestURIOrFatal (line 94) | func ParseRequestURIOrFatal(l *logrusx.Logger, in string) *url.URL { function extractUNCPathParts (line 102) | func extractUNCPathParts(uncPath string) (host, path string) { function trimPrefixIC (line 114) | func trimPrefixIC(s, prefix string) string { FILE: oryx/urlx/path.go function GetURLFilePath (line 14) | func GetURLFilePath(u *url.URL) string { FILE: oryx/urlx/path_windows.go function GetURLFilePath (line 16) | func GetURLFilePath(u *url.URL) string { FILE: oryx/uuidx/uuid.go function NewV4 (line 9) | func NewV4() uuid.UUID { FILE: oryx/watcherx/definitions.go type errSchemeUnknown (line 13) | type errSchemeUnknown struct method Is (line 36) | func (e *errSchemeUnknown) Is(other error) bool { method Error (line 41) | func (e *errSchemeUnknown) Error() string { type EventChannel (line 16) | type EventChannel type Watcher (line 17) | type Watcher interface type dispatcher (line 24) | type dispatcher struct method DispatchNow (line 52) | func (d *dispatcher) DispatchNow() (<-chan int, error) { function newDispatcher (line 45) | func newDispatcher() *dispatcher { function Watch (line 60) | func Watch(ctx context.Context, u *url.URL, c EventChannel) (Watcher, er... FILE: oryx/watcherx/directory.go function WatchDirectory (line 15) | func WatchDirectory(ctx context.Context, dir string, c EventChannel) (Wa... type directoryWatcher (line 47) | type directoryWatcher struct method handleEvent (line 55) | func (w *directoryWatcher) handleEvent(ctx context.Context, e fsnotify... method maybeSend (line 100) | func (w *directoryWatcher) maybeSend(ctx context.Context, e Event) bool { method streamDirectoryEvents (line 109) | func (w *directoryWatcher) streamDirectoryEvents(ctx context.Context) { FILE: oryx/watcherx/event.go type Event (line 14) | type Event interface type source (line 23) | type source method Source (line 72) | func (e source) Source() string { method setSource (line 76) | func (e *source) setSource(nsrc string) { type ErrorEvent (line 24) | type ErrorEvent struct method Reader (line 56) | func (e *ErrorEvent) Reader() io.Reader { method MarshalJSON (line 60) | func (e *ErrorEvent) MarshalJSON() ([]byte, error) { method String (line 68) | func (e *ErrorEvent) String() string { type ChangeEvent (line 28) | type ChangeEvent struct method Reader (line 80) | func (e *ChangeEvent) Reader() io.Reader { method MarshalJSON (line 84) | func (e *ChangeEvent) MarshalJSON() ([]byte, error) { method String (line 92) | func (e *ChangeEvent) String() string { type RemoveEvent (line 32) | type RemoveEvent struct method Reader (line 96) | func (e *RemoveEvent) Reader() io.Reader { method MarshalJSON (line 100) | func (e *RemoveEvent) MarshalJSON() ([]byte, error) { method String (line 107) | func (e *RemoveEvent) String() string { type serialEventType (line 35) | type serialEventType type serialEvent (line 36) | type serialEvent struct function NewErrorEvent (line 43) | func NewErrorEvent(err error, source_ string) *ErrorEvent { constant serialTypeChange (line 51) | serialTypeChange serialEventType = "change" constant serialTypeRemove (line 52) | serialTypeRemove serialEventType = "remove" constant serialTypeError (line 53) | serialTypeError serialEventType = "error" FILE: oryx/watcherx/file.go function WatchFile (line 17) | func WatchFile(ctx context.Context, file string, c EventChannel) (Watche... function streamFileEvents (line 49) | func streamFileEvents(ctx context.Context, watcher *fsnotify.Watcher, c ... FILE: oryx/watcherx/integrationtest/main.go function main (line 15) | func main() { FILE: oryx/watcherx/test_helpers.go function KubernetesAtomicWrite (line 17) | func KubernetesAtomicWrite(t *testing.T, dir, fileName, content string) { FILE: otp/otp.go constant Entropy (line 14) | Entropy = 32 function New (line 16) | func New() (string, error) { FILE: persistence/reference.go type Provider (line 35) | type Provider interface type Persister (line 40) | type Persister interface type Networker (line 72) | type Networker interface FILE: persistence/sql/batch/create.go type insertQueryArgs (line 30) | type insertQueryArgs struct type quoter (line 36) | type quoter interface type TracerConnection (line 39) | type TracerConnection struct type PartialConflictError (line 47) | type PartialConflictError struct method Error (line 52) | func (p *PartialConflictError[T]) Error() string { method ErrOrNil (line 56) | func (p *PartialConflictError[T]) ErrOrNil() error { method Unwrap (line 63) | func (p *PartialConflictError[T]) Unwrap() error { function buildInsertQueryArgs (line 70) | func buildInsertQueryArgs[T any](ctx context.Context, models []*T, opts ... function buildInsertQueryValues (line 136) | func buildInsertQueryValues[T any](columns []string, models []*T, opts *... type createOpts (line 192) | type createOpts struct type CreateOpts (line 200) | type CreateOpts function newCreateOpts (line 219) | func newCreateOpts(conn *pop.Connection, opts ...CreateOpts) *createOpts { function Create (line 236) | func Create[T any](ctx context.Context, p *TracerConnection, models []*T... function handleFullInserts (line 295) | func handleFullInserts[T any](models []*T, rows *sql.Rows) error { function handlePartialInserts (line 313) | func handlePartialInserts[T any](queryArgs insertQueryArgs, values []any... function setModelID (line 351) | func setModelID(id uuid.UUID, model any) error { FILE: persistence/sql/batch/create_test.go type testModel (line 24) | type testModel struct method TableName (line 37) | func (i testModel) TableName(ctx context.Context) string { type testQuoter (line 34) | type testQuoter struct method Quote (line 41) | func (tq testQuoter) Quote(s string) string { return fmt.Sprintf("%q",... function makeModels (line 43) | func makeModels[T any]() []*T { function Test_buildInsertQueryArgs (line 51) | func Test_buildInsertQueryArgs(t *testing.T) { function Test_buildInsertQueryValues (line 122) | func Test_buildInsertQueryValues(t *testing.T) { FILE: persistence/sql/batch/test_persister.go function TestPersister (line 23) | func TestPersister(ctx context.Context, tracer *otelx.Tracer, p persiste... FILE: persistence/sql/devices/persister_devices.go type DevicePersister (line 20) | type DevicePersister struct method NetworkID (line 33) | func (p *DevicePersister) NetworkID(ctx context.Context) uuid.UUID { method WithNetworkID (line 37) | func (p DevicePersister) WithNetworkID(nid uuid.UUID) session.DevicePe... method CreateDevice (line 42) | func (p *DevicePersister) CreateDevice(ctx context.Context, d *session... function NewPersister (line 26) | func NewPersister(r contextx.Provider, c *pop.Connection) *DevicePersist... FILE: persistence/sql/identity/persister_identity.go type dependencies (line 51) | type dependencies interface type IdentityPersister (line 60) | type IdentityPersister struct method NetworkID (line 73) | func (p *IdentityPersister) NetworkID(ctx context.Context) uuid.UUID { method WithNetworkID (line 77) | func (p IdentityPersister) WithNetworkID(nid uuid.UUID) identity.Privi... method Transaction (line 86) | func (p *IdentityPersister) Transaction(ctx context.Context, callback ... method GetConnection (line 90) | func (p *IdentityPersister) GetConnection(ctx context.Context) *pop.Co... method ListVerifiableAddresses (line 94) | func (p *IdentityPersister) ListVerifiableAddresses(ctx context.Contex... method ListRecoveryAddresses (line 108) | func (p *IdentityPersister) ListRecoveryAddresses(ctx context.Context,... method FindIdentityByCredentialIdentifier (line 144) | func (p *IdentityPersister) FindIdentityByCredentialIdentifier(ctx con... method FindByCredentialsIdentifier (line 182) | func (p *IdentityPersister) FindByCredentialsIdentifier(ctx context.Co... method FindIdentityByWebauthnUserHandle (line 264) | func (p *IdentityPersister) FindIdentityByWebauthnUserHandle(ctx conte... method createIdentityCredentials (line 306) | func (p *IdentityPersister) createIdentityCredentials(ctx context.Cont... method createVerifiableAddresses (line 386) | func (p *IdentityPersister) createVerifiableAddresses(ctx context.Cont... method updateCredentialsAssociation (line 471) | func (p *IdentityPersister) updateCredentialsAssociation(ctx context.C... method normalizeAllAddressess (line 560) | func (p *IdentityPersister) normalizeAllAddressess(ctx context.Context... method normalizeVerifiableAddresses (line 567) | func (p *IdentityPersister) normalizeVerifiableAddresses(ctx context.C... method normalizeRecoveryAddresses (line 595) | func (p *IdentityPersister) normalizeRecoveryAddresses(ctx context.Con... method createRecoveryAddresses (line 604) | func (p *IdentityPersister) createRecoveryAddresses(ctx context.Contex... method CountIdentities (line 627) | func (p *IdentityPersister) CountIdentities(ctx context.Context) (n in... method CreateIdentity (line 641) | func (p *IdentityPersister) CreateIdentity(ctx context.Context, ident ... method CreateIdentities (line 650) | func (p *IdentityPersister) CreateIdentities(ctx context.Context, iden... method HydrateIdentityAssociations (line 804) | func (p *IdentityPersister) HydrateIdentityAssociations(ctx context.Co... method getCredentialTypeIDs (line 989) | func (p *IdentityPersister) getCredentialTypeIDs(ctx context.Context, ... method ListIdentities (line 1003) | func (p *IdentityPersister) ListIdentities(ctx context.Context, params... method UpdateIdentityColumns (line 1192) | func (p *IdentityPersister) UpdateIdentityColumns(ctx context.Context,... method UpdateIdentity (line 1210) | func (p *IdentityPersister) UpdateIdentity(ctx context.Context, i *ide... method DeleteIdentity (line 1291) | func (p *IdentityPersister) DeleteIdentity(ctx context.Context, id uui... method DeleteIdentities (line 1317) | func (p *IdentityPersister) DeleteIdentities(ctx context.Context, ids ... method GetIdentity (line 1363) | func (p *IdentityPersister) GetIdentity(ctx context.Context, id uuid.U... method GetIdentityConfidential (line 1383) | func (p *IdentityPersister) GetIdentityConfidential(ctx context.Contex... method FindIdentityByExternalID (line 1390) | func (p *IdentityPersister) FindIdentityByExternalID(ctx context.Conte... method FindVerifiableAddressByValue (line 1409) | func (p *IdentityPersister) FindVerifiableAddressByValue(ctx context.C... method FindRecoveryAddressByValue (line 1423) | func (p *IdentityPersister) FindRecoveryAddressByValue(ctx context.Con... method FindAllRecoveryAddressesForIdentityByRecoveryAddressValue (line 1440) | func (p *IdentityPersister) FindAllRecoveryAddressesForIdentityByRecov... method VerifyAddress (line 1477) | func (p *IdentityPersister) VerifyAddress(ctx context.Context, code st... method UpdateVerifiableAddress (line 1512) | func (p *IdentityPersister) UpdateVerifiableAddress(ctx context.Contex... method validateIdentity (line 1525) | func (p *IdentityPersister) validateIdentity(ctx context.Context, i *i... method InjectTraitsSchemaURL (line 1542) | func (p *IdentityPersister) InjectTraitsSchemaURL(ctx context.Context,... function NewPersister (line 66) | func NewPersister(r dependencies, c *pop.Connection) *IdentityPersister { function WithTransaction (line 82) | func WithTransaction(ctx context.Context, tx *pop.Connection) context.Co... function stringToLowerTrim (line 122) | func stringToLowerTrim(match string) string { function NormalizeIdentifier (line 126) | func NormalizeIdentifier(ct identity.CredentialsType, match string) stri... type differ (line 407) | type differ interface function updateAssociationWith (line 412) | func updateAssociationWith[T differ](ctx context.Context, p *IdentityPer... function updateAssociation (line 453) | func updateAssociation[T differ](ctx context.Context, p *IdentityPersist... function diffAssociations (line 530) | func diffAssociations[T differ](fromDatabase, updateTo []T) (unchanged, ... type queryCredentials (line 878) | type queryCredentials struct method TableName (line 883) | func (queryCredentials) TableName() string { type Where (line 887) | type Where struct function QueryForCredentials (line 894) | func QueryForCredentials(con *pop.Connection, where ...Where) (credentia... function identifiersTableNameWithIndexHint (line 953) | func identifiersTableNameWithIndexHint(con *pop.Connection) string { function paginationAttributes (line 968) | func paginationAttributes(params *identity.ListIdentityParameters, pagin... function FindIdentityCredentialsTypeByID (line 1565) | func FindIdentityCredentialsTypeByID(con *pop.Connection, id uuid.UUID) ... function FindIdentityCredentialsTypeByName (line 1588) | func FindIdentityCredentialsTypeByName(con *pop.Connection, ct identity.... function loadCredentialTypes (line 1610) | func loadCredentialTypes(con *pop.Connection) (err error) { FILE: persistence/sql/migratest/migration_test.go function snapshotFor (line 47) | func snapshotFor(paths ...string) *cupaloy.Config { function CompareWithFixture (line 56) | func CompareWithFixture(t *testing.T, actual interface{}, prefix string,... function TestMigrations_SQLite (line 64) | func TestMigrations_SQLite(t *testing.T) { function TestMigrations_Postgres (line 75) | func TestMigrations_Postgres(t *testing.T) { function TestMigrations_Mysql (line 83) | func TestMigrations_Mysql(t *testing.T) { function TestMigrations_Cockroach (line 91) | func TestMigrations_Cockroach(t *testing.T) { function testDatabase (line 99) | func testDatabase(t *testing.T, db string, c *pop.Connection) { FILE: persistence/sql/migrations/go/gomigrations.go function path (line 23) | func path() string { FILE: persistence/sql/migrations/legacy/20191100000001_identities.cockroach.up.sql type "identities" (line 1) | CREATE TABLE "identities" ( type "identity_credential_types" (line 9) | CREATE TABLE "identity_credential_types" ( type "identity_credential_types" (line 14) | CREATE UNIQUE INDEX "identity_credential_types_name_idx" ON "identity_cr... type "identity_credentials" (line 15) | CREATE TABLE "identity_credentials" ( type "identity_credential_identifiers" (line 26) | CREATE TABLE "identity_credential_identifiers" ( type "identity_credential_identifiers" (line 35) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_idx" ON ... FILE: persistence/sql/migrations/legacy/20191100000001_identities.mysql.up.sql type `identities` (line 1) | CREATE TABLE `identities` ( type `identity_credential_types` (line 9) | CREATE TABLE `identity_credential_types` ( type `identity_credential_types_name_idx` (line 14) | CREATE UNIQUE INDEX `identity_credential_types_name_idx` ON `identity_cr... type `identity_credentials` (line 15) | CREATE TABLE `identity_credentials` ( type `identity_credential_identifiers` (line 26) | CREATE TABLE `identity_credential_identifiers` ( type `identity_credential_identifiers_identifier_idx` (line 35) | CREATE UNIQUE INDEX `identity_credential_identifiers_identifier_idx` ON ... FILE: persistence/sql/migrations/legacy/20191100000001_identities.postgres.up.sql type "identities" (line 1) | CREATE TABLE "identities" ( type "identity_credential_types" (line 9) | CREATE TABLE "identity_credential_types" ( type "identity_credential_types" (line 14) | CREATE UNIQUE INDEX "identity_credential_types_name_idx" ON "identity_cr... type "identity_credentials" (line 15) | CREATE TABLE "identity_credentials" ( type "identity_credential_identifiers" (line 26) | CREATE TABLE "identity_credential_identifiers" ( type "identity_credential_identifiers" (line 35) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_idx" ON ... FILE: persistence/sql/migrations/legacy/20191100000001_identities.sqlite3.up.sql type "identities" (line 1) | CREATE TABLE "identities" ( type "identity_credential_types" (line 8) | CREATE TABLE "identity_credential_types" ( type "identity_credential_types" (line 12) | CREATE UNIQUE INDEX "identity_credential_types_name_idx" ON "identity_cr... type "identity_credentials" (line 13) | CREATE TABLE "identity_credentials" ( type "identity_credential_identifiers" (line 23) | CREATE TABLE "identity_credential_identifiers" ( type "identity_credential_identifiers" (line 31) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_idx" ON ... FILE: persistence/sql/migrations/legacy/20191100000002_requests.cockroach.up.sql type "selfservice_login_requests" (line 1) | CREATE TABLE "selfservice_login_requests" ( type "selfservice_login_request_methods" (line 12) | CREATE TABLE "selfservice_login_request_methods" ( type "selfservice_registration_requests" (line 22) | CREATE TABLE "selfservice_registration_requests" ( type "selfservice_registration_request_methods" (line 33) | CREATE TABLE "selfservice_registration_request_methods" ( type "selfservice_profile_management_requests" (line 43) | CREATE TABLE "selfservice_profile_management_requests" ( FILE: persistence/sql/migrations/legacy/20191100000002_requests.mysql.up.sql type `selfservice_login_requests` (line 1) | CREATE TABLE `selfservice_login_requests` ( type `selfservice_login_request_methods` (line 12) | CREATE TABLE `selfservice_login_request_methods` ( type `selfservice_registration_requests` (line 22) | CREATE TABLE `selfservice_registration_requests` ( type `selfservice_registration_request_methods` (line 33) | CREATE TABLE `selfservice_registration_request_methods` ( type `selfservice_profile_management_requests` (line 43) | CREATE TABLE `selfservice_profile_management_requests` ( FILE: persistence/sql/migrations/legacy/20191100000002_requests.postgres.up.sql type "selfservice_login_requests" (line 1) | CREATE TABLE "selfservice_login_requests" ( type "selfservice_login_request_methods" (line 12) | CREATE TABLE "selfservice_login_request_methods" ( type "selfservice_registration_requests" (line 22) | CREATE TABLE "selfservice_registration_requests" ( type "selfservice_registration_request_methods" (line 33) | CREATE TABLE "selfservice_registration_request_methods" ( type "selfservice_profile_management_requests" (line 43) | CREATE TABLE "selfservice_profile_management_requests" ( FILE: persistence/sql/migrations/legacy/20191100000002_requests.sqlite3.up.sql type "selfservice_login_requests" (line 1) | CREATE TABLE "selfservice_login_requests" ( type "selfservice_login_request_methods" (line 11) | CREATE TABLE "selfservice_login_request_methods" ( type "selfservice_registration_requests" (line 20) | CREATE TABLE "selfservice_registration_requests" ( type "selfservice_registration_request_methods" (line 30) | CREATE TABLE "selfservice_registration_request_methods" ( type "selfservice_profile_management_requests" (line 39) | CREATE TABLE "selfservice_profile_management_requests" ( FILE: persistence/sql/migrations/legacy/20191100000003_sessions.cockroach.up.sql type "sessions" (line 1) | CREATE TABLE "sessions" ( FILE: persistence/sql/migrations/legacy/20191100000003_sessions.mysql.up.sql type `sessions` (line 1) | CREATE TABLE `sessions` ( FILE: persistence/sql/migrations/legacy/20191100000003_sessions.postgres.up.sql type "sessions" (line 1) | CREATE TABLE "sessions" ( FILE: persistence/sql/migrations/legacy/20191100000003_sessions.sqlite3.up.sql type "sessions" (line 1) | CREATE TABLE "sessions" ( FILE: persistence/sql/migrations/legacy/20191100000004_errors.cockroach.up.sql type "selfservice_errors" (line 1) | CREATE TABLE "selfservice_errors" ( FILE: persistence/sql/migrations/legacy/20191100000004_errors.mysql.up.sql type `selfservice_errors` (line 1) | CREATE TABLE `selfservice_errors` ( FILE: persistence/sql/migrations/legacy/20191100000004_errors.postgres.up.sql type "selfservice_errors" (line 1) | CREATE TABLE "selfservice_errors" ( FILE: persistence/sql/migrations/legacy/20191100000004_errors.sqlite3.up.sql type "selfservice_errors" (line 1) | CREATE TABLE "selfservice_errors" ( FILE: persistence/sql/migrations/legacy/20191100000006_courier.cockroach.up.sql type "courier_messages" (line 1) | CREATE TABLE "courier_messages" ( FILE: persistence/sql/migrations/legacy/20191100000006_courier.mysql.up.sql type `courier_messages` (line 1) | CREATE TABLE `courier_messages` ( FILE: persistence/sql/migrations/legacy/20191100000006_courier.postgres.up.sql type "courier_messages" (line 1) | CREATE TABLE "courier_messages" ( FILE: persistence/sql/migrations/legacy/20191100000006_courier.sqlite3.up.sql type "courier_messages" (line 1) | CREATE TABLE "courier_messages" ( FILE: persistence/sql/migrations/legacy/20191100000007_errors.sqlite3.down.sql type "_selfservice_errors_tmp" (line 1) | CREATE TABLE "_selfservice_errors_tmp" ( FILE: persistence/sql/migrations/legacy/20191100000008_selfservice_verification.cockroach.up.sql type "identity_verifiable_addresses" (line 1) | CREATE TABLE "identity_verifiable_addresses" ( type "identity_verifiable_addresses" (line 16) | CREATE UNIQUE INDEX "identity_verifiable_addresses_code_uq_idx" ON "iden... type "identity_verifiable_addresses" (line 17) | CREATE INDEX "identity_verifiable_addresses_code_idx" ON "identity_verif... type "identity_verifiable_addresses" (line 18) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... type "identity_verifiable_addresses" (line 19) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "identity... type "selfservice_verification_requests" (line 20) | CREATE TABLE "selfservice_verification_requests" ( FILE: persistence/sql/migrations/legacy/20191100000008_selfservice_verification.mysql.up.sql type `identity_verifiable_addresses` (line 1) | CREATE TABLE `identity_verifiable_addresses` ( type `identity_verifiable_addresses_code_uq_idx` (line 16) | CREATE UNIQUE INDEX `identity_verifiable_addresses_code_uq_idx` ON `iden... type `identity_verifiable_addresses_code_idx` (line 17) | CREATE INDEX `identity_verifiable_addresses_code_idx` ON `identity_verif... type `identity_verifiable_addresses_status_via_uq_idx` (line 18) | CREATE UNIQUE INDEX `identity_verifiable_addresses_status_via_uq_idx` ON... type `identity_verifiable_addresses_status_via_idx` (line 19) | CREATE INDEX `identity_verifiable_addresses_status_via_idx` ON `identity... type `selfservice_verification_requests` (line 20) | CREATE TABLE `selfservice_verification_requests` ( FILE: persistence/sql/migrations/legacy/20191100000008_selfservice_verification.postgres.up.sql type "identity_verifiable_addresses" (line 1) | CREATE TABLE "identity_verifiable_addresses" ( type "identity_verifiable_addresses" (line 16) | CREATE UNIQUE INDEX "identity_verifiable_addresses_code_uq_idx" ON "iden... type "identity_verifiable_addresses" (line 17) | CREATE INDEX "identity_verifiable_addresses_code_idx" ON "identity_verif... type "identity_verifiable_addresses" (line 18) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... type "identity_verifiable_addresses" (line 19) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "identity... type "selfservice_verification_requests" (line 20) | CREATE TABLE "selfservice_verification_requests" ( FILE: persistence/sql/migrations/legacy/20191100000008_selfservice_verification.sqlite3.up.sql type "identity_verifiable_addresses" (line 1) | CREATE TABLE "identity_verifiable_addresses" ( type "identity_verifiable_addresses" (line 15) | CREATE UNIQUE INDEX "identity_verifiable_addresses_code_uq_idx" ON "iden... type "identity_verifiable_addresses" (line 16) | CREATE INDEX "identity_verifiable_addresses_code_idx" ON "identity_verif... type "identity_verifiable_addresses" (line 17) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... type "identity_verifiable_addresses" (line 18) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "identity... type "selfservice_verification_requests" (line 19) | CREATE TABLE "selfservice_verification_requests" ( FILE: persistence/sql/migrations/legacy/20191100000010_errors.sqlite3.down.sql type "_selfservice_errors_tmp" (line 2) | CREATE TABLE "_selfservice_errors_tmp" ( FILE: persistence/sql/migrations/legacy/20191100000010_errors.sqlite3.up.sql type "_selfservice_errors_tmp" (line 1) | CREATE TABLE "_selfservice_errors_tmp" ( FILE: persistence/sql/migrations/legacy/20191100000011_courier_body_type.sqlite3.up.sql type "_courier_messages_tmp" (line 1) | CREATE TABLE "_courier_messages_tmp" ( FILE: persistence/sql/migrations/legacy/20191100000012_login_request_forced.sqlite3.down.sql type "_selfservice_login_requests_tmp" (line 1) | CREATE TABLE "_selfservice_login_requests_tmp" ( FILE: persistence/sql/migrations/legacy/20200317160354_create_profile_request_forms.cockroach.up.sql type "selfservice_profile_management_request_methods" (line 1) | CREATE TABLE "selfservice_profile_management_request_methods" ( FILE: persistence/sql/migrations/legacy/20200317160354_create_profile_request_forms.mysql.up.sql type `selfservice_profile_management_request_methods` (line 1) | CREATE TABLE `selfservice_profile_management_request_methods` ( FILE: persistence/sql/migrations/legacy/20200317160354_create_profile_request_forms.postgres.up.sql type "selfservice_profile_management_request_methods" (line 1) | CREATE TABLE "selfservice_profile_management_request_methods" ( FILE: persistence/sql/migrations/legacy/20200317160354_create_profile_request_forms.sqlite3.down.sql type "_selfservice_profile_management_requests_tmp" (line 2) | CREATE TABLE "_selfservice_profile_management_requests_tmp" ( FILE: persistence/sql/migrations/legacy/20200317160354_create_profile_request_forms.sqlite3.up.sql type "selfservice_profile_management_request_methods" (line 1) | CREATE TABLE "selfservice_profile_management_request_methods" ( type "_selfservice_profile_management_requests_tmp" (line 11) | CREATE TABLE "_selfservice_profile_management_requests_tmp" ( FILE: persistence/sql/migrations/legacy/20200401183443_continuity_containers.cockroach.up.sql type "continuity_containers" (line 1) | CREATE TABLE "continuity_containers" ( FILE: persistence/sql/migrations/legacy/20200401183443_continuity_containers.mysql.up.sql type `continuity_containers` (line 1) | CREATE TABLE `continuity_containers` ( FILE: persistence/sql/migrations/legacy/20200401183443_continuity_containers.postgres.up.sql type "continuity_containers" (line 1) | CREATE TABLE "continuity_containers" ( FILE: persistence/sql/migrations/legacy/20200401183443_continuity_containers.sqlite3.up.sql type "continuity_containers" (line 1) | CREATE TABLE "continuity_containers" ( FILE: persistence/sql/migrations/legacy/20200519101057_create_recovery_addresses.cockroach.up.sql type "identity_recovery_addresses" (line 1) | CREATE TABLE "identity_recovery_addresses" ( type "identity_recovery_addresses" (line 11) | CREATE UNIQUE INDEX "identity_recovery_addresses_status_via_uq_idx" ON "... type "identity_recovery_addresses" (line 12) | CREATE INDEX "identity_recovery_addresses_status_via_idx" ON "identity_r... type "selfservice_recovery_requests" (line 13) | CREATE TABLE "selfservice_recovery_requests" ( type "selfservice_recovery_request_methods" (line 28) | CREATE TABLE "selfservice_recovery_request_methods" ( type "identity_recovery_tokens" (line 38) | CREATE TABLE "identity_recovery_tokens" ( type "identity_recovery_tokens" (line 51) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "identi... type "identity_recovery_tokens" (line 52) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "identity_recover... FILE: persistence/sql/migrations/legacy/20200519101057_create_recovery_addresses.mysql.up.sql type `identity_recovery_addresses` (line 1) | CREATE TABLE `identity_recovery_addresses` ( type `identity_recovery_addresses_status_via_uq_idx` (line 11) | CREATE UNIQUE INDEX `identity_recovery_addresses_status_via_uq_idx` ON `... type `identity_recovery_addresses_status_via_idx` (line 12) | CREATE INDEX `identity_recovery_addresses_status_via_idx` ON `identity_r... type `selfservice_recovery_requests` (line 13) | CREATE TABLE `selfservice_recovery_requests` ( type `selfservice_recovery_request_methods` (line 28) | CREATE TABLE `selfservice_recovery_request_methods` ( type `identity_recovery_tokens` (line 38) | CREATE TABLE `identity_recovery_tokens` ( type `identity_recovery_addresses_code_uq_idx` (line 51) | CREATE UNIQUE INDEX `identity_recovery_addresses_code_uq_idx` ON `identi... type `identity_recovery_addresses_code_idx` (line 52) | CREATE INDEX `identity_recovery_addresses_code_idx` ON `identity_recover... FILE: persistence/sql/migrations/legacy/20200519101057_create_recovery_addresses.postgres.up.sql type "identity_recovery_addresses" (line 1) | CREATE TABLE "identity_recovery_addresses" ( type "identity_recovery_addresses" (line 11) | CREATE UNIQUE INDEX "identity_recovery_addresses_status_via_uq_idx" ON "... type "identity_recovery_addresses" (line 12) | CREATE INDEX "identity_recovery_addresses_status_via_idx" ON "identity_r... type "selfservice_recovery_requests" (line 13) | CREATE TABLE "selfservice_recovery_requests" ( type "selfservice_recovery_request_methods" (line 28) | CREATE TABLE "selfservice_recovery_request_methods" ( type "identity_recovery_tokens" (line 38) | CREATE TABLE "identity_recovery_tokens" ( type "identity_recovery_tokens" (line 51) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "identi... type "identity_recovery_tokens" (line 52) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "identity_recover... FILE: persistence/sql/migrations/legacy/20200519101057_create_recovery_addresses.sqlite3.up.sql type "identity_recovery_addresses" (line 1) | CREATE TABLE "identity_recovery_addresses" ( type "identity_recovery_addresses" (line 10) | CREATE UNIQUE INDEX "identity_recovery_addresses_status_via_uq_idx" ON "... type "identity_recovery_addresses" (line 11) | CREATE INDEX "identity_recovery_addresses_status_via_idx" ON "identity_r... type "selfservice_recovery_requests" (line 12) | CREATE TABLE "selfservice_recovery_requests" ( type "selfservice_recovery_request_methods" (line 26) | CREATE TABLE "selfservice_recovery_request_methods" ( type "identity_recovery_tokens" (line 35) | CREATE TABLE "identity_recovery_tokens" ( type "identity_recovery_tokens" (line 47) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "identi... type "identity_recovery_tokens" (line 48) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "identity_recover... FILE: persistence/sql/migrations/legacy/20200601101000_create_messages.sqlite3.down.sql type "_selfservice_settings_requests_tmp" (line 1) | CREATE TABLE "_selfservice_settings_requests_tmp" ( FILE: persistence/sql/migrations/legacy/20200605111551_messages.sqlite3.down.sql type "_selfservice_verification_requests_tmp" (line 1) | CREATE TABLE "_selfservice_verification_requests_tmp" ( type "_selfservice_login_requests_tmp" (line 16) | CREATE TABLE "_selfservice_login_requests_tmp" ( type "_selfservice_registration_requests_tmp" (line 31) | CREATE TABLE "_selfservice_registration_requests_tmp" ( FILE: persistence/sql/migrations/legacy/20200607165100_settings.sqlite3.down.sql type "_selfservice_settings_requests_tmp" (line 1) | CREATE TABLE "_selfservice_settings_requests_tmp" ( FILE: persistence/sql/migrations/legacy/20200607165100_settings.sqlite3.up.sql type "_selfservice_settings_requests_tmp" (line 2) | CREATE TABLE "_selfservice_settings_requests_tmp" ( FILE: persistence/sql/migrations/legacy/20200810141652_flow_type.sqlite3.down.sql type "_selfservice_login_requests_tmp" (line 1) | CREATE TABLE "_selfservice_login_requests_tmp" ( type "_selfservice_registration_requests_tmp" (line 17) | CREATE TABLE "_selfservice_registration_requests_tmp" ( type "_selfservice_settings_requests_tmp" (line 32) | CREATE TABLE "_selfservice_settings_requests_tmp" ( type "_selfservice_recovery_requests_tmp" (line 49) | CREATE TABLE "_selfservice_recovery_requests_tmp" ( type "_selfservice_verification_requests_tmp" (line 67) | CREATE TABLE "_selfservice_verification_requests_tmp" ( FILE: persistence/sql/migrations/legacy/20200812124254_add_session_token.cockroach.up.sql type "sessions" (line 7) | CREATE UNIQUE INDEX "sessions_token_uq_idx" ON "sessions" (token) type "sessions" (line 8) | CREATE INDEX "sessions_token_idx" ON "sessions" (token) FILE: persistence/sql/migrations/legacy/20200812124254_add_session_token.mysql.up.sql type `sessions_token_uq_idx` (line 4) | CREATE UNIQUE INDEX `sessions_token_uq_idx` ON `sessions` (`token`) type `sessions_token_idx` (line 5) | CREATE INDEX `sessions_token_idx` ON `sessions` (`token`) FILE: persistence/sql/migrations/legacy/20200812124254_add_session_token.postgres.up.sql type "sessions" (line 4) | CREATE UNIQUE INDEX "sessions_token_uq_idx" ON "sessions" (token) type "sessions" (line 5) | CREATE INDEX "sessions_token_idx" ON "sessions" (token) FILE: persistence/sql/migrations/legacy/20200812124254_add_session_token.sqlite3.down.sql type "_sessions_tmp" (line 3) | CREATE TABLE "_sessions_tmp" ( FILE: persistence/sql/migrations/legacy/20200812124254_add_session_token.sqlite3.up.sql type "_sessions_tmp" (line 3) | CREATE TABLE "_sessions_tmp" ( type "sessions" (line 17) | CREATE UNIQUE INDEX "sessions_token_uq_idx" ON "sessions" (token) type "sessions" (line 18) | CREATE INDEX "sessions_token_idx" ON "sessions" (token) FILE: persistence/sql/migrations/legacy/20200812160551_add_session_revoke.sqlite3.down.sql type "_sessions_tmp" (line 3) | CREATE TABLE "_sessions_tmp" ( type "_sessions_tmp" (line 14) | CREATE INDEX "sessions_token_idx" ON "_sessions_tmp" (token) type "_sessions_tmp" (line 15) | CREATE UNIQUE INDEX "sessions_token_uq_idx" ON "_sessions_tmp" (token) FILE: persistence/sql/migrations/legacy/20200830130642_add_verification_methods.sqlite3.down.sql type "_selfservice_verification_flows_tmp" (line 2) | CREATE TABLE "_selfservice_verification_flows_tmp" ( type "_selfservice_verification_flows_tmp" (line 18) | CREATE TABLE "_selfservice_verification_flows_tmp" ( FILE: persistence/sql/migrations/legacy/20200830130644_add_verification_methods.cockroach.up.sql type "selfservice_verification_flow_methods" (line 1) | CREATE TABLE "selfservice_verification_flow_methods" ( FILE: persistence/sql/migrations/legacy/20200830130644_add_verification_methods.mysql.up.sql type `selfservice_verification_flow_methods` (line 1) | CREATE TABLE `selfservice_verification_flow_methods` ( FILE: persistence/sql/migrations/legacy/20200830130644_add_verification_methods.postgres.up.sql type "selfservice_verification_flow_methods" (line 1) | CREATE TABLE "selfservice_verification_flow_methods" ( FILE: persistence/sql/migrations/legacy/20200830130644_add_verification_methods.sqlite3.up.sql type "selfservice_verification_flow_methods" (line 1) | CREATE TABLE "selfservice_verification_flow_methods" ( FILE: persistence/sql/migrations/legacy/20200830130646_add_verification_methods.sqlite3.up.sql type "_selfservice_verification_flows_tmp" (line 1) | CREATE TABLE "_selfservice_verification_flows_tmp" ( type "_selfservice_verification_flows_tmp" (line 20) | CREATE TABLE "_selfservice_verification_flows_tmp" ( type "_selfservice_verification_flows_tmp" (line 38) | CREATE TABLE "_selfservice_verification_flows_tmp" ( FILE: persistence/sql/migrations/legacy/20200830154602_add_verification_token.cockroach.up.sql type "identity_verification_tokens" (line 1) | CREATE TABLE "identity_verification_tokens" ( type "identity_verification_tokens" (line 16) | CREATE UNIQUE INDEX "identity_verification_tokens_token_uq_idx" ON "iden... type "identity_verification_tokens" (line 17) | CREATE INDEX "identity_verification_tokens_token_idx" ON "identity_verif... type "identity_verification_tokens" (line 18) | CREATE INDEX "identity_verification_tokens_verifiable_address_id_idx" ON... type "identity_verification_tokens" (line 19) | CREATE INDEX "identity_verification_tokens_verification_flow_id_idx" ON ... FILE: persistence/sql/migrations/legacy/20200830154602_add_verification_token.mysql.up.sql type `identity_verification_tokens` (line 1) | CREATE TABLE `identity_verification_tokens` ( type `identity_verification_tokens_token_uq_idx` (line 16) | CREATE UNIQUE INDEX `identity_verification_tokens_token_uq_idx` ON `iden... type `identity_verification_tokens_token_idx` (line 17) | CREATE INDEX `identity_verification_tokens_token_idx` ON `identity_verif... type `identity_verification_tokens_verifiable_address_id_idx` (line 18) | CREATE INDEX `identity_verification_tokens_verifiable_address_id_idx` ON... type `identity_verification_tokens_verification_flow_id_idx` (line 19) | CREATE INDEX `identity_verification_tokens_verification_flow_id_idx` ON ... FILE: persistence/sql/migrations/legacy/20200830154602_add_verification_token.postgres.up.sql type "identity_verification_tokens" (line 1) | CREATE TABLE "identity_verification_tokens" ( type "identity_verification_tokens" (line 16) | CREATE UNIQUE INDEX "identity_verification_tokens_token_uq_idx" ON "iden... type "identity_verification_tokens" (line 17) | CREATE INDEX "identity_verification_tokens_token_idx" ON "identity_verif... type "identity_verification_tokens" (line 18) | CREATE INDEX "identity_verification_tokens_verifiable_address_id_idx" ON... type "identity_verification_tokens" (line 19) | CREATE INDEX "identity_verification_tokens_verification_flow_id_idx" ON ... FILE: persistence/sql/migrations/legacy/20200830154602_add_verification_token.sqlite3.up.sql type "identity_verification_tokens" (line 1) | CREATE TABLE "identity_verification_tokens" ( type "identity_verification_tokens" (line 15) | CREATE UNIQUE INDEX "identity_verification_tokens_token_uq_idx" ON "iden... type "identity_verification_tokens" (line 16) | CREATE INDEX "identity_verification_tokens_token_idx" ON "identity_verif... type "identity_verification_tokens" (line 17) | CREATE INDEX "identity_verification_tokens_verifiable_address_id_idx" ON... type "identity_verification_tokens" (line 18) | CREATE INDEX "identity_verification_tokens_verification_flow_id_idx" ON ... FILE: persistence/sql/migrations/legacy/20200830172221_recovery_token_expires.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 4) | CREATE TABLE "_identity_recovery_tokens_tmp" ( type "_identity_recovery_tokens_tmp" (line 18) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "_ident... type "_identity_recovery_tokens_tmp" (line 19) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "_identity_recove... type "_identity_recovery_tokens_tmp" (line 25) | CREATE TABLE "_identity_recovery_tokens_tmp" ( type "_identity_recovery_tokens_tmp" (line 38) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "_ident... type "_identity_recovery_tokens_tmp" (line 39) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "_identity_recove... type "_identity_recovery_tokens_tmp" (line 46) | CREATE TABLE "_identity_recovery_tokens_tmp" ( type "_identity_recovery_tokens_tmp" (line 58) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "_ident... type "_identity_recovery_tokens_tmp" (line 59) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "_identity_recove... FILE: persistence/sql/migrations/legacy/20200830172221_recovery_token_expires.sqlite3.up.sql type "_identity_recovery_tokens_tmp" (line 5) | CREATE TABLE "_identity_recovery_tokens_tmp" ( type "_identity_recovery_tokens_tmp" (line 19) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "_identity_recove... type "_identity_recovery_tokens_tmp" (line 20) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "_ident... FILE: persistence/sql/migrations/legacy/20200831110752_identity_verifiable_address_remove_code.cockroach.down.sql type "identity_verifiable_addresses" (line 14) | CREATE UNIQUE INDEX "identity_verifiable_addresses_code_uq_idx" ON "iden... type "identity_verifiable_addresses" (line 15) | CREATE INDEX "identity_verifiable_addresses_code_idx" ON "identity_verif... FILE: persistence/sql/migrations/legacy/20200831110752_identity_verifiable_address_remove_code.mysql.down.sql type `identity_verifiable_addresses_code_uq_idx` (line 7) | CREATE UNIQUE INDEX `identity_verifiable_addresses_code_uq_idx` ON `iden... type `identity_verifiable_addresses_code_idx` (line 8) | CREATE INDEX `identity_verifiable_addresses_code_idx` ON `identity_verif... FILE: persistence/sql/migrations/legacy/20200831110752_identity_verifiable_address_remove_code.postgres.down.sql type "identity_verifiable_addresses" (line 7) | CREATE UNIQUE INDEX "identity_verifiable_addresses_code_uq_idx" ON "iden... type "identity_verifiable_addresses" (line 8) | CREATE INDEX "identity_verifiable_addresses_code_idx" ON "identity_verif... FILE: persistence/sql/migrations/legacy/20200831110752_identity_verifiable_address_remove_code.sqlite3.down.sql type "_identity_verifiable_addresses_tmp" (line 7) | CREATE TABLE "_identity_verifiable_addresses_tmp" ( type "_identity_verifiable_addresses_tmp" (line 21) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... type "_identity_verifiable_addresses_tmp" (line 22) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "_identit... type "_identity_verifiable_addresses_tmp" (line 28) | CREATE TABLE "_identity_verifiable_addresses_tmp" ( type "_identity_verifiable_addresses_tmp" (line 42) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... type "_identity_verifiable_addresses_tmp" (line 43) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "_identit... type "identity_verifiable_addresses" (line 47) | CREATE UNIQUE INDEX "identity_verifiable_addresses_code_uq_idx" ON "iden... type "identity_verifiable_addresses" (line 48) | CREATE INDEX "identity_verifiable_addresses_code_idx" ON "identity_verif... FILE: persistence/sql/migrations/legacy/20200831110752_identity_verifiable_address_remove_code.sqlite3.up.sql type "_identity_verifiable_addresses_tmp" (line 5) | CREATE TABLE "_identity_verifiable_addresses_tmp" ( type "_identity_verifiable_addresses_tmp" (line 18) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "_identit... type "_identity_verifiable_addresses_tmp" (line 19) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... type "_identity_verifiable_addresses_tmp" (line 26) | CREATE TABLE "_identity_verifiable_addresses_tmp" ( type "_identity_verifiable_addresses_tmp" (line 38) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "_identit... type "_identity_verifiable_addresses_tmp" (line 39) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... FILE: persistence/sql/migrations/sql/20150100000001000000_networks.cockroach.up.sql type "networks" (line 1) | CREATE TABLE "networks" ( FILE: persistence/sql/migrations/sql/20150100000001000000_networks.mysql.up.sql type `networks` (line 1) | CREATE TABLE `networks` ( FILE: persistence/sql/migrations/sql/20150100000001000000_networks.postgres.up.sql type "networks" (line 1) | CREATE TABLE "networks" ( FILE: persistence/sql/migrations/sql/20150100000001000000_networks.sqlite3.up.sql type "networks" (line 1) | CREATE TABLE "networks" ( FILE: persistence/sql/migrations/sql/20191100000001000000_identities.cockroach.up.sql type "identities" (line 1) | CREATE TABLE "identities" ( FILE: persistence/sql/migrations/sql/20191100000001000000_identities.mysql.up.sql type `identities` (line 1) | CREATE TABLE `identities` ( FILE: persistence/sql/migrations/sql/20191100000001000000_identities.postgres.up.sql type "identities" (line 1) | CREATE TABLE "identities" ( FILE: persistence/sql/migrations/sql/20191100000001000000_identities.sqlite3.up.sql type "identities" (line 1) | CREATE TABLE "identities" ( FILE: persistence/sql/migrations/sql/20191100000001000001_identities.cockroach.up.sql type "identity_credential_types" (line 1) | CREATE TABLE "identity_credential_types" ( FILE: persistence/sql/migrations/sql/20191100000001000001_identities.mysql.up.sql type `identity_credential_types` (line 1) | CREATE TABLE `identity_credential_types` ( FILE: persistence/sql/migrations/sql/20191100000001000001_identities.postgres.up.sql type "identity_credential_types" (line 1) | CREATE TABLE "identity_credential_types" ( FILE: persistence/sql/migrations/sql/20191100000001000001_identities.sqlite3.up.sql type "identity_credential_types" (line 1) | CREATE TABLE "identity_credential_types" ( FILE: persistence/sql/migrations/sql/20191100000001000002_identities.cockroach.up.sql type "identity_credential_types" (line 1) | CREATE UNIQUE INDEX "identity_credential_types_name_idx" ON "identity_cr... FILE: persistence/sql/migrations/sql/20191100000001000002_identities.mysql.up.sql type `identity_credential_types_name_idx` (line 1) | CREATE UNIQUE INDEX `identity_credential_types_name_idx` ON `identity_cr... FILE: persistence/sql/migrations/sql/20191100000001000002_identities.postgres.up.sql type "identity_credential_types" (line 1) | CREATE UNIQUE INDEX "identity_credential_types_name_idx" ON "identity_cr... FILE: persistence/sql/migrations/sql/20191100000001000002_identities.sqlite3.up.sql type "identity_credential_types" (line 1) | CREATE UNIQUE INDEX "identity_credential_types_name_idx" ON "identity_cr... FILE: persistence/sql/migrations/sql/20191100000001000003_identities.cockroach.up.sql type "identity_credentials" (line 1) | CREATE TABLE "identity_credentials" ( FILE: persistence/sql/migrations/sql/20191100000001000003_identities.mysql.up.sql type `identity_credentials` (line 1) | CREATE TABLE `identity_credentials` ( FILE: persistence/sql/migrations/sql/20191100000001000003_identities.postgres.up.sql type "identity_credentials" (line 1) | CREATE TABLE "identity_credentials" ( FILE: persistence/sql/migrations/sql/20191100000001000003_identities.sqlite3.up.sql type "identity_credentials" (line 1) | CREATE TABLE "identity_credentials" ( FILE: persistence/sql/migrations/sql/20191100000001000004_identities.cockroach.up.sql type "identity_credential_identifiers" (line 1) | CREATE TABLE "identity_credential_identifiers" ( FILE: persistence/sql/migrations/sql/20191100000001000004_identities.mysql.up.sql type `identity_credential_identifiers` (line 1) | CREATE TABLE `identity_credential_identifiers` ( FILE: persistence/sql/migrations/sql/20191100000001000004_identities.postgres.up.sql type "identity_credential_identifiers" (line 1) | CREATE TABLE "identity_credential_identifiers" ( FILE: persistence/sql/migrations/sql/20191100000001000004_identities.sqlite3.up.sql type "identity_credential_identifiers" (line 1) | CREATE TABLE "identity_credential_identifiers" ( FILE: persistence/sql/migrations/sql/20191100000001000005_identities.cockroach.up.sql type "identity_credential_identifiers" (line 1) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_idx" ON ... FILE: persistence/sql/migrations/sql/20191100000001000005_identities.mysql.up.sql type `identity_credential_identifiers_identifier_idx` (line 1) | CREATE UNIQUE INDEX `identity_credential_identifiers_identifier_idx` ON ... FILE: persistence/sql/migrations/sql/20191100000001000005_identities.postgres.up.sql type "identity_credential_identifiers" (line 1) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_idx" ON ... FILE: persistence/sql/migrations/sql/20191100000001000005_identities.sqlite3.up.sql type "identity_credential_identifiers" (line 1) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_idx" ON ... FILE: persistence/sql/migrations/sql/20191100000002000000_requests.cockroach.up.sql type "selfservice_login_requests" (line 1) | CREATE TABLE "selfservice_login_requests" ( FILE: persistence/sql/migrations/sql/20191100000002000000_requests.mysql.up.sql type `selfservice_login_requests` (line 1) | CREATE TABLE `selfservice_login_requests` ( FILE: persistence/sql/migrations/sql/20191100000002000000_requests.postgres.up.sql type "selfservice_login_requests" (line 1) | CREATE TABLE "selfservice_login_requests" ( FILE: persistence/sql/migrations/sql/20191100000002000000_requests.sqlite3.up.sql type "selfservice_login_requests" (line 1) | CREATE TABLE "selfservice_login_requests" ( FILE: persistence/sql/migrations/sql/20191100000002000001_requests.cockroach.up.sql type "selfservice_login_request_methods" (line 1) | CREATE TABLE "selfservice_login_request_methods" ( FILE: persistence/sql/migrations/sql/20191100000002000001_requests.mysql.up.sql type `selfservice_login_request_methods` (line 1) | CREATE TABLE `selfservice_login_request_methods` ( FILE: persistence/sql/migrations/sql/20191100000002000001_requests.postgres.up.sql type "selfservice_login_request_methods" (line 1) | CREATE TABLE "selfservice_login_request_methods" ( FILE: persistence/sql/migrations/sql/20191100000002000001_requests.sqlite3.up.sql type "selfservice_login_request_methods" (line 1) | CREATE TABLE "selfservice_login_request_methods" ( FILE: persistence/sql/migrations/sql/20191100000002000002_requests.cockroach.up.sql type "selfservice_registration_requests" (line 1) | CREATE TABLE "selfservice_registration_requests" ( FILE: persistence/sql/migrations/sql/20191100000002000002_requests.mysql.up.sql type `selfservice_registration_requests` (line 1) | CREATE TABLE `selfservice_registration_requests` ( FILE: persistence/sql/migrations/sql/20191100000002000002_requests.postgres.up.sql type "selfservice_registration_requests" (line 1) | CREATE TABLE "selfservice_registration_requests" ( FILE: persistence/sql/migrations/sql/20191100000002000002_requests.sqlite3.up.sql type "selfservice_registration_requests" (line 1) | CREATE TABLE "selfservice_registration_requests" ( FILE: persistence/sql/migrations/sql/20191100000002000003_requests.cockroach.up.sql type "selfservice_registration_request_methods" (line 1) | CREATE TABLE "selfservice_registration_request_methods" ( FILE: persistence/sql/migrations/sql/20191100000002000003_requests.mysql.up.sql type `selfservice_registration_request_methods` (line 1) | CREATE TABLE `selfservice_registration_request_methods` ( FILE: persistence/sql/migrations/sql/20191100000002000003_requests.postgres.up.sql type "selfservice_registration_request_methods" (line 1) | CREATE TABLE "selfservice_registration_request_methods" ( FILE: persistence/sql/migrations/sql/20191100000002000003_requests.sqlite3.up.sql type "selfservice_registration_request_methods" (line 1) | CREATE TABLE "selfservice_registration_request_methods" ( FILE: persistence/sql/migrations/sql/20191100000002000004_requests.cockroach.up.sql type "selfservice_profile_management_requests" (line 1) | CREATE TABLE "selfservice_profile_management_requests" ( FILE: persistence/sql/migrations/sql/20191100000002000004_requests.mysql.up.sql type `selfservice_profile_management_requests` (line 1) | CREATE TABLE `selfservice_profile_management_requests` ( FILE: persistence/sql/migrations/sql/20191100000002000004_requests.postgres.up.sql type "selfservice_profile_management_requests" (line 1) | CREATE TABLE "selfservice_profile_management_requests" ( FILE: persistence/sql/migrations/sql/20191100000002000004_requests.sqlite3.up.sql type "selfservice_profile_management_requests" (line 1) | CREATE TABLE "selfservice_profile_management_requests" ( FILE: persistence/sql/migrations/sql/20191100000003000000_sessions.cockroach.up.sql type "sessions" (line 1) | CREATE TABLE "sessions" ( FILE: persistence/sql/migrations/sql/20191100000003000000_sessions.mysql.up.sql type `sessions` (line 1) | CREATE TABLE `sessions` ( FILE: persistence/sql/migrations/sql/20191100000003000000_sessions.postgres.up.sql type "sessions" (line 1) | CREATE TABLE "sessions" ( FILE: persistence/sql/migrations/sql/20191100000003000000_sessions.sqlite3.up.sql type "sessions" (line 1) | CREATE TABLE "sessions" ( FILE: persistence/sql/migrations/sql/20191100000004000000_errors.cockroach.up.sql type "selfservice_errors" (line 1) | CREATE TABLE "selfservice_errors" ( FILE: persistence/sql/migrations/sql/20191100000004000000_errors.mysql.up.sql type `selfservice_errors` (line 1) | CREATE TABLE `selfservice_errors` ( FILE: persistence/sql/migrations/sql/20191100000004000000_errors.postgres.up.sql type "selfservice_errors" (line 1) | CREATE TABLE "selfservice_errors" ( FILE: persistence/sql/migrations/sql/20191100000004000000_errors.sqlite3.up.sql type "selfservice_errors" (line 1) | CREATE TABLE "selfservice_errors" ( FILE: persistence/sql/migrations/sql/20191100000006000000_courier.cockroach.up.sql type "courier_messages" (line 1) | CREATE TABLE "courier_messages" ( FILE: persistence/sql/migrations/sql/20191100000006000000_courier.mysql.up.sql type `courier_messages` (line 1) | CREATE TABLE `courier_messages` ( FILE: persistence/sql/migrations/sql/20191100000006000000_courier.postgres.up.sql type "courier_messages" (line 1) | CREATE TABLE "courier_messages" ( FILE: persistence/sql/migrations/sql/20191100000006000000_courier.sqlite3.up.sql type "courier_messages" (line 1) | CREATE TABLE "courier_messages" ( FILE: persistence/sql/migrations/sql/20191100000007000003_errors.sqlite3.down.sql type "_selfservice_errors_tmp" (line 1) | CREATE TABLE "_selfservice_errors_tmp" ( FILE: persistence/sql/migrations/sql/20191100000008000000_selfservice_verification.cockroach.up.sql type "identity_verifiable_addresses" (line 1) | CREATE TABLE "identity_verifiable_addresses" ( FILE: persistence/sql/migrations/sql/20191100000008000000_selfservice_verification.mysql.up.sql type `identity_verifiable_addresses` (line 1) | CREATE TABLE `identity_verifiable_addresses` ( FILE: persistence/sql/migrations/sql/20191100000008000000_selfservice_verification.postgres.up.sql type "identity_verifiable_addresses" (line 1) | CREATE TABLE "identity_verifiable_addresses" ( FILE: persistence/sql/migrations/sql/20191100000008000000_selfservice_verification.sqlite3.up.sql type "identity_verifiable_addresses" (line 1) | CREATE TABLE "identity_verifiable_addresses" ( FILE: persistence/sql/migrations/sql/20191100000008000001_selfservice_verification.cockroach.up.sql type "identity_verifiable_addresses" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_code_uq_idx" ON "iden... FILE: persistence/sql/migrations/sql/20191100000008000001_selfservice_verification.mysql.up.sql type `identity_verifiable_addresses_code_uq_idx` (line 1) | CREATE UNIQUE INDEX `identity_verifiable_addresses_code_uq_idx` ON `iden... FILE: persistence/sql/migrations/sql/20191100000008000001_selfservice_verification.postgres.up.sql type "identity_verifiable_addresses" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_code_uq_idx" ON "iden... FILE: persistence/sql/migrations/sql/20191100000008000001_selfservice_verification.sqlite3.up.sql type "identity_verifiable_addresses" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_code_uq_idx" ON "iden... FILE: persistence/sql/migrations/sql/20191100000008000002_selfservice_verification.cockroach.up.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_code_idx" ON "identity_verif... FILE: persistence/sql/migrations/sql/20191100000008000002_selfservice_verification.mysql.up.sql type `identity_verifiable_addresses_code_idx` (line 1) | CREATE INDEX `identity_verifiable_addresses_code_idx` ON `identity_verif... FILE: persistence/sql/migrations/sql/20191100000008000002_selfservice_verification.postgres.up.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_code_idx" ON "identity_verif... FILE: persistence/sql/migrations/sql/20191100000008000002_selfservice_verification.sqlite3.up.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_code_idx" ON "identity_verif... FILE: persistence/sql/migrations/sql/20191100000008000003_selfservice_verification.cockroach.up.sql type "identity_verifiable_addresses" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... FILE: persistence/sql/migrations/sql/20191100000008000003_selfservice_verification.mysql.up.sql type `identity_verifiable_addresses_status_via_uq_idx` (line 1) | CREATE UNIQUE INDEX `identity_verifiable_addresses_status_via_uq_idx` ON... FILE: persistence/sql/migrations/sql/20191100000008000003_selfservice_verification.postgres.up.sql type "identity_verifiable_addresses" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... FILE: persistence/sql/migrations/sql/20191100000008000003_selfservice_verification.sqlite3.up.sql type "identity_verifiable_addresses" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... FILE: persistence/sql/migrations/sql/20191100000008000004_selfservice_verification.cockroach.up.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "identity... FILE: persistence/sql/migrations/sql/20191100000008000004_selfservice_verification.mysql.up.sql type `identity_verifiable_addresses_status_via_idx` (line 1) | CREATE INDEX `identity_verifiable_addresses_status_via_idx` ON `identity... FILE: persistence/sql/migrations/sql/20191100000008000004_selfservice_verification.postgres.up.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "identity... FILE: persistence/sql/migrations/sql/20191100000008000004_selfservice_verification.sqlite3.up.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "identity... FILE: persistence/sql/migrations/sql/20191100000008000005_selfservice_verification.cockroach.up.sql type "selfservice_verification_requests" (line 1) | CREATE TABLE "selfservice_verification_requests" ( FILE: persistence/sql/migrations/sql/20191100000008000005_selfservice_verification.mysql.up.sql type `selfservice_verification_requests` (line 1) | CREATE TABLE `selfservice_verification_requests` ( FILE: persistence/sql/migrations/sql/20191100000008000005_selfservice_verification.postgres.up.sql type "selfservice_verification_requests" (line 1) | CREATE TABLE "selfservice_verification_requests" ( FILE: persistence/sql/migrations/sql/20191100000008000005_selfservice_verification.sqlite3.up.sql type "selfservice_verification_requests" (line 1) | CREATE TABLE "selfservice_verification_requests" ( FILE: persistence/sql/migrations/sql/20191100000010000000_errors.sqlite3.up.sql type "_selfservice_errors_tmp" (line 1) | CREATE TABLE "_selfservice_errors_tmp" ( FILE: persistence/sql/migrations/sql/20191100000010000003_errors.sqlite3.down.sql type "_selfservice_errors_tmp" (line 1) | CREATE TABLE "_selfservice_errors_tmp" ( FILE: persistence/sql/migrations/sql/20191100000011000000_courier_body_type.sqlite3.up.sql type "_courier_messages_tmp" (line 1) | CREATE TABLE "_courier_messages_tmp" ( FILE: persistence/sql/migrations/sql/20191100000012000003_login_request_forced.sqlite3.down.sql type "_selfservice_login_requests_tmp" (line 1) | CREATE TABLE "_selfservice_login_requests_tmp" ( FILE: persistence/sql/migrations/sql/20200317160354000000_create_profile_request_forms.cockroach.up.sql type "selfservice_profile_management_request_methods" (line 1) | CREATE TABLE "selfservice_profile_management_request_methods" ( FILE: persistence/sql/migrations/sql/20200317160354000000_create_profile_request_forms.mysql.up.sql type `selfservice_profile_management_request_methods` (line 1) | CREATE TABLE `selfservice_profile_management_request_methods` ( FILE: persistence/sql/migrations/sql/20200317160354000000_create_profile_request_forms.postgres.up.sql type "selfservice_profile_management_request_methods" (line 1) | CREATE TABLE "selfservice_profile_management_request_methods" ( FILE: persistence/sql/migrations/sql/20200317160354000000_create_profile_request_forms.sqlite3.up.sql type "selfservice_profile_management_request_methods" (line 1) | CREATE TABLE "selfservice_profile_management_request_methods" ( FILE: persistence/sql/migrations/sql/20200317160354000003_create_profile_request_forms.sqlite3.down.sql type "_selfservice_profile_management_requests_tmp" (line 1) | CREATE TABLE "_selfservice_profile_management_requests_tmp" ( FILE: persistence/sql/migrations/sql/20200317160354000003_create_profile_request_forms.sqlite3.up.sql type "_selfservice_profile_management_requests_tmp" (line 1) | CREATE TABLE "_selfservice_profile_management_requests_tmp" ( FILE: persistence/sql/migrations/sql/20200317160354000008_create_profile_request_forms.sqlite3.down.sql type "_selfservice_profile_management_requests_tmp" (line 1) | CREATE TABLE "_selfservice_profile_management_requests_tmp" ( FILE: persistence/sql/migrations/sql/20200401183443000000_continuity_containers.cockroach.up.sql type "continuity_containers" (line 1) | CREATE TABLE "continuity_containers" ( FILE: persistence/sql/migrations/sql/20200401183443000000_continuity_containers.mysql.up.sql type `continuity_containers` (line 1) | CREATE TABLE `continuity_containers` ( FILE: persistence/sql/migrations/sql/20200401183443000000_continuity_containers.postgres.up.sql type "continuity_containers" (line 1) | CREATE TABLE "continuity_containers" ( FILE: persistence/sql/migrations/sql/20200401183443000000_continuity_containers.sqlite3.up.sql type "continuity_containers" (line 1) | CREATE TABLE "continuity_containers" ( FILE: persistence/sql/migrations/sql/20200519101057000000_create_recovery_addresses.cockroach.up.sql type "identity_recovery_addresses" (line 1) | CREATE TABLE "identity_recovery_addresses" ( FILE: persistence/sql/migrations/sql/20200519101057000000_create_recovery_addresses.mysql.up.sql type `identity_recovery_addresses` (line 1) | CREATE TABLE `identity_recovery_addresses` ( FILE: persistence/sql/migrations/sql/20200519101057000000_create_recovery_addresses.postgres.up.sql type "identity_recovery_addresses" (line 1) | CREATE TABLE "identity_recovery_addresses" ( FILE: persistence/sql/migrations/sql/20200519101057000000_create_recovery_addresses.sqlite3.up.sql type "identity_recovery_addresses" (line 1) | CREATE TABLE "identity_recovery_addresses" ( FILE: persistence/sql/migrations/sql/20200519101057000001_create_recovery_addresses.cockroach.up.sql type "identity_recovery_addresses" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_status_via_uq_idx" ON "... FILE: persistence/sql/migrations/sql/20200519101057000001_create_recovery_addresses.mysql.up.sql type `identity_recovery_addresses_status_via_uq_idx` (line 1) | CREATE UNIQUE INDEX `identity_recovery_addresses_status_via_uq_idx` ON `... FILE: persistence/sql/migrations/sql/20200519101057000001_create_recovery_addresses.postgres.up.sql type "identity_recovery_addresses" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_status_via_uq_idx" ON "... FILE: persistence/sql/migrations/sql/20200519101057000001_create_recovery_addresses.sqlite3.up.sql type "identity_recovery_addresses" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_status_via_uq_idx" ON "... FILE: persistence/sql/migrations/sql/20200519101057000002_create_recovery_addresses.cockroach.up.sql type "identity_recovery_addresses" (line 1) | CREATE INDEX "identity_recovery_addresses_status_via_idx" ON "identity_r... FILE: persistence/sql/migrations/sql/20200519101057000002_create_recovery_addresses.mysql.up.sql type `identity_recovery_addresses_status_via_idx` (line 1) | CREATE INDEX `identity_recovery_addresses_status_via_idx` ON `identity_r... FILE: persistence/sql/migrations/sql/20200519101057000002_create_recovery_addresses.postgres.up.sql type "identity_recovery_addresses" (line 1) | CREATE INDEX "identity_recovery_addresses_status_via_idx" ON "identity_r... FILE: persistence/sql/migrations/sql/20200519101057000002_create_recovery_addresses.sqlite3.up.sql type "identity_recovery_addresses" (line 1) | CREATE INDEX "identity_recovery_addresses_status_via_idx" ON "identity_r... FILE: persistence/sql/migrations/sql/20200519101057000003_create_recovery_addresses.cockroach.up.sql type "selfservice_recovery_requests" (line 1) | CREATE TABLE "selfservice_recovery_requests" ( FILE: persistence/sql/migrations/sql/20200519101057000003_create_recovery_addresses.mysql.up.sql type `selfservice_recovery_requests` (line 1) | CREATE TABLE `selfservice_recovery_requests` ( FILE: persistence/sql/migrations/sql/20200519101057000003_create_recovery_addresses.postgres.up.sql type "selfservice_recovery_requests" (line 1) | CREATE TABLE "selfservice_recovery_requests" ( FILE: persistence/sql/migrations/sql/20200519101057000003_create_recovery_addresses.sqlite3.up.sql type "selfservice_recovery_requests" (line 1) | CREATE TABLE "selfservice_recovery_requests" ( FILE: persistence/sql/migrations/sql/20200519101057000004_create_recovery_addresses.cockroach.up.sql type "selfservice_recovery_request_methods" (line 1) | CREATE TABLE "selfservice_recovery_request_methods" ( FILE: persistence/sql/migrations/sql/20200519101057000004_create_recovery_addresses.mysql.up.sql type `selfservice_recovery_request_methods` (line 1) | CREATE TABLE `selfservice_recovery_request_methods` ( FILE: persistence/sql/migrations/sql/20200519101057000004_create_recovery_addresses.postgres.up.sql type "selfservice_recovery_request_methods" (line 1) | CREATE TABLE "selfservice_recovery_request_methods" ( FILE: persistence/sql/migrations/sql/20200519101057000004_create_recovery_addresses.sqlite3.up.sql type "selfservice_recovery_request_methods" (line 1) | CREATE TABLE "selfservice_recovery_request_methods" ( FILE: persistence/sql/migrations/sql/20200519101057000005_create_recovery_addresses.cockroach.up.sql type "identity_recovery_tokens" (line 1) | CREATE TABLE "identity_recovery_tokens" ( FILE: persistence/sql/migrations/sql/20200519101057000005_create_recovery_addresses.mysql.up.sql type `identity_recovery_tokens` (line 1) | CREATE TABLE `identity_recovery_tokens` ( FILE: persistence/sql/migrations/sql/20200519101057000005_create_recovery_addresses.postgres.up.sql type "identity_recovery_tokens" (line 1) | CREATE TABLE "identity_recovery_tokens" ( FILE: persistence/sql/migrations/sql/20200519101057000005_create_recovery_addresses.sqlite3.up.sql type "identity_recovery_tokens" (line 1) | CREATE TABLE "identity_recovery_tokens" ( FILE: persistence/sql/migrations/sql/20200519101057000006_create_recovery_addresses.cockroach.up.sql type "identity_recovery_tokens" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "identi... FILE: persistence/sql/migrations/sql/20200519101057000006_create_recovery_addresses.mysql.up.sql type `identity_recovery_addresses_code_uq_idx` (line 1) | CREATE UNIQUE INDEX `identity_recovery_addresses_code_uq_idx` ON `identi... FILE: persistence/sql/migrations/sql/20200519101057000006_create_recovery_addresses.postgres.up.sql type "identity_recovery_tokens" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "identi... FILE: persistence/sql/migrations/sql/20200519101057000006_create_recovery_addresses.sqlite3.up.sql type "identity_recovery_tokens" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "identi... FILE: persistence/sql/migrations/sql/20200519101057000007_create_recovery_addresses.cockroach.up.sql type "identity_recovery_tokens" (line 1) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "identity_recover... FILE: persistence/sql/migrations/sql/20200519101057000007_create_recovery_addresses.mysql.up.sql type `identity_recovery_addresses_code_idx` (line 1) | CREATE INDEX `identity_recovery_addresses_code_idx` ON `identity_recover... FILE: persistence/sql/migrations/sql/20200519101057000007_create_recovery_addresses.postgres.up.sql type "identity_recovery_tokens" (line 1) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "identity_recover... FILE: persistence/sql/migrations/sql/20200519101057000007_create_recovery_addresses.sqlite3.up.sql type "identity_recovery_tokens" (line 1) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "identity_recover... FILE: persistence/sql/migrations/sql/20200601101000000003_create_messages.sqlite3.down.sql type "_selfservice_settings_requests_tmp" (line 1) | CREATE TABLE "_selfservice_settings_requests_tmp" ( FILE: persistence/sql/migrations/sql/20200605111551000003_messages.sqlite3.down.sql type "_selfservice_registration_requests_tmp" (line 1) | CREATE TABLE "_selfservice_registration_requests_tmp" ( FILE: persistence/sql/migrations/sql/20200605111551000007_messages.sqlite3.down.sql type "_selfservice_login_requests_tmp" (line 1) | CREATE TABLE "_selfservice_login_requests_tmp" ( FILE: persistence/sql/migrations/sql/20200605111551000011_messages.sqlite3.down.sql type "_selfservice_verification_requests_tmp" (line 1) | CREATE INDEX "selfservice_verification_flows_nid_idx" ON "_selfservice_v... FILE: persistence/sql/migrations/sql/20200605111551000012_messages.sqlite3.down.sql type "_selfservice_verification_requests_tmp" (line 1) | CREATE TABLE "_selfservice_verification_requests_tmp" ( FILE: persistence/sql/migrations/sql/20200607165100000001_settings.sqlite3.up.sql type "_selfservice_settings_requests_tmp" (line 1) | CREATE TABLE "_selfservice_settings_requests_tmp" ( FILE: persistence/sql/migrations/sql/20200607165100000004_settings.sqlite3.down.sql type "_selfservice_settings_requests_tmp" (line 1) | CREATE TABLE "_selfservice_settings_requests_tmp" ( FILE: persistence/sql/migrations/sql/20200810141652000003_flow_type.sqlite3.down.sql type "_selfservice_verification_requests_tmp" (line 1) | CREATE INDEX "selfservice_verification_flows_nid_idx" ON "_selfservice_v... FILE: persistence/sql/migrations/sql/20200810141652000004_flow_type.sqlite3.down.sql type "_selfservice_verification_requests_tmp" (line 1) | CREATE TABLE "_selfservice_verification_requests_tmp" ( FILE: persistence/sql/migrations/sql/20200810141652000009_flow_type.sqlite3.down.sql type "_selfservice_recovery_requests_tmp" (line 1) | CREATE INDEX "selfservice_recovery_flows_nid_idx" ON "_selfservice_recov... FILE: persistence/sql/migrations/sql/20200810141652000010_flow_type.sqlite3.down.sql type "_selfservice_recovery_requests_tmp" (line 1) | CREATE TABLE "_selfservice_recovery_requests_tmp" ( FILE: persistence/sql/migrations/sql/20200810141652000015_flow_type.sqlite3.down.sql type "_selfservice_settings_requests_tmp" (line 1) | CREATE TABLE "_selfservice_settings_requests_tmp" ( FILE: persistence/sql/migrations/sql/20200810141652000019_flow_type.sqlite3.down.sql type "_selfservice_registration_requests_tmp" (line 1) | CREATE TABLE "_selfservice_registration_requests_tmp" ( FILE: persistence/sql/migrations/sql/20200810141652000023_flow_type.sqlite3.down.sql type "_selfservice_login_requests_tmp" (line 1) | CREATE TABLE "_selfservice_login_requests_tmp" ( FILE: persistence/sql/migrations/sql/20200812124254000002_add_session_token.sqlite3.up.sql type "_sessions_tmp" (line 1) | CREATE TABLE "_sessions_tmp" ( FILE: persistence/sql/migrations/sql/20200812124254000003_add_session_token.mysql.up.sql type `sessions_token_uq_idx` (line 1) | CREATE UNIQUE INDEX `sessions_token_uq_idx` ON `sessions` (`token`) FILE: persistence/sql/migrations/sql/20200812124254000003_add_session_token.postgres.up.sql type "sessions" (line 1) | CREATE UNIQUE INDEX "sessions_token_uq_idx" ON "sessions" (token) FILE: persistence/sql/migrations/sql/20200812124254000003_add_session_token.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE INDEX "sessions_nid_idx" ON "_sessions_tmp" (id, nid) FILE: persistence/sql/migrations/sql/20200812124254000004_add_session_token.mysql.up.sql type `sessions_token_idx` (line 1) | CREATE INDEX `sessions_token_idx` ON `sessions` (`token`) FILE: persistence/sql/migrations/sql/20200812124254000004_add_session_token.postgres.up.sql type "sessions" (line 1) | CREATE INDEX "sessions_token_idx" ON "sessions" (token) FILE: persistence/sql/migrations/sql/20200812124254000004_add_session_token.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE TABLE "_sessions_tmp" ( FILE: persistence/sql/migrations/sql/20200812124254000006_add_session_token.cockroach.up.sql type "sessions" (line 1) | CREATE UNIQUE INDEX "sessions_token_uq_idx" ON "sessions" (token) FILE: persistence/sql/migrations/sql/20200812124254000006_add_session_token.sqlite3.up.sql type "sessions" (line 1) | CREATE UNIQUE INDEX "sessions_token_uq_idx" ON "sessions" (token) FILE: persistence/sql/migrations/sql/20200812124254000007_add_session_token.cockroach.up.sql type "sessions" (line 1) | CREATE INDEX "sessions_token_idx" ON "sessions" (token) FILE: persistence/sql/migrations/sql/20200812124254000007_add_session_token.sqlite3.up.sql type "sessions" (line 1) | CREATE INDEX "sessions_token_idx" ON "sessions" (token) FILE: persistence/sql/migrations/sql/20200812160551000003_add_session_revoke.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE INDEX "sessions_token_idx" ON "_sessions_tmp" (token) FILE: persistence/sql/migrations/sql/20200812160551000004_add_session_revoke.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE UNIQUE INDEX "sessions_token_uq_idx" ON "_sessions_tmp" (token) FILE: persistence/sql/migrations/sql/20200812160551000005_add_session_revoke.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE INDEX "sessions_nid_idx" ON "_sessions_tmp" (id, nid) FILE: persistence/sql/migrations/sql/20200812160551000006_add_session_revoke.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE TABLE "_sessions_tmp" ( FILE: persistence/sql/migrations/sql/20200830130642000005_add_verification_methods.sqlite3.down.sql type "_selfservice_verification_flows_tmp" (line 1) | CREATE INDEX "selfservice_verification_flows_nid_idx" ON "_selfservice_v... FILE: persistence/sql/migrations/sql/20200830130642000006_add_verification_methods.sqlite3.down.sql type "_selfservice_verification_flows_tmp" (line 1) | CREATE TABLE "_selfservice_verification_flows_tmp" ( FILE: persistence/sql/migrations/sql/20200830130642000011_add_verification_methods.sqlite3.down.sql type "_selfservice_verification_flows_tmp" (line 1) | CREATE INDEX "selfservice_verification_flows_nid_idx" ON "_selfservice_v... FILE: persistence/sql/migrations/sql/20200830130642000012_add_verification_methods.sqlite3.down.sql type "_selfservice_verification_flows_tmp" (line 1) | CREATE TABLE "_selfservice_verification_flows_tmp" ( FILE: persistence/sql/migrations/sql/20200830130642000018_add_verification_methods.sqlite3.down.sql type "_selfservice_verification_flows_tmp" (line 1) | CREATE INDEX "selfservice_verification_flows_nid_idx" ON "_selfservice_v... FILE: persistence/sql/migrations/sql/20200830130642000019_add_verification_methods.sqlite3.down.sql type "_selfservice_verification_flows_tmp" (line 1) | CREATE TABLE "_selfservice_verification_flows_tmp" ( FILE: persistence/sql/migrations/sql/20200830130644000000_add_verification_methods.cockroach.up.sql type "selfservice_verification_flow_methods" (line 1) | CREATE TABLE "selfservice_verification_flow_methods" ( FILE: persistence/sql/migrations/sql/20200830130644000000_add_verification_methods.mysql.up.sql type `selfservice_verification_flow_methods` (line 1) | CREATE TABLE `selfservice_verification_flow_methods` ( FILE: persistence/sql/migrations/sql/20200830130644000000_add_verification_methods.postgres.up.sql type "selfservice_verification_flow_methods" (line 1) | CREATE TABLE "selfservice_verification_flow_methods" ( FILE: persistence/sql/migrations/sql/20200830130644000000_add_verification_methods.sqlite3.up.sql type "selfservice_verification_flow_methods" (line 1) | CREATE TABLE "selfservice_verification_flow_methods" ( FILE: persistence/sql/migrations/sql/20200830130646000000_add_verification_methods.sqlite3.up.sql type "_selfservice_verification_flows_tmp" (line 1) | CREATE TABLE "_selfservice_verification_flows_tmp" ( FILE: persistence/sql/migrations/sql/20200830130646000004_add_verification_methods.sqlite3.up.sql type "_selfservice_verification_flows_tmp" (line 1) | CREATE TABLE "_selfservice_verification_flows_tmp" ( FILE: persistence/sql/migrations/sql/20200830130646000008_add_verification_methods.sqlite3.up.sql type "_selfservice_verification_flows_tmp" (line 1) | CREATE TABLE "_selfservice_verification_flows_tmp" ( FILE: persistence/sql/migrations/sql/20200830154602000000_add_verification_token.cockroach.up.sql type "identity_verification_tokens" (line 1) | CREATE TABLE "identity_verification_tokens" ( FILE: persistence/sql/migrations/sql/20200830154602000000_add_verification_token.mysql.up.sql type `identity_verification_tokens` (line 1) | CREATE TABLE `identity_verification_tokens` ( FILE: persistence/sql/migrations/sql/20200830154602000000_add_verification_token.postgres.up.sql type "identity_verification_tokens" (line 1) | CREATE TABLE "identity_verification_tokens" ( FILE: persistence/sql/migrations/sql/20200830154602000000_add_verification_token.sqlite3.up.sql type "identity_verification_tokens" (line 1) | CREATE TABLE "identity_verification_tokens" ( FILE: persistence/sql/migrations/sql/20200830154602000001_add_verification_token.cockroach.up.sql type "identity_verification_tokens" (line 1) | CREATE UNIQUE INDEX "identity_verification_tokens_token_uq_idx" ON "iden... FILE: persistence/sql/migrations/sql/20200830154602000001_add_verification_token.mysql.up.sql type `identity_verification_tokens_token_uq_idx` (line 1) | CREATE UNIQUE INDEX `identity_verification_tokens_token_uq_idx` ON `iden... FILE: persistence/sql/migrations/sql/20200830154602000001_add_verification_token.postgres.up.sql type "identity_verification_tokens" (line 1) | CREATE UNIQUE INDEX "identity_verification_tokens_token_uq_idx" ON "iden... FILE: persistence/sql/migrations/sql/20200830154602000001_add_verification_token.sqlite3.up.sql type "identity_verification_tokens" (line 1) | CREATE UNIQUE INDEX "identity_verification_tokens_token_uq_idx" ON "iden... FILE: persistence/sql/migrations/sql/20200830154602000002_add_verification_token.cockroach.up.sql type "identity_verification_tokens" (line 1) | CREATE INDEX "identity_verification_tokens_token_idx" ON "identity_verif... FILE: persistence/sql/migrations/sql/20200830154602000002_add_verification_token.mysql.up.sql type `identity_verification_tokens_token_idx` (line 1) | CREATE INDEX `identity_verification_tokens_token_idx` ON `identity_verif... FILE: persistence/sql/migrations/sql/20200830154602000002_add_verification_token.postgres.up.sql type "identity_verification_tokens" (line 1) | CREATE INDEX "identity_verification_tokens_token_idx" ON "identity_verif... FILE: persistence/sql/migrations/sql/20200830154602000002_add_verification_token.sqlite3.up.sql type "identity_verification_tokens" (line 1) | CREATE INDEX "identity_verification_tokens_token_idx" ON "identity_verif... FILE: persistence/sql/migrations/sql/20200830154602000003_add_verification_token.cockroach.up.sql type "identity_verification_tokens" (line 1) | CREATE INDEX "identity_verification_tokens_verifiable_address_id_idx" ON... FILE: persistence/sql/migrations/sql/20200830154602000003_add_verification_token.mysql.up.sql type `identity_verification_tokens_verifiable_address_id_idx` (line 1) | CREATE INDEX `identity_verification_tokens_verifiable_address_id_idx` ON... FILE: persistence/sql/migrations/sql/20200830154602000003_add_verification_token.postgres.up.sql type "identity_verification_tokens" (line 1) | CREATE INDEX "identity_verification_tokens_verifiable_address_id_idx" ON... FILE: persistence/sql/migrations/sql/20200830154602000003_add_verification_token.sqlite3.up.sql type "identity_verification_tokens" (line 1) | CREATE INDEX "identity_verification_tokens_verifiable_address_id_idx" ON... FILE: persistence/sql/migrations/sql/20200830154602000004_add_verification_token.cockroach.up.sql type "identity_verification_tokens" (line 1) | CREATE INDEX "identity_verification_tokens_verification_flow_id_idx" ON ... FILE: persistence/sql/migrations/sql/20200830154602000004_add_verification_token.mysql.up.sql type `identity_verification_tokens_verification_flow_id_idx` (line 1) | CREATE INDEX `identity_verification_tokens_verification_flow_id_idx` ON ... FILE: persistence/sql/migrations/sql/20200830154602000004_add_verification_token.postgres.up.sql type "identity_verification_tokens" (line 1) | CREATE INDEX "identity_verification_tokens_verification_flow_id_idx" ON ... FILE: persistence/sql/migrations/sql/20200830154602000004_add_verification_token.sqlite3.up.sql type "identity_verification_tokens" (line 1) | CREATE INDEX "identity_verification_tokens_verification_flow_id_idx" ON ... FILE: persistence/sql/migrations/sql/20200830172221000003_recovery_token_expires.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "_ident... FILE: persistence/sql/migrations/sql/20200830172221000004_recovery_token_expires.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "_identity_recove... FILE: persistence/sql/migrations/sql/20200830172221000004_recovery_token_expires.sqlite3.up.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE TABLE "_identity_recovery_tokens_tmp" ( FILE: persistence/sql/migrations/sql/20200830172221000005_recovery_token_expires.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE INDEX "identity_recovery_tokens_nid_idx" ON "_identity_recovery_t... FILE: persistence/sql/migrations/sql/20200830172221000005_recovery_token_expires.sqlite3.up.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "_identity_recove... FILE: persistence/sql/migrations/sql/20200830172221000006_recovery_token_expires.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE TABLE "_identity_recovery_tokens_tmp" ( FILE: persistence/sql/migrations/sql/20200830172221000006_recovery_token_expires.sqlite3.up.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "_ident... FILE: persistence/sql/migrations/sql/20200830172221000013_recovery_token_expires.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "_ident... FILE: persistence/sql/migrations/sql/20200830172221000014_recovery_token_expires.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "_identity_recove... FILE: persistence/sql/migrations/sql/20200830172221000015_recovery_token_expires.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE INDEX "identity_recovery_tokens_nid_idx" ON "_identity_recovery_t... FILE: persistence/sql/migrations/sql/20200830172221000016_recovery_token_expires.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE TABLE "_identity_recovery_tokens_tmp" ( FILE: persistence/sql/migrations/sql/20200830172221000023_recovery_token_expires.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "_ident... FILE: persistence/sql/migrations/sql/20200830172221000024_recovery_token_expires.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "_identity_recove... FILE: persistence/sql/migrations/sql/20200830172221000025_recovery_token_expires.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE INDEX "identity_recovery_tokens_nid_idx" ON "_identity_recovery_t... FILE: persistence/sql/migrations/sql/20200830172221000026_recovery_token_expires.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE TABLE "_identity_recovery_tokens_tmp" ( FILE: persistence/sql/migrations/sql/20200831110752000000_identity_verifiable_address_remove_code.cockroach.down.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_code_idx" ON "identity_verif... FILE: persistence/sql/migrations/sql/20200831110752000000_identity_verifiable_address_remove_code.mysql.down.sql type `identity_verifiable_addresses_code_idx` (line 1) | CREATE INDEX `identity_verifiable_addresses_code_idx` ON `identity_verif... FILE: persistence/sql/migrations/sql/20200831110752000000_identity_verifiable_address_remove_code.postgres.down.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_code_idx" ON "identity_verif... FILE: persistence/sql/migrations/sql/20200831110752000000_identity_verifiable_address_remove_code.sqlite3.down.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_code_idx" ON "identity_verif... FILE: persistence/sql/migrations/sql/20200831110752000001_identity_verifiable_address_remove_code.cockroach.down.sql type "identity_verifiable_addresses" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_code_uq_idx" ON "iden... FILE: persistence/sql/migrations/sql/20200831110752000001_identity_verifiable_address_remove_code.mysql.down.sql type `identity_verifiable_addresses_code_uq_idx` (line 1) | CREATE UNIQUE INDEX `identity_verifiable_addresses_code_uq_idx` ON `iden... FILE: persistence/sql/migrations/sql/20200831110752000001_identity_verifiable_address_remove_code.postgres.down.sql type "identity_verifiable_addresses" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_code_uq_idx" ON "iden... FILE: persistence/sql/migrations/sql/20200831110752000001_identity_verifiable_address_remove_code.sqlite3.down.sql type "identity_verifiable_addresses" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_code_uq_idx" ON "iden... FILE: persistence/sql/migrations/sql/20200831110752000004_identity_verifiable_address_remove_code.sqlite3.up.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE TABLE "_identity_verifiable_addresses_tmp" ( FILE: persistence/sql/migrations/sql/20200831110752000005_identity_verifiable_address_remove_code.sqlite3.down.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... FILE: persistence/sql/migrations/sql/20200831110752000005_identity_verifiable_address_remove_code.sqlite3.up.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "_identit... FILE: persistence/sql/migrations/sql/20200831110752000006_identity_verifiable_address_remove_code.sqlite3.down.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "_identit... FILE: persistence/sql/migrations/sql/20200831110752000006_identity_verifiable_address_remove_code.sqlite3.up.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... FILE: persistence/sql/migrations/sql/20200831110752000007_identity_verifiable_address_remove_code.sqlite3.down.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE TABLE "_identity_verifiable_addresses_tmp" ( FILE: persistence/sql/migrations/sql/20200831110752000012_identity_verifiable_address_remove_code.sqlite3.up.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE TABLE "_identity_verifiable_addresses_tmp" ( FILE: persistence/sql/migrations/sql/20200831110752000013_identity_verifiable_address_remove_code.sqlite3.down.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... FILE: persistence/sql/migrations/sql/20200831110752000013_identity_verifiable_address_remove_code.sqlite3.up.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "_identit... FILE: persistence/sql/migrations/sql/20200831110752000014_identity_verifiable_address_remove_code.sqlite3.down.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "_identit... FILE: persistence/sql/migrations/sql/20200831110752000014_identity_verifiable_address_remove_code.sqlite3.up.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... FILE: persistence/sql/migrations/sql/20200831110752000015_identity_verifiable_address_remove_code.sqlite3.down.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE TABLE "_identity_verifiable_addresses_tmp" ( FILE: persistence/sql/migrations/sql/20210307130558000000_courier_status_index.cockroach.up.sql type "courier_messages" (line 1) | CREATE INDEX "courier_messages_status_idx" ON "courier_messages" (status) FILE: persistence/sql/migrations/sql/20210307130558000000_courier_status_index.mysql.up.sql type `courier_messages_status_idx` (line 1) | CREATE INDEX `courier_messages_status_idx` ON `courier_messages` (`status`) FILE: persistence/sql/migrations/sql/20210307130558000000_courier_status_index.postgres.up.sql type "courier_messages" (line 1) | CREATE INDEX "courier_messages_status_idx" ON "courier_messages" (status) FILE: persistence/sql/migrations/sql/20210307130558000000_courier_status_index.sqlite3.up.sql type "courier_messages" (line 1) | CREATE INDEX "courier_messages_status_idx" ON "courier_messages" (status) FILE: persistence/sql/migrations/sql/20210307130559000003_courier_message_template.sqlite3.down.sql type "_courier_messages_tmp" (line 1) | CREATE INDEX "courier_messages_status_idx" ON "_courier_messages_tmp" (s... FILE: persistence/sql/migrations/sql/20210307130559000004_courier_message_template.sqlite3.down.sql type "_courier_messages_tmp" (line 1) | CREATE TABLE "_courier_messages_tmp" ( FILE: persistence/sql/migrations/sql/20210307130559000009_courier_message_template.sqlite3.down.sql type "_courier_messages_tmp" (line 1) | CREATE INDEX "courier_messages_status_idx" ON "_courier_messages_tmp" (s... FILE: persistence/sql/migrations/sql/20210307130559000010_courier_message_template.sqlite3.down.sql type "_courier_messages_tmp" (line 1) | CREATE TABLE "_courier_messages_tmp" ( FILE: persistence/sql/migrations/sql/20210311102338000001_form_refactoring.sqlite3.up.sql type "_selfservice_login_flows_tmp" (line 1) | CREATE TABLE "_selfservice_login_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210311102338000002_form_refactoring.cockroach.down.sql type "selfservice_verification_flow_methods" (line 1) | CREATE TABLE "selfservice_verification_flow_methods" ( FILE: persistence/sql/migrations/sql/20210311102338000002_form_refactoring.mysql.down.sql type `selfservice_verification_flow_methods` (line 1) | CREATE TABLE `selfservice_verification_flow_methods` ( FILE: persistence/sql/migrations/sql/20210311102338000002_form_refactoring.postgres.down.sql type "selfservice_verification_flow_methods" (line 1) | CREATE TABLE "selfservice_verification_flow_methods" ( FILE: persistence/sql/migrations/sql/20210311102338000004_form_refactoring.sqlite3.down.sql type "_selfservice_verification_flows_tmp" (line 1) | CREATE INDEX "selfservice_verification_flows_nid_idx" ON "_selfservice_v... FILE: persistence/sql/migrations/sql/20210311102338000005_form_refactoring.cockroach.down.sql type "selfservice_recovery_flow_methods" (line 1) | CREATE TABLE "selfservice_recovery_flow_methods" ( FILE: persistence/sql/migrations/sql/20210311102338000005_form_refactoring.mysql.down.sql type `selfservice_recovery_flow_methods` (line 1) | CREATE TABLE `selfservice_recovery_flow_methods` ( FILE: persistence/sql/migrations/sql/20210311102338000005_form_refactoring.postgres.down.sql type "selfservice_recovery_flow_methods" (line 1) | CREATE TABLE "selfservice_recovery_flow_methods" ( FILE: persistence/sql/migrations/sql/20210311102338000005_form_refactoring.sqlite3.down.sql type "_selfservice_verification_flows_tmp" (line 1) | CREATE TABLE "_selfservice_verification_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210311102338000007_form_refactoring.sqlite3.down.sql type "selfservice_verification_flow_methods" (line 1) | CREATE TABLE "selfservice_verification_flow_methods" ( FILE: persistence/sql/migrations/sql/20210311102338000007_form_refactoring.sqlite3.up.sql type "_selfservice_login_flows_tmp" (line 1) | CREATE TABLE "_selfservice_login_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210311102338000008_form_refactoring.cockroach.down.sql type "selfservice_settings_flow_methods" (line 1) | CREATE TABLE "selfservice_settings_flow_methods" ( FILE: persistence/sql/migrations/sql/20210311102338000008_form_refactoring.mysql.down.sql type `selfservice_settings_flow_methods` (line 1) | CREATE TABLE `selfservice_settings_flow_methods` ( FILE: persistence/sql/migrations/sql/20210311102338000008_form_refactoring.postgres.down.sql type "selfservice_settings_flow_methods" (line 1) | CREATE TABLE "selfservice_settings_flow_methods" ( FILE: persistence/sql/migrations/sql/20210311102338000011_form_refactoring.cockroach.down.sql type "selfservice_registration_flow_methods" (line 1) | CREATE TABLE "selfservice_registration_flow_methods" ( FILE: persistence/sql/migrations/sql/20210311102338000011_form_refactoring.mysql.down.sql type `selfservice_registration_flow_methods` (line 1) | CREATE TABLE `selfservice_registration_flow_methods` ( FILE: persistence/sql/migrations/sql/20210311102338000011_form_refactoring.postgres.down.sql type "selfservice_registration_flow_methods" (line 1) | CREATE TABLE "selfservice_registration_flow_methods" ( FILE: persistence/sql/migrations/sql/20210311102338000012_form_refactoring.sqlite3.down.sql type "_selfservice_recovery_flows_tmp" (line 1) | CREATE INDEX "selfservice_recovery_flows_nid_idx" ON "_selfservice_recov... FILE: persistence/sql/migrations/sql/20210311102338000012_form_refactoring.sqlite3.up.sql type "_selfservice_registration_flows_tmp" (line 1) | CREATE TABLE "_selfservice_registration_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210311102338000013_form_refactoring.sqlite3.down.sql type "_selfservice_recovery_flows_tmp" (line 1) | CREATE TABLE "_selfservice_recovery_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210311102338000014_form_refactoring.cockroach.down.sql type "selfservice_login_flow_methods" (line 1) | CREATE TABLE "selfservice_login_flow_methods" ( FILE: persistence/sql/migrations/sql/20210311102338000014_form_refactoring.mysql.down.sql type `selfservice_login_flow_methods` (line 1) | CREATE TABLE `selfservice_login_flow_methods` ( FILE: persistence/sql/migrations/sql/20210311102338000014_form_refactoring.postgres.down.sql type "selfservice_login_flow_methods" (line 1) | CREATE TABLE "selfservice_login_flow_methods" ( FILE: persistence/sql/migrations/sql/20210311102338000015_form_refactoring.sqlite3.down.sql type "selfservice_recovery_flow_methods" (line 1) | CREATE TABLE "selfservice_recovery_flow_methods" ( FILE: persistence/sql/migrations/sql/20210311102338000018_form_refactoring.sqlite3.up.sql type "_selfservice_registration_flows_tmp" (line 1) | CREATE TABLE "_selfservice_registration_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210311102338000020_form_refactoring.sqlite3.down.sql type "_selfservice_settings_flows_tmp" (line 1) | CREATE TABLE "_selfservice_settings_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210311102338000021_form_refactoring.sqlite3.down.sql type "selfservice_settings_flow_methods" (line 1) | CREATE TABLE "selfservice_settings_flow_methods" ( FILE: persistence/sql/migrations/sql/20210311102338000023_form_refactoring.sqlite3.up.sql type "_selfservice_settings_flows_tmp" (line 1) | CREATE TABLE "_selfservice_settings_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210311102338000026_form_refactoring.sqlite3.down.sql type "_selfservice_registration_flows_tmp" (line 1) | CREATE TABLE "_selfservice_registration_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210311102338000027_form_refactoring.sqlite3.down.sql type "selfservice_registration_flow_methods" (line 1) | CREATE TABLE "selfservice_registration_flow_methods" ( FILE: persistence/sql/migrations/sql/20210311102338000029_form_refactoring.sqlite3.up.sql type "_selfservice_settings_flows_tmp" (line 1) | CREATE TABLE "_selfservice_settings_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210311102338000032_form_refactoring.sqlite3.down.sql type "_selfservice_login_flows_tmp" (line 1) | CREATE TABLE "_selfservice_login_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210311102338000033_form_refactoring.sqlite3.down.sql type "selfservice_login_flow_methods" (line 1) | CREATE TABLE "selfservice_login_flow_methods" ( FILE: persistence/sql/migrations/sql/20210311102338000034_form_refactoring.sqlite3.up.sql type "_selfservice_recovery_flows_tmp" (line 1) | CREATE TABLE "_selfservice_recovery_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210311102338000040_form_refactoring.sqlite3.up.sql type "_selfservice_recovery_flows_tmp" (line 1) | CREATE TABLE "_selfservice_recovery_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210311102338000045_form_refactoring.sqlite3.up.sql type "_selfservice_verification_flows_tmp" (line 1) | CREATE TABLE "_selfservice_verification_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210311102338000051_form_refactoring.sqlite3.up.sql type "_selfservice_verification_flows_tmp" (line 1) | CREATE TABLE "_selfservice_verification_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000000_network.cockroach.down.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "identity... FILE: persistence/sql/migrations/sql/20210410175418000000_network.mysql.down.sql type `identity_verifiable_addresses_status_via_idx` (line 1) | CREATE INDEX `identity_verifiable_addresses_status_via_idx` ON `identity... FILE: persistence/sql/migrations/sql/20210410175418000000_network.postgres.down.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "identity... FILE: persistence/sql/migrations/sql/20210410175418000000_network.sqlite3.down.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "identity... FILE: persistence/sql/migrations/sql/20210410175418000001_network.cockroach.down.sql type "identity_verifiable_addresses" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... FILE: persistence/sql/migrations/sql/20210410175418000001_network.mysql.down.sql type `identity_verifiable_addresses_status_via_uq_idx` (line 1) | CREATE UNIQUE INDEX `identity_verifiable_addresses_status_via_uq_idx` ON... FILE: persistence/sql/migrations/sql/20210410175418000001_network.postgres.down.sql type "identity_verifiable_addresses" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... FILE: persistence/sql/migrations/sql/20210410175418000001_network.sqlite3.down.sql type "identity_verifiable_addresses" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... FILE: persistence/sql/migrations/sql/20210410175418000002_network.cockroach.down.sql type "identity_recovery_addresses" (line 1) | CREATE INDEX "identity_recovery_addresses_status_via_idx" ON "identity_r... FILE: persistence/sql/migrations/sql/20210410175418000002_network.mysql.down.sql type `identity_recovery_addresses_status_via_idx` (line 1) | CREATE INDEX `identity_recovery_addresses_status_via_idx` ON `identity_r... FILE: persistence/sql/migrations/sql/20210410175418000002_network.postgres.down.sql type "identity_recovery_addresses" (line 1) | CREATE INDEX "identity_recovery_addresses_status_via_idx" ON "identity_r... FILE: persistence/sql/migrations/sql/20210410175418000002_network.sqlite3.down.sql type "identity_recovery_addresses" (line 1) | CREATE INDEX "identity_recovery_addresses_status_via_idx" ON "identity_r... FILE: persistence/sql/migrations/sql/20210410175418000003_network.cockroach.down.sql type "identity_recovery_addresses" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_status_via_uq_idx" ON "... FILE: persistence/sql/migrations/sql/20210410175418000003_network.mysql.down.sql type `identity_recovery_addresses_status_via_uq_idx` (line 1) | CREATE UNIQUE INDEX `identity_recovery_addresses_status_via_uq_idx` ON `... FILE: persistence/sql/migrations/sql/20210410175418000003_network.postgres.down.sql type "identity_recovery_addresses" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_status_via_uq_idx" ON "... FILE: persistence/sql/migrations/sql/20210410175418000003_network.sqlite3.down.sql type "identity_recovery_addresses" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_status_via_uq_idx" ON "... FILE: persistence/sql/migrations/sql/20210410175418000004_network.cockroach.down.sql type "identity_credential_identifiers" (line 1) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_idx" ON ... FILE: persistence/sql/migrations/sql/20210410175418000004_network.mysql.down.sql type `identity_credential_identifiers_identifier_idx` (line 1) | CREATE UNIQUE INDEX `identity_credential_identifiers_identifier_idx` ON ... FILE: persistence/sql/migrations/sql/20210410175418000004_network.mysql.up.sql type `selfservice_login_flows_nid_idx` (line 1) | CREATE INDEX `selfservice_login_flows_nid_idx` ON `selfservice_login_flo... FILE: persistence/sql/migrations/sql/20210410175418000004_network.postgres.down.sql type "identity_credential_identifiers" (line 1) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_idx" ON ... FILE: persistence/sql/migrations/sql/20210410175418000004_network.postgres.up.sql type "selfservice_login_flows" (line 1) | CREATE INDEX "selfservice_login_flows_nid_idx" ON "selfservice_login_flo... FILE: persistence/sql/migrations/sql/20210410175418000004_network.sqlite3.down.sql type "identity_credential_identifiers" (line 1) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_idx" ON ... FILE: persistence/sql/migrations/sql/20210410175418000004_network.sqlite3.up.sql type "_selfservice_login_flows_tmp" (line 1) | CREATE TABLE "_selfservice_login_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000008_network.sqlite3.down.sql type "_identity_credential_identifiers_tmp" (line 1) | CREATE TABLE "_identity_credential_identifiers_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000008_network.sqlite3.up.sql type "selfservice_login_flows" (line 1) | CREATE INDEX "selfservice_login_flows_nid_idx" ON "selfservice_login_flo... FILE: persistence/sql/migrations/sql/20210410175418000009_network.cockroach.up.sql type "selfservice_login_flows" (line 1) | CREATE INDEX "selfservice_login_flows_nid_idx" ON "selfservice_login_flo... FILE: persistence/sql/migrations/sql/20210410175418000009_network.mysql.up.sql type `selfservice_registration_flows_nid_idx` (line 1) | CREATE INDEX `selfservice_registration_flows_nid_idx` ON `selfservice_re... FILE: persistence/sql/migrations/sql/20210410175418000009_network.postgres.up.sql type "selfservice_registration_flows" (line 1) | CREATE INDEX "selfservice_registration_flows_nid_idx" ON "selfservice_re... FILE: persistence/sql/migrations/sql/20210410175418000013_network.sqlite3.down.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE TABLE "_identity_verifiable_addresses_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000013_network.sqlite3.up.sql type "_selfservice_registration_flows_tmp" (line 1) | CREATE TABLE "_selfservice_registration_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000014_network.mysql.up.sql type `selfservice_settings_flows_nid_idx` (line 1) | CREATE INDEX `selfservice_settings_flows_nid_idx` ON `selfservice_settin... FILE: persistence/sql/migrations/sql/20210410175418000014_network.postgres.up.sql type "selfservice_settings_flows" (line 1) | CREATE INDEX "selfservice_settings_flows_nid_idx" ON "selfservice_settin... FILE: persistence/sql/migrations/sql/20210410175418000017_network.sqlite3.down.sql type "_identity_credentials_tmp" (line 1) | CREATE TABLE "_identity_credentials_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000017_network.sqlite3.up.sql type "selfservice_registration_flows" (line 1) | CREATE INDEX "selfservice_registration_flows_nid_idx" ON "selfservice_re... FILE: persistence/sql/migrations/sql/20210410175418000019_network.cockroach.up.sql type "selfservice_registration_flows" (line 1) | CREATE INDEX "selfservice_registration_flows_nid_idx" ON "selfservice_re... FILE: persistence/sql/migrations/sql/20210410175418000019_network.mysql.up.sql type `selfservice_errors_nid_idx` (line 1) | CREATE INDEX `selfservice_errors_nid_idx` ON `selfservice_errors` (`id`,... FILE: persistence/sql/migrations/sql/20210410175418000019_network.postgres.up.sql type "selfservice_errors" (line 1) | CREATE INDEX "selfservice_errors_nid_idx" ON "selfservice_errors" (id, nid) FILE: persistence/sql/migrations/sql/20210410175418000021_network.sqlite3.down.sql type "_identities_tmp" (line 1) | CREATE TABLE "_identities_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000022_network.sqlite3.up.sql type "_selfservice_settings_flows_tmp" (line 1) | CREATE TABLE "_selfservice_settings_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000024_network.mysql.up.sql type `continuity_containers_nid_idx` (line 1) | CREATE INDEX `continuity_containers_nid_idx` ON `continuity_containers` ... FILE: persistence/sql/migrations/sql/20210410175418000024_network.postgres.up.sql type "continuity_containers" (line 1) | CREATE INDEX "continuity_containers_nid_idx" ON "continuity_containers" ... FILE: persistence/sql/migrations/sql/20210410175418000025_network.sqlite3.down.sql type "_selfservice_errors_tmp" (line 1) | CREATE TABLE "_selfservice_errors_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000026_network.sqlite3.up.sql type "selfservice_settings_flows" (line 1) | CREATE INDEX "selfservice_settings_flows_nid_idx" ON "selfservice_settin... FILE: persistence/sql/migrations/sql/20210410175418000029_network.cockroach.up.sql type "selfservice_settings_flows" (line 1) | CREATE INDEX "selfservice_settings_flows_nid_idx" ON "selfservice_settin... FILE: persistence/sql/migrations/sql/20210410175418000029_network.mysql.up.sql type `courier_messages_nid_idx` (line 1) | CREATE INDEX `courier_messages_nid_idx` ON `courier_messages` (`id`, `nid`) FILE: persistence/sql/migrations/sql/20210410175418000029_network.postgres.up.sql type "courier_messages" (line 1) | CREATE INDEX "courier_messages_nid_idx" ON "courier_messages" (id, nid) FILE: persistence/sql/migrations/sql/20210410175418000029_network.sqlite3.down.sql type "_courier_messages_tmp" (line 1) | CREATE INDEX "courier_messages_status_idx" ON "_courier_messages_tmp" (s... FILE: persistence/sql/migrations/sql/20210410175418000030_network.sqlite3.down.sql type "_courier_messages_tmp" (line 1) | CREATE TABLE "_courier_messages_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000031_network.sqlite3.up.sql type "_selfservice_errors_tmp" (line 1) | CREATE TABLE "_selfservice_errors_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000034_network.mysql.up.sql type `identities_nid_idx` (line 1) | CREATE INDEX `identities_nid_idx` ON `identities` (`id`, `nid`) FILE: persistence/sql/migrations/sql/20210410175418000034_network.postgres.up.sql type "identities" (line 1) | CREATE INDEX "identities_nid_idx" ON "identities" (id, nid) FILE: persistence/sql/migrations/sql/20210410175418000035_network.sqlite3.down.sql type "_continuity_containers_tmp" (line 1) | CREATE TABLE "_continuity_containers_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000035_network.sqlite3.up.sql type "selfservice_errors" (line 1) | CREATE INDEX "selfservice_errors_nid_idx" ON "selfservice_errors" (id, nid) FILE: persistence/sql/migrations/sql/20210410175418000039_network.cockroach.up.sql type "selfservice_errors" (line 1) | CREATE INDEX "selfservice_errors_nid_idx" ON "selfservice_errors" (id, nid) FILE: persistence/sql/migrations/sql/20210410175418000039_network.mysql.up.sql type `identity_credentials_nid_idx` (line 1) | CREATE INDEX `identity_credentials_nid_idx` ON `identity_credentials` (`... FILE: persistence/sql/migrations/sql/20210410175418000039_network.postgres.up.sql type "identity_credentials" (line 1) | CREATE INDEX "identity_credentials_nid_idx" ON "identity_credentials" (i... FILE: persistence/sql/migrations/sql/20210410175418000039_network.sqlite3.down.sql type "_selfservice_settings_flows_tmp" (line 1) | CREATE TABLE "_selfservice_settings_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000040_network.sqlite3.up.sql type "_continuity_containers_tmp" (line 1) | CREATE TABLE "_continuity_containers_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000043_network.sqlite3.down.sql type "_selfservice_registration_flows_tmp" (line 1) | CREATE TABLE "_selfservice_registration_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000044_network.mysql.up.sql type `identity_credential_identifiers_nid_idx` (line 1) | CREATE INDEX `identity_credential_identifiers_nid_idx` ON `identity_cred... FILE: persistence/sql/migrations/sql/20210410175418000044_network.postgres.up.sql type "identity_credential_identifiers" (line 1) | CREATE INDEX "identity_credential_identifiers_nid_idx" ON "identity_cred... FILE: persistence/sql/migrations/sql/20210410175418000044_network.sqlite3.up.sql type "continuity_containers" (line 1) | CREATE INDEX "continuity_containers_nid_idx" ON "continuity_containers" ... FILE: persistence/sql/migrations/sql/20210410175418000046_network.mysql.up.sql type `identity_credential_identifiers_identifier_nid_uq_idx` (line 1) | CREATE UNIQUE INDEX `identity_credential_identifiers_identifier_nid_uq_i... FILE: persistence/sql/migrations/sql/20210410175418000046_network.postgres.up.sql type "identity_credential_identifiers" (line 1) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_nid_uq_i... FILE: persistence/sql/migrations/sql/20210410175418000047_network.sqlite3.down.sql type "_selfservice_login_flows_tmp" (line 1) | CREATE TABLE "_selfservice_login_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000049_network.cockroach.up.sql type "continuity_containers" (line 1) | CREATE INDEX "continuity_containers_nid_idx" ON "continuity_containers" ... FILE: persistence/sql/migrations/sql/20210410175418000050_network.sqlite3.up.sql type "_courier_messages_tmp" (line 1) | CREATE TABLE "_courier_messages_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000051_network.mysql.up.sql type `selfservice_recovery_flows_nid_idx` (line 1) | CREATE INDEX `selfservice_recovery_flows_nid_idx` ON `selfservice_recove... FILE: persistence/sql/migrations/sql/20210410175418000051_network.postgres.up.sql type "selfservice_recovery_flows" (line 1) | CREATE INDEX "selfservice_recovery_flows_nid_idx" ON "selfservice_recove... FILE: persistence/sql/migrations/sql/20210410175418000051_network.sqlite3.up.sql type "_courier_messages_tmp" (line 1) | CREATE INDEX "courier_messages_status_idx" ON "_courier_messages_tmp" (s... FILE: persistence/sql/migrations/sql/20210410175418000055_network.sqlite3.up.sql type "courier_messages" (line 1) | CREATE INDEX "courier_messages_nid_idx" ON "courier_messages" (id, nid) FILE: persistence/sql/migrations/sql/20210410175418000056_network.mysql.up.sql type `identity_recovery_addresses_nid_idx` (line 1) | CREATE INDEX `identity_recovery_addresses_nid_idx` ON `identity_recovery... FILE: persistence/sql/migrations/sql/20210410175418000056_network.postgres.up.sql type "identity_recovery_addresses" (line 1) | CREATE INDEX "identity_recovery_addresses_nid_idx" ON "identity_recovery... FILE: persistence/sql/migrations/sql/20210410175418000059_network.cockroach.up.sql type "courier_messages" (line 1) | CREATE INDEX "courier_messages_nid_idx" ON "courier_messages" (id, nid) FILE: persistence/sql/migrations/sql/20210410175418000059_network.mysql.up.sql type `identity_recovery_addresses_status_via_uq_idx` (line 1) | CREATE UNIQUE INDEX `identity_recovery_addresses_status_via_uq_idx` ON `... FILE: persistence/sql/migrations/sql/20210410175418000059_network.postgres.up.sql type "identity_recovery_addresses" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_status_via_uq_idx" ON "... FILE: persistence/sql/migrations/sql/20210410175418000060_network.mysql.up.sql type `identity_recovery_addresses_status_via_idx` (line 1) | CREATE INDEX `identity_recovery_addresses_status_via_idx` ON `identity_r... FILE: persistence/sql/migrations/sql/20210410175418000060_network.postgres.up.sql type "identity_recovery_addresses" (line 1) | CREATE INDEX "identity_recovery_addresses_status_via_idx" ON "identity_r... FILE: persistence/sql/migrations/sql/20210410175418000060_network.sqlite3.up.sql type "_identities_tmp" (line 1) | CREATE TABLE "_identities_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000064_network.sqlite3.up.sql type "identities" (line 1) | CREATE INDEX "identities_nid_idx" ON "identities" (id, nid) FILE: persistence/sql/migrations/sql/20210410175418000065_network.mysql.up.sql type `identity_recovery_tokens_nid_idx` (line 1) | CREATE INDEX `identity_recovery_tokens_nid_idx` ON `identity_recovery_to... FILE: persistence/sql/migrations/sql/20210410175418000065_network.postgres.up.sql type "identity_recovery_tokens" (line 1) | CREATE INDEX "identity_recovery_tokens_nid_idx" ON "identity_recovery_to... FILE: persistence/sql/migrations/sql/20210410175418000069_network.cockroach.up.sql type "identities" (line 1) | CREATE INDEX "identities_nid_idx" ON "identities" (id, nid) FILE: persistence/sql/migrations/sql/20210410175418000069_network.sqlite3.up.sql type "_identity_credentials_tmp" (line 1) | CREATE TABLE "_identity_credentials_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000070_network.mysql.up.sql type `selfservice_verification_flows_nid_idx` (line 1) | CREATE INDEX `selfservice_verification_flows_nid_idx` ON `selfservice_ve... FILE: persistence/sql/migrations/sql/20210410175418000070_network.postgres.up.sql type "selfservice_verification_flows" (line 1) | CREATE INDEX "selfservice_verification_flows_nid_idx" ON "selfservice_ve... FILE: persistence/sql/migrations/sql/20210410175418000073_network.sqlite3.up.sql type "identity_credentials" (line 1) | CREATE INDEX "identity_credentials_nid_idx" ON "identity_credentials" (i... FILE: persistence/sql/migrations/sql/20210410175418000075_network.mysql.up.sql type `identity_verifiable_addresses_nid_idx` (line 1) | CREATE INDEX `identity_verifiable_addresses_nid_idx` ON `identity_verifi... FILE: persistence/sql/migrations/sql/20210410175418000075_network.postgres.up.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_nid_idx" ON "identity_verifi... FILE: persistence/sql/migrations/sql/20210410175418000078_network.mysql.up.sql type `identity_verifiable_addresses_status_via_uq_idx` (line 1) | CREATE UNIQUE INDEX `identity_verifiable_addresses_status_via_uq_idx` ON... FILE: persistence/sql/migrations/sql/20210410175418000078_network.postgres.up.sql type "identity_verifiable_addresses" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... FILE: persistence/sql/migrations/sql/20210410175418000079_network.cockroach.up.sql type "identity_credentials" (line 1) | CREATE INDEX "identity_credentials_nid_idx" ON "identity_credentials" (i... FILE: persistence/sql/migrations/sql/20210410175418000079_network.mysql.up.sql type `identity_verifiable_addresses_status_via_idx` (line 1) | CREATE INDEX `identity_verifiable_addresses_status_via_idx` ON `identity... FILE: persistence/sql/migrations/sql/20210410175418000079_network.postgres.up.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "identity... FILE: persistence/sql/migrations/sql/20210410175418000079_network.sqlite3.up.sql type "_identity_credential_identifiers_tmp" (line 1) | CREATE TABLE "_identity_credential_identifiers_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000080_network.sqlite3.up.sql type "_identity_credential_identifiers_tmp" (line 1) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_idx" ON ... FILE: persistence/sql/migrations/sql/20210410175418000084_network.mysql.up.sql type `identity_verification_tokens_nid_idx` (line 1) | CREATE INDEX `identity_verification_tokens_nid_idx` ON `identity_verific... FILE: persistence/sql/migrations/sql/20210410175418000084_network.postgres.up.sql type "identity_verification_tokens" (line 1) | CREATE INDEX "identity_verification_tokens_nid_idx" ON "identity_verific... FILE: persistence/sql/migrations/sql/20210410175418000084_network.sqlite3.up.sql type "identity_credential_identifiers" (line 1) | CREATE INDEX "identity_credential_identifiers_nid_idx" ON "identity_cred... FILE: persistence/sql/migrations/sql/20210410175418000086_network.sqlite3.up.sql type "identity_credential_identifiers" (line 1) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_nid_uq_i... FILE: persistence/sql/migrations/sql/20210410175418000089_network.cockroach.up.sql type "identity_credential_identifiers" (line 1) | CREATE INDEX "identity_credential_identifiers_nid_idx" ON "identity_cred... FILE: persistence/sql/migrations/sql/20210410175418000089_network.mysql.up.sql type `sessions_nid_idx` (line 1) | CREATE INDEX `sessions_nid_idx` ON `sessions` (`id`, `nid`) FILE: persistence/sql/migrations/sql/20210410175418000089_network.postgres.up.sql type "sessions" (line 1) | CREATE INDEX "sessions_nid_idx" ON "sessions" (id, nid) FILE: persistence/sql/migrations/sql/20210410175418000091_network.cockroach.up.sql type "identity_credential_identifiers" (line 1) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_nid_uq_i... FILE: persistence/sql/migrations/sql/20210410175418000091_network.sqlite3.up.sql type "_selfservice_recovery_flows_tmp" (line 1) | CREATE TABLE "_selfservice_recovery_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000095_network.sqlite3.up.sql type "selfservice_recovery_flows" (line 1) | CREATE INDEX "selfservice_recovery_flows_nid_idx" ON "selfservice_recove... FILE: persistence/sql/migrations/sql/20210410175418000101_network.cockroach.up.sql type "selfservice_recovery_flows" (line 1) | CREATE INDEX "selfservice_recovery_flows_nid_idx" ON "selfservice_recove... FILE: persistence/sql/migrations/sql/20210410175418000102_network.sqlite3.up.sql type "_identity_recovery_addresses_tmp" (line 1) | CREATE TABLE "_identity_recovery_addresses_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000103_network.sqlite3.up.sql type "_identity_recovery_addresses_tmp" (line 1) | CREATE INDEX "identity_recovery_addresses_status_via_idx" ON "_identity_... FILE: persistence/sql/migrations/sql/20210410175418000104_network.sqlite3.up.sql type "_identity_recovery_addresses_tmp" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_status_via_uq_idx" ON "... FILE: persistence/sql/migrations/sql/20210410175418000108_network.sqlite3.up.sql type "identity_recovery_addresses" (line 1) | CREATE INDEX "identity_recovery_addresses_nid_idx" ON "identity_recovery... FILE: persistence/sql/migrations/sql/20210410175418000111_network.cockroach.up.sql type "identity_recovery_addresses" (line 1) | CREATE INDEX "identity_recovery_addresses_nid_idx" ON "identity_recovery... FILE: persistence/sql/migrations/sql/20210410175418000111_network.sqlite3.up.sql type "identity_recovery_addresses" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_status_via_uq_idx" ON "... FILE: persistence/sql/migrations/sql/20210410175418000112_network.sqlite3.up.sql type "identity_recovery_addresses" (line 1) | CREATE INDEX "identity_recovery_addresses_status_via_idx" ON "identity_r... FILE: persistence/sql/migrations/sql/20210410175418000114_network.cockroach.up.sql type "identity_recovery_addresses" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_status_via_uq_idx" ON "... FILE: persistence/sql/migrations/sql/20210410175418000115_network.cockroach.up.sql type "identity_recovery_addresses" (line 1) | CREATE INDEX "identity_recovery_addresses_status_via_idx" ON "identity_r... FILE: persistence/sql/migrations/sql/20210410175418000119_network.sqlite3.up.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE TABLE "_identity_recovery_tokens_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000120_network.sqlite3.up.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "_ident... FILE: persistence/sql/migrations/sql/20210410175418000121_network.sqlite3.up.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "_identity_recove... FILE: persistence/sql/migrations/sql/20210410175418000125_network.cockroach.up.sql type "identity_recovery_tokens" (line 1) | CREATE INDEX "identity_recovery_tokens_nid_idx" ON "identity_recovery_to... FILE: persistence/sql/migrations/sql/20210410175418000125_network.sqlite3.up.sql type "identity_recovery_tokens" (line 1) | CREATE INDEX "identity_recovery_tokens_nid_idx" ON "identity_recovery_to... FILE: persistence/sql/migrations/sql/20210410175418000130_network.sqlite3.up.sql type "_selfservice_verification_flows_tmp" (line 1) | CREATE TABLE "_selfservice_verification_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000134_network.sqlite3.up.sql type "selfservice_verification_flows" (line 1) | CREATE INDEX "selfservice_verification_flows_nid_idx" ON "selfservice_ve... FILE: persistence/sql/migrations/sql/20210410175418000135_network.cockroach.up.sql type "selfservice_verification_flows" (line 1) | CREATE INDEX "selfservice_verification_flows_nid_idx" ON "selfservice_ve... FILE: persistence/sql/migrations/sql/20210410175418000141_network.sqlite3.up.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE TABLE "_identity_verifiable_addresses_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000142_network.sqlite3.up.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... FILE: persistence/sql/migrations/sql/20210410175418000143_network.sqlite3.up.sql type "_identity_verifiable_addresses_tmp" (line 1) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "_identit... FILE: persistence/sql/migrations/sql/20210410175418000145_network.cockroach.up.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_nid_idx" ON "identity_verifi... FILE: persistence/sql/migrations/sql/20210410175418000147_network.sqlite3.up.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_nid_idx" ON "identity_verifi... FILE: persistence/sql/migrations/sql/20210410175418000148_network.cockroach.up.sql type "identity_verifiable_addresses" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... FILE: persistence/sql/migrations/sql/20210410175418000149_network.cockroach.up.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "identity... FILE: persistence/sql/migrations/sql/20210410175418000150_network.sqlite3.up.sql type "identity_verifiable_addresses" (line 1) | CREATE UNIQUE INDEX "identity_verifiable_addresses_status_via_uq_idx" ON... FILE: persistence/sql/migrations/sql/20210410175418000151_network.sqlite3.up.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_status_via_idx" ON "identity... FILE: persistence/sql/migrations/sql/20210410175418000159_network.cockroach.up.sql type "identity_verification_tokens" (line 1) | CREATE INDEX "identity_verification_tokens_nid_idx" ON "identity_verific... FILE: persistence/sql/migrations/sql/20210410175418000160_network.sqlite3.up.sql type "_identity_verification_tokens_tmp" (line 1) | CREATE TABLE "_identity_verification_tokens_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000161_network.sqlite3.up.sql type "_identity_verification_tokens_tmp" (line 1) | CREATE INDEX "identity_verification_tokens_verification_flow_id_idx" ON ... FILE: persistence/sql/migrations/sql/20210410175418000162_network.sqlite3.up.sql type "_identity_verification_tokens_tmp" (line 1) | CREATE INDEX "identity_verification_tokens_verifiable_address_id_idx" ON... FILE: persistence/sql/migrations/sql/20210410175418000163_network.sqlite3.up.sql type "_identity_verification_tokens_tmp" (line 1) | CREATE INDEX "identity_verification_tokens_token_idx" ON "_identity_veri... FILE: persistence/sql/migrations/sql/20210410175418000164_network.sqlite3.up.sql type "_identity_verification_tokens_tmp" (line 1) | CREATE UNIQUE INDEX "identity_verification_tokens_token_uq_idx" ON "_ide... FILE: persistence/sql/migrations/sql/20210410175418000168_network.sqlite3.up.sql type "identity_verification_tokens" (line 1) | CREATE INDEX "identity_verification_tokens_nid_idx" ON "identity_verific... FILE: persistence/sql/migrations/sql/20210410175418000169_network.cockroach.up.sql type "sessions" (line 1) | CREATE INDEX "sessions_nid_idx" ON "sessions" (id, nid) FILE: persistence/sql/migrations/sql/20210410175418000175_network.sqlite3.up.sql type "_sessions_tmp" (line 1) | CREATE TABLE "_sessions_tmp" ( FILE: persistence/sql/migrations/sql/20210410175418000176_network.sqlite3.up.sql type "_sessions_tmp" (line 1) | CREATE INDEX "sessions_token_idx" ON "_sessions_tmp" (token) FILE: persistence/sql/migrations/sql/20210410175418000177_network.sqlite3.up.sql type "_sessions_tmp" (line 1) | CREATE UNIQUE INDEX "sessions_token_uq_idx" ON "_sessions_tmp" (token) FILE: persistence/sql/migrations/sql/20210410175418000181_network.sqlite3.up.sql type "sessions" (line 1) | CREATE INDEX "sessions_nid_idx" ON "sessions" (id, nid) FILE: persistence/sql/migrations/sql/20210504121624000003_add_identity_states.sqlite3.down.sql type "_identities_tmp" (line 1) | CREATE INDEX "identities_nid_idx" ON "_identities_tmp" (id, nid) FILE: persistence/sql/migrations/sql/20210504121624000004_add_identity_states.sqlite3.down.sql type "_identities_tmp" (line 1) | CREATE TABLE "_identities_tmp" ( FILE: persistence/sql/migrations/sql/20210504121624000009_add_identity_states.sqlite3.down.sql type "_identities_tmp" (line 1) | CREATE INDEX "identities_nid_idx" ON "_identities_tmp" (id, nid) FILE: persistence/sql/migrations/sql/20210504121624000010_add_identity_states.sqlite3.down.sql type "_identities_tmp" (line 1) | CREATE TABLE "_identities_tmp" ( FILE: persistence/sql/migrations/sql/20210618103120000003_logout_token.mysql.up.sql type `sessions_logout_token_uq_idx` (line 1) | CREATE UNIQUE INDEX `sessions_logout_token_uq_idx` ON `sessions` (`logou... FILE: persistence/sql/migrations/sql/20210618103120000003_logout_token.postgres.up.sql type "sessions" (line 1) | CREATE UNIQUE INDEX "sessions_logout_token_uq_idx" ON "sessions" (logout... FILE: persistence/sql/migrations/sql/20210618103120000003_logout_token.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE INDEX "sessions_nid_idx" ON "_sessions_tmp" (id, nid) FILE: persistence/sql/migrations/sql/20210618103120000004_logout_token.mysql.up.sql type `sessions_logout_token_idx` (line 1) | CREATE INDEX `sessions_logout_token_idx` ON `sessions` (`logout_token`) FILE: persistence/sql/migrations/sql/20210618103120000004_logout_token.postgres.up.sql type "sessions" (line 1) | CREATE INDEX "sessions_logout_token_idx" ON "sessions" (logout_token) FILE: persistence/sql/migrations/sql/20210618103120000004_logout_token.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE UNIQUE INDEX "sessions_token_uq_idx" ON "_sessions_tmp" (token) FILE: persistence/sql/migrations/sql/20210618103120000005_logout_token.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE INDEX "sessions_token_idx" ON "_sessions_tmp" (token) FILE: persistence/sql/migrations/sql/20210618103120000005_logout_token.sqlite3.up.sql type "_sessions_tmp" (line 1) | CREATE TABLE "_sessions_tmp" ( FILE: persistence/sql/migrations/sql/20210618103120000006_logout_token.cockroach.up.sql type "sessions" (line 1) | CREATE UNIQUE INDEX "sessions_logout_token_uq_idx" ON "sessions" (logout... FILE: persistence/sql/migrations/sql/20210618103120000006_logout_token.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE TABLE "_sessions_tmp" ( FILE: persistence/sql/migrations/sql/20210618103120000006_logout_token.sqlite3.up.sql type "_sessions_tmp" (line 1) | CREATE INDEX "sessions_nid_idx" ON "_sessions_tmp" (id, nid) FILE: persistence/sql/migrations/sql/20210618103120000007_logout_token.cockroach.up.sql type "sessions" (line 1) | CREATE INDEX "sessions_logout_token_idx" ON "sessions" (logout_token) FILE: persistence/sql/migrations/sql/20210618103120000007_logout_token.sqlite3.up.sql type "_sessions_tmp" (line 1) | CREATE UNIQUE INDEX "sessions_token_uq_idx" ON "_sessions_tmp" (token) FILE: persistence/sql/migrations/sql/20210618103120000008_logout_token.sqlite3.up.sql type "_sessions_tmp" (line 1) | CREATE INDEX "sessions_token_idx" ON "_sessions_tmp" (token) FILE: persistence/sql/migrations/sql/20210618103120000012_logout_token.sqlite3.up.sql type "sessions" (line 1) | CREATE UNIQUE INDEX "sessions_logout_token_uq_idx" ON "sessions" (logout... FILE: persistence/sql/migrations/sql/20210618103120000013_logout_token.sqlite3.up.sql type "sessions" (line 1) | CREATE INDEX "sessions_logout_token_idx" ON "sessions" (logout_token) FILE: persistence/sql/migrations/sql/20210805112414000003_settings_flow_context.sqlite3.down.sql type "_selfservice_settings_flows_tmp" (line 1) | CREATE INDEX "selfservice_settings_flows_nid_idx" ON "_selfservice_setti... FILE: persistence/sql/migrations/sql/20210805112414000003_settings_flow_context.sqlite3.up.sql type "_selfservice_settings_flows_tmp" (line 1) | CREATE TABLE "_selfservice_settings_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210805112414000004_settings_flow_context.sqlite3.down.sql type "_selfservice_settings_flows_tmp" (line 1) | CREATE TABLE "_selfservice_settings_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210805112414000004_settings_flow_context.sqlite3.up.sql type "_selfservice_settings_flows_tmp" (line 1) | CREATE INDEX "selfservice_settings_flows_nid_idx" ON "_selfservice_setti... FILE: persistence/sql/migrations/sql/20210810153530000003_aal.sqlite3.down.sql type "_selfservice_login_flows_tmp" (line 1) | CREATE INDEX "selfservice_login_flows_nid_idx" ON "_selfservice_login_fl... FILE: persistence/sql/migrations/sql/20210810153530000004_aal.sqlite3.down.sql type "_selfservice_login_flows_tmp" (line 1) | CREATE TABLE "_selfservice_login_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210810153530000008_aal.sqlite3.up.sql type "_sessions_tmp" (line 1) | CREATE TABLE "_sessions_tmp" ( FILE: persistence/sql/migrations/sql/20210810153530000009_aal.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE INDEX "sessions_logout_token_idx" ON "_sessions_tmp" (logout_token) FILE: persistence/sql/migrations/sql/20210810153530000009_aal.sqlite3.up.sql type "_sessions_tmp" (line 1) | CREATE INDEX "sessions_logout_token_idx" ON "_sessions_tmp" (logout_token) FILE: persistence/sql/migrations/sql/20210810153530000010_aal.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE UNIQUE INDEX "sessions_logout_token_uq_idx" ON "_sessions_tmp" (l... FILE: persistence/sql/migrations/sql/20210810153530000010_aal.sqlite3.up.sql type "_sessions_tmp" (line 1) | CREATE UNIQUE INDEX "sessions_logout_token_uq_idx" ON "_sessions_tmp" (l... FILE: persistence/sql/migrations/sql/20210810153530000011_aal.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE INDEX "sessions_token_idx" ON "_sessions_tmp" (token) FILE: persistence/sql/migrations/sql/20210810153530000011_aal.sqlite3.up.sql type "_sessions_tmp" (line 1) | CREATE INDEX "sessions_token_idx" ON "_sessions_tmp" (token) FILE: persistence/sql/migrations/sql/20210810153530000012_aal.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE UNIQUE INDEX "sessions_token_uq_idx" ON "_sessions_tmp" (token) FILE: persistence/sql/migrations/sql/20210810153530000012_aal.sqlite3.up.sql type "_sessions_tmp" (line 1) | CREATE UNIQUE INDEX "sessions_token_uq_idx" ON "_sessions_tmp" (token) FILE: persistence/sql/migrations/sql/20210810153530000013_aal.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE INDEX "sessions_nid_idx" ON "_sessions_tmp" (id, nid) FILE: persistence/sql/migrations/sql/20210810153530000013_aal.sqlite3.up.sql type "_sessions_tmp" (line 1) | CREATE INDEX "sessions_nid_idx" ON "_sessions_tmp" (id, nid) FILE: persistence/sql/migrations/sql/20210810153530000014_aal.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE TABLE "_sessions_tmp" ( FILE: persistence/sql/migrations/sql/20210810153530000023_aal.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE INDEX "sessions_logout_token_idx" ON "_sessions_tmp" (logout_token) FILE: persistence/sql/migrations/sql/20210810153530000024_aal.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE UNIQUE INDEX "sessions_logout_token_uq_idx" ON "_sessions_tmp" (l... FILE: persistence/sql/migrations/sql/20210810153530000025_aal.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE INDEX "sessions_token_idx" ON "_sessions_tmp" (token) FILE: persistence/sql/migrations/sql/20210810153530000026_aal.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE UNIQUE INDEX "sessions_token_uq_idx" ON "_sessions_tmp" (token) FILE: persistence/sql/migrations/sql/20210810153530000027_aal.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE INDEX "sessions_nid_idx" ON "_sessions_tmp" (id, nid) FILE: persistence/sql/migrations/sql/20210810153530000028_aal.sqlite3.down.sql type "_sessions_tmp" (line 1) | CREATE TABLE "_sessions_tmp" ( FILE: persistence/sql/migrations/sql/20210816142650000003_flow_internal_context.sqlite3.down.sql type "_selfservice_registration_flows_tmp" (line 1) | CREATE INDEX "selfservice_registration_flows_nid_idx" ON "_selfservice_r... FILE: persistence/sql/migrations/sql/20210816142650000003_flow_internal_context.sqlite3.up.sql type "_selfservice_login_flows_tmp" (line 1) | CREATE TABLE "_selfservice_login_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210816142650000004_flow_internal_context.sqlite3.down.sql type "_selfservice_registration_flows_tmp" (line 1) | CREATE TABLE "_selfservice_registration_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210816142650000004_flow_internal_context.sqlite3.up.sql type "_selfservice_login_flows_tmp" (line 1) | CREATE INDEX "selfservice_login_flows_nid_idx" ON "_selfservice_login_fl... FILE: persistence/sql/migrations/sql/20210816142650000009_flow_internal_context.sqlite3.down.sql type "_selfservice_login_flows_tmp" (line 1) | CREATE INDEX "selfservice_login_flows_nid_idx" ON "_selfservice_login_fl... FILE: persistence/sql/migrations/sql/20210816142650000010_flow_internal_context.sqlite3.down.sql type "_selfservice_login_flows_tmp" (line 1) | CREATE TABLE "_selfservice_login_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210816142650000011_flow_internal_context.sqlite3.up.sql type "_selfservice_registration_flows_tmp" (line 1) | CREATE TABLE "_selfservice_registration_flows_tmp" ( FILE: persistence/sql/migrations/sql/20210816142650000012_flow_internal_context.sqlite3.up.sql type "_selfservice_registration_flows_tmp" (line 1) | CREATE INDEX "selfservice_registration_flows_nid_idx" ON "_selfservice_r... FILE: persistence/sql/migrations/sql/20210817181232000000_unique_credentials.cockroach.down.sql type "identity_credential_identifiers" (line 1) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_nid_uq_i... FILE: persistence/sql/migrations/sql/20210817181232000000_unique_credentials.mysql.down.sql type `identity_credential_identifiers_identifier_nid_uq_idx` (line 1) | CREATE UNIQUE INDEX `identity_credential_identifiers_identifier_nid_uq_i... FILE: persistence/sql/migrations/sql/20210817181232000000_unique_credentials.postgres.down.sql type "identity_credential_identifiers" (line 1) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_nid_uq_i... FILE: persistence/sql/migrations/sql/20210817181232000000_unique_credentials.sqlite3.down.sql type "identity_credential_identifiers" (line 1) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_nid_uq_i... FILE: persistence/sql/migrations/sql/20210817181232000004_unique_credentials.sqlite3.down.sql type "_identity_credential_identifiers_tmp" (line 1) | CREATE INDEX "identity_credential_identifiers_nid_idx" ON "_identity_cre... FILE: persistence/sql/migrations/sql/20210817181232000005_unique_credentials.postgres.up.sql type "identity_credential_identifiers" (line 1) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_nid_type... FILE: persistence/sql/migrations/sql/20210817181232000005_unique_credentials.sqlite3.down.sql type "_identity_credential_identifiers_tmp" (line 1) | CREATE TABLE "_identity_credential_identifiers_tmp" ( FILE: persistence/sql/migrations/sql/20210817181232000006_unique_credentials.sqlite3.up.sql type "_identity_credential_identifiers_tmp" (line 1) | CREATE TABLE "_identity_credential_identifiers_tmp" ( FILE: persistence/sql/migrations/sql/20210817181232000007_unique_credentials.mysql.up.sql type `identity_credential_identifiers_identifier_nid_type_uq_idx` (line 1) | CREATE UNIQUE INDEX `identity_credential_identifiers_identifier_nid_type... FILE: persistence/sql/migrations/sql/20210817181232000007_unique_credentials.sqlite3.up.sql type "_identity_credential_identifiers_tmp" (line 1) | CREATE INDEX "identity_credential_identifiers_nid_idx" ON "_identity_cre... FILE: persistence/sql/migrations/sql/20210817181232000011_unique_credentials.cockroach.up.sql type "identity_credential_identifiers" (line 1) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_nid_type... FILE: persistence/sql/migrations/sql/20210817181232000011_unique_credentials.sqlite3.up.sql type "identity_credential_identifiers" (line 1) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_nid_type... FILE: persistence/sql/migrations/sql/20210913095309000003_identity_recovery_tokens.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE INDEX "identity_recovery_tokens_nid_idx" ON "_identity_recovery_t... FILE: persistence/sql/migrations/sql/20210913095309000003_identity_recovery_tokens.sqlite3.up.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE TABLE "_identity_recovery_tokens_tmp" ( FILE: persistence/sql/migrations/sql/20210913095309000004_identity_recovery_tokens.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "_identity_recove... FILE: persistence/sql/migrations/sql/20210913095309000004_identity_recovery_tokens.sqlite3.up.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE INDEX "identity_recovery_tokens_nid_idx" ON "_identity_recovery_t... FILE: persistence/sql/migrations/sql/20210913095309000005_identity_recovery_tokens.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "_ident... FILE: persistence/sql/migrations/sql/20210913095309000005_identity_recovery_tokens.sqlite3.up.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "_identity_recove... FILE: persistence/sql/migrations/sql/20210913095309000006_identity_recovery_tokens.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE TABLE "_identity_recovery_tokens_tmp" ( FILE: persistence/sql/migrations/sql/20210913095309000006_identity_recovery_tokens.sqlite3.up.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "_ident... FILE: persistence/sql/migrations/sql/20210913095309000013_identity_recovery_tokens.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE INDEX "identity_recovery_tokens_nid_idx" ON "_identity_recovery_t... FILE: persistence/sql/migrations/sql/20210913095309000014_identity_recovery_tokens.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE INDEX "identity_recovery_addresses_code_idx" ON "_identity_recove... FILE: persistence/sql/migrations/sql/20210913095309000015_identity_recovery_tokens.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE UNIQUE INDEX "identity_recovery_addresses_code_uq_idx" ON "_ident... FILE: persistence/sql/migrations/sql/20210913095309000016_identity_recovery_tokens.sqlite3.down.sql type "_identity_recovery_tokens_tmp" (line 1) | CREATE TABLE "_identity_recovery_tokens_tmp" ( FILE: persistence/sql/migrations/sql/20220118104539000000_identity_fk_indexes.cockroach.up.sql type "identity_credentials" (line 1) | CREATE INDEX "identity_credentials_nid_identity_id_idx" ON "identity_cre... FILE: persistence/sql/migrations/sql/20220118104539000000_identity_fk_indexes.postgres.up.sql type "identity_credentials" (line 1) | CREATE INDEX "identity_credentials_nid_identity_id_idx" ON "identity_cre... FILE: persistence/sql/migrations/sql/20220118104539000000_identity_fk_indexes.sqlite3.up.sql type "identity_credentials" (line 1) | CREATE INDEX "identity_credentials_nid_identity_id_idx" ON "identity_cre... FILE: persistence/sql/migrations/sql/20220118104539000001_identity_fk_indexes.cockroach.up.sql type "identity_credential_identifiers" (line 1) | CREATE INDEX "identity_credential_identifiers_nid_identity_credential_id... FILE: persistence/sql/migrations/sql/20220118104539000001_identity_fk_indexes.postgres.up.sql type "identity_credential_identifiers" (line 1) | CREATE INDEX "identity_credential_identifiers_nid_identity_credential_id... FILE: persistence/sql/migrations/sql/20220118104539000001_identity_fk_indexes.sqlite3.up.sql type "identity_credential_identifiers" (line 1) | CREATE INDEX "identity_credential_identifiers_nid_identity_credential_id... FILE: persistence/sql/migrations/sql/20220118104539000002_identity_fk_indexes.cockroach.up.sql type "identity_recovery_addresses" (line 1) | CREATE INDEX "identity_recovery_addresses_nid_identity_id_idx" ON "ident... FILE: persistence/sql/migrations/sql/20220118104539000002_identity_fk_indexes.postgres.up.sql type "identity_recovery_addresses" (line 1) | CREATE INDEX "identity_recovery_addresses_nid_identity_id_idx" ON "ident... FILE: persistence/sql/migrations/sql/20220118104539000002_identity_fk_indexes.sqlite3.up.sql type "identity_recovery_addresses" (line 1) | CREATE INDEX "identity_recovery_addresses_nid_identity_id_idx" ON "ident... FILE: persistence/sql/migrations/sql/20220118104539000003_identity_fk_indexes.cockroach.up.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_nid_identity_id_idx" ON "ide... FILE: persistence/sql/migrations/sql/20220118104539000003_identity_fk_indexes.postgres.up.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_nid_identity_id_idx" ON "ide... FILE: persistence/sql/migrations/sql/20220118104539000003_identity_fk_indexes.sqlite3.up.sql type "identity_verifiable_addresses" (line 1) | CREATE INDEX "identity_verifiable_addresses_nid_identity_id_idx" ON "ide... FILE: persistence/sql/migrations/sql/20220512102703000000_missing_indices.down.sql type sessions_nid_idx (line 1) | CREATE INDEX sessions_nid_idx ON sessions (id, nid) type sessions_token_idx (line 2) | CREATE INDEX sessions_token_idx ON sessions (token) type sessions_logout_token_idx (line 3) | CREATE INDEX sessions_logout_token_idx ON sessions (logout_token) type identities_nid_idx (line 5) | CREATE INDEX identities_nid_idx ON identities (id, nid) type continuity_containers_nid_idx (line 7) | CREATE INDEX continuity_containers_nid_idx ON continuity_containers (id,... type courier_messages_nid_idx (line 9) | CREATE INDEX courier_messages_nid_idx ON courier_messages (id, nid) type identity_credential_identifiers_nid_idx (line 11) | CREATE INDEX identity_credential_identifiers_nid_idx ON identity_credent... type identity_credentials_nid_idx (line 13) | CREATE INDEX identity_credentials_nid_idx ON identity_credentials (id, nid) type identity_recovery_addresses_nid_idx (line 15) | CREATE INDEX identity_recovery_addresses_nid_idx ON identity_recovery_ad... type identity_recovery_tokens_nid_idx (line 17) | CREATE INDEX identity_recovery_tokens_nid_idx ON identity_recovery_token... type identity_recovery_addresses_code_idx (line 18) | CREATE INDEX identity_recovery_addresses_code_idx ON identity_recovery_t... type identity_verifiable_addresses_nid_idx (line 20) | CREATE INDEX identity_verifiable_addresses_nid_idx ON identity_verifiabl... type identity_verification_tokens_nid_idx (line 22) | CREATE INDEX identity_verification_tokens_nid_idx ON identity_verificati... type identity_verification_tokens_token_idx (line 23) | CREATE INDEX identity_verification_tokens_token_idx ON identity_verifica... type selfservice_login_flows_nid_idx (line 25) | CREATE INDEX selfservice_login_flows_nid_idx ON selfservice_login_flows ... type selfservice_recovery_flows_nid_idx (line 26) | CREATE INDEX selfservice_recovery_flows_nid_idx ON selfservice_recovery_... type selfservice_registration_flows_nid_idx (line 27) | CREATE INDEX selfservice_registration_flows_nid_idx ON selfservice_regis... type selfservice_settings_flows_nid_idx (line 28) | CREATE INDEX selfservice_settings_flows_nid_idx ON selfservice_settings_... type selfservice_verification_flows_nid_idx (line 29) | CREATE INDEX selfservice_verification_flows_nid_idx ON selfservice_verif... FILE: persistence/sql/migrations/sql/20220512102703000000_missing_indices.mysql.down.sql type sessions_nid_idx (line 3) | CREATE INDEX sessions_nid_idx ON sessions (id, nid) type sessions_nid_mysqlfk_idx (line 4) | CREATE INDEX sessions_nid_mysqlfk_idx ON sessions (nid) type sessions_token_idx (line 6) | CREATE INDEX sessions_token_idx ON sessions (token) type sessions_mysql_identity_id_idx (line 7) | CREATE INDEX sessions_mysql_identity_id_idx ON sessions (identity_id) type sessions_logout_token_idx (line 8) | CREATE INDEX sessions_logout_token_idx ON sessions (logout_token) type identities_nid_idx (line 10) | CREATE INDEX identities_nid_idx ON identities (id, nid) type identities_nid_mysqlfk_idx (line 11) | CREATE INDEX identities_nid_mysqlfk_idx ON identities (nid) type continuity_containers_nid_idx (line 13) | CREATE INDEX continuity_containers_nid_idx ON continuity_containers (id,... type continuity_containers_mysqlfk_idx (line 14) | CREATE INDEX continuity_containers_mysqlfk_idx ON continuity_containers ... type courier_messages_nid_idx (line 16) | CREATE INDEX courier_messages_nid_idx ON courier_messages (id, nid) type courier_messages_mysqlfk_idx (line 17) | CREATE INDEX courier_messages_mysqlfk_idx ON courier_messages (nid) type identity_credential_identifiers_nid_idx (line 19) | CREATE INDEX identity_credential_identifiers_nid_idx ON identity_credent... type identity_credential_identifiers_mysqlfk_idx (line 20) | CREATE INDEX identity_credential_identifiers_mysqlfk_idx ON identity_cre... type identity_credentials_nid_idx (line 22) | CREATE INDEX identity_credentials_nid_idx ON identity_credentials (id, nid) type identity_credentials_mysqlfk_idx (line 23) | CREATE INDEX identity_credentials_mysqlfk_idx ON identity_credentials (nid) type identity_recovery_addresses_nid_idx (line 25) | CREATE INDEX identity_recovery_addresses_nid_idx ON identity_recovery_ad... type identity_recovery_addresses_nid_mysqlfk_idx (line 26) | CREATE INDEX identity_recovery_addresses_nid_mysqlfk_idx ON identity_rec... type identity_recovery_tokens_nid_idx (line 28) | CREATE INDEX identity_recovery_tokens_nid_idx ON identity_recovery_token... type identity_recovery_tokens_nid_mysqlfk_idx (line 29) | CREATE INDEX identity_recovery_tokens_nid_mysqlfk_idx ON identity_recove... type identity_recovery_addresses_code_idx (line 30) | CREATE INDEX identity_recovery_addresses_code_idx ON identity_recovery_t... type identity_recovery_tokens_srf_id_mysqlfk_idx (line 31) | CREATE INDEX identity_recovery_tokens_srf_id_mysqlfk_idx ON identity_rec... type identity_recovery_tokens_ira_id_mysqlfk_idx (line 32) | CREATE INDEX identity_recovery_tokens_ira_id_mysqlfk_idx ON identity_rec... type identity_verifiable_addresses_nid_idx (line 34) | CREATE INDEX identity_verifiable_addresses_nid_idx ON identity_verifiabl... type identity_verifiable_addresses_nid_mysqlfk_idx (line 35) | CREATE INDEX identity_verifiable_addresses_nid_mysqlfk_idx ON identity_v... type identity_verification_tokens_nid_idx (line 37) | CREATE INDEX identity_verification_tokens_nid_idx ON identity_verificati... type identity_verification_tokens_nid_mysqlfk_idx (line 38) | CREATE INDEX identity_verification_tokens_nid_mysqlfk_idx ON identity_ve... type identity_verification_tokens_token_idx (line 39) | CREATE INDEX identity_verification_tokens_token_idx ON identity_verifica... type selfservice_login_flows_nid_idx (line 41) | CREATE INDEX selfservice_login_flows_nid_idx ON selfservice_login_flows ... type selfservice_login_flows_nid_mysqlfk_idx (line 42) | CREATE INDEX selfservice_login_flows_nid_mysqlfk_idx ON selfservice_logi... type selfservice_recovery_flows_nid_idx (line 44) | CREATE INDEX selfservice_recovery_flows_nid_idx ON selfservice_recovery_... type selfservice_recovery_flows_nid_mysqlfk_idx (line 45) | CREATE INDEX selfservice_recovery_flows_nid_mysqlfk_idx ON selfservice_r... type selfservice_registration_flows_nid_idx (line 47) | CREATE INDEX selfservice_registration_flows_nid_idx ON selfservice_regis... type selfservice_registration_flows_nid_mysqlfk_idx (line 48) | CREATE INDEX selfservice_registration_flows_nid_mysqlfk_idx ON selfservi... type selfservice_settings_flows_nid_idx (line 50) | CREATE INDEX selfservice_settings_flows_nid_idx ON selfservice_settings_... type selfservice_settings_flows_nid_mysqlfk_idx (line 51) | CREATE INDEX selfservice_settings_flows_nid_mysqlfk_idx ON selfservice_s... type selfservice_verification_flows_nid_idx (line 53) | CREATE INDEX selfservice_verification_flows_nid_idx ON selfservice_verif... type selfservice_verification_flows_nid_mysqlfk_idx (line 54) | CREATE INDEX selfservice_verification_flows_nid_mysqlfk_idx ON selfservi... FILE: persistence/sql/migrations/sql/20220512102703000000_missing_indices.mysql.up.sql type sessions_identity_id_nid_idx (line 1) | CREATE INDEX sessions_identity_id_nid_idx ON sessions (identity_id, nid) type identities_id_nid_idx (line 3) | CREATE INDEX identities_id_nid_idx ON identities (id, nid) type identities_nid_id_idx (line 4) | CREATE INDEX identities_nid_id_idx ON identities (nid, id) type continuity_containers_nid_id_idx (line 7) | CREATE INDEX continuity_containers_nid_id_idx ON continuity_containers (... type continuity_containers_id_nid_idx (line 8) | CREATE INDEX continuity_containers_id_nid_idx ON continuity_containers (... type courier_messages_nid_id_idx (line 11) | CREATE INDEX courier_messages_nid_id_idx ON courier_messages (nid, id) type courier_messages_id_nid_idx (line 12) | CREATE INDEX courier_messages_id_nid_idx ON courier_messages (id, nid) type identity_credential_identifiers_nid_id_idx (line 15) | CREATE INDEX identity_credential_identifiers_nid_id_idx ON identity_cred... type identity_credential_identifiers_id_nid_idx (line 16) | CREATE INDEX identity_credential_identifiers_id_nid_idx ON identity_cred... type identity_credentials_nid_id_idx (line 19) | CREATE INDEX identity_credentials_nid_id_idx ON identity_credentials (ni... type identity_credentials_id_nid_idx (line 20) | CREATE INDEX identity_credentials_id_nid_idx ON identity_credentials (id... type identity_recovery_addresses_nid_id_idx (line 23) | CREATE INDEX identity_recovery_addresses_nid_id_idx ON identity_recovery... type identity_recovery_addresses_id_nid_idx (line 24) | CREATE INDEX identity_recovery_addresses_id_nid_idx ON identity_recovery... type identity_recovery_tokens_nid_id_idx (line 27) | CREATE INDEX identity_recovery_tokens_nid_id_idx ON identity_recovery_to... type identity_recovery_tokens_id_nid_idx (line 28) | CREATE INDEX identity_recovery_tokens_id_nid_idx ON identity_recovery_to... type identity_recovery_tokens_selfservice_recovery_flow_id_idx (line 29) | CREATE INDEX identity_recovery_tokens_selfservice_recovery_flow_id_idx O... type identity_recovery_tokens_identity_recovery_address_id_idx (line 30) | CREATE INDEX identity_recovery_tokens_identity_recovery_address_id_idx O... type identity_recovery_tokens_token_nid_used_idx (line 31) | CREATE INDEX identity_recovery_tokens_token_nid_used_idx ON identity_rec... type identity_verifiable_addresses_nid_id_idx (line 35) | CREATE INDEX identity_verifiable_addresses_nid_id_idx ON identity_verifi... type identity_verifiable_addresses_id_nid_idx (line 36) | CREATE INDEX identity_verifiable_addresses_id_nid_idx ON identity_verifi... type identity_verification_tokens_nid_id_idx (line 39) | CREATE INDEX identity_verification_tokens_nid_id_idx ON identity_verific... type identity_verification_tokens_id_nid_idx (line 40) | CREATE INDEX identity_verification_tokens_id_nid_idx ON identity_verific... type identity_verification_tokens_token_nid_used_idx (line 41) | CREATE INDEX identity_verification_tokens_token_nid_used_idx ON identity... type selfservice_login_flows_nid_id_idx (line 45) | CREATE INDEX selfservice_login_flows_nid_id_idx ON selfservice_login_flo... type selfservice_login_flows_id_nid_idx (line 46) | CREATE INDEX selfservice_login_flows_id_nid_idx ON selfservice_login_flo... type selfservice_recovery_flows_nid_id_idx (line 49) | CREATE INDEX selfservice_recovery_flows_nid_id_idx ON selfservice_recove... type selfservice_recovery_flows_id_nid_idx (line 50) | CREATE INDEX selfservice_recovery_flows_id_nid_idx ON selfservice_recove... type selfservice_registration_flows_nid_id_idx (line 53) | CREATE INDEX selfservice_registration_flows_nid_id_idx ON selfservice_re... type selfservice_registration_flows_id_nid_idx (line 54) | CREATE INDEX selfservice_registration_flows_id_nid_idx ON selfservice_re... type selfservice_settings_flows_nid_id_idx (line 57) | CREATE INDEX selfservice_settings_flows_nid_id_idx ON selfservice_settin... type selfservice_settings_flows_id_nid_idx (line 58) | CREATE INDEX selfservice_settings_flows_id_nid_idx ON selfservice_settin... type selfservice_verification_flows_nid_id_idx (line 61) | CREATE INDEX selfservice_verification_flows_nid_id_idx ON selfservice_ve... type selfservice_verification_flows_id_nid_idx (line 62) | CREATE INDEX selfservice_verification_flows_id_nid_idx ON selfservice_ve... type sessions_nid_id_identity_id_idx (line 65) | CREATE INDEX sessions_nid_id_identity_id_idx ON sessions (nid, identity_... type sessions_id_nid_idx (line 66) | CREATE INDEX sessions_id_nid_idx ON sessions (id, nid) type sessions_token_nid_idx (line 67) | CREATE INDEX sessions_token_nid_idx ON sessions (nid, token) FILE: persistence/sql/migrations/sql/20220512102703000000_missing_indices.up.sql type sessions_identity_id_nid_idx (line 1) | CREATE INDEX sessions_identity_id_nid_idx ON sessions (identity_id, nid) type identities_id_nid_idx (line 3) | CREATE INDEX identities_id_nid_idx ON identities (id, nid) type identities_nid_id_idx (line 4) | CREATE INDEX identities_nid_id_idx ON identities (nid, id) type continuity_containers_nid_id_idx (line 7) | CREATE INDEX continuity_containers_nid_id_idx ON continuity_containers (... type continuity_containers_id_nid_idx (line 8) | CREATE INDEX continuity_containers_id_nid_idx ON continuity_containers (... type courier_messages_nid_id_idx (line 11) | CREATE INDEX courier_messages_nid_id_idx ON courier_messages (nid, id) type courier_messages_id_nid_idx (line 12) | CREATE INDEX courier_messages_id_nid_idx ON courier_messages (id, nid) type identity_credential_identifiers_nid_id_idx (line 15) | CREATE INDEX identity_credential_identifiers_nid_id_idx ON identity_cred... type identity_credential_identifiers_id_nid_idx (line 16) | CREATE INDEX identity_credential_identifiers_id_nid_idx ON identity_cred... type identity_credentials_nid_id_idx (line 19) | CREATE INDEX identity_credentials_nid_id_idx ON identity_credentials (ni... type identity_credentials_id_nid_idx (line 20) | CREATE INDEX identity_credentials_id_nid_idx ON identity_credentials (id... type identity_recovery_addresses_nid_id_idx (line 23) | CREATE INDEX identity_recovery_addresses_nid_id_idx ON identity_recovery... type identity_recovery_addresses_id_nid_idx (line 24) | CREATE INDEX identity_recovery_addresses_id_nid_idx ON identity_recovery... type identity_recovery_tokens_nid_id_idx (line 27) | CREATE INDEX identity_recovery_tokens_nid_id_idx ON identity_recovery_to... type identity_recovery_tokens_id_nid_idx (line 28) | CREATE INDEX identity_recovery_tokens_id_nid_idx ON identity_recovery_to... type identity_recovery_tokens_selfservice_recovery_flow_id_idx (line 29) | CREATE INDEX identity_recovery_tokens_selfservice_recovery_flow_id_idx O... type identity_recovery_tokens_identity_recovery_address_id_idx (line 30) | CREATE INDEX identity_recovery_tokens_identity_recovery_address_id_idx O... type identity_recovery_tokens_token_nid_used_idx (line 31) | CREATE INDEX identity_recovery_tokens_token_nid_used_idx ON identity_rec... type identity_verifiable_addresses_nid_id_idx (line 35) | CREATE INDEX identity_verifiable_addresses_nid_id_idx ON identity_verifi... type identity_verifiable_addresses_id_nid_idx (line 36) | CREATE INDEX identity_verifiable_addresses_id_nid_idx ON identity_verifi... type identity_verification_tokens_nid_id_idx (line 39) | CREATE INDEX identity_verification_tokens_nid_id_idx ON identity_verific... type identity_verification_tokens_id_nid_idx (line 40) | CREATE INDEX identity_verification_tokens_id_nid_idx ON identity_verific... type identity_verification_tokens_token_nid_used_idx (line 41) | CREATE INDEX identity_verification_tokens_token_nid_used_idx ON identity... type selfservice_login_flows_nid_id_idx (line 45) | CREATE INDEX selfservice_login_flows_nid_id_idx ON selfservice_login_flo... type selfservice_login_flows_id_nid_idx (line 46) | CREATE INDEX selfservice_login_flows_id_nid_idx ON selfservice_login_flo... type selfservice_recovery_flows_nid_id_idx (line 49) | CREATE INDEX selfservice_recovery_flows_nid_id_idx ON selfservice_recove... type selfservice_recovery_flows_id_nid_idx (line 50) | CREATE INDEX selfservice_recovery_flows_id_nid_idx ON selfservice_recove... type selfservice_registration_flows_nid_id_idx (line 53) | CREATE INDEX selfservice_registration_flows_nid_id_idx ON selfservice_re... type selfservice_registration_flows_id_nid_idx (line 54) | CREATE INDEX selfservice_registration_flows_id_nid_idx ON selfservice_re... type selfservice_settings_flows_nid_id_idx (line 57) | CREATE INDEX selfservice_settings_flows_nid_id_idx ON selfservice_settin... type selfservice_settings_flows_id_nid_idx (line 58) | CREATE INDEX selfservice_settings_flows_id_nid_idx ON selfservice_settin... type selfservice_verification_flows_nid_id_idx (line 61) | CREATE INDEX selfservice_verification_flows_nid_id_idx ON selfservice_ve... type selfservice_verification_flows_id_nid_idx (line 62) | CREATE INDEX selfservice_verification_flows_id_nid_idx ON selfservice_ve... type sessions_nid_id_identity_id_idx (line 65) | CREATE INDEX sessions_nid_id_identity_id_idx ON sessions (nid, identity_... type sessions_id_nid_idx (line 66) | CREATE INDEX sessions_id_nid_idx ON sessions (id, nid) type sessions_token_nid_idx (line 67) | CREATE INDEX sessions_token_nid_idx ON sessions (nid, token) FILE: persistence/sql/migrations/sql/20220825134336000001_not_null_constraint_verification_token_flow_id.down.sql type identity_verification_tokens_token_nid_used_idx (line 5) | CREATE INDEX identity_verification_tokens_token_nid_used_idx ON identity... FILE: persistence/sql/migrations/sql/20220825134336000001_not_null_constraint_verification_token_flow_id.mysql.down.sql type identity_verification_tokens_token_nid_used_idx (line 5) | CREATE INDEX identity_verification_tokens_token_nid_used_idx ON identity... FILE: persistence/sql/migrations/sql/20220825134336000001_not_null_constraint_verification_token_flow_id.mysql.up.sql type identity_verification_tokens_token_nid_used_flow_id_idx (line 5) | CREATE INDEX identity_verification_tokens_token_nid_used_flow_id_idx ON ... FILE: persistence/sql/migrations/sql/20220825134336000001_not_null_constraint_verification_token_flow_id.sqlite3.down.sql type "identity_verification_tokens" (line 4) | CREATE TABLE "identity_verification_tokens" ( type identity_verification_tokens_id_nid_idx (line 27) | CREATE INDEX identity_verification_tokens_id_nid_idx ON identity_verific... type identity_verification_tokens_nid_id_idx (line 28) | CREATE INDEX identity_verification_tokens_nid_id_idx ON identity_verific... type identity_verification_tokens_token_nid_used_idx (line 29) | CREATE INDEX identity_verification_tokens_token_nid_used_idx ON identity... type "identity_verification_tokens" (line 30) | CREATE UNIQUE INDEX "identity_verification_tokens_token_uq_idx" ON "iden... type "identity_verification_tokens" (line 31) | CREATE INDEX "identity_verification_tokens_verifiable_address_id_idx" ON... type "identity_verification_tokens" (line 32) | CREATE INDEX "identity_verification_tokens_verification_flow_id_idx" ON ... FILE: persistence/sql/migrations/sql/20220825134336000001_not_null_constraint_verification_token_flow_id.sqlite3.up.sql type "identity_verification_tokens" (line 4) | CREATE TABLE "identity_verification_tokens" ( type identity_verification_tokens_id_nid_idx (line 27) | CREATE INDEX identity_verification_tokens_id_nid_idx ON identity_verific... type identity_verification_tokens_nid_id_idx (line 28) | CREATE INDEX identity_verification_tokens_nid_id_idx ON identity_verific... type identity_verification_tokens_token_nid_used_flow_id_idx (line 29) | CREATE INDEX identity_verification_tokens_token_nid_used_flow_id_idx ON ... type "identity_verification_tokens" (line 30) | CREATE UNIQUE INDEX "identity_verification_tokens_token_uq_idx" ON "iden... type "identity_verification_tokens" (line 31) | CREATE INDEX "identity_verification_tokens_verifiable_address_id_idx" ON... type "identity_verification_tokens" (line 32) | CREATE INDEX "identity_verification_tokens_verification_flow_id_idx" ON ... FILE: persistence/sql/migrations/sql/20220825134336000001_not_null_constraint_verification_token_flow_id.up.sql type identity_verification_tokens_token_nid_used_flow_id_idx (line 5) | CREATE INDEX identity_verification_tokens_token_nid_used_flow_id_idx ON ... FILE: persistence/sql/migrations/sql/20220901123209000000_recovery_code.mysql.up.sql type identity_recovery_codes (line 1) | CREATE TABLE identity_recovery_codes type identity_recovery_codes_nid_flow_id_idx (line 33) | CREATE INDEX identity_recovery_codes_nid_flow_id_idx ON identity_recover... type identity_recovery_codes_id_nid_idx (line 34) | CREATE INDEX identity_recovery_codes_id_nid_idx ON identity_recovery_cod... FILE: persistence/sql/migrations/sql/20220901123209000000_recovery_code.up.sql type identity_recovery_codes (line 1) | CREATE TABLE identity_recovery_codes type identity_recovery_codes_nid_flow_id_idx (line 33) | CREATE INDEX identity_recovery_codes_nid_flow_id_idx ON identity_recover... type identity_recovery_codes_id_nid_idx (line 34) | CREATE INDEX identity_recovery_codes_id_nid_idx ON identity_recovery_cod... FILE: persistence/sql/migrations/sql/20220907132836000000_add_session_devices_table.mysql.up.sql type `session_devices` (line 1) | CREATE TABLE `session_devices` type `session_devices_id_nid_idx` (line 16) | CREATE INDEX `session_devices_id_nid_idx` ON `session_devices` (`id`, `n... type `session_devices_session_id_nid_idx` (line 17) | CREATE INDEX `session_devices_session_id_nid_idx` ON `session_devices` (... FILE: persistence/sql/migrations/sql/20220907132836000000_add_session_devices_table.up.sql type "session_devices" (line 1) | CREATE TABLE "session_devices" type "session_devices" (line 15) | CREATE INDEX "session_devices_id_nid_idx" ON "session_devices" (id, nid) type "session_devices" (line 16) | CREATE INDEX "session_devices_session_id_nid_idx" ON "session_devices" (... FILE: persistence/sql/migrations/sql/20221024182336000000_verification_code.mysql.up.sql type identity_verification_codes (line 1) | CREATE TABLE identity_verification_codes ( type identity_verification_codes_nid_flow_id_idx (line 23) | CREATE INDEX identity_verification_codes_nid_flow_id_idx ON identity_ver... type identity_verification_codes_id_nid_idx (line 25) | CREATE INDEX identity_verification_codes_id_nid_idx ON identity_verifica... FILE: persistence/sql/migrations/sql/20221024182336000000_verification_code.up.sql type identity_verification_codes (line 1) | CREATE TABLE identity_verification_codes ( type identity_verification_codes_nid_flow_id_idx (line 23) | CREATE INDEX identity_verification_codes_nid_flow_id_idx ON identity_ver... type identity_verification_codes_id_nid_idx (line 25) | CREATE INDEX identity_verification_codes_id_nid_idx ON identity_verifica... FILE: persistence/sql/migrations/sql/20221205092803000000_add_courier_send_attempts_table.mysql.up.sql type courier_message_dispatches (line 1) | CREATE TABLE courier_message_dispatches ( type courier_message_dispatches_id_message_id_nid_idx (line 13) | CREATE INDEX courier_message_dispatches_id_message_id_nid_idx ON courier... FILE: persistence/sql/migrations/sql/20221205092803000000_add_courier_send_attempts_table.up.sql type courier_message_dispatches (line 1) | CREATE TABLE courier_message_dispatches ( type courier_message_dispatches_id_message_id_nid_idx (line 13) | CREATE INDEX courier_message_dispatches_id_message_id_nid_idx ON courier... FILE: persistence/sql/migrations/sql/20221214101328000000_identity_delete_indices.mysql.up.sql type identity_recovery_codes_identity_id_nid_idx (line 10) | CREATE INDEX identity_recovery_codes_identity_id_nid_idx ON identity_rec... type identity_verification_codes_verifiable_address_nid_idx (line 12) | CREATE INDEX identity_verification_codes_verifiable_address_nid_idx ON i... type selfservice_settings_flows_identity_id_nid_idx (line 14) | CREATE INDEX selfservice_settings_flows_identity_id_nid_idx ON selfservi... type continuity_containers_identity_id_nid_idx (line 16) | CREATE INDEX continuity_containers_identity_id_nid_idx ON continuity_con... type selfservice_recovery_flows_recovered_identity_id_nid_idx (line 18) | CREATE INDEX selfservice_recovery_flows_recovered_identity_id_nid_idx ON... type identity_recovery_tokens_identity_id_nid_idx (line 20) | CREATE INDEX identity_recovery_tokens_identity_id_nid_idx ON identity_re... type identity_recovery_codes_identity_recovery_address_id_nid_idx (line 22) | CREATE INDEX identity_recovery_codes_identity_recovery_address_id_nid_id... FILE: persistence/sql/migrations/sql/20221214101328000000_identity_delete_indices.up.sql type "identity_recovery_codes" (line 1) | CREATE INDEX IF NOT EXISTS "identity_recovery_codes_identity_id_nid_idx"... type "identity_verification_codes" (line 3) | CREATE INDEX IF NOT EXISTS "identity_verification_codes_verifiable_addre... type "selfservice_settings_flows" (line 5) | CREATE INDEX IF NOT EXISTS "selfservice_settings_flows_identity_id_nid_i... type "continuity_containers" (line 7) | CREATE INDEX IF NOT EXISTS "continuity_containers_identity_id_nid_idx" O... type "selfservice_recovery_flows" (line 9) | CREATE INDEX IF NOT EXISTS "selfservice_recovery_flows_recovered_identit... type "identity_recovery_tokens" (line 11) | CREATE INDEX IF NOT EXISTS "identity_recovery_tokens_identity_id_nid_idx... type "identity_recovery_codes" (line 13) | CREATE INDEX IF NOT EXISTS "identity_recovery_codes_identity_recovery_ad... FILE: persistence/sql/migrations/sql/20221220124639000000_errors_index.down.sql type selfservice_errors_nid_idx (line 1) | CREATE INDEX selfservice_errors_nid_idx ON selfservice_errors (id, nid) FILE: persistence/sql/migrations/sql/20221220124639000000_errors_index.mysql.down.sql type selfservice_errors_nid_idx (line 1) | CREATE INDEX selfservice_errors_nid_idx ON selfservice_errors (id, nid) type selfservice_errors_nid_only_idx (line 4) | CREATE INDEX selfservice_errors_nid_only_idx ON selfservice_errors (nid) FILE: persistence/sql/migrations/sql/20221220124639000000_errors_index.mysql.up.sql type selfservice_errors_errors_nid_id_idx (line 1) | CREATE INDEX selfservice_errors_errors_nid_id_idx ON selfservice_errors ... FILE: persistence/sql/migrations/sql/20221220124639000000_errors_index.up.sql type selfservice_errors_errors_nid_id_idx (line 1) | CREATE INDEX selfservice_errors_errors_nid_id_idx ON selfservice_errors ... FILE: persistence/sql/migrations/sql/20230104193739000000_courier_list_index.up.sql type courier_messages_nid_created_at_id_idx (line 1) | CREATE INDEX courier_messages_nid_created_at_id_idx ON courier_messages ... type courier_messages_nid_status_created_at_id_idx (line 3) | CREATE INDEX courier_messages_nid_status_created_at_id_idx ON courier_me... type courier_messages_nid_recipient_created_at_id_idx (line 5) | CREATE INDEX courier_messages_nid_recipient_created_at_id_idx ON courier... FILE: persistence/sql/migrations/sql/20230216142104000000_session_devices_index_drop.cockroach.down.sql type unique_session_device (line 1) | CREATE UNIQUE INDEX IF NOT EXISTS unique_session_device ON session_devic... FILE: persistence/sql/migrations/sql/20230216142104000000_session_devices_index_drop.down.sql type unique_session_device (line 1) | CREATE UNIQUE INDEX IF NOT EXISTS unique_session_device ON session_devic... FILE: persistence/sql/migrations/sql/20230216142104000000_session_devices_index_drop.mysql.down.sql type unique_session_device (line 1) | CREATE UNIQUE INDEX unique_session_device ON session_devices (nid, sessi... FILE: persistence/sql/migrations/sql/20230313141439000000_session_token_length.sqlite3.down.sql type sessions_token_uq_idx (line 27) | CREATE UNIQUE INDEX sessions_token_uq_idx ON sessions (logout_token) type sessions_logout_token_uq_idx (line 28) | CREATE UNIQUE INDEX sessions_logout_token_uq_idx ON sessions (token) type sessions_token_nid_idx (line 29) | CREATE INDEX sessions_token_nid_idx ON sessions (nid, token) FILE: persistence/sql/migrations/sql/20230313141439000000_session_token_length.sqlite3.up.sql type sessions_token_uq_idx (line 25) | CREATE UNIQUE INDEX sessions_token_uq_idx ON sessions (logout_token) type sessions_logout_token_uq_idx (line 26) | CREATE UNIQUE INDEX sessions_logout_token_uq_idx ON sessions (token) type sessions_token_nid_idx (line 27) | CREATE INDEX sessions_token_nid_idx ON sessions (nid, token) FILE: persistence/sql/migrations/sql/20230322144139000001_missing_login_index.up.sql type identity_credential_identifiers_nid_i_ici_idx (line 1) | CREATE INDEX identity_credential_identifiers_nid_i_ici_idx ON identity_c... FILE: persistence/sql/migrations/sql/20230405000000000001_create_session_token_exchanges.mysql.up.sql type session_token_exchanges (line 1) | CREATE TABLE session_token_exchanges ( type session_token_exchanges_nid_code_idx (line 16) | CREATE INDEX session_token_exchanges_nid_code_idx ON session_token_excha... type session_token_exchanges_nid_flow_id_idx (line 20) | CREATE INDEX session_token_exchanges_nid_flow_id_idx ON session_token_ex... FILE: persistence/sql/migrations/sql/20230405000000000001_create_session_token_exchanges.up.sql type session_token_exchanges (line 1) | CREATE TABLE session_token_exchanges ( type session_token_exchanges_nid_code_idx (line 17) | CREATE INDEX session_token_exchanges_nid_code_idx ON session_token_excha... type session_token_exchanges_nid_flow_id_idx (line 21) | CREATE INDEX session_token_exchanges_nid_flow_id_idx ON session_token_ex... FILE: persistence/sql/migrations/sql/20230619000000000001_sessions_add_sorted_indices.down.sql type sessions_identity_id_nid_idx (line 1) | CREATE INDEX sessions_identity_id_nid_idx FILE: persistence/sql/migrations/sql/20230619000000000001_sessions_add_sorted_indices.mysql.down.sql type sessions_identity_id_nid_idx (line 1) | CREATE INDEX sessions_identity_id_nid_idx FILE: persistence/sql/migrations/sql/20230619000000000001_sessions_add_sorted_indices.mysql.up.sql type sessions_identity_id_nid_sorted_idx (line 1) | CREATE INDEX sessions_identity_id_nid_sorted_idx FILE: persistence/sql/migrations/sql/20230619000000000001_sessions_add_sorted_indices.up.sql type sessions_identity_id_nid_sorted_idx (line 1) | CREATE INDEX sessions_identity_id_nid_sorted_idx FILE: persistence/sql/migrations/sql/20230626000000000001_identity_credential_identifiers_nid_identity_credential_id_idx.mysql.up.sql type identity_credential_identifiers_nid_identity_credential_id_idx (line 1) | CREATE INDEX identity_credential_identifiers_nid_identity_credential_id_... FILE: persistence/sql/migrations/sql/20230707133700000000_identity_login_code.mysql.up.sql type identity_login_codes (line 1) | CREATE TABLE identity_login_codes type identity_login_codes_nid_flow_id_idx (line 25) | CREATE INDEX identity_login_codes_nid_flow_id_idx ON identity_login_code... type identity_login_codes_id_nid_idx (line 26) | CREATE INDEX identity_login_codes_id_nid_idx ON identity_login_codes (id... FILE: persistence/sql/migrations/sql/20230707133700000000_identity_login_code.up.sql type identity_login_codes (line 1) | CREATE TABLE identity_login_codes type identity_login_codes_nid_flow_id_idx (line 25) | CREATE INDEX identity_login_codes_nid_flow_id_idx ON identity_login_code... type identity_login_codes_id_nid_idx (line 26) | CREATE INDEX identity_login_codes_id_nid_idx ON identity_login_codes (id... FILE: persistence/sql/migrations/sql/20230707133700000001_identity_registration_code.mysql.up.sql type identity_registration_codes (line 1) | CREATE TABLE identity_registration_codes type identity_registration_codes_nid_flow_id_idx (line 24) | CREATE INDEX identity_registration_codes_nid_flow_id_idx ON identity_reg... type identity_registration_codes_id_nid_idx (line 25) | CREATE INDEX identity_registration_codes_id_nid_idx ON identity_registra... FILE: persistence/sql/migrations/sql/20230707133700000001_identity_registration_code.up.sql type identity_registration_codes (line 1) | CREATE TABLE identity_registration_codes type identity_registration_codes_nid_flow_id_idx (line 24) | CREATE INDEX identity_registration_codes_nid_flow_id_idx ON identity_reg... type identity_registration_codes_id_nid_idx (line 25) | CREATE INDEX identity_registration_codes_id_nid_idx ON identity_registra... FILE: persistence/sql/migrations/sql/20230920171028000000_identity_search_index.cockroach.up.sql type identity_credential_identifiers_nid_identifier_gin (line 1) | CREATE INDEX IF NOT EXISTS identity_credential_identifiers_nid_identifie... FILE: persistence/sql/migrations/sql/20230920171028000000_identity_search_index.postgres.up.sql type identity_credential_identifiers_nid_identifier_gin (line 4) | CREATE INDEX identity_credential_identifiers_nid_identifier_gin ON ident... FILE: persistence/sql/migrations/sql/20240119094628000000_sessions_created_at_index.up.sql type sessions_nid_created_at_id_idx (line 1) | CREATE INDEX sessions_nid_created_at_id_idx ON sessions (nid, created_at... FILE: persistence/sql/migrations/sql/20240213095000000000_identity_credentials_user_handle_index.cockroach.up.sql type identity_credentials_user_handle_idx (line 1) | CREATE INVERTED INDEX identity_credentials_user_handle_idx FILE: persistence/sql/migrations/sql/20240214113828000000_courier_dispatch_indices.down.sql type courier_message_dispatches_id_message_id_nid_idx (line 1) | CREATE INDEX IF NOT EXISTS courier_message_dispatches_id_message_id_nid_... FILE: persistence/sql/migrations/sql/20240214113828000000_courier_dispatch_indices.mysql.down.sql type courier_message_dispatches_id_message_id_nid_idx (line 1) | CREATE INDEX courier_message_dispatches_id_message_id_nid_idx ON courier... FILE: persistence/sql/migrations/sql/20240214113828000000_courier_dispatch_indices.mysql.up.sql type courier_message_dispatches_message_id_idx (line 5) | CREATE INDEX courier_message_dispatches_message_id_idx ON courier_messag... type courier_message_dispatches_nid_idx (line 8) | CREATE INDEX courier_message_dispatches_nid_idx ON courier_message_dispa... FILE: persistence/sql/migrations/sql/20240214113828000000_courier_dispatch_indices.up.sql type courier_message_dispatches_message_id_idx (line 5) | CREATE INDEX IF NOT EXISTS courier_message_dispatches_message_id_idx ON ... type courier_message_dispatches_nid_idx (line 8) | CREATE INDEX IF NOT EXISTS courier_message_dispatches_nid_idx ON courier... FILE: persistence/sql/migrations/sql/20240221000000000000_identity_recovery_codes_flow_id_idx.sqlite.up.sql type identity_login_codes_identity_id_idx (line 1) | CREATE INDEX IF NOT EXISTS identity_login_codes_identity_id_idx ON ident... type identity_login_codes_flow_id_idx (line 2) | CREATE INDEX IF NOT EXISTS identity_login_codes_flow_id_idx ON identity_... type identity_registration_codes_flow_id_idx (line 3) | CREATE INDEX IF NOT EXISTS identity_registration_codes_flow_id_idx ON id... type identity_recovery_codes_flow_id_idx (line 4) | CREATE INDEX IF NOT EXISTS identity_recovery_codes_flow_id_idx ON identi... type identity_verification_codes_flow_id_idx (line 5) | CREATE INDEX IF NOT EXISTS identity_verification_codes_flow_id_idx ON id... FILE: persistence/sql/migrations/sql/20240221000000000000_identity_recovery_codes_flow_id_idx.up.sql type identity_login_codes_identity_id_idx (line 4) | CREATE INDEX IF NOT EXISTS identity_login_codes_identity_id_idx ON ident... type identity_login_codes_flow_id_idx (line 5) | CREATE INDEX IF NOT EXISTS identity_login_codes_flow_id_idx ON identity_... type identity_registration_codes_flow_id_idx (line 6) | CREATE INDEX IF NOT EXISTS identity_registration_codes_flow_id_idx ON id... type identity_recovery_codes_flow_id_idx (line 7) | CREATE INDEX IF NOT EXISTS identity_recovery_codes_flow_id_idx ON identi... type identity_verification_codes_flow_id_idx (line 8) | CREATE INDEX IF NOT EXISTS identity_verification_codes_flow_id_idx ON id... FILE: persistence/sql/migrations/sql/20240318143139000000_drop_identity_search_index.postgres.down.sql type identity_credential_identifiers_nid_identifier_gin (line 4) | CREATE INDEX identity_credential_identifiers_nid_identifier_gin ON ident... FILE: persistence/sql/migrations/sql/20240325153839000000_drop_identity_search_index.cockroach.down.sql type identity_credential_identifiers_nid_identifier_gin (line 1) | CREATE INDEX IF NOT EXISTS identity_credential_identifiers_nid_identifie... FILE: persistence/sql/migrations/sql/20240425095000000000_identity_credentials_fix_user_handle_index.cockroach.up.sql type identity_credentials_config_user_handle_idx (line 1) | CREATE INDEX identity_credentials_config_user_handle_idx FILE: persistence/sql/migrations/sql/20240425095000000001_identity_credentials_fix_user_handle_index.cockroach.down.sql type identity_credentials_user_handle_idx (line 1) | CREATE INVERTED INDEX identity_credentials_user_handle_idx FILE: persistence/sql/migrations/sql/20240923095000000001_organization_id_index.up.sql type identities_nid_organization_id_idx (line 1) | CREATE INDEX identities_nid_organization_id_idx ON identities (organizat... FILE: persistence/sql/migrations/sql/20241023142500000001_drop_unused_indices_identity_credentials.down.sql type identity_credentials_id_nid_idx (line 1) | CREATE INDEX IF NOT EXISTS identity_credentials_id_nid_idx ON identity_c... type identity_credentials_nid_id_idx (line 2) | CREATE INDEX IF NOT EXISTS identity_credentials_nid_id_idx ON identity_c... type identity_credentials_nid_identity_id_idx (line 3) | CREATE INDEX IF NOT EXISTS identity_credentials_nid_identity_id_idx ON i... FILE: persistence/sql/migrations/sql/20241023142500000001_drop_unused_indices_identity_credentials.mysql.down.sql type identity_credentials_id_nid_idx (line 1) | CREATE INDEX identity_credentials_id_nid_idx ON identity_credentials (id... type identity_credentials_nid_id_idx (line 2) | CREATE INDEX identity_credentials_nid_id_idx ON identity_credentials (ni... FILE: persistence/sql/migrations/sql/20241023142500000001_drop_unused_indices_identity_credentials.mysql.up.sql type identity_credentials_nid_idx (line 1) | CREATE INDEX identity_credentials_nid_idx ON identity_credentials (nid ASC) FILE: persistence/sql/migrations/sql/20241023142500000001_drop_unused_indices_identity_credentials.up.sql type identity_credentials_identity_id_idx (line 1) | CREATE INDEX IF NOT EXISTS identity_credentials_identity_id_idx ON ident... type identity_credentials_nid_idx (line 2) | CREATE INDEX IF NOT EXISTS identity_credentials_nid_idx ON identity_cred... FILE: persistence/sql/migrations/sql/20241023142500000002_drop_unused_indices_sessions.down.sql type sessions_nid_id_identity_id_idx (line 1) | CREATE INDEX IF NOT EXISTS sessions_nid_id_identity_id_idx ON sessions(n... type sessions_id_nid_idx (line 2) | CREATE INDEX IF NOT EXISTS sessions_id_nid_idx ON sessions(id ASC, nid ASC) type sessions_token_nid_idx (line 3) | CREATE INDEX IF NOT EXISTS sessions_token_nid_idx ON sessions(nid ASC, t... type sessions_identity_id_nid_sorted_idx (line 4) | CREATE INDEX IF NOT EXISTS sessions_identity_id_nid_sorted_idx ON sessio... type sessions_nid_created_at_id_idx (line 5) | CREATE INDEX IF NOT EXISTS sessions_nid_created_at_id_idx ON sessions(ni... FILE: persistence/sql/migrations/sql/20241023142500000002_drop_unused_indices_sessions.mysql.down.sql type sessions_nid_id_identity_id_idx (line 1) | CREATE INDEX sessions_nid_id_identity_id_idx ON sessions(nid ASC, identi... type sessions_id_nid_idx (line 2) | CREATE INDEX sessions_id_nid_idx ON sessions(id ASC, nid ASC) type sessions_token_nid_idx (line 3) | CREATE INDEX sessions_token_nid_idx ON sessions(nid ASC, token ASC) type sessions_identity_id_nid_sorted_idx (line 4) | CREATE INDEX sessions_identity_id_nid_sorted_idx ON sessions(identity_id... type sessions_nid_created_at_id_idx (line 5) | CREATE INDEX sessions_nid_created_at_id_idx ON sessions(nid ASC, created... FILE: persistence/sql/migrations/sql/20241023142500000002_drop_unused_indices_sessions.mysql.up.sql type sessions_list_idx (line 1) | CREATE INDEX sessions_list_idx ON sessions (nid ASC, created_at DESC, id... type sessions_list_active_idx (line 2) | CREATE INDEX sessions_list_active_idx ON sessions (nid ASC, expires_at A... type sessions_list_identity_idx (line 3) | CREATE INDEX sessions_list_identity_idx ON sessions (identity_id ASC, ni... FILE: persistence/sql/migrations/sql/20241023142500000002_drop_unused_indices_sessions.up.sql type sessions_list_idx (line 1) | CREATE INDEX IF NOT EXISTS sessions_list_idx ON sessions (nid ASC, creat... type sessions_list_active_idx (line 2) | CREATE INDEX IF NOT EXISTS sessions_list_active_idx ON sessions (nid ASC... type sessions_list_identity_idx (line 3) | CREATE INDEX IF NOT EXISTS sessions_list_identity_idx ON sessions (ident... FILE: persistence/sql/migrations/sql/20241023142500000003_drop_unused_indices_credential_identifiers.cockroach.down.sql type identity_credential_identifiers_identifier_nid_type_uq_idx (line 3) | CREATE UNIQUE INDEX IF NOT EXISTS identity_credential_identifiers_identi... type identity_credential_identifiers_nid_id_idx (line 7) | CREATE INDEX IF NOT EXISTS identity_credential_identifiers_nid_id_idx ON... type identity_credential_identifiers_id_nid_idx (line 8) | CREATE INDEX IF NOT EXISTS identity_credential_identifiers_id_nid_idx ON... type identity_credential_identifiers_nid_identity_credential_id_idx (line 9) | CREATE INDEX IF NOT EXISTS identity_credential_identifiers_nid_identity_... FILE: persistence/sql/migrations/sql/20241023142500000003_drop_unused_indices_credential_identifiers.cockroach.up.sql type identity_credential_identifiers_identifier_nid_type_uq_idx (line 3) | CREATE UNIQUE INDEX IF NOT EXISTS identity_credential_identifiers_identi... type identity_credential_identifiers_identity_credential_id_idx (line 7) | CREATE INDEX IF NOT EXISTS identity_credential_identifiers_identity_cred... FILE: persistence/sql/migrations/sql/20241023142500000003_drop_unused_indices_credential_identifiers.down.sql type identity_credential_identifiers_nid_id_idx (line 1) | CREATE INDEX IF NOT EXISTS identity_credential_identifiers_nid_id_idx ON... type identity_credential_identifiers_id_nid_idx (line 2) | CREATE INDEX IF NOT EXISTS identity_credential_identifiers_id_nid_idx ON... type identity_credential_identifiers_nid_identity_credential_id_idx (line 3) | CREATE INDEX IF NOT EXISTS identity_credential_identifiers_nid_identity_... FILE: persistence/sql/migrations/sql/20241023142500000003_drop_unused_indices_credential_identifiers.mysql.down.sql type identity_credential_identifiers_nid_id_idx (line 1) | CREATE INDEX identity_credential_identifiers_nid_id_idx ON identity_cred... type identity_credential_identifiers_id_nid_idx (line 2) | CREATE INDEX identity_credential_identifiers_id_nid_idx ON identity_cred... type identity_credential_identifiers_nid_identity_credential_id_idx (line 3) | CREATE INDEX identity_credential_identifiers_nid_identity_credential_id_... FILE: persistence/sql/migrations/sql/20241023142500000003_drop_unused_indices_credential_identifiers.mysql.up.sql type identity_credential_identifiers_identity_credential_id_idx (line 1) | CREATE INDEX identity_credential_identifiers_identity_credential_id_idx ... FILE: persistence/sql/migrations/sql/20241023142500000003_drop_unused_indices_credential_identifiers.up.sql type identity_credential_identifiers_identity_credential_id_idx (line 1) | CREATE INDEX IF NOT EXISTS identity_credential_identifiers_identity_cred... FILE: persistence/sql/migrations/sql/20241029102200000001_self_service.down.sql type selfservice_login_flows_nid_id_idx (line 1) | CREATE INDEX IF NOT EXISTS selfservice_login_flows_nid_id_idx ON selfser... type selfservice_login_flows_id_nid_idx (line 2) | CREATE INDEX IF NOT EXISTS selfservice_login_flows_id_nid_idx ON selfser... type selfservice_errors_errors_nid_id_idx (line 5) | CREATE INDEX IF NOT EXISTS selfservice_errors_errors_nid_id_idx ON selfs... type selfservice_recovery_flows_nid_id_idx (line 8) | CREATE INDEX IF NOT EXISTS selfservice_recovery_flows_nid_id_idx ON self... type selfservice_recovery_flows_id_nid_idx (line 9) | CREATE INDEX IF NOT EXISTS selfservice_recovery_flows_id_nid_idx ON self... type selfservice_recovery_flows_recovered_identity_id_nid_idx (line 10) | CREATE INDEX IF NOT EXISTS selfservice_recovery_flows_recovered_identity... type selfservice_registration_flows_nid_id_idx (line 14) | CREATE INDEX IF NOT EXISTS selfservice_registration_flows_nid_id_idx ON ... type selfservice_registration_flows_id_nid_idx (line 15) | CREATE INDEX IF NOT EXISTS selfservice_registration_flows_id_nid_idx ON ... type selfservice_settings_flows_nid_id_idx (line 18) | CREATE INDEX IF NOT EXISTS selfservice_settings_flows_nid_id_idx ON self... type selfservice_settings_flows_id_nid_idx (line 19) | CREATE INDEX IF NOT EXISTS selfservice_settings_flows_id_nid_idx ON self... type selfservice_settings_flows_identity_id_nid_idx (line 20) | CREATE INDEX IF NOT EXISTS selfservice_settings_flows_identity_id_nid_id... type selfservice_verification_flows_nid_id_idx (line 24) | CREATE INDEX IF NOT EXISTS selfservice_verification_flows_nid_id_idx ON ... type selfservice_verification_flows_id_nid_idx (line 25) | CREATE INDEX IF NOT EXISTS selfservice_verification_flows_id_nid_idx ON ... FILE: persistence/sql/migrations/sql/20241029102200000001_self_service.mysql.down.sql type selfservice_login_flows_nid_id_idx (line 1) | CREATE INDEX selfservice_login_flows_nid_id_idx ON selfservice_login_flo... type selfservice_login_flows_id_nid_idx (line 2) | CREATE INDEX selfservice_login_flows_id_nid_idx ON selfservice_login_flo... type selfservice_errors_errors_nid_id_idx (line 5) | CREATE INDEX selfservice_errors_errors_nid_id_idx ON selfservice_errors ... type selfservice_recovery_flows_nid_id_idx (line 8) | CREATE INDEX selfservice_recovery_flows_nid_id_idx ON selfservice_recove... type selfservice_recovery_flows_id_nid_idx (line 9) | CREATE INDEX selfservice_recovery_flows_id_nid_idx ON selfservice_recove... type selfservice_recovery_flows_recovered_identity_id_nid_idx (line 10) | CREATE INDEX selfservice_recovery_flows_recovered_identity_id_nid_idx ON... type selfservice_registration_flows_nid_id_idx (line 14) | CREATE INDEX selfservice_registration_flows_nid_id_idx ON selfservice_re... type selfservice_registration_flows_id_nid_idx (line 15) | CREATE INDEX selfservice_registration_flows_id_nid_idx ON selfservice_re... type selfservice_settings_flows_nid_id_idx (line 18) | CREATE INDEX selfservice_settings_flows_nid_id_idx ON selfservice_settin... type selfservice_settings_flows_id_nid_idx (line 19) | CREATE INDEX selfservice_settings_flows_id_nid_idx ON selfservice_settin... type selfservice_settings_flows_identity_id_nid_idx (line 20) | CREATE INDEX selfservice_settings_flows_identity_id_nid_idx ON selfservi... type selfservice_verification_flows_nid_id_idx (line 24) | CREATE INDEX selfservice_verification_flows_nid_id_idx ON selfservice_ve... type selfservice_verification_flows_id_nid_idx (line 25) | CREATE INDEX selfservice_verification_flows_id_nid_idx ON selfservice_ve... FILE: persistence/sql/migrations/sql/20241029102200000001_self_service.mysql.up.sql type selfservice_login_flows_nid_idx (line 1) | CREATE INDEX selfservice_login_flows_nid_idx ON selfservice_login_flows ... type selfservice_errors_nid_idx (line 5) | CREATE INDEX selfservice_errors_nid_idx ON selfservice_errors (nid ASC) type selfservice_recovery_flows_nid_idx (line 8) | CREATE INDEX selfservice_recovery_flows_nid_idx ON selfservice_recovery_... type selfservice_recovery_flows_recovered_identity_id_idx (line 9) | CREATE INDEX selfservice_recovery_flows_recovered_identity_id_idx ON sel... type selfservice_registration_flows_nid_idx (line 14) | CREATE INDEX selfservice_registration_flows_nid_idx ON selfservice_regis... type selfservice_settings_flows_nid_idx (line 18) | CREATE INDEX selfservice_settings_flows_nid_idx ON selfservice_settings_... type selfservice_settings_flows_identity_id_idx (line 19) | CREATE INDEX selfservice_settings_flows_identity_id_idx ON selfservice_s... type selfservice_verification_flows_nid_idx (line 24) | CREATE INDEX selfservice_verification_flows_nid_idx ON selfservice_verif... FILE: persistence/sql/migrations/sql/20241029102200000001_self_service.up.sql type selfservice_login_flows_nid_idx (line 1) | CREATE INDEX IF NOT EXISTS selfservice_login_flows_nid_idx ON selfservic... type selfservice_errors_nid_idx (line 5) | CREATE INDEX IF NOT EXISTS selfservice_errors_nid_idx ON selfservice_err... type selfservice_recovery_flows_recovered_identity_id_idx (line 8) | CREATE INDEX IF NOT EXISTS selfservice_recovery_flows_recovered_identity... type selfservice_recovery_flows_nid_idx (line 9) | CREATE INDEX IF NOT EXISTS selfservice_recovery_flows_nid_idx ON selfser... type selfservice_registration_flows_nid_idx (line 14) | CREATE INDEX IF NOT EXISTS selfservice_registration_flows_nid_idx ON sel... type selfservice_settings_flows_nid_idx (line 18) | CREATE INDEX IF NOT EXISTS selfservice_settings_flows_nid_idx ON selfser... type selfservice_settings_flows_identity_id_idx (line 19) | CREATE INDEX IF NOT EXISTS selfservice_settings_flows_identity_id_idx ON... type selfservice_verification_flows_nid_idx (line 24) | CREATE INDEX IF NOT EXISTS selfservice_verification_flows_nid_idx ON sel... FILE: persistence/sql/migrations/sql/20241029153900000001_identities.autocommit.down.sql type identities_id_nid_idx (line 1) | CREATE INDEX IF NOT EXISTS identities_id_nid_idx ON identities (id ASC, ... type identity_recovery_addresses_status_via_idx (line 3) | CREATE INDEX IF NOT EXISTS identity_recovery_addresses_status_via_idx ON... type identity_recovery_addresses_nid_identity_id_idx (line 4) | CREATE INDEX IF NOT EXISTS identity_recovery_addresses_nid_identity_id_i... type identity_recovery_addresses_nid_id_idx (line 5) | CREATE INDEX IF NOT EXISTS identity_recovery_addresses_nid_id_idx ON ide... type identity_recovery_addresses_id_nid_idx (line 6) | CREATE INDEX IF NOT EXISTS identity_recovery_addresses_id_nid_idx ON ide... type identity_verifiable_addresses_status_via_idx (line 9) | CREATE INDEX IF NOT EXISTS identity_verifiable_addresses_status_via_idx ... type identity_verifiable_addresses_nid_identity_id_idx (line 10) | CREATE INDEX IF NOT EXISTS identity_verifiable_addresses_nid_identity_id... type identity_verifiable_addresses_nid_id_idx (line 11) | CREATE INDEX IF NOT EXISTS identity_verifiable_addresses_nid_id_idx ON i... type identity_verifiable_addresses_id_nid_idx (line 12) | CREATE INDEX IF NOT EXISTS identity_verifiable_addresses_id_nid_idx ON i... FILE: persistence/sql/migrations/sql/20241029153900000001_identities.autocommit.up.sql type identity_recovery_addresses_identity_id_idx (line 3) | CREATE INDEX IF NOT EXISTS identity_recovery_addresses_identity_id_idx O... type identity_verifiable_addresses_identity_id_idx (line 9) | CREATE INDEX IF NOT EXISTS identity_verifiable_addresses_identity_id_idx... FILE: persistence/sql/migrations/sql/20241029153900000001_identities.mysql.down.sql type identities_id_nid_idx (line 1) | CREATE INDEX identities_id_nid_idx ON identities (id ASC, nid ASC) type identity_recovery_addresses_status_via_idx (line 3) | CREATE INDEX identity_recovery_addresses_status_via_idx ON identity_reco... type identity_recovery_addresses_identity_id_fk_idx (line 6) | CREATE INDEX identity_recovery_addresses_identity_id_fk_idx ON identity_... type identity_recovery_addresses_nid_id_idx (line 7) | CREATE INDEX identity_recovery_addresses_nid_id_idx ON identity_recovery... type identity_recovery_addresses_id_nid_idx (line 8) | CREATE INDEX identity_recovery_addresses_id_nid_idx ON identity_recovery... type identity_verifiable_addresses_status_via_idx (line 11) | CREATE INDEX identity_verifiable_addresses_status_via_idx ON identity_ve... type identity_verifiable_addresses_identity_id_fk_idx (line 14) | CREATE INDEX identity_verifiable_addresses_identity_id_fk_idx ON identit... type identity_verifiable_addresses_nid_id_idx (line 15) | CREATE INDEX identity_verifiable_addresses_nid_id_idx ON identity_verifi... type identity_verifiable_addresses_id_nid_idx (line 16) | CREATE INDEX identity_verifiable_addresses_id_nid_idx ON identity_verifi... FILE: persistence/sql/migrations/sql/20241029153900000001_identities.mysql.up.sql type identity_recovery_addresses_identity_id_idx (line 3) | CREATE INDEX identity_recovery_addresses_identity_id_idx ON identity_rec... type identity_verifiable_addresses_identity_id_idx (line 9) | CREATE INDEX identity_verifiable_addresses_identity_id_idx ON identity_v... FILE: persistence/sql/migrations/sql/20241031094100000001_remaining_unused_indices.autocommit.down.sql type session_devices_id_nid_idx (line 1) | CREATE INDEX IF NOT EXISTS session_devices_id_nid_idx ON session_devices... type session_devices_session_id_nid_idx (line 2) | CREATE INDEX IF NOT EXISTS session_devices_session_id_nid_idx ON session... type session_token_exchanges_nid_code_idx (line 6) | CREATE INDEX IF NOT EXISTS session_token_exchanges_nid_code_idx ON sessi... type session_token_exchanges_nid_flow_id_idx (line 7) | CREATE INDEX IF NOT EXISTS session_token_exchanges_nid_flow_id_idx ON se... type courier_messages_status_idx (line 11) | CREATE INDEX IF NOT EXISTS courier_messages_status_idx ON courier_messa... type courier_messages_nid_id_idx (line 12) | CREATE INDEX IF NOT EXISTS courier_messages_nid_id_idx ON courier_messa... type courier_messages_id_nid_idx (line 13) | CREATE INDEX IF NOT EXISTS courier_messages_id_nid_idx ON courier_messa... type courier_messages_nid_created_at_id_idx (line 14) | CREATE INDEX IF NOT EXISTS courier_messages_nid_created_at_id_idx ON co... type continuity_containers_nid_id_idx (line 18) | CREATE INDEX IF NOT EXISTS continuity_containers_nid_id_idx ON continuit... type continuity_containers_id_nid_idx (line 19) | CREATE INDEX IF NOT EXISTS continuity_containers_id_nid_idx ON continuit... type continuity_containers_identity_id_nid_idx (line 20) | CREATE INDEX IF NOT EXISTS continuity_containers_identity_id_nid_idx ON ... type identity_verification_codes_nid_flow_id_idx (line 24) | CREATE INDEX IF NOT EXISTS identity_verification_codes_nid_flow_id_idx O... type identity_verification_codes_id_nid_idx (line 25) | CREATE INDEX IF NOT EXISTS identity_verification_codes_id_nid_idx ON ide... type identity_verification_codes_verifiable_address_nid_idx (line 26) | CREATE INDEX IF NOT EXISTS identity_verification_codes_verifiable_addres... type identity_verification_tokens_nid_id_idx (line 30) | CREATE INDEX IF NOT EXISTS identity_verification_tokens_nid_id_idx ON id... type identity_verification_tokens_id_nid_idx (line 31) | CREATE INDEX IF NOT EXISTS identity_verification_tokens_id_nid_idx ON id... type identity_verification_tokens_token_nid_used_flow_id_idx (line 32) | CREATE INDEX IF NOT EXISTS identity_verification_tokens_token_nid_used_f... type identity_registration_codes_nid_flow_id_idx (line 35) | CREATE INDEX IF NOT EXISTS identity_registration_codes_nid_flow_id_idx O... type identity_registration_codes_id_nid_idx (line 36) | CREATE INDEX IF NOT EXISTS identity_registration_codes_id_nid_idx ON ide... type identity_recovery_tokens_nid_id_idx (line 39) | CREATE INDEX IF NOT EXISTS identity_recovery_tokens_nid_id_idx ON ident... type identity_recovery_tokens_id_nid_idx (line 40) | CREATE INDEX IF NOT EXISTS identity_recovery_tokens_id_nid_idx ON ident... type identity_recovery_tokens_token_nid_used_idx (line 41) | CREATE INDEX IF NOT EXISTS identity_recovery_tokens_token_nid_used_idx ... type identity_recovery_tokens_identity_id_nid_idx (line 42) | CREATE INDEX IF NOT EXISTS identity_recovery_tokens_identity_id_nid_idx ... type identity_recovery_codes_nid_flow_id_idx (line 46) | CREATE INDEX IF NOT EXISTS identity_recovery_codes_nid_flow_id_idx ON id... type identity_recovery_codes_id_nid_idx (line 47) | CREATE INDEX IF NOT EXISTS identity_recovery_codes_id_nid_idx ON identit... type identity_recovery_codes_identity_id_nid_idx (line 48) | CREATE INDEX IF NOT EXISTS identity_recovery_codes_identity_id_nid_idx O... type identity_recovery_codes_identity_recovery_address_id_nid_idx (line 49) | CREATE INDEX IF NOT EXISTS identity_recovery_codes_identity_recovery_add... type identity_login_codes_nid_flow_id_idx (line 54) | CREATE INDEX IF NOT EXISTS identity_login_codes_nid_flow_id_idx ON ident... type identity_login_codes_id_nid_idx (line 55) | CREATE INDEX IF NOT EXISTS identity_login_codes_id_nid_idx ON identity_l... FILE: persistence/sql/migrations/sql/20241031094100000001_remaining_unused_indices.autocommit.up.sql type session_devices_nid_idx (line 1) | CREATE INDEX IF NOT EXISTS session_devices_nid_idx ON session_devices (n... type session_devices_session_id_idx (line 2) | CREATE INDEX IF NOT EXISTS session_devices_session_id_idx ON session_dev... type session_token_exchanges_flow_id_nid_init_code_idx (line 6) | CREATE INDEX IF NOT EXISTS session_token_exchanges_flow_id_nid_init_code... type session_token_exchanges_nid_init_code_idx (line 7) | CREATE INDEX IF NOT EXISTS session_token_exchanges_nid_init_code_idx ON ... type courier_messages_status_id_idx (line 11) | CREATE INDEX IF NOT EXISTS courier_messages_status_id_idx ON courier_mes... type courier_messages_nid_id_created_at_idx (line 12) | CREATE INDEX IF NOT EXISTS courier_messages_nid_id_created_at_idx ON cou... type continuity_containers_identity_id_idx (line 18) | CREATE INDEX IF NOT EXISTS continuity_containers_identity_id_idx ON cont... type continuity_containers_nid_idx (line 19) | CREATE INDEX IF NOT EXISTS continuity_containers_nid_idx ON continuity_c... type identity_verification_codes_identity_verifiable_address_id_idx (line 24) | CREATE INDEX IF NOT EXISTS identity_verification_codes_identity_verifiab... type identity_verification_codes_nid_idx (line 25) | CREATE INDEX IF NOT EXISTS identity_verification_codes_nid_idx ON identi... type identity_verification_tokens_nid_idx (line 30) | CREATE INDEX IF NOT EXISTS identity_verification_tokens_nid_idx ON ident... type identity_registration_codes_nid_idx (line 35) | CREATE INDEX IF NOT EXISTS identity_registration_codes_nid_idx ON identi... type identity_recovery_tokens_identity_id_idx (line 39) | CREATE INDEX IF NOT EXISTS identity_recovery_tokens_identity_id_idx ON i... type identity_recovery_tokens_nid_idx (line 40) | CREATE INDEX IF NOT EXISTS identity_recovery_tokens_nid_idx ON identity_... type identity_recovery_codes_identity_recovery_address_id_idx (line 46) | CREATE INDEX IF NOT EXISTS identity_recovery_codes_identity_recovery_add... type identity_recovery_codes_identity_id_idx (line 47) | CREATE INDEX IF NOT EXISTS identity_recovery_codes_identity_id_idx ON id... type identity_recovery_codes_nid_idx (line 48) | CREATE INDEX IF NOT EXISTS identity_recovery_codes_nid_idx ON identity_r... type identity_login_codes_nid_idx (line 54) | CREATE INDEX IF NOT EXISTS identity_login_codes_nid_idx ON identity_logi... FILE: persistence/sql/migrations/sql/20241031094100000001_remaining_unused_indices.mysql.down.sql type session_devices_id_nid_idx (line 1) | CREATE INDEX session_devices_id_nid_idx ON session_devices (nid ASC, id ... type session_devices_session_id_nid_idx (line 2) | CREATE INDEX session_devices_session_id_nid_idx ON session_devices (sess... type session_token_exchanges_nid_code_idx (line 6) | CREATE INDEX session_token_exchanges_nid_code_idx ON session_token_excha... type session_token_exchanges_nid_flow_id_idx (line 7) | CREATE INDEX session_token_exchanges_nid_flow_id_idx ON session_token_ex... type courier_messages_status_idx (line 11) | CREATE INDEX courier_messages_status_idx ON courier_messages (status ASC) type courier_messages_nid_id_idx (line 12) | CREATE INDEX courier_messages_nid_id_idx ON courier_messages (nid ASC, i... type courier_messages_id_nid_idx (line 13) | CREATE INDEX courier_messages_id_nid_idx ON courier_messages (id ASC, ni... type courier_messages_nid_created_at_id_idx (line 14) | CREATE INDEX courier_messages_nid_created_at_id_idx ON courier_messages ... type continuity_containers_nid_id_idx (line 18) | CREATE INDEX continuity_containers_nid_id_idx ON continuity_containers (... type continuity_containers_id_nid_idx (line 19) | CREATE INDEX continuity_containers_id_nid_idx ON continuity_containers (... type continuity_containers_identity_id_nid_idx (line 20) | CREATE INDEX continuity_containers_identity_id_nid_idx ON continuity_con... type identity_verification_codes_nid_flow_id_idx (line 24) | CREATE INDEX identity_verification_codes_nid_flow_id_idx ON identity_ver... type identity_verification_codes_id_nid_idx (line 25) | CREATE INDEX identity_verification_codes_id_nid_idx ON identity_verifica... type identity_verification_codes_verifiable_address_nid_idx (line 26) | CREATE INDEX identity_verification_codes_verifiable_address_nid_idx ON i... type identity_verification_tokens_nid_id_idx (line 30) | CREATE INDEX identity_verification_tokens_nid_id_idx ON identity_verific... type identity_verification_tokens_id_nid_idx (line 31) | CREATE INDEX identity_verification_tokens_id_nid_idx ON identity_verific... type identity_verification_tokens_token_nid_used_flow_id_idx (line 32) | CREATE INDEX identity_verification_tokens_token_nid_used_flow_id_idx ON ... type identity_registration_codes_nid_flow_id_idx (line 35) | CREATE INDEX identity_registration_codes_nid_flow_id_idx ON identity_reg... type identity_registration_codes_id_nid_idx (line 36) | CREATE INDEX identity_registration_codes_id_nid_idx ON identity_registra... type identity_recovery_tokens_nid_id_idx (line 39) | CREATE INDEX identity_recovery_tokens_nid_id_idx ON identity_recovery_to... type identity_recovery_tokens_id_nid_idx (line 40) | CREATE INDEX identity_recovery_tokens_id_nid_idx ON identity_recovery_to... type identity_recovery_tokens_token_nid_used_idx (line 41) | CREATE INDEX identity_recovery_tokens_token_nid_used_idx ON identity_rec... type identity_recovery_tokens_identity_id_nid_idx (line 42) | CREATE INDEX identity_recovery_tokens_identity_id_nid_idx ON identity_re... type identity_recovery_codes_nid_flow_id_idx (line 46) | CREATE INDEX identity_recovery_codes_nid_flow_id_idx ON identity_recover... type identity_recovery_codes_id_nid_idx (line 47) | CREATE INDEX identity_recovery_codes_id_nid_idx ON identity_recovery_cod... type identity_recovery_codes_identity_id_nid_idx (line 48) | CREATE INDEX identity_recovery_codes_identity_id_nid_idx ON identity_rec... type identity_recovery_codes_identity_recovery_address_id_nid_idx (line 49) | CREATE INDEX identity_recovery_codes_identity_recovery_address_id_nid_id... type identity_login_codes_nid_flow_id_idx (line 54) | CREATE INDEX identity_login_codes_nid_flow_id_idx ON identity_login_code... type identity_login_codes_id_nid_idx (line 55) | CREATE INDEX identity_login_codes_id_nid_idx ON identity_login_codes (id... FILE: persistence/sql/migrations/sql/20241031094100000001_remaining_unused_indices.mysql.up.sql type session_devices_nid_idx (line 1) | CREATE INDEX session_devices_nid_idx ON session_devices (nid ASC) type session_devices_session_id_idx (line 2) | CREATE INDEX session_devices_session_id_idx ON session_devices (session_... type session_token_exchanges_flow_id_nid_init_code_idx (line 6) | CREATE INDEX session_token_exchanges_flow_id_nid_init_code_idx ON sessio... type session_token_exchanges_nid_init_code_idx (line 7) | CREATE INDEX session_token_exchanges_nid_init_code_idx ON session_token_... type courier_messages_status_id_idx (line 11) | CREATE INDEX courier_messages_status_id_idx ON courier_messages (status ... type courier_messages_nid_id_created_at_idx (line 12) | CREATE INDEX courier_messages_nid_id_created_at_idx ON courier_messages ... type continuity_containers_identity_id_idx (line 18) | CREATE INDEX continuity_containers_identity_id_idx ON continuity_contain... type continuity_containers_nid_idx (line 19) | CREATE INDEX continuity_containers_nid_idx ON continuity_containers (nid... type identity_verification_codes_verifiable_address_idx (line 24) | CREATE INDEX identity_verification_codes_verifiable_address_idx ON ident... type identity_verification_codes_nid_idx (line 25) | CREATE INDEX identity_verification_codes_nid_idx ON identity_verificatio... type identity_verification_tokens_nid_idx (line 30) | CREATE INDEX identity_verification_tokens_nid_idx ON identity_verificati... type identity_registration_codes_nid_idx (line 35) | CREATE INDEX identity_registration_codes_nid_idx ON identity_registratio... type identity_recovery_tokens_identity_id_idx (line 39) | CREATE INDEX identity_recovery_tokens_identity_id_idx ON identity_recove... type identity_recovery_tokens_nid_idx (line 40) | CREATE INDEX identity_recovery_tokens_nid_idx ON identity_recovery_token... type identity_recovery_codes_address_id_idx (line 46) | CREATE INDEX identity_recovery_codes_address_id_idx ON identity_recovery... type identity_recovery_codes_identity_id_idx (line 47) | CREATE INDEX identity_recovery_codes_identity_id_idx ON identity_recover... type identity_recovery_codes_nid_idx (line 48) | CREATE INDEX identity_recovery_codes_nid_idx ON identity_recovery_codes ... type identity_login_codes_nid_idx (line 54) | CREATE INDEX identity_login_codes_nid_idx ON identity_login_codes (nid ASC) FILE: persistence/sql/migrations/sql/20241031094100000002_foreign_key.sqlite.down.sql type session_token_exchanges_temp (line 2) | CREATE TABLE session_token_exchanges_temp type session_token_exchanges_nid_code_idx (line 26) | CREATE INDEX session_token_exchanges_nid_code_idx ON session_token_excha... type session_token_exchanges_nid_flow_id_idx (line 27) | CREATE INDEX session_token_exchanges_nid_flow_id_idx ON session_token_ex... FILE: persistence/sql/migrations/sql/20241031094100000002_foreign_key.sqlite.up.sql type session_token_exchanges_temp (line 2) | CREATE TABLE session_token_exchanges_temp type session_token_exchanges_nid_code_idx (line 36) | CREATE INDEX session_token_exchanges_nid_code_idx ON session_token_excha... type session_token_exchanges_nid_flow_id_idx (line 37) | CREATE INDEX session_token_exchanges_nid_flow_id_idx ON session_token_ex... FILE: persistence/sql/migrations/sql/20241106142200000001_identities.autocommit.up.sql type identity_credential_identifiers_nid_ici_i_idx (line 1) | CREATE INDEX IF NOT EXISTS identity_credential_identifiers_nid_ici_i_idx FILE: persistence/sql/migrations/sql/20241106142200000001_identities.mysql.up.sql type identity_credential_identifiers_nid_ici_i_idx (line 1) | CREATE INDEX identity_credential_identifiers_nid_ici_i_idx FILE: persistence/sql/migrations/sql/20241106142200000002_identities.autocommit.up.sql type identity_credential_identifiers_ici_nid_i_idx (line 1) | CREATE INDEX IF NOT EXISTS identity_credential_identifiers_ici_nid_i_idx FILE: persistence/sql/migrations/sql/20241106142200000002_identities.mysql.up.sql type identity_credential_identifiers_ici_nid_i_idx (line 1) | CREATE INDEX identity_credential_identifiers_ici_nid_i_idx FILE: persistence/sql/migrations/sql/20241108105000000001_index_cleanup.autocommit.down.sql type identity_credential_identifiers_nid_ici_i_idx (line 1) | CREATE INDEX IF NOT EXISTS identity_credential_identifiers_nid_ici_i_idx type identity_credential_identifiers_identity_credential_id_idx (line 4) | CREATE INDEX IF NOT EXISTS identity_credential_identifiers_identity_cred... FILE: persistence/sql/migrations/sql/20241108105000000001_index_cleanup.mysql.down.sql type identity_credential_identifiers_nid_ici_i_idx (line 1) | CREATE INDEX identity_credential_identifiers_nid_ici_i_idx type identity_credential_identifiers_identity_credential_id_idx (line 4) | CREATE INDEX identity_credential_identifiers_identity_credential_id_idx FILE: persistence/sql/migrations/sql/20250708190000000001_identities_external_id_index.cockroach.autocommit.up.sql type identities_nid_external_id_idx (line 1) | CREATE UNIQUE INDEX IF NOT EXISTS identities_nid_external_id_idx FILE: persistence/sql/migrations/sql/20250708190000000001_identities_external_id_index.mysql.up.sql type identities_nid_external_id_idx (line 1) | CREATE UNIQUE INDEX identities_nid_external_id_idx FILE: persistence/sql/migrations/sql/20250708190000000001_identities_external_id_index.up.sql type identities_nid_external_id_idx (line 1) | CREATE UNIQUE INDEX IF NOT EXISTS identities_nid_external_id_idx FILE: persistence/sql/migrations/sql/20251104000000000000_identifiers_devices_identity_id.sqlite.down.sql type "_identity_credential_identifiers_tmp" (line 3) | CREATE TABLE "_identity_credential_identifiers_tmp" ( type "identity_credential_identifiers" (line 22) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_nid_type... type identity_credential_identifiers_nid_i_ici_idx (line 23) | CREATE INDEX identity_credential_identifiers_nid_i_ici_idx ON "identity_... type identity_credential_identifiers_ici_nid_i_idx (line 24) | CREATE INDEX identity_credential_identifiers_ici_nid_i_idx ON "identity_... type "_session_devices_tmp" (line 27) | CREATE TABLE IF NOT EXISTS "_session_devices_tmp" type session_devices_nid_idx (line 49) | CREATE INDEX session_devices_nid_idx ON session_devices (nid ASC) type session_devices_session_id_idx (line 50) | CREATE INDEX session_devices_session_id_idx ON session_devices (session_... FILE: persistence/sql/migrations/sql/20251104000000000000_identifiers_devices_identity_id.sqlite.up.sql type "_identity_credential_identifiers_tmp" (line 3) | CREATE TABLE IF NOT EXISTS "_identity_credential_identifiers_tmp" ( type "identity_credential_identifiers" (line 27) | CREATE UNIQUE INDEX "identity_credential_identifiers_identifier_nid_type... type identity_credential_identifiers_nid_i_ici_idx (line 28) | CREATE INDEX identity_credential_identifiers_nid_i_ici_idx ON "identity_... type identity_credential_identifiers_ici_nid_i_idx (line 29) | CREATE INDEX identity_credential_identifiers_ici_nid_i_idx ON "identity_... type "_session_devices_tmp" (line 32) | CREATE TABLE IF NOT EXISTS "_session_devices_tmp" type session_devices_nid_idx (line 56) | CREATE INDEX session_devices_nid_idx ON session_devices (nid ASC) type session_devices_session_id_idx (line 57) | CREATE INDEX session_devices_session_id_idx ON session_devices (session_... FILE: persistence/sql/migrations/sql/20251105000000000004_identity_id_not_null_fks.cockroach.up.sql type identity_credential_identifiers_identities_id_fk_idx (line 1) | CREATE INDEX IF NOT EXISTS identity_credential_identifiers_identities_id... type session_devices_identities_id_fk_idx (line 2) | CREATE INDEX IF NOT EXISTS session_devices_identities_id_fk_idx ON sessi... FILE: persistence/sql/migrations/sql/20251105000000000004_identity_id_not_null_fks.mysql.up.sql type identity_credential_identifiers_identity_id_fk_idx (line 1) | CREATE INDEX identity_credential_identifiers_identity_id_fk_idx ON ident... type session_devices_identity_id_fk_idx (line 2) | CREATE INDEX session_devices_identity_id_fk_idx ON session_devices (iden... FILE: persistence/sql/migrations/sql/20251105000000000004_identity_id_not_null_fks.postgres.up.sql type identity_credential_identifiers_identities_id_fk_idx (line 1) | CREATE INDEX IF NOT EXISTS identity_credential_identifiers_identities_id... type session_devices_identities_id_fk_idx (line 2) | CREATE INDEX IF NOT EXISTS session_devices_identities_id_fk_idx ON sessi... FILE: persistence/sql/migrations/sql/20260114175904000000_drop_identity_credentials_nid_idx.down.sql type identity_credentials_nid_idx (line 1) | CREATE INDEX identity_credentials_nid_idx ON identity_credentials (nid) FILE: persistence/sql/persister.go type persisterDependencies (line 40) | type persisterDependencies interface type Persister (line 48) | type Persister struct method NetworkID (line 113) | func (p *Persister) NetworkID(ctx context.Context) uuid.UUID { method WithNetworkID (line 117) | func (p Persister) WithNetworkID(nid uuid.UUID) persistence.Persister { method DetermineNetwork (line 132) | func (p *Persister) DetermineNetwork(ctx context.Context) (*networkx.N... method Connection (line 136) | func (p *Persister) Connection(ctx context.Context) *pop.Connection { method MigrationStatus (line 140) | func (p *Persister) MigrationStatus(ctx context.Context) (_ popx.Migra... method MigrateDown (line 160) | func (p *Persister) MigrateDown(ctx context.Context, steps int) error { method MigrateUp (line 164) | func (p *Persister) MigrateUp(ctx context.Context) error { method MigrationBox (line 168) | func (p *Persister) MigrationBox() *popx.MigrationBox { method Close (line 172) | func (p *Persister) Close(ctx context.Context) error { method Ping (line 176) | func (p *Persister) Ping(ctx context.Context) error { method CleanupDatabase (line 180) | func (p *Persister) CleanupDatabase(ctx context.Context, wait time.Dur... type options (line 60) | type options struct function WithExtraMigrations (line 68) | func WithExtraMigrations(fss ...fs.FS) Option { function WithExtraGoMigrations (line 74) | func WithExtraGoMigrations(ms ...popx.Migration) Option { function WithDisabledLogging (line 80) | func WithDisabledLogging(v bool) Option { function NewPersister (line 86) | func NewPersister(r persisterDependencies, c *pop.Connection, opts ...Op... FILE: persistence/sql/persister_cleanup_test.go function TestPersister_Cleanup (line 17) | func TestPersister_Cleanup(t *testing.T) { function TestPersister_Continuity_Cleanup (line 34) | func TestPersister_Continuity_Cleanup(t *testing.T) { function TestPersister_Login_Cleanup (line 52) | func TestPersister_Login_Cleanup(t *testing.T) { function TestPersister_Recovery_Cleanup (line 70) | func TestPersister_Recovery_Cleanup(t *testing.T) { function TestPersister_Registration_Cleanup (line 88) | func TestPersister_Registration_Cleanup(t *testing.T) { function TestPersister_Session_Cleanup (line 106) | func TestPersister_Session_Cleanup(t *testing.T) { function TestPersister_Settings_Cleanup (line 124) | func TestPersister_Settings_Cleanup(t *testing.T) { function TestPersister_Verification_Cleanup (line 142) | func TestPersister_Verification_Cleanup(t *testing.T) { function TestPersister_SessionTokenExchange_Cleanup (line 160) | func TestPersister_SessionTokenExchange_Cleanup(t *testing.T) { FILE: persistence/sql/persister_code.go type oneTimeCodeProvider (line 23) | type oneTimeCodeProvider interface type codeOptions (line 30) | type codeOptions struct type codeOption (line 34) | type codeOption function withCheckIdentityID (line 36) | func withCheckIdentityID(id uuid.UUID) codeOption { function useOneTimeCode (line 42) | func useOneTimeCode[P any, U interface { function incrementOTPCodeSubmitCount (line 117) | func incrementOTPCodeSubmitCount(ctx context.Context, p *Persister, flow... FILE: persistence/sql/persister_continuity.go method SaveContinuitySession (line 23) | func (p *Persister) SaveContinuitySession(ctx context.Context, c *contin... method SetContinuitySessionExpiry (line 31) | func (p *Persister) SetContinuitySessionExpiry(ctx context.Context, id u... method GetContinuitySession (line 48) | func (p *Persister) GetContinuitySession(ctx context.Context, id uuid.UU... method DeleteContinuitySession (line 59) | func (p *Persister) DeleteContinuitySession(ctx context.Context, id uuid... method DeleteExpiredContinuitySessions (line 74) | func (p *Persister) DeleteExpiredContinuitySessions(ctx context.Context,... FILE: persistence/sql/persister_courier.go method AddMessage (line 26) | func (p *Persister) AddMessage(ctx context.Context, m *courier.Message) ... method ListMessages (line 35) | func (p *Persister) ListMessages(ctx context.Context, filter courier.Lis... method NextMessages (line 67) | func (p *Persister) NextMessages(ctx context.Context, limit uint8) (mess... method LatestQueuedMessage (line 112) | func (p *Persister) LatestQueuedMessage(ctx context.Context) (_ *courier... method SetMessageStatus (line 133) | func (p *Persister) SetMessageStatus(ctx context.Context, id uuid.UUID, ... method IncrementMessageSendCount (line 154) | func (p *Persister) IncrementMessageSendCount(ctx context.Context, id uu... method FetchMessage (line 174) | func (p *Persister) FetchMessage(ctx context.Context, msgID uuid.UUID) (... method RecordDispatch (line 189) | func (p *Persister) RecordDispatch(ctx context.Context, msgID uuid.UUID,... FILE: persistence/sql/persister_errorx.go method CreateErrorContainer (line 25) | func (p *Persister) CreateErrorContainer(ctx context.Context, csrfToken ... method ReadErrorContainer (line 51) | func (p *Persister) ReadErrorContainer(ctx context.Context, id uuid.UUID... method ClearErrorContainers (line 74) | func (p *Persister) ClearErrorContainers(ctx context.Context, olderThan ... function encodeSelfServiceErrors (line 91) | func encodeSelfServiceErrors(e error) ([]byte, error) { FILE: persistence/sql/persister_hmac.go method hmacValue (line 13) | func (p *Persister) hmacValue(ctx context.Context, value string) string { function hmacValueWithSecret (line 17) | func hmacValueWithSecret(value string, secret []byte) string { FILE: persistence/sql/persister_hmac_test.go type logRegistryOnly (line 24) | type logRegistryOnly struct method Config (line 29) | func (l *logRegistryOnly) Config() *config.Config { method Contextualizer (line 33) | func (l *logRegistryOnly) Contextualizer() contextx.Contextualizer { method Logger (line 38) | func (l *logRegistryOnly) Logger() *logrusx.Logger { method Audit (line 45) | func (l *logRegistryOnly) Audit() *logrusx.Logger { method Tracer (line 49) | func (l *logRegistryOnly) Tracer(context.Context) *otelx.Tracer { method IdentityTraitsSchemas (line 53) | func (l *logRegistryOnly) IdentityTraitsSchemas(context.Context) (sche... method IdentityValidator (line 57) | func (l *logRegistryOnly) IdentityValidator() *identity.Validator { function TestPersisterHMAC (line 63) | func TestPersisterHMAC(t *testing.T) { FILE: persistence/sql/persister_login.go method CreateLoginFlow (line 22) | func (p *Persister) CreateLoginFlow(ctx context.Context, r *login.Flow) ... method UpdateLoginFlow (line 31) | func (p *Persister) UpdateLoginFlow(ctx context.Context, r *login.Flow) ... method GetLoginFlow (line 41) | func (p *Persister) GetLoginFlow(ctx context.Context, id uuid.UUID) (_ *... method ForceLoginFlow (line 55) | func (p *Persister) ForceLoginFlow(ctx context.Context, id uuid.UUID) (e... method DeleteExpiredLoginFlows (line 70) | func (p *Persister) DeleteExpiredLoginFlows(ctx context.Context, expires... FILE: persistence/sql/persister_login_code.go method CreateLoginCode (line 18) | func (p *Persister) CreateLoginCode(ctx context.Context, params *code.Cr... method UseLoginCode (line 42) | func (p *Persister) UseLoginCode(ctx context.Context, flowID uuid.UUID, ... method GetUsedLoginCode (line 54) | func (p *Persister) GetUsedLoginCode(ctx context.Context, flowID uuid.UU... method DeleteLoginCodesOfFlow (line 65) | func (p *Persister) DeleteLoginCodesOfFlow(ctx context.Context, flowID u... FILE: persistence/sql/persister_recovery.go method CreateRecoveryFlow (line 28) | func (p *Persister) CreateRecoveryFlow(ctx context.Context, r *recovery.... method GetRecoveryFlow (line 36) | func (p *Persister) GetRecoveryFlow(ctx context.Context, id uuid.UUID) (... method UpdateRecoveryFlow (line 48) | func (p *Persister) UpdateRecoveryFlow(ctx context.Context, r *recovery.... method CreateRecoveryToken (line 57) | func (p *Persister) CreateRecoveryToken(ctx context.Context, token *link... method UseRecoveryToken (line 75) | func (p *Persister) UseRecoveryToken(ctx context.Context, fID uuid.UUID,... method DeleteRecoveryToken (line 113) | func (p *Persister) DeleteRecoveryToken(ctx context.Context, token strin... method DeleteExpiredRecoveryFlows (line 121) | func (p *Persister) DeleteExpiredRecoveryFlows(ctx context.Context, expi... FILE: persistence/sql/persister_recovery_code.go method CreateRecoveryCode (line 20) | func (p *Persister) CreateRecoveryCode(ctx context.Context, params *code... method UseRecoveryCode (line 57) | func (p *Persister) UseRecoveryCode(ctx context.Context, flowID uuid.UUI... method DeleteRecoveryCodesOfFlow (line 80) | func (p *Persister) DeleteRecoveryCodesOfFlow(ctx context.Context, flowI... FILE: persistence/sql/persister_registration.go method CreateRegistrationFlow (line 20) | func (p *Persister) CreateRegistrationFlow(ctx context.Context, r *regis... method UpdateRegistrationFlow (line 29) | func (p *Persister) UpdateRegistrationFlow(ctx context.Context, r *regis... method GetRegistrationFlow (line 39) | func (p *Persister) GetRegistrationFlow(ctx context.Context, id uuid.UUI... method DeleteExpiredRegistrationFlows (line 52) | func (p *Persister) DeleteExpiredRegistrationFlows(ctx context.Context, ... FILE: persistence/sql/persister_registration_code.go method CreateRegistrationCode (line 20) | func (p *Persister) CreateRegistrationCode(ctx context.Context, params *... method UseRegistrationCode (line 43) | func (p *Persister) UseRegistrationCode(ctx context.Context, flowID uuid... method GetUsedRegistrationCode (line 60) | func (p *Persister) GetUsedRegistrationCode(ctx context.Context, flowID ... method DeleteRegistrationCodesOfFlow (line 72) | func (p *Persister) DeleteRegistrationCodesOfFlow(ctx context.Context, f... FILE: persistence/sql/persister_session.go constant SessionDeviceUserAgentMaxLength (line 32) | SessionDeviceUserAgentMaxLength = 512 constant SessionDeviceLocationMaxLength (line 33) | SessionDeviceLocationMaxLength = 512 constant paginationMaxItemsSize (line 34) | paginationMaxItemsSize = 1000 constant paginationDefaultItemsSize (line 35) | paginationDefaultItemsSize = 250 method GetSession (line 38) | func (p *Persister) GetSession(ctx context.Context, sid uuid.UUID, expan... method ListSessions (line 70) | func (p *Persister) ListSessions(ctx context.Context, active *bool, pagi... method ListSessionsByIdentity (line 125) | func (p *Persister) ListSessionsByIdentity( method ExtendSession (line 179) | func (p *Persister) ExtendSession(ctx context.Context, sessionID uuid.UU... method UpsertSession (line 236) | func (p *Persister) UpsertSession(ctx context.Context, s *session.Sessio... method DeleteSession (line 306) | func (p *Persister) DeleteSession(ctx context.Context, sid uuid.UUID) (e... method DeleteSessionsByIdentity (line 325) | func (p *Persister) DeleteSessionsByIdentity(ctx context.Context, identi... method GetSessionByToken (line 346) | func (p *Persister) GetSessionByToken(ctx context.Context, token string,... method DeleteSessionByToken (line 391) | func (p *Persister) DeleteSessionByToken(ctx context.Context, token stri... method RevokeSessionByToken (line 412) | func (p *Persister) RevokeSessionByToken(ctx context.Context, token stri... method RevokeSessionById (line 434) | func (p *Persister) RevokeSessionById(ctx context.Context, sID uuid.UUID... method RevokeSession (line 457) | func (p *Persister) RevokeSession(ctx context.Context, iID, sID uuid.UUI... method RevokeSessionsIdentityExcept (line 477) | func (p *Persister) RevokeSessionsIdentityExcept(ctx context.Context, iI... method DeleteExpiredSessions (line 496) | func (p *Persister) DeleteExpiredSessions(ctx context.Context, expiresAt... FILE: persistence/sql/persister_sessiontokenexchanger.go function updateLimitClause (line 23) | func updateLimitClause(conn *pop.Connection) string { method CreateSessionTokenExchanger (line 33) | func (p *Persister) CreateSessionTokenExchanger(ctx context.Context, flo... method GetExchangerFromCode (line 47) | func (p *Persister) GetExchangerFromCode(ctx context.Context, initCode s... method UpdateSessionOnExchanger (line 65) | func (p *Persister) UpdateSessionOnExchanger(ctx context.Context, flowID... method CodeForFlow (line 78) | func (p *Persister) CodeForFlow(ctx context.Context, flowID uuid.UUID) (... method MoveToNewFlow (line 98) | func (p *Persister) MoveToNewFlow(ctx context.Context, oldFlow, newFlow ... method DeleteExpiredExchangers (line 111) | func (p *Persister) DeleteExpiredExchangers(ctx context.Context, at time... FILE: persistence/sql/persister_settings.go method CreateSettingsFlow (line 24) | func (p *Persister) CreateSettingsFlow(ctx context.Context, r *settings.... method GetSettingsFlow (line 33) | func (p *Persister) GetSettingsFlow(ctx context.Context, id uuid.UUID) (... method UpdateSettingsFlow (line 52) | func (p *Persister) UpdateSettingsFlow(ctx context.Context, r *settings.... method DeleteExpiredSettingsFlows (line 62) | func (p *Persister) DeleteExpiredSettingsFlows(ctx context.Context, expi... FILE: persistence/sql/persister_test.go function init (line 56) | func init() { function TestMain (line 63) | func TestMain(m *testing.M) { function pl (line 67) | func pl(t testing.TB) func(lvl logging.Level, s string, args ...interfac... function createCleanDatabases (line 96) | func createCleanDatabases(t testing.TB) map[string]string { function TestPersister (line 174) | func TestPersister(t *testing.T) { function getErr (line 315) | func getErr(args ...interface{}) error { function TestPersister_Transaction (line 326) | func TestPersister_Transaction(t *testing.T) { function Benchmark_BatchCreateIdentities (line 370) | func Benchmark_BatchCreateIdentities(b *testing.B) { function newLocalTestCRDBServer (line 428) | func newLocalTestCRDBServer(t testing.TB) string { FILE: persistence/sql/persister_transaction_helpers.go method Transaction (line 14) | func (p *Persister) Transaction(ctx context.Context, callback func(ctx c... method GetConnection (line 18) | func (p *Persister) GetConnection(ctx context.Context) *pop.Connection { FILE: persistence/sql/persister_verification.go method CreateVerificationFlow (line 25) | func (p *Persister) CreateVerificationFlow(ctx context.Context, r *verif... method GetVerificationFlow (line 35) | func (p *Persister) GetVerificationFlow(ctx context.Context, id uuid.UUI... method UpdateVerificationFlow (line 47) | func (p *Persister) UpdateVerificationFlow(ctx context.Context, r *verif... method CreateVerificationToken (line 56) | func (p *Persister) CreateVerificationToken(ctx context.Context, token *... method UseVerificationToken (line 73) | func (p *Persister) UseVerificationToken(ctx context.Context, fID uuid.U... method DeleteVerificationToken (line 110) | func (p *Persister) DeleteVerificationToken(ctx context.Context, token s... method DeleteExpiredVerificationFlows (line 119) | func (p *Persister) DeleteExpiredVerificationFlows(ctx context.Context, ... FILE: persistence/sql/persister_verification_code.go method CreateVerificationCode (line 21) | func (p *Persister) CreateVerificationCode(ctx context.Context, params *... method UseVerificationCode (line 54) | func (p *Persister) UseVerificationCode(ctx context.Context, flowID uuid... method DeleteVerificationCodesOfFlow (line 73) | func (p *Persister) DeleteVerificationCodesOfFlow(ctx context.Context, f... FILE: persistence/sql/testhelpers/network.go function DefaultNetworkWrapper (line 17) | func DefaultNetworkWrapper(p persistence.Persister) (courier.NetworkWrap... FILE: persistence/sql/update/update.go function Generic (line 19) | func Generic(ctx context.Context, c *pop.Connection, tracer trace.Tracer... FILE: pkg/client-go/api_courier.go type CourierAPI (line 23) | type CourierAPI interface type CourierAPIService (line 56) | type CourierAPIService method GetCourierMessage (line 77) | func (a *CourierAPIService) GetCourierMessage(ctx context.Context, id ... method GetCourierMessageExecute (line 88) | func (a *CourierAPIService) GetCourierMessageExecute(r CourierAPIGetCo... method ListCourierMessages (line 240) | func (a *CourierAPIService) ListCourierMessages(ctx context.Context) C... method ListCourierMessagesExecute (line 250) | func (a *CourierAPIService) ListCourierMessagesExecute(r CourierAPILis... type CourierAPIGetCourierMessageRequest (line 58) | type CourierAPIGetCourierMessageRequest struct method Execute (line 64) | func (r CourierAPIGetCourierMessageRequest) Execute() (*Message, *http... type CourierAPIListCourierMessagesRequest (line 195) | type CourierAPIListCourierMessagesRequest struct method PageSize (line 205) | func (r CourierAPIListCourierMessagesRequest) PageSize(pageSize int64)... method PageToken (line 211) | func (r CourierAPIListCourierMessagesRequest) PageToken(pageToken stri... method Status (line 217) | func (r CourierAPIListCourierMessagesRequest) Status(status CourierMes... method Recipient (line 223) | func (r CourierAPIListCourierMessagesRequest) Recipient(recipient stri... method Execute (line 228) | func (r CourierAPIListCourierMessagesRequest) Execute() ([]Message, *h... FILE: pkg/client-go/api_frontend.go type FrontendAPI (line 23) | type FrontendAPI interface type FrontendAPIService (line 959) | type FrontendAPIService method CreateBrowserLoginFlow (line 1056) | func (a *FrontendAPIService) CreateBrowserLoginFlow(ctx context.Contex... method CreateBrowserLoginFlowExecute (line 1066) | func (a *FrontendAPIService) CreateBrowserLoginFlowExecute(r FrontendA... method CreateBrowserLogoutFlow (line 1222) | func (a *FrontendAPIService) CreateBrowserLogoutFlow(ctx context.Conte... method CreateBrowserLogoutFlowExecute (line 1232) | func (a *FrontendAPIService) CreateBrowserLogoutFlowExecute(r Frontend... method CreateBrowserRecoveryFlow (line 1376) | func (a *FrontendAPIService) CreateBrowserRecoveryFlow(ctx context.Con... method CreateBrowserRecoveryFlowExecute (line 1386) | func (a *FrontendAPIService) CreateBrowserRecoveryFlowExecute(r Fronte... method CreateBrowserRegistrationFlow (line 1551) | func (a *FrontendAPIService) CreateBrowserRegistrationFlow(ctx context... method CreateBrowserRegistrationFlowExecute (line 1561) | func (a *FrontendAPIService) CreateBrowserRegistrationFlowExecute(r Fr... method CreateBrowserSettingsFlow (line 1713) | func (a *FrontendAPIService) CreateBrowserSettingsFlow(ctx context.Con... method CreateBrowserSettingsFlowExecute (line 1723) | func (a *FrontendAPIService) CreateBrowserSettingsFlowExecute(r Fronte... method CreateBrowserVerificationFlow (line 1874) | func (a *FrontendAPIService) CreateBrowserVerificationFlow(ctx context... method CreateBrowserVerificationFlowExecute (line 1884) | func (a *FrontendAPIService) CreateBrowserVerificationFlowExecute(r Fr... method CreateFedcmFlow (line 1985) | func (a *FrontendAPIService) CreateFedcmFlow(ctx context.Context) Fron... method CreateFedcmFlowExecute (line 1995) | func (a *FrontendAPIService) CreateFedcmFlowExecute(r FrontendAPICreat... method CreateNativeLoginFlow (line 2179) | func (a *FrontendAPIService) CreateNativeLoginFlow(ctx context.Context... method CreateNativeLoginFlowExecute (line 2189) | func (a *FrontendAPIService) CreateNativeLoginFlowExecute(r FrontendAP... method CreateNativeRecoveryFlow (line 2334) | func (a *FrontendAPIService) CreateNativeRecoveryFlow(ctx context.Cont... method CreateNativeRecoveryFlowExecute (line 2344) | func (a *FrontendAPIService) CreateNativeRecoveryFlowExecute(r Fronten... method CreateNativeRegistrationFlow (line 2499) | func (a *FrontendAPIService) CreateNativeRegistrationFlow(ctx context.... method CreateNativeRegistrationFlowExecute (line 2509) | func (a *FrontendAPIService) CreateNativeRegistrationFlowExecute(r Fro... method CreateNativeSettingsFlow (line 2658) | func (a *FrontendAPIService) CreateNativeSettingsFlow(ctx context.Cont... method CreateNativeSettingsFlowExecute (line 2668) | func (a *FrontendAPIService) CreateNativeSettingsFlowExecute(r Fronten... method CreateNativeVerificationFlow (line 2797) | func (a *FrontendAPIService) CreateNativeVerificationFlow(ctx context.... method CreateNativeVerificationFlowExecute (line 2807) | func (a *FrontendAPIService) CreateNativeVerificationFlowExecute(r Fro... method DisableMyOtherSessions (line 2934) | func (a *FrontendAPIService) DisableMyOtherSessions(ctx context.Contex... method DisableMyOtherSessionsExecute (line 2944) | func (a *FrontendAPIService) DisableMyOtherSessionsExecute(r FrontendA... method DisableMySession (line 3087) | func (a *FrontendAPIService) DisableMySession(ctx context.Context, id ... method DisableMySessionExecute (line 3096) | func (a *FrontendAPIService) DisableMySessionExecute(r FrontendAPIDisa... method ExchangeSessionToken (line 3225) | func (a *FrontendAPIService) ExchangeSessionToken(ctx context.Context)... method ExchangeSessionTokenExecute (line 3235) | func (a *FrontendAPIService) ExchangeSessionTokenExecute(r FrontendAPI... method GetFlowError (line 3387) | func (a *FrontendAPIService) GetFlowError(ctx context.Context) Fronten... method GetFlowErrorExecute (line 3397) | func (a *FrontendAPIService) GetFlowErrorExecute(r FrontendAPIGetFlowE... method GetLoginFlow (line 3559) | func (a *FrontendAPIService) GetLoginFlow(ctx context.Context) Fronten... method GetLoginFlowExecute (line 3569) | func (a *FrontendAPIService) GetLoginFlowExecute(r FrontendAPIGetLogin... method GetRecoveryFlow (line 3738) | func (a *FrontendAPIService) GetRecoveryFlow(ctx context.Context) Fron... method GetRecoveryFlowExecute (line 3748) | func (a *FrontendAPIService) GetRecoveryFlowExecute(r FrontendAPIGetRe... method GetRegistrationFlow (line 3911) | func (a *FrontendAPIService) GetRegistrationFlow(ctx context.Context) ... method GetRegistrationFlowExecute (line 3921) | func (a *FrontendAPIService) GetRegistrationFlowExecute(r FrontendAPIG... method GetSettingsFlow (line 4098) | func (a *FrontendAPIService) GetSettingsFlow(ctx context.Context) Fron... method GetSettingsFlowExecute (line 4108) | func (a *FrontendAPIService) GetSettingsFlowExecute(r FrontendAPIGetSe... method GetVerificationFlow (line 4291) | func (a *FrontendAPIService) GetVerificationFlow(ctx context.Context) ... method GetVerificationFlowExecute (line 4301) | func (a *FrontendAPIService) GetVerificationFlowExecute(r FrontendAPIG... method GetWebAuthnJavaScript (line 4436) | func (a *FrontendAPIService) GetWebAuthnJavaScript(ctx context.Context... method GetWebAuthnJavaScriptExecute (line 4446) | func (a *FrontendAPIService) GetWebAuthnJavaScriptExecute(r FrontendAP... method ListMySessions (line 4579) | func (a *FrontendAPIService) ListMySessions(ctx context.Context) Front... method ListMySessionsExecute (line 4589) | func (a *FrontendAPIService) ListMySessionsExecute(r FrontendAPIListMy... method PerformNativeLogout (line 4746) | func (a *FrontendAPIService) PerformNativeLogout(ctx context.Context) ... method PerformNativeLogoutExecute (line 4754) | func (a *FrontendAPIService) PerformNativeLogoutExecute(r FrontendAPIP... method ToSession (line 4937) | func (a *FrontendAPIService) ToSession(ctx context.Context) FrontendAP... method ToSessionExecute (line 4947) | func (a *FrontendAPIService) ToSessionExecute(r FrontendAPIToSessionRe... method UpdateFedcmFlow (line 5085) | func (a *FrontendAPIService) UpdateFedcmFlow(ctx context.Context) Fron... method UpdateFedcmFlowExecute (line 5095) | func (a *FrontendAPIService) UpdateFedcmFlowExecute(r FrontendAPIUpdat... method UpdateLoginFlow (line 5284) | func (a *FrontendAPIService) UpdateLoginFlow(ctx context.Context) Fron... method UpdateLoginFlowExecute (line 5294) | func (a *FrontendAPIService) UpdateLoginFlowExecute(r FrontendAPIUpdat... method UpdateLogoutFlow (line 5473) | func (a *FrontendAPIService) UpdateLogoutFlow(ctx context.Context) Fro... method UpdateLogoutFlowExecute (line 5481) | func (a *FrontendAPIService) UpdateLogoutFlowExecute(r FrontendAPIUpda... method UpdateRecoveryFlow (line 5620) | func (a *FrontendAPIService) UpdateRecoveryFlow(ctx context.Context) F... method UpdateRecoveryFlowExecute (line 5630) | func (a *FrontendAPIService) UpdateRecoveryFlowExecute(r FrontendAPIUp... method UpdateRegistrationFlow (line 5823) | func (a *FrontendAPIService) UpdateRegistrationFlow(ctx context.Contex... method UpdateRegistrationFlowExecute (line 5833) | func (a *FrontendAPIService) UpdateRegistrationFlowExecute(r FrontendA... method UpdateSettingsFlow (line 6045) | func (a *FrontendAPIService) UpdateSettingsFlow(ctx context.Context) F... method UpdateSettingsFlowExecute (line 6055) | func (a *FrontendAPIService) UpdateSettingsFlowExecute(r FrontendAPIUp... method UpdateVerificationFlow (line 6265) | func (a *FrontendAPIService) UpdateVerificationFlow(ctx context.Contex... method UpdateVerificationFlowExecute (line 6275) | func (a *FrontendAPIService) UpdateVerificationFlowExecute(r FrontendA... type FrontendAPICreateBrowserLoginFlowRequest (line 961) | type FrontendAPICreateBrowserLoginFlowRequest struct method Refresh (line 975) | func (r FrontendAPICreateBrowserLoginFlowRequest) Refresh(refresh bool... method Aal (line 981) | func (r FrontendAPICreateBrowserLoginFlowRequest) Aal(aal string) Fron... method ReturnTo (line 987) | func (r FrontendAPICreateBrowserLoginFlowRequest) ReturnTo(returnTo st... method Cookie (line 993) | func (r FrontendAPICreateBrowserLoginFlowRequest) Cookie(cookie string... method LoginChallenge (line 999) | func (r FrontendAPICreateBrowserLoginFlowRequest) LoginChallenge(login... method Organization (line 1005) | func (r FrontendAPICreateBrowserLoginFlowRequest) Organization(organiz... method Via (line 1011) | func (r FrontendAPICreateBrowserLoginFlowRequest) Via(via string) Fron... method IdentitySchema (line 1017) | func (r FrontendAPICreateBrowserLoginFlowRequest) IdentitySchema(ident... method Execute (line 1022) | func (r FrontendAPICreateBrowserLoginFlowRequest) Execute() (*LoginFlo... type FrontendAPICreateBrowserLogoutFlowRequest (line 1182) | type FrontendAPICreateBrowserLogoutFlowRequest struct method Cookie (line 1190) | func (r FrontendAPICreateBrowserLogoutFlowRequest) Cookie(cookie strin... method ReturnTo (line 1196) | func (r FrontendAPICreateBrowserLogoutFlowRequest) ReturnTo(returnTo s... method Execute (line 1201) | func (r FrontendAPICreateBrowserLogoutFlowRequest) Execute() (*LogoutF... type FrontendAPICreateBrowserRecoveryFlowRequest (line 1343) | type FrontendAPICreateBrowserRecoveryFlowRequest struct method ReturnTo (line 1350) | func (r FrontendAPICreateBrowserRecoveryFlowRequest) ReturnTo(returnTo... method Execute (line 1355) | func (r FrontendAPICreateBrowserRecoveryFlowRequest) Execute() (*Recov... type FrontendAPICreateBrowserRegistrationFlowRequest (line 1481) | type FrontendAPICreateBrowserRegistrationFlowRequest struct method ReturnTo (line 1492) | func (r FrontendAPICreateBrowserRegistrationFlowRequest) ReturnTo(retu... method LoginChallenge (line 1498) | func (r FrontendAPICreateBrowserRegistrationFlowRequest) LoginChalleng... method AfterVerificationReturnTo (line 1504) | func (r FrontendAPICreateBrowserRegistrationFlowRequest) AfterVerifica... method Organization (line 1510) | func (r FrontendAPICreateBrowserRegistrationFlowRequest) Organization(... method IdentitySchema (line 1516) | func (r FrontendAPICreateBrowserRegistrationFlowRequest) IdentitySchem... method Execute (line 1521) | func (r FrontendAPICreateBrowserRegistrationFlowRequest) Execute() (*R... type FrontendAPICreateBrowserSettingsFlowRequest (line 1657) | type FrontendAPICreateBrowserSettingsFlowRequest struct method ReturnTo (line 1665) | func (r FrontendAPICreateBrowserSettingsFlowRequest) ReturnTo(returnTo... method Cookie (line 1671) | func (r FrontendAPICreateBrowserSettingsFlowRequest) Cookie(cookie str... method Execute (line 1676) | func (r FrontendAPICreateBrowserSettingsFlowRequest) Execute() (*Setti... type FrontendAPICreateBrowserVerificationFlowRequest (line 1843) | type FrontendAPICreateBrowserVerificationFlowRequest struct method ReturnTo (line 1850) | func (r FrontendAPICreateBrowserVerificationFlowRequest) ReturnTo(retu... method Execute (line 1855) | func (r FrontendAPICreateBrowserVerificationFlowRequest) Execute() (*V... type FrontendAPICreateFedcmFlowRequest (line 1968) | type FrontendAPICreateFedcmFlowRequest struct method Execute (line 1973) | func (r FrontendAPICreateFedcmFlowRequest) Execute() (*CreateFedcmFlow... type FrontendAPICreateNativeLoginFlowRequest (line 2087) | type FrontendAPICreateNativeLoginFlowRequest struct method Refresh (line 2101) | func (r FrontendAPICreateNativeLoginFlowRequest) Refresh(refresh bool)... method Aal (line 2107) | func (r FrontendAPICreateNativeLoginFlowRequest) Aal(aal string) Front... method XSessionToken (line 2113) | func (r FrontendAPICreateNativeLoginFlowRequest) XSessionToken(xSessio... method ReturnSessionTokenExchangeCode (line 2119) | func (r FrontendAPICreateNativeLoginFlowRequest) ReturnSessionTokenExc... method ReturnTo (line 2125) | func (r FrontendAPICreateNativeLoginFlowRequest) ReturnTo(returnTo str... method Organization (line 2131) | func (r FrontendAPICreateNativeLoginFlowRequest) Organization(organiza... method Via (line 2137) | func (r FrontendAPICreateNativeLoginFlowRequest) Via(via string) Front... method IdentitySchema (line 2143) | func (r FrontendAPICreateNativeLoginFlowRequest) IdentitySchema(identi... method Execute (line 2148) | func (r FrontendAPICreateNativeLoginFlowRequest) Execute() (*LoginFlow... type FrontendAPICreateNativeRecoveryFlowRequest (line 2305) | type FrontendAPICreateNativeRecoveryFlowRequest struct method Execute (line 2310) | func (r FrontendAPICreateNativeRecoveryFlowRequest) Execute() (*Recove... type FrontendAPICreateNativeRegistrationFlowRequest (line 2436) | type FrontendAPICreateNativeRegistrationFlowRequest struct method ReturnSessionTokenExchangeCode (line 2446) | func (r FrontendAPICreateNativeRegistrationFlowRequest) ReturnSessionT... method ReturnTo (line 2452) | func (r FrontendAPICreateNativeRegistrationFlowRequest) ReturnTo(retur... method Organization (line 2458) | func (r FrontendAPICreateNativeRegistrationFlowRequest) Organization(o... method IdentitySchema (line 2464) | func (r FrontendAPICreateNativeRegistrationFlowRequest) IdentitySchema... method Execute (line 2469) | func (r FrontendAPICreateNativeRegistrationFlowRequest) Execute() (*Re... type FrontendAPICreateNativeSettingsFlowRequest (line 2613) | type FrontendAPICreateNativeSettingsFlowRequest struct method XSessionToken (line 2620) | func (r FrontendAPICreateNativeSettingsFlowRequest) XSessionToken(xSes... method Execute (line 2625) | func (r FrontendAPICreateNativeSettingsFlowRequest) Execute() (*Settin... type FrontendAPICreateNativeVerificationFlowRequest (line 2763) | type FrontendAPICreateNativeVerificationFlowRequest struct method ReturnTo (line 2770) | func (r FrontendAPICreateNativeVerificationFlowRequest) ReturnTo(retur... method Execute (line 2775) | func (r FrontendAPICreateNativeVerificationFlowRequest) Execute() (*Ve... type FrontendAPIDisableMyOtherSessionsRequest (line 2902) | type FrontendAPIDisableMyOtherSessionsRequest struct method XSessionToken (line 2910) | func (r FrontendAPIDisableMyOtherSessionsRequest) XSessionToken(xSessi... method Cookie (line 2916) | func (r FrontendAPIDisableMyOtherSessionsRequest) Cookie(cookie string... method Execute (line 2921) | func (r FrontendAPIDisableMyOtherSessionsRequest) Execute() (*DeleteMy... type FrontendAPIDisableMySessionRequest (line 3053) | type FrontendAPIDisableMySessionRequest struct method XSessionToken (line 3062) | func (r FrontendAPIDisableMySessionRequest) XSessionToken(xSessionToke... method Cookie (line 3068) | func (r FrontendAPIDisableMySessionRequest) Cookie(cookie string) Fron... method Execute (line 3073) | func (r FrontendAPIDisableMySessionRequest) Execute() (*http.Response,... type FrontendAPIExchangeSessionTokenRequest (line 3196) | type FrontendAPIExchangeSessionTokenRequest struct method InitCode (line 3204) | func (r FrontendAPIExchangeSessionTokenRequest) InitCode(initCode stri... method ReturnToCode (line 3210) | func (r FrontendAPIExchangeSessionTokenRequest) ReturnToCode(returnToC... method Execute (line 3215) | func (r FrontendAPIExchangeSessionTokenRequest) Execute() (*Successful... type FrontendAPIGetFlowErrorRequest (line 3357) | type FrontendAPIGetFlowErrorRequest struct method Id (line 3364) | func (r FrontendAPIGetFlowErrorRequest) Id(id string) FrontendAPIGetFl... method Execute (line 3369) | func (r FrontendAPIGetFlowErrorRequest) Execute() (*FlowError, *http.R... type FrontendAPIGetLoginFlowRequest (line 3506) | type FrontendAPIGetLoginFlowRequest struct method Id (line 3514) | func (r FrontendAPIGetLoginFlowRequest) Id(id string) FrontendAPIGetLo... method Cookie (line 3520) | func (r FrontendAPIGetLoginFlowRequest) Cookie(cookie string) Frontend... method Execute (line 3525) | func (r FrontendAPIGetLoginFlowRequest) Execute() (*LoginFlow, *http.R... type FrontendAPIGetRecoveryFlowRequest (line 3690) | type FrontendAPIGetRecoveryFlowRequest struct method Id (line 3698) | func (r FrontendAPIGetRecoveryFlowRequest) Id(id string) FrontendAPIGe... method Cookie (line 3704) | func (r FrontendAPIGetRecoveryFlowRequest) Cookie(cookie string) Front... method Execute (line 3709) | func (r FrontendAPIGetRecoveryFlowRequest) Execute() (*RecoveryFlow, *... type FrontendAPIGetRegistrationFlowRequest (line 3858) | type FrontendAPIGetRegistrationFlowRequest struct method Id (line 3866) | func (r FrontendAPIGetRegistrationFlowRequest) Id(id string) FrontendA... method Cookie (line 3872) | func (r FrontendAPIGetRegistrationFlowRequest) Cookie(cookie string) F... method Execute (line 3877) | func (r FrontendAPIGetRegistrationFlowRequest) Execute() (*Registratio... type FrontendAPIGetSettingsFlowRequest (line 4042) | type FrontendAPIGetSettingsFlowRequest struct method Id (line 4051) | func (r FrontendAPIGetSettingsFlowRequest) Id(id string) FrontendAPIGe... method XSessionToken (line 4057) | func (r FrontendAPIGetSettingsFlowRequest) XSessionToken(xSessionToken... method Cookie (line 4063) | func (r FrontendAPIGetSettingsFlowRequest) Cookie(cookie string) Front... method Execute (line 4068) | func (r FrontendAPIGetSettingsFlowRequest) Execute() (*SettingsFlow, *... type FrontendAPIGetVerificationFlowRequest (line 4243) | type FrontendAPIGetVerificationFlowRequest struct method Id (line 4251) | func (r FrontendAPIGetVerificationFlowRequest) Id(id string) FrontendA... method Cookie (line 4257) | func (r FrontendAPIGetVerificationFlowRequest) Cookie(cookie string) F... method Execute (line 4262) | func (r FrontendAPIGetVerificationFlowRequest) Execute() (*Verificatio... type FrontendAPIGetWebAuthnJavaScriptRequest (line 4411) | type FrontendAPIGetWebAuthnJavaScriptRequest struct method Execute (line 4416) | func (r FrontendAPIGetWebAuthnJavaScriptRequest) Execute() (string, *h... type FrontendAPIListMySessionsRequest (line 4519) | type FrontendAPIListMySessionsRequest struct method PerPage (line 4531) | func (r FrontendAPIListMySessionsRequest) PerPage(perPage int64) Front... method Page (line 4537) | func (r FrontendAPIListMySessionsRequest) Page(page int64) FrontendAPI... method PageSize (line 4543) | func (r FrontendAPIListMySessionsRequest) PageSize(pageSize int64) Fro... method PageToken (line 4549) | func (r FrontendAPIListMySessionsRequest) PageToken(pageToken string) ... method XSessionToken (line 4555) | func (r FrontendAPIListMySessionsRequest) XSessionToken(xSessionToken ... method Cookie (line 4561) | func (r FrontendAPIListMySessionsRequest) Cookie(cookie string) Fronte... method Execute (line 4566) | func (r FrontendAPIListMySessionsRequest) Execute() ([]Session, *http.... type FrontendAPIPerformNativeLogoutRequest (line 4716) | type FrontendAPIPerformNativeLogoutRequest struct method PerformNativeLogoutBody (line 4722) | func (r FrontendAPIPerformNativeLogoutRequest) PerformNativeLogoutBody... method Execute (line 4727) | func (r FrontendAPIPerformNativeLogoutRequest) Execute() (*http.Respon... type FrontendAPIToSessionRequest (line 4841) | type FrontendAPIToSessionRequest struct method XSessionToken (line 4850) | func (r FrontendAPIToSessionRequest) XSessionToken(xSessionToken strin... method Cookie (line 4856) | func (r FrontendAPIToSessionRequest) Cookie(cookie string) FrontendAPI... method TokenizeAs (line 4862) | func (r FrontendAPIToSessionRequest) TokenizeAs(tokenizeAs string) Fro... method Execute (line 4867) | func (r FrontendAPIToSessionRequest) Execute() (*Session, *http.Respon... type FrontendAPIUpdateFedcmFlowRequest (line 5059) | type FrontendAPIUpdateFedcmFlowRequest struct method UpdateFedcmFlowBody (line 5065) | func (r FrontendAPIUpdateFedcmFlowRequest) UpdateFedcmFlowBody(updateF... method Execute (line 5070) | func (r FrontendAPIUpdateFedcmFlowRequest) Execute() (*SuccessfulNativ... type FrontendAPIUpdateLoginFlowRequest (line 5214) | type FrontendAPIUpdateLoginFlowRequest struct method Flow (line 5224) | func (r FrontendAPIUpdateLoginFlowRequest) Flow(flow string) FrontendA... method UpdateLoginFlowBody (line 5229) | func (r FrontendAPIUpdateLoginFlowRequest) UpdateLoginFlowBody(updateL... method XSessionToken (line 5235) | func (r FrontendAPIUpdateLoginFlowRequest) XSessionToken(xSessionToken... method Cookie (line 5241) | func (r FrontendAPIUpdateLoginFlowRequest) Cookie(cookie string) Front... method Execute (line 5246) | func (r FrontendAPIUpdateLoginFlowRequest) Execute() (*SuccessfulNativ... type FrontendAPIUpdateLogoutFlowRequest (line 5423) | type FrontendAPIUpdateLogoutFlowRequest struct method Token (line 5432) | func (r FrontendAPIUpdateLogoutFlowRequest) Token(token string) Fronte... method ReturnTo (line 5438) | func (r FrontendAPIUpdateLogoutFlowRequest) ReturnTo(returnTo string) ... method Cookie (line 5444) | func (r FrontendAPIUpdateLogoutFlowRequest) Cookie(cookie string) Fron... method Execute (line 5449) | func (r FrontendAPIUpdateLogoutFlowRequest) Execute() (*http.Response,... type FrontendAPIUpdateRecoveryFlowRequest (line 5561) | type FrontendAPIUpdateRecoveryFlowRequest struct method Flow (line 5571) | func (r FrontendAPIUpdateRecoveryFlowRequest) Flow(flow string) Fronte... method UpdateRecoveryFlowBody (line 5576) | func (r FrontendAPIUpdateRecoveryFlowRequest) UpdateRecoveryFlowBody(u... method Token (line 5582) | func (r FrontendAPIUpdateRecoveryFlowRequest) Token(token string) Fron... method Cookie (line 5588) | func (r FrontendAPIUpdateRecoveryFlowRequest) Cookie(cookie string) Fr... method Execute (line 5593) | func (r FrontendAPIUpdateRecoveryFlowRequest) Execute() (*RecoveryFlow... type FrontendAPIUpdateRegistrationFlowRequest (line 5759) | type FrontendAPIUpdateRegistrationFlowRequest struct method Flow (line 5768) | func (r FrontendAPIUpdateRegistrationFlowRequest) Flow(flow string) Fr... method UpdateRegistrationFlowBody (line 5773) | func (r FrontendAPIUpdateRegistrationFlowRequest) UpdateRegistrationFl... method Cookie (line 5779) | func (r FrontendAPIUpdateRegistrationFlowRequest) Cookie(cookie string... method Execute (line 5784) | func (r FrontendAPIUpdateRegistrationFlowRequest) Execute() (*Successf... type FrontendAPIUpdateSettingsFlowRequest (line 5959) | type FrontendAPIUpdateSettingsFlowRequest struct method Flow (line 5969) | func (r FrontendAPIUpdateSettingsFlowRequest) Flow(flow string) Fronte... method UpdateSettingsFlowBody (line 5974) | func (r FrontendAPIUpdateSettingsFlowRequest) UpdateSettingsFlowBody(u... method XSessionToken (line 5980) | func (r FrontendAPIUpdateSettingsFlowRequest) XSessionToken(xSessionTo... method Cookie (line 5986) | func (r FrontendAPIUpdateSettingsFlowRequest) Cookie(cookie string) Fr... method Execute (line 5991) | func (r FrontendAPIUpdateSettingsFlowRequest) Execute() (*SettingsFlow... type FrontendAPIUpdateVerificationFlowRequest (line 6206) | type FrontendAPIUpdateVerificationFlowRequest struct method Flow (line 6216) | func (r FrontendAPIUpdateVerificationFlowRequest) Flow(flow string) Fr... method UpdateVerificationFlowBody (line 6221) | func (r FrontendAPIUpdateVerificationFlowRequest) UpdateVerificationFl... method Token (line 6227) | func (r FrontendAPIUpdateVerificationFlowRequest) Token(token string) ... method Cookie (line 6233) | func (r FrontendAPIUpdateVerificationFlowRequest) Cookie(cookie string... method Execute (line 6238) | func (r FrontendAPIUpdateVerificationFlowRequest) Execute() (*Verifica... FILE: pkg/client-go/api_identity.go type IdentityAPI (line 24) | type IdentityAPI interface type IdentityAPIService (line 349) | type IdentityAPIService method BatchPatchIdentities (line 395) | func (a *IdentityAPIService) BatchPatchIdentities(ctx context.Context)... method BatchPatchIdentitiesExecute (line 405) | func (a *IdentityAPIService) BatchPatchIdentitiesExecute(r IdentityAPI... method CreateIdentity (line 549) | func (a *IdentityAPIService) CreateIdentity(ctx context.Context) Ident... method CreateIdentityExecute (line 559) | func (a *IdentityAPIService) CreateIdentityExecute(r IdentityAPICreate... method CreateRecoveryCodeForIdentity (line 702) | func (a *IdentityAPIService) CreateRecoveryCodeForIdentity(ctx context... method CreateRecoveryCodeForIdentityExecute (line 712) | func (a *IdentityAPIService) CreateRecoveryCodeForIdentityExecute(r Id... method CreateRecoveryLinkForIdentity (line 861) | func (a *IdentityAPIService) CreateRecoveryLinkForIdentity(ctx context... method CreateRecoveryLinkForIdentityExecute (line 871) | func (a *IdentityAPIService) CreateRecoveryLinkForIdentityExecute(r Id... method DeleteIdentity (line 1013) | func (a *IdentityAPIService) DeleteIdentity(ctx context.Context, id st... method DeleteIdentityExecute (line 1022) | func (a *IdentityAPIService) DeleteIdentityExecute(r IdentityAPIDelete... method DeleteIdentityCredentials (line 1148) | func (a *IdentityAPIService) DeleteIdentityCredentials(ctx context.Con... method DeleteIdentityCredentialsExecute (line 1158) | func (a *IdentityAPIService) DeleteIdentityCredentialsExecute(r Identi... method DeleteIdentitySessions (line 1278) | func (a *IdentityAPIService) DeleteIdentitySessions(ctx context.Contex... method DeleteIdentitySessionsExecute (line 1287) | func (a *IdentityAPIService) DeleteIdentitySessionsExecute(r IdentityA... method DisableSession (line 1425) | func (a *IdentityAPIService) DisableSession(ctx context.Context, id st... method DisableSessionExecute (line 1434) | func (a *IdentityAPIService) DisableSessionExecute(r IdentityAPIDisabl... method ExtendSession (line 1571) | func (a *IdentityAPIService) ExtendSession(ctx context.Context, id str... method ExtendSessionExecute (line 1582) | func (a *IdentityAPIService) ExtendSessionExecute(r IdentityAPIExtendS... method GetIdentity (line 1727) | func (a *IdentityAPIService) GetIdentity(ctx context.Context, id strin... method GetIdentityExecute (line 1738) | func (a *IdentityAPIService) GetIdentityExecute(r IdentityAPIGetIdenti... method GetIdentityByExternalID (line 1883) | func (a *IdentityAPIService) GetIdentityByExternalID(ctx context.Conte... method GetIdentityByExternalIDExecute (line 1894) | func (a *IdentityAPIService) GetIdentityByExternalIDExecute(r Identity... method GetIdentitySchema (line 2031) | func (a *IdentityAPIService) GetIdentitySchema(ctx context.Context, id... method GetIdentitySchemaExecute (line 2042) | func (a *IdentityAPIService) GetIdentitySchemaExecute(r IdentityAPIGet... method GetSession (line 2163) | func (a *IdentityAPIService) GetSession(ctx context.Context, id string... method GetSessionExecute (line 2174) | func (a *IdentityAPIService) GetSessionExecute(r IdentityAPIGetSession... method ListIdentities (line 2379) | func (a *IdentityAPIService) ListIdentities(ctx context.Context) Ident... method ListIdentitiesExecute (line 2389) | func (a *IdentityAPIService) ListIdentitiesExecute(r IdentityAPIListId... method ListIdentitySchemas (line 2581) | func (a *IdentityAPIService) ListIdentitySchemas(ctx context.Context) ... method ListIdentitySchemasExecute (line 2591) | func (a *IdentityAPIService) ListIdentitySchemasExecute(r IdentityAPIL... method ListIdentitySessions (line 2744) | func (a *IdentityAPIService) ListIdentitySessions(ctx context.Context,... method ListIdentitySessionsExecute (line 2755) | func (a *IdentityAPIService) ListIdentitySessionsExecute(r IdentityAPI... method ListSessions (line 2939) | func (a *IdentityAPIService) ListSessions(ctx context.Context) Identit... method ListSessionsExecute (line 2949) | func (a *IdentityAPIService) ListSessionsExecute(r IdentityAPIListSess... method PatchIdentity (line 3104) | func (a *IdentityAPIService) PatchIdentity(ctx context.Context, id str... method PatchIdentityExecute (line 3115) | func (a *IdentityAPIService) PatchIdentityExecute(r IdentityAPIPatchId... method UpdateIdentity (line 3275) | func (a *IdentityAPIService) UpdateIdentity(ctx context.Context, id st... method UpdateIdentityExecute (line 3286) | func (a *IdentityAPIService) UpdateIdentityExecute(r IdentityAPIUpdate... type IdentityAPIBatchPatchIdentitiesRequest (line 351) | type IdentityAPIBatchPatchIdentitiesRequest struct method PatchIdentitiesBody (line 357) | func (r IdentityAPIBatchPatchIdentitiesRequest) PatchIdentitiesBody(pa... method Execute (line 362) | func (r IdentityAPIBatchPatchIdentitiesRequest) Execute() (*BatchPatch... type IdentityAPICreateIdentityRequest (line 524) | type IdentityAPICreateIdentityRequest struct method CreateIdentityBody (line 530) | func (r IdentityAPICreateIdentityRequest) CreateIdentityBody(createIde... method Execute (line 535) | func (r IdentityAPICreateIdentityRequest) Execute() (*Identity, *http.... type IdentityAPICreateRecoveryCodeForIdentityRequest (line 678) | type IdentityAPICreateRecoveryCodeForIdentityRequest struct method CreateRecoveryCodeForIdentityBody (line 684) | func (r IdentityAPICreateRecoveryCodeForIdentityRequest) CreateRecover... method Execute (line 689) | func (r IdentityAPICreateRecoveryCodeForIdentityRequest) Execute() (*R... type IdentityAPICreateRecoveryLinkForIdentityRequest (line 831) | type IdentityAPICreateRecoveryLinkForIdentityRequest struct method ReturnTo (line 838) | func (r IdentityAPICreateRecoveryLinkForIdentityRequest) ReturnTo(retu... method CreateRecoveryLinkForIdentityBody (line 843) | func (r IdentityAPICreateRecoveryLinkForIdentityRequest) CreateRecover... method Execute (line 848) | func (r IdentityAPICreateRecoveryLinkForIdentityRequest) Execute() (*R... type IdentityAPIDeleteIdentityRequest (line 993) | type IdentityAPIDeleteIdentityRequest struct method Execute (line 999) | func (r IdentityAPIDeleteIdentityRequest) Execute() (*http.Response, e... type IdentityAPIDeleteIdentityCredentialsRequest (line 1119) | type IdentityAPIDeleteIdentityCredentialsRequest struct method Identifier (line 1128) | func (r IdentityAPIDeleteIdentityCredentialsRequest) Identifier(identi... method Execute (line 1133) | func (r IdentityAPIDeleteIdentityCredentialsRequest) Execute() (*http.... type IdentityAPIDeleteIdentitySessionsRequest (line 1259) | type IdentityAPIDeleteIdentitySessionsRequest struct method Execute (line 1265) | func (r IdentityAPIDeleteIdentitySessionsRequest) Execute() (*http.Res... type IdentityAPIDisableSessionRequest (line 1406) | type IdentityAPIDisableSessionRequest struct method Execute (line 1412) | func (r IdentityAPIDisableSessionRequest) Execute() (*http.Response, e... type IdentityAPIExtendSessionRequest (line 1542) | type IdentityAPIExtendSessionRequest struct method Execute (line 1548) | func (r IdentityAPIExtendSessionRequest) Execute() (*Session, *http.Re... type IdentityAPIGetIdentityRequest (line 1700) | type IdentityAPIGetIdentityRequest struct method IncludeCredential (line 1708) | func (r IdentityAPIGetIdentityRequest) IncludeCredential(includeCreden... method Execute (line 1713) | func (r IdentityAPIGetIdentityRequest) Execute() (*Identity, *http.Res... type IdentityAPIGetIdentityByExternalIDRequest (line 1856) | type IdentityAPIGetIdentityByExternalIDRequest struct method IncludeCredential (line 1864) | func (r IdentityAPIGetIdentityByExternalIDRequest) IncludeCredential(i... method Execute (line 1869) | func (r IdentityAPIGetIdentityByExternalIDRequest) Execute() (*Identit... type IdentityAPIGetIdentitySchemaRequest (line 2012) | type IdentityAPIGetIdentitySchemaRequest struct method Execute (line 2018) | func (r IdentityAPIGetIdentitySchemaRequest) Execute() (map[string]int... type IdentityAPIGetSessionRequest (line 2135) | type IdentityAPIGetSessionRequest struct method Expand (line 2143) | func (r IdentityAPIGetSessionRequest) Expand(expand []string) Identity... method Execute (line 2148) | func (r IdentityAPIGetSessionRequest) Execute() (*Session, *http.Respo... type IdentityAPIListIdentitiesRequest (line 2292) | type IdentityAPIListIdentitiesRequest struct method PerPage (line 2308) | func (r IdentityAPIListIdentitiesRequest) PerPage(perPage int64) Ident... method Page (line 2314) | func (r IdentityAPIListIdentitiesRequest) Page(page int64) IdentityAPI... method PageSize (line 2320) | func (r IdentityAPIListIdentitiesRequest) PageSize(pageSize int64) Ide... method PageToken (line 2326) | func (r IdentityAPIListIdentitiesRequest) PageToken(pageToken string) ... method Consistency (line 2332) | func (r IdentityAPIListIdentitiesRequest) Consistency(consistency stri... method Ids (line 2338) | func (r IdentityAPIListIdentitiesRequest) Ids(ids []string) IdentityAP... method CredentialsIdentifier (line 2344) | func (r IdentityAPIListIdentitiesRequest) CredentialsIdentifier(creden... method PreviewCredentialsIdentifierSimilar (line 2350) | func (r IdentityAPIListIdentitiesRequest) PreviewCredentialsIdentifier... method IncludeCredential (line 2356) | func (r IdentityAPIListIdentitiesRequest) IncludeCredential(includeCre... method OrganizationId (line 2362) | func (r IdentityAPIListIdentitiesRequest) OrganizationId(organizationI... method Execute (line 2367) | func (r IdentityAPIListIdentitiesRequest) Execute() ([]Identity, *http... type IdentityAPIListIdentitySchemasRequest (line 2536) | type IdentityAPIListIdentitySchemasRequest struct method PerPage (line 2546) | func (r IdentityAPIListIdentitySchemasRequest) PerPage(perPage int64) ... method Page (line 2552) | func (r IdentityAPIListIdentitySchemasRequest) Page(page int64) Identi... method PageSize (line 2558) | func (r IdentityAPIListIdentitySchemasRequest) PageSize(pageSize int64... method PageToken (line 2564) | func (r IdentityAPIListIdentitySchemasRequest) PageToken(pageToken str... method Execute (line 2569) | func (r IdentityAPIListIdentitySchemasRequest) Execute() ([]IdentitySc... type IdentityAPIListIdentitySessionsRequest (line 2690) | type IdentityAPIListIdentitySessionsRequest struct method PerPage (line 2702) | func (r IdentityAPIListIdentitySessionsRequest) PerPage(perPage int64)... method Page (line 2708) | func (r IdentityAPIListIdentitySessionsRequest) Page(page int64) Ident... method PageSize (line 2714) | func (r IdentityAPIListIdentitySessionsRequest) PageSize(pageSize int6... method PageToken (line 2720) | func (r IdentityAPIListIdentitySessionsRequest) PageToken(pageToken st... method Active (line 2726) | func (r IdentityAPIListIdentitySessionsRequest) Active(active bool) Id... method Execute (line 2731) | func (r IdentityAPIListIdentitySessionsRequest) Execute() ([]Session, ... type IdentityAPIListSessionsRequest (line 2894) | type IdentityAPIListSessionsRequest struct method PageSize (line 2904) | func (r IdentityAPIListSessionsRequest) PageSize(pageSize int64) Ident... method PageToken (line 2910) | func (r IdentityAPIListSessionsRequest) PageToken(pageToken string) Id... method Active (line 2916) | func (r IdentityAPIListSessionsRequest) Active(active bool) IdentityAP... method Expand (line 2922) | func (r IdentityAPIListSessionsRequest) Expand(expand []string) Identi... method Execute (line 2927) | func (r IdentityAPIListSessionsRequest) Execute() ([]Session, *http.Re... type IdentityAPIPatchIdentityRequest (line 3078) | type IdentityAPIPatchIdentityRequest struct method JsonPatch (line 3085) | func (r IdentityAPIPatchIdentityRequest) JsonPatch(jsonPatch []JsonPat... method Execute (line 3090) | func (r IdentityAPIPatchIdentityRequest) Execute() (*Identity, *http.R... type IdentityAPIUpdateIdentityRequest (line 3246) | type IdentityAPIUpdateIdentityRequest struct method UpdateIdentityBody (line 3253) | func (r IdentityAPIUpdateIdentityRequest) UpdateIdentityBody(updateIde... method Execute (line 3258) | func (r IdentityAPIUpdateIdentityRequest) Execute() (*Identity, *http.... FILE: pkg/client-go/api_metadata.go type MetadataAPI (line 22) | type MetadataAPI interface type MetadataAPIService (line 88) | type MetadataAPIService method GetVersion (line 113) | func (a *MetadataAPIService) GetVersion(ctx context.Context) MetadataA... method GetVersionExecute (line 123) | func (a *MetadataAPIService) GetVersionExecute(r MetadataAPIGetVersion... method IsAlive (line 220) | func (a *MetadataAPIService) IsAlive(ctx context.Context) MetadataAPII... method IsAliveExecute (line 230) | func (a *MetadataAPIService) IsAliveExecute(r MetadataAPIIsAliveReques... method IsReady (line 335) | func (a *MetadataAPIService) IsReady(ctx context.Context) MetadataAPII... method IsReadyExecute (line 345) | func (a *MetadataAPIService) IsReadyExecute(r MetadataAPIIsReadyReques... type MetadataAPIGetVersionRequest (line 90) | type MetadataAPIGetVersionRequest struct method Execute (line 95) | func (r MetadataAPIGetVersionRequest) Execute() (*GetVersion200Respons... type MetadataAPIIsAliveRequest (line 196) | type MetadataAPIIsAliveRequest struct method Execute (line 201) | func (r MetadataAPIIsAliveRequest) Execute() (*IsAlive200Response, *ht... type MetadataAPIIsReadyRequest (line 311) | type MetadataAPIIsReadyRequest struct method Execute (line 316) | func (r MetadataAPIIsReadyRequest) Execute() (*IsAlive200Response, *ht... FILE: pkg/client-go/client.go type APIClient (line 46) | type APIClient struct method callAPI (line 257) | func (c *APIClient) callAPI(request *http.Request) (*http.Response, er... method GetConfig (line 283) | func (c *APIClient) GetConfig() *Configuration { method prepareRequest (line 294) | func (c *APIClient) prepareRequest( method decode (line 438) | func (c *APIClient) decode(v interface{}, b []byte, contentType string... type service (line 61) | type service struct function NewAPIClient (line 67) | func NewAPIClient(cfg *Configuration) *APIClient { function atoi (line 85) | func atoi(in string) (int, error) { function selectHeaderContentType (line 90) | func selectHeaderContentType(contentTypes []string) string { function selectHeaderAccept (line 101) | func selectHeaderAccept(accepts []string) string { function contains (line 114) | func contains(haystack []string, needle string) bool { function typeCheckParameter (line 124) | func typeCheckParameter(obj interface{}, expected string, name string) e... function parameterValueToString (line 137) | func parameterValueToString(obj interface{}, key string) string { function parameterAddToHeaderOrQuery (line 158) | func parameterAddToHeaderOrQuery(headerOrQueryParams interface{}, keyPre... function parameterToJson (line 248) | func parameterToJson(obj interface{}) (string, error) { type formFile (line 287) | type formFile struct function addFile (line 494) | func addFile(w *multipart.Writer, fieldName, path string) error { function setBody (line 514) | func setBody(body interface{}, contentType string) (bodyBuf *bytes.Buffe... function detectContentType (line 551) | func detectContentType(body interface{}) string { type cacheControl (line 572) | type cacheControl function parseCacheControl (line 574) | func parseCacheControl(headers http.Header) cacheControl { function CacheExpires (line 593) | func CacheExpires(r *http.Response) time.Time { function strlen (line 621) | func strlen(s string) int { type GenericOpenAPIError (line 626) | type GenericOpenAPIError struct method Error (line 633) | func (e GenericOpenAPIError) Error() string { method Body (line 638) | func (e GenericOpenAPIError) Body() []byte { method Model (line 643) | func (e GenericOpenAPIError) Model() interface{} { function formatErrorMessage (line 648) | func formatErrorMessage(status string, v interface{}) string { FILE: pkg/client-go/configuration.go type contextKey (line 25) | type contextKey method String (line 27) | func (c contextKey) String() string { type BasicAuth (line 49) | type BasicAuth struct type APIKey (line 55) | type APIKey struct type ServerVariable (line 61) | type ServerVariable struct type ServerConfiguration (line 68) | type ServerConfiguration struct type ServerConfigurations (line 75) | type ServerConfigurations method URL (line 112) | func (sc ServerConfigurations) URL(index int, variables map[string]str... type Configuration (line 78) | type Configuration struct method AddDefaultHeader (line 107) | func (c *Configuration) AddDefaultHeader(key string, value string) { method ServerURL (line 140) | func (c *Configuration) ServerURL(index int, variables map[string]stri... method ServerURLWithContext (line 197) | func (c *Configuration) ServerURLWithContext(ctx context.Context, endp... function NewConfiguration (line 90) | func NewConfiguration() *Configuration { function getServerIndex (line 144) | func getServerIndex(ctx context.Context) (int, error) { function getServerOperationIndex (line 155) | func getServerOperationIndex(ctx context.Context, endpoint string) (int,... function getServerVariables (line 170) | func getServerVariables(ctx context.Context) (map[string]string, error) { function getServerOperationVariables (line 181) | func getServerOperationVariables(ctx context.Context, endpoint string) (... FILE: pkg/client-go/model_authenticator_assurance_level.go type AuthenticatorAssuranceLevel (line 20) | type AuthenticatorAssuranceLevel method UnmarshalJSON (line 38) | func (v *AuthenticatorAssuranceLevel) UnmarshalJSON(src []byte) error { method IsValid (line 67) | func (v AuthenticatorAssuranceLevel) IsValid() bool { method Ptr (line 77) | func (v AuthenticatorAssuranceLevel) Ptr() *AuthenticatorAssuranceLevel { constant AUTHENTICATORASSURANCELEVEL_AAL0 (line 24) | AUTHENTICATORASSURANCELEVEL_AAL0 AuthenticatorAssuranceLevel = "aal0" constant AUTHENTICATORASSURANCELEVEL_AAL1 (line 25) | AUTHENTICATORASSURANCELEVEL_AAL1 AuthenticatorAssuranceLevel = "aal1" constant AUTHENTICATORASSURANCELEVEL_AAL2 (line 26) | AUTHENTICATORASSURANCELEVEL_AAL2 AuthenticatorAssuranceLevel = "aal2" constant AUTHENTICATORASSURANCELEVEL_AAL3 (line 27) | AUTHENTICATORASSURANCELEVEL_AAL3 AuthenticatorAssuranceLevel = "aal3" function NewAuthenticatorAssuranceLevelFromValue (line 57) | func NewAuthenticatorAssuranceLevelFromValue(v string) (*AuthenticatorAs... type NullableAuthenticatorAssuranceLevel (line 81) | type NullableAuthenticatorAssuranceLevel struct method Get (line 86) | func (v NullableAuthenticatorAssuranceLevel) Get() *AuthenticatorAssur... method Set (line 90) | func (v *NullableAuthenticatorAssuranceLevel) Set(val *AuthenticatorAs... method IsSet (line 95) | func (v NullableAuthenticatorAssuranceLevel) IsSet() bool { method Unset (line 99) | func (v *NullableAuthenticatorAssuranceLevel) Unset() { method MarshalJSON (line 108) | func (v NullableAuthenticatorAssuranceLevel) MarshalJSON() ([]byte, er... method UnmarshalJSON (line 112) | func (v *NullableAuthenticatorAssuranceLevel) UnmarshalJSON(src []byte... function NewNullableAuthenticatorAssuranceLevel (line 104) | func NewNullableAuthenticatorAssuranceLevel(val *AuthenticatorAssuranceL... FILE: pkg/client-go/model_batch_patch_identities_response.go type BatchPatchIdentitiesResponse (line 22) | type BatchPatchIdentitiesResponse struct method GetIdentities (line 48) | func (o *BatchPatchIdentitiesResponse) GetIdentities() []IdentityPatch... method GetIdentitiesOk (line 58) | func (o *BatchPatchIdentitiesResponse) GetIdentitiesOk() ([]IdentityPa... method HasIdentities (line 66) | func (o *BatchPatchIdentitiesResponse) HasIdentities() bool { method SetIdentities (line 75) | func (o *BatchPatchIdentitiesResponse) SetIdentities(v []IdentityPatch... method MarshalJSON (line 79) | func (o BatchPatchIdentitiesResponse) MarshalJSON() ([]byte, error) { method ToMap (line 87) | func (o BatchPatchIdentitiesResponse) ToMap() (map[string]interface{},... method UnmarshalJSON (line 100) | func (o *BatchPatchIdentitiesResponse) UnmarshalJSON(data []byte) (err... type _BatchPatchIdentitiesResponse (line 28) | type _BatchPatchIdentitiesResponse function NewBatchPatchIdentitiesResponse (line 34) | func NewBatchPatchIdentitiesResponse() *BatchPatchIdentitiesResponse { function NewBatchPatchIdentitiesResponseWithDefaults (line 42) | func NewBatchPatchIdentitiesResponseWithDefaults() *BatchPatchIdentities... type NullableBatchPatchIdentitiesResponse (line 121) | type NullableBatchPatchIdentitiesResponse struct method Get (line 126) | func (v NullableBatchPatchIdentitiesResponse) Get() *BatchPatchIdentit... method Set (line 130) | func (v *NullableBatchPatchIdentitiesResponse) Set(val *BatchPatchIden... method IsSet (line 135) | func (v NullableBatchPatchIdentitiesResponse) IsSet() bool { method Unset (line 139) | func (v *NullableBatchPatchIdentitiesResponse) Unset() { method MarshalJSON (line 148) | func (v NullableBatchPatchIdentitiesResponse) MarshalJSON() ([]byte, e... method UnmarshalJSON (line 152) | func (v *NullableBatchPatchIdentitiesResponse) UnmarshalJSON(src []byt... function NewNullableBatchPatchIdentitiesResponse (line 144) | func NewNullableBatchPatchIdentitiesResponse(val *BatchPatchIdentitiesRe... FILE: pkg/client-go/model_consistency_request_parameters.go type ConsistencyRequestParameters (line 22) | type ConsistencyRequestParameters struct method GetConsistency (line 48) | func (o *ConsistencyRequestParameters) GetConsistency() string { method GetConsistencyOk (line 58) | func (o *ConsistencyRequestParameters) GetConsistencyOk() (*string, bo... method HasConsistency (line 66) | func (o *ConsistencyRequestParameters) HasConsistency() bool { method SetConsistency (line 75) | func (o *ConsistencyRequestParameters) SetConsistency(v string) { method MarshalJSON (line 79) | func (o ConsistencyRequestParameters) MarshalJSON() ([]byte, error) { method ToMap (line 87) | func (o ConsistencyRequestParameters) ToMap() (map[string]interface{},... method UnmarshalJSON (line 100) | func (o *ConsistencyRequestParameters) UnmarshalJSON(data []byte) (err... type _ConsistencyRequestParameters (line 28) | type _ConsistencyRequestParameters function NewConsistencyRequestParameters (line 34) | func NewConsistencyRequestParameters() *ConsistencyRequestParameters { function NewConsistencyRequestParametersWithDefaults (line 42) | func NewConsistencyRequestParametersWithDefaults() *ConsistencyRequestPa... type NullableConsistencyRequestParameters (line 121) | type NullableConsistencyRequestParameters struct method Get (line 126) | func (v NullableConsistencyRequestParameters) Get() *ConsistencyReques... method Set (line 130) | func (v *NullableConsistencyRequestParameters) Set(val *ConsistencyReq... method IsSet (line 135) | func (v NullableConsistencyRequestParameters) IsSet() bool { method Unset (line 139) | func (v *NullableConsistencyRequestParameters) Unset() { method MarshalJSON (line 148) | func (v NullableConsistencyRequestParameters) MarshalJSON() ([]byte, e... method UnmarshalJSON (line 152) | func (v *NullableConsistencyRequestParameters) UnmarshalJSON(src []byt... function NewNullableConsistencyRequestParameters (line 144) | func NewNullableConsistencyRequestParameters(val *ConsistencyRequestPara... FILE: pkg/client-go/model_continue_with.go type ContinueWith (line 20) | type ContinueWith struct method UnmarshalJSON (line 64) | func (dst *ContinueWith) UnmarshalJSON(data []byte) error { method MarshalJSON (line 197) | func (src ContinueWith) MarshalJSON() ([]byte, error) { method GetActualInstance (line 222) | func (obj *ContinueWith) GetActualInstance() interface{} { method GetActualInstanceValue (line 251) | func (obj ContinueWith) GetActualInstanceValue() interface{} { function ContinueWithRecoveryUiAsContinueWith (line 29) | func ContinueWithRecoveryUiAsContinueWith(v *ContinueWithRecoveryUi) Con... function ContinueWithRedirectBrowserToAsContinueWith (line 36) | func ContinueWithRedirectBrowserToAsContinueWith(v *ContinueWithRedirect... function ContinueWithSetOrySessionTokenAsContinueWith (line 43) | func ContinueWithSetOrySessionTokenAsContinueWith(v *ContinueWithSetOryS... function ContinueWithSettingsUiAsContinueWith (line 50) | func ContinueWithSettingsUiAsContinueWith(v *ContinueWithSettingsUi) Con... function ContinueWithVerificationUiAsContinueWith (line 57) | func ContinueWithVerificationUiAsContinueWith(v *ContinueWithVerificatio... type NullableContinueWith (line 276) | type NullableContinueWith struct method Get (line 281) | func (v NullableContinueWith) Get() *ContinueWith { method Set (line 285) | func (v *NullableContinueWith) Set(val *ContinueWith) { method IsSet (line 290) | func (v NullableContinueWith) IsSet() bool { method Unset (line 294) | func (v *NullableContinueWith) Unset() { method MarshalJSON (line 303) | func (v NullableContinueWith) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 307) | func (v *NullableContinueWith) UnmarshalJSON(src []byte) error { function NewNullableContinueWith (line 299) | func NewNullableContinueWith(val *ContinueWith) *NullableContinueWith { FILE: pkg/client-go/model_continue_with_recovery_ui.go type ContinueWithRecoveryUi (line 23) | type ContinueWithRecoveryUi struct method GetAction (line 52) | func (o *ContinueWithRecoveryUi) GetAction() string { method GetActionOk (line 63) | func (o *ContinueWithRecoveryUi) GetActionOk() (*string, bool) { method SetAction (line 71) | func (o *ContinueWithRecoveryUi) SetAction(v string) { method GetFlow (line 76) | func (o *ContinueWithRecoveryUi) GetFlow() ContinueWithRecoveryUiFlow { method GetFlowOk (line 87) | func (o *ContinueWithRecoveryUi) GetFlowOk() (*ContinueWithRecoveryUiF... method SetFlow (line 95) | func (o *ContinueWithRecoveryUi) SetFlow(v ContinueWithRecoveryUiFlow) { method MarshalJSON (line 99) | func (o ContinueWithRecoveryUi) MarshalJSON() ([]byte, error) { method ToMap (line 107) | func (o ContinueWithRecoveryUi) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 119) | func (o *ContinueWithRecoveryUi) UnmarshalJSON(data []byte) (err error) { type _ContinueWithRecoveryUi (line 30) | type _ContinueWithRecoveryUi function NewContinueWithRecoveryUi (line 36) | func NewContinueWithRecoveryUi(action string, flow ContinueWithRecoveryU... function NewContinueWithRecoveryUiWithDefaults (line 46) | func NewContinueWithRecoveryUiWithDefaults() *ContinueWithRecoveryUi { type NullableContinueWithRecoveryUi (line 163) | type NullableContinueWithRecoveryUi struct method Get (line 168) | func (v NullableContinueWithRecoveryUi) Get() *ContinueWithRecoveryUi { method Set (line 172) | func (v *NullableContinueWithRecoveryUi) Set(val *ContinueWithRecovery... method IsSet (line 177) | func (v NullableContinueWithRecoveryUi) IsSet() bool { method Unset (line 181) | func (v *NullableContinueWithRecoveryUi) Unset() { method MarshalJSON (line 190) | func (v NullableContinueWithRecoveryUi) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 194) | func (v *NullableContinueWithRecoveryUi) UnmarshalJSON(src []byte) err... function NewNullableContinueWithRecoveryUi (line 186) | func NewNullableContinueWithRecoveryUi(val *ContinueWithRecoveryUi) *Nul... FILE: pkg/client-go/model_continue_with_recovery_ui_flow.go type ContinueWithRecoveryUiFlow (line 23) | type ContinueWithRecoveryUiFlow struct method GetId (line 52) | func (o *ContinueWithRecoveryUiFlow) GetId() string { method GetIdOk (line 63) | func (o *ContinueWithRecoveryUiFlow) GetIdOk() (*string, bool) { method SetId (line 71) | func (o *ContinueWithRecoveryUiFlow) SetId(v string) { method GetUrl (line 76) | func (o *ContinueWithRecoveryUiFlow) GetUrl() string { method GetUrlOk (line 86) | func (o *ContinueWithRecoveryUiFlow) GetUrlOk() (*string, bool) { method HasUrl (line 94) | func (o *ContinueWithRecoveryUiFlow) HasUrl() bool { method SetUrl (line 103) | func (o *ContinueWithRecoveryUiFlow) SetUrl(v string) { method MarshalJSON (line 107) | func (o ContinueWithRecoveryUiFlow) MarshalJSON() ([]byte, error) { method ToMap (line 115) | func (o ContinueWithRecoveryUiFlow) ToMap() (map[string]interface{}, e... method UnmarshalJSON (line 129) | func (o *ContinueWithRecoveryUiFlow) UnmarshalJSON(data []byte) (err e... type _ContinueWithRecoveryUiFlow (line 31) | type _ContinueWithRecoveryUiFlow function NewContinueWithRecoveryUiFlow (line 37) | func NewContinueWithRecoveryUiFlow(id string) *ContinueWithRecoveryUiFlow { function NewContinueWithRecoveryUiFlowWithDefaults (line 46) | func NewContinueWithRecoveryUiFlowWithDefaults() *ContinueWithRecoveryUi... type NullableContinueWithRecoveryUiFlow (line 172) | type NullableContinueWithRecoveryUiFlow struct method Get (line 177) | func (v NullableContinueWithRecoveryUiFlow) Get() *ContinueWithRecover... method Set (line 181) | func (v *NullableContinueWithRecoveryUiFlow) Set(val *ContinueWithReco... method IsSet (line 186) | func (v NullableContinueWithRecoveryUiFlow) IsSet() bool { method Unset (line 190) | func (v *NullableContinueWithRecoveryUiFlow) Unset() { method MarshalJSON (line 199) | func (v NullableContinueWithRecoveryUiFlow) MarshalJSON() ([]byte, err... method UnmarshalJSON (line 203) | func (v *NullableContinueWithRecoveryUiFlow) UnmarshalJSON(src []byte)... function NewNullableContinueWithRecoveryUiFlow (line 195) | func NewNullableContinueWithRecoveryUiFlow(val *ContinueWithRecoveryUiFl... FILE: pkg/client-go/model_continue_with_redirect_browser_to.go type ContinueWithRedirectBrowserTo (line 23) | type ContinueWithRedirectBrowserTo struct method GetAction (line 53) | func (o *ContinueWithRedirectBrowserTo) GetAction() string { method GetActionOk (line 64) | func (o *ContinueWithRedirectBrowserTo) GetActionOk() (*string, bool) { method SetAction (line 72) | func (o *ContinueWithRedirectBrowserTo) SetAction(v string) { method GetRedirectBrowserTo (line 77) | func (o *ContinueWithRedirectBrowserTo) GetRedirectBrowserTo() string { method GetRedirectBrowserToOk (line 88) | func (o *ContinueWithRedirectBrowserTo) GetRedirectBrowserToOk() (*str... method SetRedirectBrowserTo (line 96) | func (o *ContinueWithRedirectBrowserTo) SetRedirectBrowserTo(v string) { method MarshalJSON (line 100) | func (o ContinueWithRedirectBrowserTo) MarshalJSON() ([]byte, error) { method ToMap (line 108) | func (o ContinueWithRedirectBrowserTo) ToMap() (map[string]interface{}... method UnmarshalJSON (line 120) | func (o *ContinueWithRedirectBrowserTo) UnmarshalJSON(data []byte) (er... type _ContinueWithRedirectBrowserTo (line 31) | type _ContinueWithRedirectBrowserTo function NewContinueWithRedirectBrowserTo (line 37) | func NewContinueWithRedirectBrowserTo(action string, redirectBrowserTo s... function NewContinueWithRedirectBrowserToWithDefaults (line 47) | func NewContinueWithRedirectBrowserToWithDefaults() *ContinueWithRedirec... type NullableContinueWithRedirectBrowserTo (line 164) | type NullableContinueWithRedirectBrowserTo struct method Get (line 169) | func (v NullableContinueWithRedirectBrowserTo) Get() *ContinueWithRedi... method Set (line 173) | func (v *NullableContinueWithRedirectBrowserTo) Set(val *ContinueWithR... method IsSet (line 178) | func (v NullableContinueWithRedirectBrowserTo) IsSet() bool { method Unset (line 182) | func (v *NullableContinueWithRedirectBrowserTo) Unset() { method MarshalJSON (line 191) | func (v NullableContinueWithRedirectBrowserTo) MarshalJSON() ([]byte, ... method UnmarshalJSON (line 195) | func (v *NullableContinueWithRedirectBrowserTo) UnmarshalJSON(src []by... function NewNullableContinueWithRedirectBrowserTo (line 187) | func NewNullableContinueWithRedirectBrowserTo(val *ContinueWithRedirectB... FILE: pkg/client-go/model_continue_with_set_ory_session_token.go type ContinueWithSetOrySessionToken (line 23) | type ContinueWithSetOrySessionToken struct method GetAction (line 53) | func (o *ContinueWithSetOrySessionToken) GetAction() string { method GetActionOk (line 64) | func (o *ContinueWithSetOrySessionToken) GetActionOk() (*string, bool) { method SetAction (line 72) | func (o *ContinueWithSetOrySessionToken) SetAction(v string) { method GetOrySessionToken (line 77) | func (o *ContinueWithSetOrySessionToken) GetOrySessionToken() string { method GetOrySessionTokenOk (line 88) | func (o *ContinueWithSetOrySessionToken) GetOrySessionTokenOk() (*stri... method SetOrySessionToken (line 96) | func (o *ContinueWithSetOrySessionToken) SetOrySessionToken(v string) { method MarshalJSON (line 100) | func (o ContinueWithSetOrySessionToken) MarshalJSON() ([]byte, error) { method ToMap (line 108) | func (o ContinueWithSetOrySessionToken) ToMap() (map[string]interface{... method UnmarshalJSON (line 120) | func (o *ContinueWithSetOrySessionToken) UnmarshalJSON(data []byte) (e... type _ContinueWithSetOrySessionToken (line 31) | type _ContinueWithSetOrySessionToken function NewContinueWithSetOrySessionToken (line 37) | func NewContinueWithSetOrySessionToken(action string, orySessionToken st... function NewContinueWithSetOrySessionTokenWithDefaults (line 47) | func NewContinueWithSetOrySessionTokenWithDefaults() *ContinueWithSetOry... type NullableContinueWithSetOrySessionToken (line 164) | type NullableContinueWithSetOrySessionToken struct method Get (line 169) | func (v NullableContinueWithSetOrySessionToken) Get() *ContinueWithSet... method Set (line 173) | func (v *NullableContinueWithSetOrySessionToken) Set(val *ContinueWith... method IsSet (line 178) | func (v NullableContinueWithSetOrySessionToken) IsSet() bool { method Unset (line 182) | func (v *NullableContinueWithSetOrySessionToken) Unset() { method MarshalJSON (line 191) | func (v NullableContinueWithSetOrySessionToken) MarshalJSON() ([]byte,... method UnmarshalJSON (line 195) | func (v *NullableContinueWithSetOrySessionToken) UnmarshalJSON(src []b... function NewNullableContinueWithSetOrySessionToken (line 187) | func NewNullableContinueWithSetOrySessionToken(val *ContinueWithSetOrySe... FILE: pkg/client-go/model_continue_with_settings_ui.go type ContinueWithSettingsUi (line 23) | type ContinueWithSettingsUi struct method GetAction (line 52) | func (o *ContinueWithSettingsUi) GetAction() string { method GetActionOk (line 63) | func (o *ContinueWithSettingsUi) GetActionOk() (*string, bool) { method SetAction (line 71) | func (o *ContinueWithSettingsUi) SetAction(v string) { method GetFlow (line 76) | func (o *ContinueWithSettingsUi) GetFlow() ContinueWithSettingsUiFlow { method GetFlowOk (line 87) | func (o *ContinueWithSettingsUi) GetFlowOk() (*ContinueWithSettingsUiF... method SetFlow (line 95) | func (o *ContinueWithSettingsUi) SetFlow(v ContinueWithSettingsUiFlow) { method MarshalJSON (line 99) | func (o ContinueWithSettingsUi) MarshalJSON() ([]byte, error) { method ToMap (line 107) | func (o ContinueWithSettingsUi) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 119) | func (o *ContinueWithSettingsUi) UnmarshalJSON(data []byte) (err error) { type _ContinueWithSettingsUi (line 30) | type _ContinueWithSettingsUi function NewContinueWithSettingsUi (line 36) | func NewContinueWithSettingsUi(action string, flow ContinueWithSettingsU... function NewContinueWithSettingsUiWithDefaults (line 46) | func NewContinueWithSettingsUiWithDefaults() *ContinueWithSettingsUi { type NullableContinueWithSettingsUi (line 163) | type NullableContinueWithSettingsUi struct method Get (line 168) | func (v NullableContinueWithSettingsUi) Get() *ContinueWithSettingsUi { method Set (line 172) | func (v *NullableContinueWithSettingsUi) Set(val *ContinueWithSettings... method IsSet (line 177) | func (v NullableContinueWithSettingsUi) IsSet() bool { method Unset (line 181) | func (v *NullableContinueWithSettingsUi) Unset() { method MarshalJSON (line 190) | func (v NullableContinueWithSettingsUi) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 194) | func (v *NullableContinueWithSettingsUi) UnmarshalJSON(src []byte) err... function NewNullableContinueWithSettingsUi (line 186) | func NewNullableContinueWithSettingsUi(val *ContinueWithSettingsUi) *Nul... FILE: pkg/client-go/model_continue_with_settings_ui_flow.go type ContinueWithSettingsUiFlow (line 23) | type ContinueWithSettingsUiFlow struct method GetId (line 52) | func (o *ContinueWithSettingsUiFlow) GetId() string { method GetIdOk (line 63) | func (o *ContinueWithSettingsUiFlow) GetIdOk() (*string, bool) { method SetId (line 71) | func (o *ContinueWithSettingsUiFlow) SetId(v string) { method GetUrl (line 76) | func (o *ContinueWithSettingsUiFlow) GetUrl() string { method GetUrlOk (line 86) | func (o *ContinueWithSettingsUiFlow) GetUrlOk() (*string, bool) { method HasUrl (line 94) | func (o *ContinueWithSettingsUiFlow) HasUrl() bool { method SetUrl (line 103) | func (o *ContinueWithSettingsUiFlow) SetUrl(v string) { method MarshalJSON (line 107) | func (o ContinueWithSettingsUiFlow) MarshalJSON() ([]byte, error) { method ToMap (line 115) | func (o ContinueWithSettingsUiFlow) ToMap() (map[string]interface{}, e... method UnmarshalJSON (line 129) | func (o *ContinueWithSettingsUiFlow) UnmarshalJSON(data []byte) (err e... type _ContinueWithSettingsUiFlow (line 31) | type _ContinueWithSettingsUiFlow function NewContinueWithSettingsUiFlow (line 37) | func NewContinueWithSettingsUiFlow(id string) *ContinueWithSettingsUiFlow { function NewContinueWithSettingsUiFlowWithDefaults (line 46) | func NewContinueWithSettingsUiFlowWithDefaults() *ContinueWithSettingsUi... type NullableContinueWithSettingsUiFlow (line 172) | type NullableContinueWithSettingsUiFlow struct method Get (line 177) | func (v NullableContinueWithSettingsUiFlow) Get() *ContinueWithSetting... method Set (line 181) | func (v *NullableContinueWithSettingsUiFlow) Set(val *ContinueWithSett... method IsSet (line 186) | func (v NullableContinueWithSettingsUiFlow) IsSet() bool { method Unset (line 190) | func (v *NullableContinueWithSettingsUiFlow) Unset() { method MarshalJSON (line 199) | func (v NullableContinueWithSettingsUiFlow) MarshalJSON() ([]byte, err... method UnmarshalJSON (line 203) | func (v *NullableContinueWithSettingsUiFlow) UnmarshalJSON(src []byte)... function NewNullableContinueWithSettingsUiFlow (line 195) | func NewNullableContinueWithSettingsUiFlow(val *ContinueWithSettingsUiFl... FILE: pkg/client-go/model_continue_with_verification_ui.go type ContinueWithVerificationUi (line 23) | type ContinueWithVerificationUi struct method GetAction (line 52) | func (o *ContinueWithVerificationUi) GetAction() string { method GetActionOk (line 63) | func (o *ContinueWithVerificationUi) GetActionOk() (*string, bool) { method SetAction (line 71) | func (o *ContinueWithVerificationUi) SetAction(v string) { method GetFlow (line 76) | func (o *ContinueWithVerificationUi) GetFlow() ContinueWithVerificatio... method GetFlowOk (line 87) | func (o *ContinueWithVerificationUi) GetFlowOk() (*ContinueWithVerific... method SetFlow (line 95) | func (o *ContinueWithVerificationUi) SetFlow(v ContinueWithVerificatio... method MarshalJSON (line 99) | func (o ContinueWithVerificationUi) MarshalJSON() ([]byte, error) { method ToMap (line 107) | func (o ContinueWithVerificationUi) ToMap() (map[string]interface{}, e... method UnmarshalJSON (line 119) | func (o *ContinueWithVerificationUi) UnmarshalJSON(data []byte) (err e... type _ContinueWithVerificationUi (line 30) | type _ContinueWithVerificationUi function NewContinueWithVerificationUi (line 36) | func NewContinueWithVerificationUi(action string, flow ContinueWithVerif... function NewContinueWithVerificationUiWithDefaults (line 46) | func NewContinueWithVerificationUiWithDefaults() *ContinueWithVerificati... type NullableContinueWithVerificationUi (line 163) | type NullableContinueWithVerificationUi struct method Get (line 168) | func (v NullableContinueWithVerificationUi) Get() *ContinueWithVerific... method Set (line 172) | func (v *NullableContinueWithVerificationUi) Set(val *ContinueWithVeri... method IsSet (line 177) | func (v NullableContinueWithVerificationUi) IsSet() bool { method Unset (line 181) | func (v *NullableContinueWithVerificationUi) Unset() { method MarshalJSON (line 190) | func (v NullableContinueWithVerificationUi) MarshalJSON() ([]byte, err... method UnmarshalJSON (line 194) | func (v *NullableContinueWithVerificationUi) UnmarshalJSON(src []byte)... function NewNullableContinueWithVerificationUi (line 186) | func NewNullableContinueWithVerificationUi(val *ContinueWithVerification... FILE: pkg/client-go/model_continue_with_verification_ui_flow.go type ContinueWithVerificationUiFlow (line 23) | type ContinueWithVerificationUiFlow struct method GetId (line 55) | func (o *ContinueWithVerificationUiFlow) GetId() string { method GetIdOk (line 66) | func (o *ContinueWithVerificationUiFlow) GetIdOk() (*string, bool) { method SetId (line 74) | func (o *ContinueWithVerificationUiFlow) SetId(v string) { method GetUrl (line 79) | func (o *ContinueWithVerificationUiFlow) GetUrl() string { method GetUrlOk (line 89) | func (o *ContinueWithVerificationUiFlow) GetUrlOk() (*string, bool) { method HasUrl (line 97) | func (o *ContinueWithVerificationUiFlow) HasUrl() bool { method SetUrl (line 106) | func (o *ContinueWithVerificationUiFlow) SetUrl(v string) { method GetVerifiableAddress (line 111) | func (o *ContinueWithVerificationUiFlow) GetVerifiableAddress() string { method GetVerifiableAddressOk (line 122) | func (o *ContinueWithVerificationUiFlow) GetVerifiableAddressOk() (*st... method SetVerifiableAddress (line 130) | func (o *ContinueWithVerificationUiFlow) SetVerifiableAddress(v string) { method MarshalJSON (line 134) | func (o ContinueWithVerificationUiFlow) MarshalJSON() ([]byte, error) { method ToMap (line 142) | func (o ContinueWithVerificationUiFlow) ToMap() (map[string]interface{... method UnmarshalJSON (line 157) | func (o *ContinueWithVerificationUiFlow) UnmarshalJSON(data []byte) (e... type _ContinueWithVerificationUiFlow (line 33) | type _ContinueWithVerificationUiFlow function NewContinueWithVerificationUiFlow (line 39) | func NewContinueWithVerificationUiFlow(id string, verifiableAddress stri... function NewContinueWithVerificationUiFlowWithDefaults (line 49) | func NewContinueWithVerificationUiFlowWithDefaults() *ContinueWithVerifi... type NullableContinueWithVerificationUiFlow (line 202) | type NullableContinueWithVerificationUiFlow struct method Get (line 207) | func (v NullableContinueWithVerificationUiFlow) Get() *ContinueWithVer... method Set (line 211) | func (v *NullableContinueWithVerificationUiFlow) Set(val *ContinueWith... method IsSet (line 216) | func (v NullableContinueWithVerificationUiFlow) IsSet() bool { method Unset (line 220) | func (v *NullableContinueWithVerificationUiFlow) Unset() { method MarshalJSON (line 229) | func (v NullableContinueWithVerificationUiFlow) MarshalJSON() ([]byte,... method UnmarshalJSON (line 233) | func (v *NullableContinueWithVerificationUiFlow) UnmarshalJSON(src []b... function NewNullableContinueWithVerificationUiFlow (line 225) | func NewNullableContinueWithVerificationUiFlow(val *ContinueWithVerifica... FILE: pkg/client-go/model_courier_message_status.go type CourierMessageStatus (line 20) | type CourierMessageStatus method UnmarshalJSON (line 38) | func (v *CourierMessageStatus) UnmarshalJSON(src []byte) error { method IsValid (line 67) | func (v CourierMessageStatus) IsValid() bool { method Ptr (line 77) | func (v CourierMessageStatus) Ptr() *CourierMessageStatus { constant COURIERMESSAGESTATUS_QUEUED (line 24) | COURIERMESSAGESTATUS_QUEUED CourierMessageStatus = "queued" constant COURIERMESSAGESTATUS_SENT (line 25) | COURIERMESSAGESTATUS_SENT CourierMessageStatus = "sent" constant COURIERMESSAGESTATUS_PROCESSING (line 26) | COURIERMESSAGESTATUS_PROCESSING CourierMessageStatus = "processing" constant COURIERMESSAGESTATUS_ABANDONED (line 27) | COURIERMESSAGESTATUS_ABANDONED CourierMessageStatus = "abandoned" function NewCourierMessageStatusFromValue (line 57) | func NewCourierMessageStatusFromValue(v string) (*CourierMessageStatus, ... type NullableCourierMessageStatus (line 81) | type NullableCourierMessageStatus struct method Get (line 86) | func (v NullableCourierMessageStatus) Get() *CourierMessageStatus { method Set (line 90) | func (v *NullableCourierMessageStatus) Set(val *CourierMessageStatus) { method IsSet (line 95) | func (v NullableCourierMessageStatus) IsSet() bool { method Unset (line 99) | func (v *NullableCourierMessageStatus) Unset() { method MarshalJSON (line 108) | func (v NullableCourierMessageStatus) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 112) | func (v *NullableCourierMessageStatus) UnmarshalJSON(src []byte) error { function NewNullableCourierMessageStatus (line 104) | func NewNullableCourierMessageStatus(val *CourierMessageStatus) *Nullabl... FILE: pkg/client-go/model_courier_message_type.go type CourierMessageType (line 20) | type CourierMessageType method UnmarshalJSON (line 34) | func (v *CourierMessageType) UnmarshalJSON(src []byte) error { method IsValid (line 63) | func (v CourierMessageType) IsValid() bool { method Ptr (line 73) | func (v CourierMessageType) Ptr() *CourierMessageType { constant COURIERMESSAGETYPE_EMAIL (line 24) | COURIERMESSAGETYPE_EMAIL CourierMessageType = "email" constant COURIERMESSAGETYPE_PHONE (line 25) | COURIERMESSAGETYPE_PHONE CourierMessageType = "phone" function NewCourierMessageTypeFromValue (line 53) | func NewCourierMessageTypeFromValue(v string) (*CourierMessageType, erro... type NullableCourierMessageType (line 77) | type NullableCourierMessageType struct method Get (line 82) | func (v NullableCourierMessageType) Get() *CourierMessageType { method Set (line 86) | func (v *NullableCourierMessageType) Set(val *CourierMessageType) { method IsSet (line 91) | func (v NullableCourierMessageType) IsSet() bool { method Unset (line 95) | func (v *NullableCourierMessageType) Unset() { method MarshalJSON (line 104) | func (v NullableCourierMessageType) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 108) | func (v *NullableCourierMessageType) UnmarshalJSON(src []byte) error { function NewNullableCourierMessageType (line 100) | func NewNullableCourierMessageType(val *CourierMessageType) *NullableCou... FILE: pkg/client-go/model_create_fedcm_flow_response.go type CreateFedcmFlowResponse (line 22) | type CreateFedcmFlowResponse struct method GetCsrfToken (line 48) | func (o *CreateFedcmFlowResponse) GetCsrfToken() string { method GetCsrfTokenOk (line 58) | func (o *CreateFedcmFlowResponse) GetCsrfTokenOk() (*string, bool) { method HasCsrfToken (line 66) | func (o *CreateFedcmFlowResponse) HasCsrfToken() bool { method SetCsrfToken (line 75) | func (o *CreateFedcmFlowResponse) SetCsrfToken(v string) { method GetProviders (line 80) | func (o *CreateFedcmFlowResponse) GetProviders() []Provider { method GetProvidersOk (line 90) | func (o *CreateFedcmFlowResponse) GetProvidersOk() ([]Provider, bool) { method HasProviders (line 98) | func (o *CreateFedcmFlowResponse) HasProviders() bool { method SetProviders (line 107) | func (o *CreateFedcmFlowResponse) SetProviders(v []Provider) { method MarshalJSON (line 111) | func (o CreateFedcmFlowResponse) MarshalJSON() ([]byte, error) { method ToMap (line 119) | func (o CreateFedcmFlowResponse) ToMap() (map[string]interface{}, erro... method UnmarshalJSON (line 135) | func (o *CreateFedcmFlowResponse) UnmarshalJSON(data []byte) (err erro... type _CreateFedcmFlowResponse (line 28) | type _CreateFedcmFlowResponse function NewCreateFedcmFlowResponse (line 34) | func NewCreateFedcmFlowResponse() *CreateFedcmFlowResponse { function NewCreateFedcmFlowResponseWithDefaults (line 42) | func NewCreateFedcmFlowResponseWithDefaults() *CreateFedcmFlowResponse { type NullableCreateFedcmFlowResponse (line 157) | type NullableCreateFedcmFlowResponse struct method Get (line 162) | func (v NullableCreateFedcmFlowResponse) Get() *CreateFedcmFlowResponse { method Set (line 166) | func (v *NullableCreateFedcmFlowResponse) Set(val *CreateFedcmFlowResp... method IsSet (line 171) | func (v NullableCreateFedcmFlowResponse) IsSet() bool { method Unset (line 175) | func (v *NullableCreateFedcmFlowResponse) Unset() { method MarshalJSON (line 184) | func (v NullableCreateFedcmFlowResponse) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 188) | func (v *NullableCreateFedcmFlowResponse) UnmarshalJSON(src []byte) er... function NewNullableCreateFedcmFlowResponse (line 180) | func NewNullableCreateFedcmFlowResponse(val *CreateFedcmFlowResponse) *N... FILE: pkg/client-go/model_create_identity_body.go type CreateIdentityBody (line 23) | type CreateIdentityBody struct method GetCredentials (line 67) | func (o *CreateIdentityBody) GetCredentials() IdentityWithCredentials { method GetCredentialsOk (line 77) | func (o *CreateIdentityBody) GetCredentialsOk() (*IdentityWithCredenti... method HasCredentials (line 85) | func (o *CreateIdentityBody) HasCredentials() bool { method SetCredentials (line 94) | func (o *CreateIdentityBody) SetCredentials(v IdentityWithCredentials) { method GetExternalId (line 99) | func (o *CreateIdentityBody) GetExternalId() string { method GetExternalIdOk (line 109) | func (o *CreateIdentityBody) GetExternalIdOk() (*string, bool) { method HasExternalId (line 117) | func (o *CreateIdentityBody) HasExternalId() bool { method SetExternalId (line 126) | func (o *CreateIdentityBody) SetExternalId(v string) { method GetMetadataAdmin (line 131) | func (o *CreateIdentityBody) GetMetadataAdmin() interface{} { method GetMetadataAdminOk (line 142) | func (o *CreateIdentityBody) GetMetadataAdminOk() (*interface{}, bool) { method HasMetadataAdmin (line 150) | func (o *CreateIdentityBody) HasMetadataAdmin() bool { method SetMetadataAdmin (line 159) | func (o *CreateIdentityBody) SetMetadataAdmin(v interface{}) { method GetMetadataPublic (line 164) | func (o *CreateIdentityBody) GetMetadataPublic() interface{} { method GetMetadataPublicOk (line 175) | func (o *CreateIdentityBody) GetMetadataPublicOk() (*interface{}, bool) { method HasMetadataPublic (line 183) | func (o *CreateIdentityBody) HasMetadataPublic() bool { method SetMetadataPublic (line 192) | func (o *CreateIdentityBody) SetMetadataPublic(v interface{}) { method GetOrganizationId (line 197) | func (o *CreateIdentityBody) GetOrganizationId() string { method GetOrganizationIdOk (line 208) | func (o *CreateIdentityBody) GetOrganizationIdOk() (*string, bool) { method HasOrganizationId (line 216) | func (o *CreateIdentityBody) HasOrganizationId() bool { method SetOrganizationId (line 225) | func (o *CreateIdentityBody) SetOrganizationId(v string) { method SetOrganizationIdNil (line 230) | func (o *CreateIdentityBody) SetOrganizationIdNil() { method UnsetOrganizationId (line 235) | func (o *CreateIdentityBody) UnsetOrganizationId() { method GetRecoveryAddresses (line 240) | func (o *CreateIdentityBody) GetRecoveryAddresses() []RecoveryIdentity... method GetRecoveryAddressesOk (line 250) | func (o *CreateIdentityBody) GetRecoveryAddressesOk() ([]RecoveryIdent... method HasRecoveryAddresses (line 258) | func (o *CreateIdentityBody) HasRecoveryAddresses() bool { method SetRecoveryAddresses (line 267) | func (o *CreateIdentityBody) SetRecoveryAddresses(v []RecoveryIdentity... method GetSchemaId (line 272) | func (o *CreateIdentityBody) GetSchemaId() string { method GetSchemaIdOk (line 283) | func (o *CreateIdentityBody) GetSchemaIdOk() (*string, bool) { method SetSchemaId (line 291) | func (o *CreateIdentityBody) SetSchemaId(v string) { method GetState (line 296) | func (o *CreateIdentityBody) GetState() string { method GetStateOk (line 306) | func (o *CreateIdentityBody) GetStateOk() (*string, bool) { method HasState (line 314) | func (o *CreateIdentityBody) HasState() bool { method SetState (line 323) | func (o *CreateIdentityBody) SetState(v string) { method GetTraits (line 328) | func (o *CreateIdentityBody) GetTraits() map[string]interface{} { method GetTraitsOk (line 339) | func (o *CreateIdentityBody) GetTraitsOk() (map[string]interface{}, bo... method SetTraits (line 347) | func (o *CreateIdentityBody) SetTraits(v map[string]interface{}) { method GetVerifiableAddresses (line 352) | func (o *CreateIdentityBody) GetVerifiableAddresses() []VerifiableIden... method GetVerifiableAddressesOk (line 362) | func (o *CreateIdentityBody) GetVerifiableAddressesOk() ([]VerifiableI... method HasVerifiableAddresses (line 370) | func (o *CreateIdentityBody) HasVerifiableAddresses() bool { method SetVerifiableAddresses (line 379) | func (o *CreateIdentityBody) SetVerifiableAddresses(v []VerifiableIden... method MarshalJSON (line 383) | func (o CreateIdentityBody) MarshalJSON() ([]byte, error) { method ToMap (line 391) | func (o CreateIdentityBody) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 427) | func (o *CreateIdentityBody) UnmarshalJSON(data []byte) (err error) { type _CreateIdentityBody (line 45) | type _CreateIdentityBody function NewCreateIdentityBody (line 51) | func NewCreateIdentityBody(schemaId string, traits map[string]interface{... function NewCreateIdentityBodyWithDefaults (line 61) | func NewCreateIdentityBodyWithDefaults() *CreateIdentityBody { type NullableCreateIdentityBody (line 479) | type NullableCreateIdentityBody struct method Get (line 484) | func (v NullableCreateIdentityBody) Get() *CreateIdentityBody { method Set (line 488) | func (v *NullableCreateIdentityBody) Set(val *CreateIdentityBody) { method IsSet (line 493) | func (v NullableCreateIdentityBody) IsSet() bool { method Unset (line 497) | func (v *NullableCreateIdentityBody) Unset() { method MarshalJSON (line 506) | func (v NullableCreateIdentityBody) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 510) | func (v *NullableCreateIdentityBody) UnmarshalJSON(src []byte) error { function NewNullableCreateIdentityBody (line 502) | func NewNullableCreateIdentityBody(val *CreateIdentityBody) *NullableCre... FILE: pkg/client-go/model_create_recovery_code_for_identity_body.go type CreateRecoveryCodeForIdentityBody (line 23) | type CreateRecoveryCodeForIdentityBody struct method GetExpiresIn (line 54) | func (o *CreateRecoveryCodeForIdentityBody) GetExpiresIn() string { method GetExpiresInOk (line 64) | func (o *CreateRecoveryCodeForIdentityBody) GetExpiresInOk() (*string,... method HasExpiresIn (line 72) | func (o *CreateRecoveryCodeForIdentityBody) HasExpiresIn() bool { method SetExpiresIn (line 81) | func (o *CreateRecoveryCodeForIdentityBody) SetExpiresIn(v string) { method GetFlowType (line 86) | func (o *CreateRecoveryCodeForIdentityBody) GetFlowType() string { method GetFlowTypeOk (line 96) | func (o *CreateRecoveryCodeForIdentityBody) GetFlowTypeOk() (*string, ... method HasFlowType (line 104) | func (o *CreateRecoveryCodeForIdentityBody) HasFlowType() bool { method SetFlowType (line 113) | func (o *CreateRecoveryCodeForIdentityBody) SetFlowType(v string) { method GetIdentityId (line 118) | func (o *CreateRecoveryCodeForIdentityBody) GetIdentityId() string { method GetIdentityIdOk (line 129) | func (o *CreateRecoveryCodeForIdentityBody) GetIdentityIdOk() (*string... method SetIdentityId (line 137) | func (o *CreateRecoveryCodeForIdentityBody) SetIdentityId(v string) { method MarshalJSON (line 141) | func (o CreateRecoveryCodeForIdentityBody) MarshalJSON() ([]byte, erro... method ToMap (line 149) | func (o CreateRecoveryCodeForIdentityBody) ToMap() (map[string]interfa... method UnmarshalJSON (line 166) | func (o *CreateRecoveryCodeForIdentityBody) UnmarshalJSON(data []byte)... type _CreateRecoveryCodeForIdentityBody (line 33) | type _CreateRecoveryCodeForIdentityBody function NewCreateRecoveryCodeForIdentityBody (line 39) | func NewCreateRecoveryCodeForIdentityBody(identityId string) *CreateReco... function NewCreateRecoveryCodeForIdentityBodyWithDefaults (line 48) | func NewCreateRecoveryCodeForIdentityBodyWithDefaults() *CreateRecoveryC... type NullableCreateRecoveryCodeForIdentityBody (line 210) | type NullableCreateRecoveryCodeForIdentityBody struct method Get (line 215) | func (v NullableCreateRecoveryCodeForIdentityBody) Get() *CreateRecove... method Set (line 219) | func (v *NullableCreateRecoveryCodeForIdentityBody) Set(val *CreateRec... method IsSet (line 224) | func (v NullableCreateRecoveryCodeForIdentityBody) IsSet() bool { method Unset (line 228) | func (v *NullableCreateRecoveryCodeForIdentityBody) Unset() { method MarshalJSON (line 237) | func (v NullableCreateRecoveryCodeForIdentityBody) MarshalJSON() ([]by... method UnmarshalJSON (line 241) | func (v *NullableCreateRecoveryCodeForIdentityBody) UnmarshalJSON(src ... function NewNullableCreateRecoveryCodeForIdentityBody (line 233) | func NewNullableCreateRecoveryCodeForIdentityBody(val *CreateRecoveryCod... FILE: pkg/client-go/model_create_recovery_link_for_identity_body.go type CreateRecoveryLinkForIdentityBody (line 23) | type CreateRecoveryLinkForIdentityBody struct method GetExpiresIn (line 52) | func (o *CreateRecoveryLinkForIdentityBody) GetExpiresIn() string { method GetExpiresInOk (line 62) | func (o *CreateRecoveryLinkForIdentityBody) GetExpiresInOk() (*string,... method HasExpiresIn (line 70) | func (o *CreateRecoveryLinkForIdentityBody) HasExpiresIn() bool { method SetExpiresIn (line 79) | func (o *CreateRecoveryLinkForIdentityBody) SetExpiresIn(v string) { method GetIdentityId (line 84) | func (o *CreateRecoveryLinkForIdentityBody) GetIdentityId() string { method GetIdentityIdOk (line 95) | func (o *CreateRecoveryLinkForIdentityBody) GetIdentityIdOk() (*string... method SetIdentityId (line 103) | func (o *CreateRecoveryLinkForIdentityBody) SetIdentityId(v string) { method MarshalJSON (line 107) | func (o CreateRecoveryLinkForIdentityBody) MarshalJSON() ([]byte, erro... method ToMap (line 115) | func (o CreateRecoveryLinkForIdentityBody) ToMap() (map[string]interfa... method UnmarshalJSON (line 129) | func (o *CreateRecoveryLinkForIdentityBody) UnmarshalJSON(data []byte)... type _CreateRecoveryLinkForIdentityBody (line 31) | type _CreateRecoveryLinkForIdentityBody function NewCreateRecoveryLinkForIdentityBody (line 37) | func NewCreateRecoveryLinkForIdentityBody(identityId string) *CreateReco... function NewCreateRecoveryLinkForIdentityBodyWithDefaults (line 46) | func NewCreateRecoveryLinkForIdentityBodyWithDefaults() *CreateRecoveryL... type NullableCreateRecoveryLinkForIdentityBody (line 172) | type NullableCreateRecoveryLinkForIdentityBody struct method Get (line 177) | func (v NullableCreateRecoveryLinkForIdentityBody) Get() *CreateRecove... method Set (line 181) | func (v *NullableCreateRecoveryLinkForIdentityBody) Set(val *CreateRec... method IsSet (line 186) | func (v NullableCreateRecoveryLinkForIdentityBody) IsSet() bool { method Unset (line 190) | func (v *NullableCreateRecoveryLinkForIdentityBody) Unset() { method MarshalJSON (line 199) | func (v NullableCreateRecoveryLinkForIdentityBody) MarshalJSON() ([]by... method UnmarshalJSON (line 203) | func (v *NullableCreateRecoveryLinkForIdentityBody) UnmarshalJSON(src ... function NewNullableCreateRecoveryLinkForIdentityBody (line 195) | func NewNullableCreateRecoveryLinkForIdentityBody(val *CreateRecoveryLin... FILE: pkg/client-go/model_delete_my_sessions_count.go type DeleteMySessionsCount (line 22) | type DeleteMySessionsCount struct method GetCount (line 48) | func (o *DeleteMySessionsCount) GetCount() int64 { method GetCountOk (line 58) | func (o *DeleteMySessionsCount) GetCountOk() (*int64, bool) { method HasCount (line 66) | func (o *DeleteMySessionsCount) HasCount() bool { method SetCount (line 75) | func (o *DeleteMySessionsCount) SetCount(v int64) { method MarshalJSON (line 79) | func (o DeleteMySessionsCount) MarshalJSON() ([]byte, error) { method ToMap (line 87) | func (o DeleteMySessionsCount) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 100) | func (o *DeleteMySessionsCount) UnmarshalJSON(data []byte) (err error) { type _DeleteMySessionsCount (line 28) | type _DeleteMySessionsCount function NewDeleteMySessionsCount (line 34) | func NewDeleteMySessionsCount() *DeleteMySessionsCount { function NewDeleteMySessionsCountWithDefaults (line 42) | func NewDeleteMySessionsCountWithDefaults() *DeleteMySessionsCount { type NullableDeleteMySessionsCount (line 121) | type NullableDeleteMySessionsCount struct method Get (line 126) | func (v NullableDeleteMySessionsCount) Get() *DeleteMySessionsCount { method Set (line 130) | func (v *NullableDeleteMySessionsCount) Set(val *DeleteMySessionsCount) { method IsSet (line 135) | func (v NullableDeleteMySessionsCount) IsSet() bool { method Unset (line 139) | func (v *NullableDeleteMySessionsCount) Unset() { method MarshalJSON (line 148) | func (v NullableDeleteMySessionsCount) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 152) | func (v *NullableDeleteMySessionsCount) UnmarshalJSON(src []byte) error { function NewNullableDeleteMySessionsCount (line 144) | func NewNullableDeleteMySessionsCount(val *DeleteMySessionsCount) *Nulla... FILE: pkg/client-go/model_error_authenticator_assurance_level_not_satisfied.go type ErrorAuthenticatorAssuranceLevelNotSatisfied (line 22) | type ErrorAuthenticatorAssuranceLevelNotSatisfied struct method GetError (line 49) | func (o *ErrorAuthenticatorAssuranceLevelNotSatisfied) GetError() Gene... method GetErrorOk (line 59) | func (o *ErrorAuthenticatorAssuranceLevelNotSatisfied) GetErrorOk() (*... method HasError (line 67) | func (o *ErrorAuthenticatorAssuranceLevelNotSatisfied) HasError() bool { method SetError (line 76) | func (o *ErrorAuthenticatorAssuranceLevelNotSatisfied) SetError(v Gene... method GetRedirectBrowserTo (line 81) | func (o *ErrorAuthenticatorAssuranceLevelNotSatisfied) GetRedirectBrow... method GetRedirectBrowserToOk (line 91) | func (o *ErrorAuthenticatorAssuranceLevelNotSatisfied) GetRedirectBrow... method HasRedirectBrowserTo (line 99) | func (o *ErrorAuthenticatorAssuranceLevelNotSatisfied) HasRedirectBrow... method SetRedirectBrowserTo (line 108) | func (o *ErrorAuthenticatorAssuranceLevelNotSatisfied) SetRedirectBrow... method MarshalJSON (line 112) | func (o ErrorAuthenticatorAssuranceLevelNotSatisfied) MarshalJSON() ([... method ToMap (line 120) | func (o ErrorAuthenticatorAssuranceLevelNotSatisfied) ToMap() (map[str... method UnmarshalJSON (line 136) | func (o *ErrorAuthenticatorAssuranceLevelNotSatisfied) UnmarshalJSON(d... type _ErrorAuthenticatorAssuranceLevelNotSatisfied (line 29) | type _ErrorAuthenticatorAssuranceLevelNotSatisfied function NewErrorAuthenticatorAssuranceLevelNotSatisfied (line 35) | func NewErrorAuthenticatorAssuranceLevelNotSatisfied() *ErrorAuthenticat... function NewErrorAuthenticatorAssuranceLevelNotSatisfiedWithDefaults (line 43) | func NewErrorAuthenticatorAssuranceLevelNotSatisfiedWithDefaults() *Erro... type NullableErrorAuthenticatorAssuranceLevelNotSatisfied (line 158) | type NullableErrorAuthenticatorAssuranceLevelNotSatisfied struct method Get (line 163) | func (v NullableErrorAuthenticatorAssuranceLevelNotSatisfied) Get() *E... method Set (line 167) | func (v *NullableErrorAuthenticatorAssuranceLevelNotSatisfied) Set(val... method IsSet (line 172) | func (v NullableErrorAuthenticatorAssuranceLevelNotSatisfied) IsSet() ... method Unset (line 176) | func (v *NullableErrorAuthenticatorAssuranceLevelNotSatisfied) Unset() { method MarshalJSON (line 185) | func (v NullableErrorAuthenticatorAssuranceLevelNotSatisfied) MarshalJ... method UnmarshalJSON (line 189) | func (v *NullableErrorAuthenticatorAssuranceLevelNotSatisfied) Unmarsh... function NewNullableErrorAuthenticatorAssuranceLevelNotSatisfied (line 181) | func NewNullableErrorAuthenticatorAssuranceLevelNotSatisfied(val *ErrorA... FILE: pkg/client-go/model_error_browser_location_change_required.go type ErrorBrowserLocationChangeRequired (line 22) | type ErrorBrowserLocationChangeRequired struct method GetError (line 49) | func (o *ErrorBrowserLocationChangeRequired) GetError() ErrorGeneric { method GetErrorOk (line 59) | func (o *ErrorBrowserLocationChangeRequired) GetErrorOk() (*ErrorGener... method HasError (line 67) | func (o *ErrorBrowserLocationChangeRequired) HasError() bool { method SetError (line 76) | func (o *ErrorBrowserLocationChangeRequired) SetError(v ErrorGeneric) { method GetRedirectBrowserTo (line 81) | func (o *ErrorBrowserLocationChangeRequired) GetRedirectBrowserTo() st... method GetRedirectBrowserToOk (line 91) | func (o *ErrorBrowserLocationChangeRequired) GetRedirectBrowserToOk() ... method HasRedirectBrowserTo (line 99) | func (o *ErrorBrowserLocationChangeRequired) HasRedirectBrowserTo() bo... method SetRedirectBrowserTo (line 108) | func (o *ErrorBrowserLocationChangeRequired) SetRedirectBrowserTo(v st... method MarshalJSON (line 112) | func (o ErrorBrowserLocationChangeRequired) MarshalJSON() ([]byte, err... method ToMap (line 120) | func (o ErrorBrowserLocationChangeRequired) ToMap() (map[string]interf... method UnmarshalJSON (line 136) | func (o *ErrorBrowserLocationChangeRequired) UnmarshalJSON(data []byte... type _ErrorBrowserLocationChangeRequired (line 29) | type _ErrorBrowserLocationChangeRequired function NewErrorBrowserLocationChangeRequired (line 35) | func NewErrorBrowserLocationChangeRequired() *ErrorBrowserLocationChange... function NewErrorBrowserLocationChangeRequiredWithDefaults (line 43) | func NewErrorBrowserLocationChangeRequiredWithDefaults() *ErrorBrowserLo... type NullableErrorBrowserLocationChangeRequired (line 158) | type NullableErrorBrowserLocationChangeRequired struct method Get (line 163) | func (v NullableErrorBrowserLocationChangeRequired) Get() *ErrorBrowse... method Set (line 167) | func (v *NullableErrorBrowserLocationChangeRequired) Set(val *ErrorBro... method IsSet (line 172) | func (v NullableErrorBrowserLocationChangeRequired) IsSet() bool { method Unset (line 176) | func (v *NullableErrorBrowserLocationChangeRequired) Unset() { method MarshalJSON (line 185) | func (v NullableErrorBrowserLocationChangeRequired) MarshalJSON() ([]b... method UnmarshalJSON (line 189) | func (v *NullableErrorBrowserLocationChangeRequired) UnmarshalJSON(src... function NewNullableErrorBrowserLocationChangeRequired (line 181) | func NewNullableErrorBrowserLocationChangeRequired(val *ErrorBrowserLoca... FILE: pkg/client-go/model_error_flow_replaced.go type ErrorFlowReplaced (line 22) | type ErrorFlowReplaced struct method GetError (line 49) | func (o *ErrorFlowReplaced) GetError() GenericError { method GetErrorOk (line 59) | func (o *ErrorFlowReplaced) GetErrorOk() (*GenericError, bool) { method HasError (line 67) | func (o *ErrorFlowReplaced) HasError() bool { method SetError (line 76) | func (o *ErrorFlowReplaced) SetError(v GenericError) { method GetUseFlowId (line 81) | func (o *ErrorFlowReplaced) GetUseFlowId() string { method GetUseFlowIdOk (line 91) | func (o *ErrorFlowReplaced) GetUseFlowIdOk() (*string, bool) { method HasUseFlowId (line 99) | func (o *ErrorFlowReplaced) HasUseFlowId() bool { method SetUseFlowId (line 108) | func (o *ErrorFlowReplaced) SetUseFlowId(v string) { method MarshalJSON (line 112) | func (o ErrorFlowReplaced) MarshalJSON() ([]byte, error) { method ToMap (line 120) | func (o ErrorFlowReplaced) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 136) | func (o *ErrorFlowReplaced) UnmarshalJSON(data []byte) (err error) { type _ErrorFlowReplaced (line 29) | type _ErrorFlowReplaced function NewErrorFlowReplaced (line 35) | func NewErrorFlowReplaced() *ErrorFlowReplaced { function NewErrorFlowReplacedWithDefaults (line 43) | func NewErrorFlowReplacedWithDefaults() *ErrorFlowReplaced { type NullableErrorFlowReplaced (line 158) | type NullableErrorFlowReplaced struct method Get (line 163) | func (v NullableErrorFlowReplaced) Get() *ErrorFlowReplaced { method Set (line 167) | func (v *NullableErrorFlowReplaced) Set(val *ErrorFlowReplaced) { method IsSet (line 172) | func (v NullableErrorFlowReplaced) IsSet() bool { method Unset (line 176) | func (v *NullableErrorFlowReplaced) Unset() { method MarshalJSON (line 185) | func (v NullableErrorFlowReplaced) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 189) | func (v *NullableErrorFlowReplaced) UnmarshalJSON(src []byte) error { function NewNullableErrorFlowReplaced (line 181) | func NewNullableErrorFlowReplaced(val *ErrorFlowReplaced) *NullableError... FILE: pkg/client-go/model_error_generic.go type ErrorGeneric (line 23) | type ErrorGeneric struct method GetError (line 49) | func (o *ErrorGeneric) GetError() GenericError { method GetErrorOk (line 60) | func (o *ErrorGeneric) GetErrorOk() (*GenericError, bool) { method SetError (line 68) | func (o *ErrorGeneric) SetError(v GenericError) { method MarshalJSON (line 72) | func (o ErrorGeneric) MarshalJSON() ([]byte, error) { method ToMap (line 80) | func (o ErrorGeneric) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 91) | func (o *ErrorGeneric) UnmarshalJSON(data []byte) (err error) { type _ErrorGeneric (line 28) | type _ErrorGeneric function NewErrorGeneric (line 34) | func NewErrorGeneric(error_ GenericError) *ErrorGeneric { function NewErrorGenericWithDefaults (line 43) | func NewErrorGenericWithDefaults() *ErrorGeneric { type NullableErrorGeneric (line 133) | type NullableErrorGeneric struct method Get (line 138) | func (v NullableErrorGeneric) Get() *ErrorGeneric { method Set (line 142) | func (v *NullableErrorGeneric) Set(val *ErrorGeneric) { method IsSet (line 147) | func (v NullableErrorGeneric) IsSet() bool { method Unset (line 151) | func (v *NullableErrorGeneric) Unset() { method MarshalJSON (line 160) | func (v NullableErrorGeneric) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 164) | func (v *NullableErrorGeneric) UnmarshalJSON(src []byte) error { function NewNullableErrorGeneric (line 156) | func NewNullableErrorGeneric(val *ErrorGeneric) *NullableErrorGeneric { FILE: pkg/client-go/model_flow_error.go type FlowError (line 24) | type FlowError struct method GetCreatedAt (line 56) | func (o *FlowError) GetCreatedAt() time.Time { method GetCreatedAtOk (line 66) | func (o *FlowError) GetCreatedAtOk() (*time.Time, bool) { method HasCreatedAt (line 74) | func (o *FlowError) HasCreatedAt() bool { method SetCreatedAt (line 83) | func (o *FlowError) SetCreatedAt(v time.Time) { method GetError (line 88) | func (o *FlowError) GetError() map[string]interface{} { method GetErrorOk (line 98) | func (o *FlowError) GetErrorOk() (map[string]interface{}, bool) { method HasError (line 106) | func (o *FlowError) HasError() bool { method SetError (line 115) | func (o *FlowError) SetError(v map[string]interface{}) { method GetId (line 120) | func (o *FlowError) GetId() string { method GetIdOk (line 131) | func (o *FlowError) GetIdOk() (*string, bool) { method SetId (line 139) | func (o *FlowError) SetId(v string) { method GetUpdatedAt (line 144) | func (o *FlowError) GetUpdatedAt() time.Time { method GetUpdatedAtOk (line 154) | func (o *FlowError) GetUpdatedAtOk() (*time.Time, bool) { method HasUpdatedAt (line 162) | func (o *FlowError) HasUpdatedAt() bool { method SetUpdatedAt (line 171) | func (o *FlowError) SetUpdatedAt(v time.Time) { method MarshalJSON (line 175) | func (o FlowError) MarshalJSON() ([]byte, error) { method ToMap (line 183) | func (o FlowError) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 203) | func (o *FlowError) UnmarshalJSON(data []byte) (err error) { type _FlowError (line 35) | type _FlowError function NewFlowError (line 41) | func NewFlowError(id string) *FlowError { function NewFlowErrorWithDefaults (line 50) | func NewFlowErrorWithDefaults() *FlowError { type NullableFlowError (line 248) | type NullableFlowError struct method Get (line 253) | func (v NullableFlowError) Get() *FlowError { method Set (line 257) | func (v *NullableFlowError) Set(val *FlowError) { method IsSet (line 262) | func (v NullableFlowError) IsSet() bool { method Unset (line 266) | func (v *NullableFlowError) Unset() { method MarshalJSON (line 275) | func (v NullableFlowError) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 279) | func (v *NullableFlowError) UnmarshalJSON(src []byte) error { function NewNullableFlowError (line 271) | func NewNullableFlowError(val *FlowError) *NullableFlowError { FILE: pkg/client-go/model_generic_error.go type GenericError (line 23) | type GenericError struct method GetCode (line 64) | func (o *GenericError) GetCode() int64 { method GetCodeOk (line 74) | func (o *GenericError) GetCodeOk() (*int64, bool) { method HasCode (line 82) | func (o *GenericError) HasCode() bool { method SetCode (line 91) | func (o *GenericError) SetCode(v int64) { method GetDebug (line 96) | func (o *GenericError) GetDebug() string { method GetDebugOk (line 106) | func (o *GenericError) GetDebugOk() (*string, bool) { method HasDebug (line 114) | func (o *GenericError) HasDebug() bool { method SetDebug (line 123) | func (o *GenericError) SetDebug(v string) { method GetDetails (line 128) | func (o *GenericError) GetDetails() map[string]interface{} { method GetDetailsOk (line 138) | func (o *GenericError) GetDetailsOk() (map[string]interface{}, bool) { method HasDetails (line 146) | func (o *GenericError) HasDetails() bool { method SetDetails (line 155) | func (o *GenericError) SetDetails(v map[string]interface{}) { method GetId (line 160) | func (o *GenericError) GetId() string { method GetIdOk (line 170) | func (o *GenericError) GetIdOk() (*string, bool) { method HasId (line 178) | func (o *GenericError) HasId() bool { method SetId (line 187) | func (o *GenericError) SetId(v string) { method GetMessage (line 192) | func (o *GenericError) GetMessage() string { method GetMessageOk (line 203) | func (o *GenericError) GetMessageOk() (*string, bool) { method SetMessage (line 211) | func (o *GenericError) SetMessage(v string) { method GetReason (line 216) | func (o *GenericError) GetReason() string { method GetReasonOk (line 226) | func (o *GenericError) GetReasonOk() (*string, bool) { method HasReason (line 234) | func (o *GenericError) HasReason() bool { method SetReason (line 243) | func (o *GenericError) SetReason(v string) { method GetRequest (line 248) | func (o *GenericError) GetRequest() string { method GetRequestOk (line 258) | func (o *GenericError) GetRequestOk() (*string, bool) { method HasRequest (line 266) | func (o *GenericError) HasRequest() bool { method SetRequest (line 275) | func (o *GenericError) SetRequest(v string) { method GetStatus (line 280) | func (o *GenericError) GetStatus() string { method GetStatusOk (line 290) | func (o *GenericError) GetStatusOk() (*string, bool) { method HasStatus (line 298) | func (o *GenericError) HasStatus() bool { method SetStatus (line 307) | func (o *GenericError) SetStatus(v string) { method MarshalJSON (line 311) | func (o GenericError) MarshalJSON() ([]byte, error) { method ToMap (line 319) | func (o GenericError) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 351) | func (o *GenericError) UnmarshalJSON(data []byte) (err error) { type _GenericError (line 43) | type _GenericError function NewGenericError (line 49) | func NewGenericError(message string) *GenericError { function NewGenericErrorWithDefaults (line 58) | func NewGenericErrorWithDefaults() *GenericError { type NullableGenericError (line 400) | type NullableGenericError struct method Get (line 405) | func (v NullableGenericError) Get() *GenericError { method Set (line 409) | func (v *NullableGenericError) Set(val *GenericError) { method IsSet (line 414) | func (v NullableGenericError) IsSet() bool { method Unset (line 418) | func (v *NullableGenericError) Unset() { method MarshalJSON (line 427) | func (v NullableGenericError) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 431) | func (v *NullableGenericError) UnmarshalJSON(src []byte) error { function NewNullableGenericError (line 423) | func NewNullableGenericError(val *GenericError) *NullableGenericError { FILE: pkg/client-go/model_get_version_200_response.go type GetVersion200Response (line 23) | type GetVersion200Response struct method GetVersion (line 50) | func (o *GetVersion200Response) GetVersion() string { method GetVersionOk (line 61) | func (o *GetVersion200Response) GetVersionOk() (*string, bool) { method SetVersion (line 69) | func (o *GetVersion200Response) SetVersion(v string) { method MarshalJSON (line 73) | func (o GetVersion200Response) MarshalJSON() ([]byte, error) { method ToMap (line 81) | func (o GetVersion200Response) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 92) | func (o *GetVersion200Response) UnmarshalJSON(data []byte) (err error) { type _GetVersion200Response (line 29) | type _GetVersion200Response function NewGetVersion200Response (line 35) | func NewGetVersion200Response(version string) *GetVersion200Response { function NewGetVersion200ResponseWithDefaults (line 44) | func NewGetVersion200ResponseWithDefaults() *GetVersion200Response { type NullableGetVersion200Response (line 134) | type NullableGetVersion200Response struct method Get (line 139) | func (v NullableGetVersion200Response) Get() *GetVersion200Response { method Set (line 143) | func (v *NullableGetVersion200Response) Set(val *GetVersion200Response) { method IsSet (line 148) | func (v NullableGetVersion200Response) IsSet() bool { method Unset (line 152) | func (v *NullableGetVersion200Response) Unset() { method MarshalJSON (line 161) | func (v NullableGetVersion200Response) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 165) | func (v *NullableGetVersion200Response) UnmarshalJSON(src []byte) error { function NewNullableGetVersion200Response (line 157) | func NewNullableGetVersion200Response(val *GetVersion200Response) *Nulla... FILE: pkg/client-go/model_health_not_ready_status.go type HealthNotReadyStatus (line 22) | type HealthNotReadyStatus struct method GetErrors (line 48) | func (o *HealthNotReadyStatus) GetErrors() map[string]string { method GetErrorsOk (line 58) | func (o *HealthNotReadyStatus) GetErrorsOk() (*map[string]string, bool) { method HasErrors (line 66) | func (o *HealthNotReadyStatus) HasErrors() bool { method SetErrors (line 75) | func (o *HealthNotReadyStatus) SetErrors(v map[string]string) { method MarshalJSON (line 79) | func (o HealthNotReadyStatus) MarshalJSON() ([]byte, error) { method ToMap (line 87) | func (o HealthNotReadyStatus) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 100) | func (o *HealthNotReadyStatus) UnmarshalJSON(data []byte) (err error) { type _HealthNotReadyStatus (line 28) | type _HealthNotReadyStatus function NewHealthNotReadyStatus (line 34) | func NewHealthNotReadyStatus() *HealthNotReadyStatus { function NewHealthNotReadyStatusWithDefaults (line 42) | func NewHealthNotReadyStatusWithDefaults() *HealthNotReadyStatus { type NullableHealthNotReadyStatus (line 121) | type NullableHealthNotReadyStatus struct method Get (line 126) | func (v NullableHealthNotReadyStatus) Get() *HealthNotReadyStatus { method Set (line 130) | func (v *NullableHealthNotReadyStatus) Set(val *HealthNotReadyStatus) { method IsSet (line 135) | func (v NullableHealthNotReadyStatus) IsSet() bool { method Unset (line 139) | func (v *NullableHealthNotReadyStatus) Unset() { method MarshalJSON (line 148) | func (v NullableHealthNotReadyStatus) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 152) | func (v *NullableHealthNotReadyStatus) UnmarshalJSON(src []byte) error { function NewNullableHealthNotReadyStatus (line 144) | func NewNullableHealthNotReadyStatus(val *HealthNotReadyStatus) *Nullabl... FILE: pkg/client-go/model_health_status.go type HealthStatus (line 22) | type HealthStatus struct method GetStatus (line 48) | func (o *HealthStatus) GetStatus() string { method GetStatusOk (line 58) | func (o *HealthStatus) GetStatusOk() (*string, bool) { method HasStatus (line 66) | func (o *HealthStatus) HasStatus() bool { method SetStatus (line 75) | func (o *HealthStatus) SetStatus(v string) { method MarshalJSON (line 79) | func (o HealthStatus) MarshalJSON() ([]byte, error) { method ToMap (line 87) | func (o HealthStatus) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 100) | func (o *HealthStatus) UnmarshalJSON(data []byte) (err error) { type _HealthStatus (line 28) | type _HealthStatus function NewHealthStatus (line 34) | func NewHealthStatus() *HealthStatus { function NewHealthStatusWithDefaults (line 42) | func NewHealthStatusWithDefaults() *HealthStatus { type NullableHealthStatus (line 121) | type NullableHealthStatus struct method Get (line 126) | func (v NullableHealthStatus) Get() *HealthStatus { method Set (line 130) | func (v *NullableHealthStatus) Set(val *HealthStatus) { method IsSet (line 135) | func (v NullableHealthStatus) IsSet() bool { method Unset (line 139) | func (v *NullableHealthStatus) Unset() { method MarshalJSON (line 148) | func (v NullableHealthStatus) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 152) | func (v *NullableHealthStatus) UnmarshalJSON(src []byte) error { function NewNullableHealthStatus (line 144) | func NewNullableHealthStatus(val *HealthStatus) *NullableHealthStatus { FILE: pkg/client-go/model_identity.go type Identity (line 24) | type Identity struct method GetCreatedAt (line 80) | func (o *Identity) GetCreatedAt() time.Time { method GetCreatedAtOk (line 90) | func (o *Identity) GetCreatedAtOk() (*time.Time, bool) { method HasCreatedAt (line 98) | func (o *Identity) HasCreatedAt() bool { method SetCreatedAt (line 107) | func (o *Identity) SetCreatedAt(v time.Time) { method GetCredentials (line 112) | func (o *Identity) GetCredentials() map[string]IdentityCredentials { method GetCredentialsOk (line 122) | func (o *Identity) GetCredentialsOk() (*map[string]IdentityCredentials... method HasCredentials (line 130) | func (o *Identity) HasCredentials() bool { method SetCredentials (line 139) | func (o *Identity) SetCredentials(v map[string]IdentityCredentials) { method GetExternalId (line 144) | func (o *Identity) GetExternalId() string { method GetExternalIdOk (line 154) | func (o *Identity) GetExternalIdOk() (*string, bool) { method HasExternalId (line 162) | func (o *Identity) HasExternalId() bool { method SetExternalId (line 171) | func (o *Identity) SetExternalId(v string) { method GetId (line 176) | func (o *Identity) GetId() string { method GetIdOk (line 187) | func (o *Identity) GetIdOk() (*string, bool) { method SetId (line 195) | func (o *Identity) SetId(v string) { method GetMetadataAdmin (line 200) | func (o *Identity) GetMetadataAdmin() interface{} { method GetMetadataAdminOk (line 211) | func (o *Identity) GetMetadataAdminOk() (*interface{}, bool) { method HasMetadataAdmin (line 219) | func (o *Identity) HasMetadataAdmin() bool { method SetMetadataAdmin (line 228) | func (o *Identity) SetMetadataAdmin(v interface{}) { method GetMetadataPublic (line 233) | func (o *Identity) GetMetadataPublic() interface{} { method GetMetadataPublicOk (line 244) | func (o *Identity) GetMetadataPublicOk() (*interface{}, bool) { method HasMetadataPublic (line 252) | func (o *Identity) HasMetadataPublic() bool { method SetMetadataPublic (line 261) | func (o *Identity) SetMetadataPublic(v interface{}) { method GetOrganizationId (line 266) | func (o *Identity) GetOrganizationId() string { method GetOrganizationIdOk (line 277) | func (o *Identity) GetOrganizationIdOk() (*string, bool) { method HasOrganizationId (line 285) | func (o *Identity) HasOrganizationId() bool { method SetOrganizationId (line 294) | func (o *Identity) SetOrganizationId(v string) { method SetOrganizationIdNil (line 299) | func (o *Identity) SetOrganizationIdNil() { method UnsetOrganizationId (line 304) | func (o *Identity) UnsetOrganizationId() { method GetRecoveryAddresses (line 309) | func (o *Identity) GetRecoveryAddresses() []RecoveryIdentityAddress { method GetRecoveryAddressesOk (line 319) | func (o *Identity) GetRecoveryAddressesOk() ([]RecoveryIdentityAddress... method HasRecoveryAddresses (line 327) | func (o *Identity) HasRecoveryAddresses() bool { method SetRecoveryAddresses (line 336) | func (o *Identity) SetRecoveryAddresses(v []RecoveryIdentityAddress) { method GetSchemaId (line 341) | func (o *Identity) GetSchemaId() string { method GetSchemaIdOk (line 352) | func (o *Identity) GetSchemaIdOk() (*string, bool) { method SetSchemaId (line 360) | func (o *Identity) SetSchemaId(v string) { method GetSchemaUrl (line 365) | func (o *Identity) GetSchemaUrl() string { method GetSchemaUrlOk (line 376) | func (o *Identity) GetSchemaUrlOk() (*string, bool) { method SetSchemaUrl (line 384) | func (o *Identity) SetSchemaUrl(v string) { method GetState (line 389) | func (o *Identity) GetState() string { method GetStateOk (line 399) | func (o *Identity) GetStateOk() (*string, bool) { method HasState (line 407) | func (o *Identity) HasState() bool { method SetState (line 416) | func (o *Identity) SetState(v string) { method GetStateChangedAt (line 421) | func (o *Identity) GetStateChangedAt() time.Time { method GetStateChangedAtOk (line 431) | func (o *Identity) GetStateChangedAtOk() (*time.Time, bool) { method HasStateChangedAt (line 439) | func (o *Identity) HasStateChangedAt() bool { method SetStateChangedAt (line 448) | func (o *Identity) SetStateChangedAt(v time.Time) { method GetTraits (line 454) | func (o *Identity) GetTraits() interface{} { method GetTraitsOk (line 466) | func (o *Identity) GetTraitsOk() (*interface{}, bool) { method SetTraits (line 474) | func (o *Identity) SetTraits(v interface{}) { method GetUpdatedAt (line 479) | func (o *Identity) GetUpdatedAt() time.Time { method GetUpdatedAtOk (line 489) | func (o *Identity) GetUpdatedAtOk() (*time.Time, bool) { method HasUpdatedAt (line 497) | func (o *Identity) HasUpdatedAt() bool { method SetUpdatedAt (line 506) | func (o *Identity) SetUpdatedAt(v time.Time) { method GetVerifiableAddresses (line 511) | func (o *Identity) GetVerifiableAddresses() []VerifiableIdentityAddress { method GetVerifiableAddressesOk (line 521) | func (o *Identity) GetVerifiableAddressesOk() ([]VerifiableIdentityAdd... method HasVerifiableAddresses (line 529) | func (o *Identity) HasVerifiableAddresses() bool { method SetVerifiableAddresses (line 538) | func (o *Identity) SetVerifiableAddresses(v []VerifiableIdentityAddres... method MarshalJSON (line 542) | func (o Identity) MarshalJSON() ([]byte, error) { method ToMap (line 550) | func (o Identity) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 599) | func (o *Identity) UnmarshalJSON(data []byte) (err error) { type _Identity (line 56) | type _Identity function NewIdentity (line 62) | func NewIdentity(id string, schemaId string, schemaUrl string, traits in... function NewIdentityWithDefaults (line 74) | func NewIdentityWithDefaults() *Identity { type NullableIdentity (line 658) | type NullableIdentity struct method Get (line 663) | func (v NullableIdentity) Get() *Identity { method Set (line 667) | func (v *NullableIdentity) Set(val *Identity) { method IsSet (line 672) | func (v NullableIdentity) IsSet() bool { method Unset (line 676) | func (v *NullableIdentity) Unset() { method MarshalJSON (line 685) | func (v NullableIdentity) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 689) | func (v *NullableIdentity) UnmarshalJSON(src []byte) error { function NewNullableIdentity (line 681) | func NewNullableIdentity(val *Identity) *NullableIdentity { FILE: pkg/client-go/model_identity_credentials.go type IdentityCredentials (line 23) | type IdentityCredentials struct method GetConfig (line 58) | func (o *IdentityCredentials) GetConfig() map[string]interface{} { method GetConfigOk (line 68) | func (o *IdentityCredentials) GetConfigOk() (map[string]interface{}, b... method HasConfig (line 76) | func (o *IdentityCredentials) HasConfig() bool { method SetConfig (line 85) | func (o *IdentityCredentials) SetConfig(v map[string]interface{}) { method GetCreatedAt (line 90) | func (o *IdentityCredentials) GetCreatedAt() time.Time { method GetCreatedAtOk (line 100) | func (o *IdentityCredentials) GetCreatedAtOk() (*time.Time, bool) { method HasCreatedAt (line 108) | func (o *IdentityCredentials) HasCreatedAt() bool { method SetCreatedAt (line 117) | func (o *IdentityCredentials) SetCreatedAt(v time.Time) { method GetIdentifiers (line 122) | func (o *IdentityCredentials) GetIdentifiers() []string { method GetIdentifiersOk (line 132) | func (o *IdentityCredentials) GetIdentifiersOk() ([]string, bool) { method HasIdentifiers (line 140) | func (o *IdentityCredentials) HasIdentifiers() bool { method SetIdentifiers (line 149) | func (o *IdentityCredentials) SetIdentifiers(v []string) { method GetType (line 154) | func (o *IdentityCredentials) GetType() string { method GetTypeOk (line 164) | func (o *IdentityCredentials) GetTypeOk() (*string, bool) { method HasType (line 172) | func (o *IdentityCredentials) HasType() bool { method SetType (line 181) | func (o *IdentityCredentials) SetType(v string) { method GetUpdatedAt (line 186) | func (o *IdentityCredentials) GetUpdatedAt() time.Time { method GetUpdatedAtOk (line 196) | func (o *IdentityCredentials) GetUpdatedAtOk() (*time.Time, bool) { method HasUpdatedAt (line 204) | func (o *IdentityCredentials) HasUpdatedAt() bool { method SetUpdatedAt (line 213) | func (o *IdentityCredentials) SetUpdatedAt(v time.Time) { method GetVersion (line 218) | func (o *IdentityCredentials) GetVersion() int64 { method GetVersionOk (line 228) | func (o *IdentityCredentials) GetVersionOk() (*int64, bool) { method HasVersion (line 236) | func (o *IdentityCredentials) HasVersion() bool { method SetVersion (line 245) | func (o *IdentityCredentials) SetVersion(v int64) { method MarshalJSON (line 249) | func (o IdentityCredentials) MarshalJSON() ([]byte, error) { method ToMap (line 257) | func (o IdentityCredentials) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 285) | func (o *IdentityCredentials) UnmarshalJSON(data []byte) (err error) { type _IdentityCredentials (line 38) | type _IdentityCredentials function NewIdentityCredentials (line 44) | func NewIdentityCredentials() *IdentityCredentials { function NewIdentityCredentialsWithDefaults (line 52) | func NewIdentityCredentialsWithDefaults() *IdentityCredentials { type NullableIdentityCredentials (line 311) | type NullableIdentityCredentials struct method Get (line 316) | func (v NullableIdentityCredentials) Get() *IdentityCredentials { method Set (line 320) | func (v *NullableIdentityCredentials) Set(val *IdentityCredentials) { method IsSet (line 325) | func (v NullableIdentityCredentials) IsSet() bool { method Unset (line 329) | func (v *NullableIdentityCredentials) Unset() { method MarshalJSON (line 338) | func (v NullableIdentityCredentials) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 342) | func (v *NullableIdentityCredentials) UnmarshalJSON(src []byte) error { function NewNullableIdentityCredentials (line 334) | func NewNullableIdentityCredentials(val *IdentityCredentials) *NullableI... FILE: pkg/client-go/model_identity_credentials_code.go type IdentityCredentialsCode (line 22) | type IdentityCredentialsCode struct method GetAddresses (line 47) | func (o *IdentityCredentialsCode) GetAddresses() []IdentityCredentials... method GetAddressesOk (line 57) | func (o *IdentityCredentialsCode) GetAddressesOk() ([]IdentityCredenti... method HasAddresses (line 65) | func (o *IdentityCredentialsCode) HasAddresses() bool { method SetAddresses (line 74) | func (o *IdentityCredentialsCode) SetAddresses(v []IdentityCredentials... method MarshalJSON (line 78) | func (o IdentityCredentialsCode) MarshalJSON() ([]byte, error) { method ToMap (line 86) | func (o IdentityCredentialsCode) ToMap() (map[string]interface{}, erro... method UnmarshalJSON (line 99) | func (o *IdentityCredentialsCode) UnmarshalJSON(data []byte) (err erro... type _IdentityCredentialsCode (line 27) | type _IdentityCredentialsCode function NewIdentityCredentialsCode (line 33) | func NewIdentityCredentialsCode() *IdentityCredentialsCode { function NewIdentityCredentialsCodeWithDefaults (line 41) | func NewIdentityCredentialsCodeWithDefaults() *IdentityCredentialsCode { type NullableIdentityCredentialsCode (line 120) | type NullableIdentityCredentialsCode struct method Get (line 125) | func (v NullableIdentityCredentialsCode) Get() *IdentityCredentialsCode { method Set (line 129) | func (v *NullableIdentityCredentialsCode) Set(val *IdentityCredentials... method IsSet (line 134) | func (v NullableIdentityCredentialsCode) IsSet() bool { method Unset (line 138) | func (v *NullableIdentityCredentialsCode) Unset() { method MarshalJSON (line 147) | func (v NullableIdentityCredentialsCode) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 151) | func (v *NullableIdentityCredentialsCode) UnmarshalJSON(src []byte) er... function NewNullableIdentityCredentialsCode (line 143) | func NewNullableIdentityCredentialsCode(val *IdentityCredentialsCode) *N... FILE: pkg/client-go/model_identity_credentials_code_address.go type IdentityCredentialsCodeAddress (line 22) | type IdentityCredentialsCodeAddress struct method GetAddress (line 49) | func (o *IdentityCredentialsCodeAddress) GetAddress() string { method GetAddressOk (line 59) | func (o *IdentityCredentialsCodeAddress) GetAddressOk() (*string, bool) { method HasAddress (line 67) | func (o *IdentityCredentialsCodeAddress) HasAddress() bool { method SetAddress (line 76) | func (o *IdentityCredentialsCodeAddress) SetAddress(v string) { method GetChannel (line 81) | func (o *IdentityCredentialsCodeAddress) GetChannel() string { method GetChannelOk (line 91) | func (o *IdentityCredentialsCodeAddress) GetChannelOk() (*string, bool) { method HasChannel (line 99) | func (o *IdentityCredentialsCodeAddress) HasChannel() bool { method SetChannel (line 108) | func (o *IdentityCredentialsCodeAddress) SetChannel(v string) { method MarshalJSON (line 112) | func (o IdentityCredentialsCodeAddress) MarshalJSON() ([]byte, error) { method ToMap (line 120) | func (o IdentityCredentialsCodeAddress) ToMap() (map[string]interface{... method UnmarshalJSON (line 136) | func (o *IdentityCredentialsCodeAddress) UnmarshalJSON(data []byte) (e... type _IdentityCredentialsCodeAddress (line 29) | type _IdentityCredentialsCodeAddress function NewIdentityCredentialsCodeAddress (line 35) | func NewIdentityCredentialsCodeAddress() *IdentityCredentialsCodeAddress { function NewIdentityCredentialsCodeAddressWithDefaults (line 43) | func NewIdentityCredentialsCodeAddressWithDefaults() *IdentityCredential... type NullableIdentityCredentialsCodeAddress (line 158) | type NullableIdentityCredentialsCodeAddress struct method Get (line 163) | func (v NullableIdentityCredentialsCodeAddress) Get() *IdentityCredent... method Set (line 167) | func (v *NullableIdentityCredentialsCodeAddress) Set(val *IdentityCred... method IsSet (line 172) | func (v NullableIdentityCredentialsCodeAddress) IsSet() bool { method Unset (line 176) | func (v *NullableIdentityCredentialsCodeAddress) Unset() { method MarshalJSON (line 185) | func (v NullableIdentityCredentialsCodeAddress) MarshalJSON() ([]byte,... method UnmarshalJSON (line 189) | func (v *NullableIdentityCredentialsCodeAddress) UnmarshalJSON(src []b... function NewNullableIdentityCredentialsCodeAddress (line 181) | func NewNullableIdentityCredentialsCodeAddress(val *IdentityCredentialsC... FILE: pkg/client-go/model_identity_credentials_oidc.go type IdentityCredentialsOidc (line 22) | type IdentityCredentialsOidc struct method GetProviders (line 47) | func (o *IdentityCredentialsOidc) GetProviders() []IdentityCredentials... method GetProvidersOk (line 57) | func (o *IdentityCredentialsOidc) GetProvidersOk() ([]IdentityCredenti... method HasProviders (line 65) | func (o *IdentityCredentialsOidc) HasProviders() bool { method SetProviders (line 74) | func (o *IdentityCredentialsOidc) SetProviders(v []IdentityCredentials... method MarshalJSON (line 78) | func (o IdentityCredentialsOidc) MarshalJSON() ([]byte, error) { method ToMap (line 86) | func (o IdentityCredentialsOidc) ToMap() (map[string]interface{}, erro... method UnmarshalJSON (line 99) | func (o *IdentityCredentialsOidc) UnmarshalJSON(data []byte) (err erro... type _IdentityCredentialsOidc (line 27) | type _IdentityCredentialsOidc function NewIdentityCredentialsOidc (line 33) | func NewIdentityCredentialsOidc() *IdentityCredentialsOidc { function NewIdentityCredentialsOidcWithDefaults (line 41) | func NewIdentityCredentialsOidcWithDefaults() *IdentityCredentialsOidc { type NullableIdentityCredentialsOidc (line 120) | type NullableIdentityCredentialsOidc struct method Get (line 125) | func (v NullableIdentityCredentialsOidc) Get() *IdentityCredentialsOidc { method Set (line 129) | func (v *NullableIdentityCredentialsOidc) Set(val *IdentityCredentials... method IsSet (line 134) | func (v NullableIdentityCredentialsOidc) IsSet() bool { method Unset (line 138) | func (v *NullableIdentityCredentialsOidc) Unset() { method MarshalJSON (line 147) | func (v NullableIdentityCredentialsOidc) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 151) | func (v *NullableIdentityCredentialsOidc) UnmarshalJSON(src []byte) er... function NewNullableIdentityCredentialsOidc (line 143) | func NewNullableIdentityCredentialsOidc(val *IdentityCredentialsOidc) *N... FILE: pkg/client-go/model_identity_credentials_oidc_provider.go type IdentityCredentialsOidcProvider (line 22) | type IdentityCredentialsOidcProvider struct method GetInitialAccessToken (line 53) | func (o *IdentityCredentialsOidcProvider) GetInitialAccessToken() stri... method GetInitialAccessTokenOk (line 63) | func (o *IdentityCredentialsOidcProvider) GetInitialAccessTokenOk() (*... method HasInitialAccessToken (line 71) | func (o *IdentityCredentialsOidcProvider) HasInitialAccessToken() bool { method SetInitialAccessToken (line 80) | func (o *IdentityCredentialsOidcProvider) SetInitialAccessToken(v stri... method GetInitialIdToken (line 85) | func (o *IdentityCredentialsOidcProvider) GetInitialIdToken() string { method GetInitialIdTokenOk (line 95) | func (o *IdentityCredentialsOidcProvider) GetInitialIdTokenOk() (*stri... method HasInitialIdToken (line 103) | func (o *IdentityCredentialsOidcProvider) HasInitialIdToken() bool { method SetInitialIdToken (line 112) | func (o *IdentityCredentialsOidcProvider) SetInitialIdToken(v string) { method GetInitialRefreshToken (line 117) | func (o *IdentityCredentialsOidcProvider) GetInitialRefreshToken() str... method GetInitialRefreshTokenOk (line 127) | func (o *IdentityCredentialsOidcProvider) GetInitialRefreshTokenOk() (... method HasInitialRefreshToken (line 135) | func (o *IdentityCredentialsOidcProvider) HasInitialRefreshToken() bool { method SetInitialRefreshToken (line 144) | func (o *IdentityCredentialsOidcProvider) SetInitialRefreshToken(v str... method GetOrganization (line 149) | func (o *IdentityCredentialsOidcProvider) GetOrganization() string { method GetOrganizationOk (line 159) | func (o *IdentityCredentialsOidcProvider) GetOrganizationOk() (*string... method HasOrganization (line 167) | func (o *IdentityCredentialsOidcProvider) HasOrganization() bool { method SetOrganization (line 176) | func (o *IdentityCredentialsOidcProvider) SetOrganization(v string) { method GetProvider (line 181) | func (o *IdentityCredentialsOidcProvider) GetProvider() string { method GetProviderOk (line 191) | func (o *IdentityCredentialsOidcProvider) GetProviderOk() (*string, bo... method HasProvider (line 199) | func (o *IdentityCredentialsOidcProvider) HasProvider() bool { method SetProvider (line 208) | func (o *IdentityCredentialsOidcProvider) SetProvider(v string) { method GetSubject (line 213) | func (o *IdentityCredentialsOidcProvider) GetSubject() string { method GetSubjectOk (line 223) | func (o *IdentityCredentialsOidcProvider) GetSubjectOk() (*string, boo... method HasSubject (line 231) | func (o *IdentityCredentialsOidcProvider) HasSubject() bool { method SetSubject (line 240) | func (o *IdentityCredentialsOidcProvider) SetSubject(v string) { method GetUseAutoLink (line 245) | func (o *IdentityCredentialsOidcProvider) GetUseAutoLink() bool { method GetUseAutoLinkOk (line 255) | func (o *IdentityCredentialsOidcProvider) GetUseAutoLinkOk() (*bool, b... method HasUseAutoLink (line 263) | func (o *IdentityCredentialsOidcProvider) HasUseAutoLink() bool { method SetUseAutoLink (line 272) | func (o *IdentityCredentialsOidcProvider) SetUseAutoLink(v bool) { method MarshalJSON (line 276) | func (o IdentityCredentialsOidcProvider) MarshalJSON() ([]byte, error) { method ToMap (line 284) | func (o IdentityCredentialsOidcProvider) ToMap() (map[string]interface... method UnmarshalJSON (line 315) | func (o *IdentityCredentialsOidcProvider) UnmarshalJSON(data []byte) (... type _IdentityCredentialsOidcProvider (line 33) | type _IdentityCredentialsOidcProvider function NewIdentityCredentialsOidcProvider (line 39) | func NewIdentityCredentialsOidcProvider() *IdentityCredentialsOidcProvid... function NewIdentityCredentialsOidcProviderWithDefaults (line 47) | func NewIdentityCredentialsOidcProviderWithDefaults() *IdentityCredentia... type NullableIdentityCredentialsOidcProvider (line 342) | type NullableIdentityCredentialsOidcProvider struct method Get (line 347) | func (v NullableIdentityCredentialsOidcProvider) Get() *IdentityCreden... method Set (line 351) | func (v *NullableIdentityCredentialsOidcProvider) Set(val *IdentityCre... method IsSet (line 356) | func (v NullableIdentityCredentialsOidcProvider) IsSet() bool { method Unset (line 360) | func (v *NullableIdentityCredentialsOidcProvider) Unset() { method MarshalJSON (line 369) | func (v NullableIdentityCredentialsOidcProvider) MarshalJSON() ([]byte... method UnmarshalJSON (line 373) | func (v *NullableIdentityCredentialsOidcProvider) UnmarshalJSON(src []... function NewNullableIdentityCredentialsOidcProvider (line 365) | func NewNullableIdentityCredentialsOidcProvider(val *IdentityCredentials... FILE: pkg/client-go/model_identity_credentials_password.go type IdentityCredentialsPassword (line 22) | type IdentityCredentialsPassword struct method GetHashedPassword (line 50) | func (o *IdentityCredentialsPassword) GetHashedPassword() string { method GetHashedPasswordOk (line 60) | func (o *IdentityCredentialsPassword) GetHashedPasswordOk() (*string, ... method HasHashedPassword (line 68) | func (o *IdentityCredentialsPassword) HasHashedPassword() bool { method SetHashedPassword (line 77) | func (o *IdentityCredentialsPassword) SetHashedPassword(v string) { method GetUsePasswordMigrationHook (line 82) | func (o *IdentityCredentialsPassword) GetUsePasswordMigrationHook() bo... method GetUsePasswordMigrationHookOk (line 92) | func (o *IdentityCredentialsPassword) GetUsePasswordMigrationHookOk() ... method HasUsePasswordMigrationHook (line 100) | func (o *IdentityCredentialsPassword) HasUsePasswordMigrationHook() bo... method SetUsePasswordMigrationHook (line 109) | func (o *IdentityCredentialsPassword) SetUsePasswordMigrationHook(v bo... method MarshalJSON (line 113) | func (o IdentityCredentialsPassword) MarshalJSON() ([]byte, error) { method ToMap (line 121) | func (o IdentityCredentialsPassword) ToMap() (map[string]interface{}, ... method UnmarshalJSON (line 137) | func (o *IdentityCredentialsPassword) UnmarshalJSON(data []byte) (err ... type _IdentityCredentialsPassword (line 30) | type _IdentityCredentialsPassword function NewIdentityCredentialsPassword (line 36) | func NewIdentityCredentialsPassword() *IdentityCredentialsPassword { function NewIdentityCredentialsPasswordWithDefaults (line 44) | func NewIdentityCredentialsPasswordWithDefaults() *IdentityCredentialsPa... type NullableIdentityCredentialsPassword (line 159) | type NullableIdentityCredentialsPassword struct method Get (line 164) | func (v NullableIdentityCredentialsPassword) Get() *IdentityCredential... method Set (line 168) | func (v *NullableIdentityCredentialsPassword) Set(val *IdentityCredent... method IsSet (line 173) | func (v NullableIdentityCredentialsPassword) IsSet() bool { method Unset (line 177) | func (v *NullableIdentityCredentialsPassword) Unset() { method MarshalJSON (line 186) | func (v NullableIdentityCredentialsPassword) MarshalJSON() ([]byte, er... method UnmarshalJSON (line 190) | func (v *NullableIdentityCredentialsPassword) UnmarshalJSON(src []byte... function NewNullableIdentityCredentialsPassword (line 182) | func NewNullableIdentityCredentialsPassword(val *IdentityCredentialsPass... FILE: pkg/client-go/model_identity_patch.go type IdentityPatch (line 22) | type IdentityPatch struct method GetCreate (line 49) | func (o *IdentityPatch) GetCreate() CreateIdentityBody { method GetCreateOk (line 59) | func (o *IdentityPatch) GetCreateOk() (*CreateIdentityBody, bool) { method HasCreate (line 67) | func (o *IdentityPatch) HasCreate() bool { method SetCreate (line 76) | func (o *IdentityPatch) SetCreate(v CreateIdentityBody) { method GetPatchId (line 81) | func (o *IdentityPatch) GetPatchId() string { method GetPatchIdOk (line 91) | func (o *IdentityPatch) GetPatchIdOk() (*string, bool) { method HasPatchId (line 99) | func (o *IdentityPatch) HasPatchId() bool { method SetPatchId (line 108) | func (o *IdentityPatch) SetPatchId(v string) { method MarshalJSON (line 112) | func (o IdentityPatch) MarshalJSON() ([]byte, error) { method ToMap (line 120) | func (o IdentityPatch) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 136) | func (o *IdentityPatch) UnmarshalJSON(data []byte) (err error) { type _IdentityPatch (line 29) | type _IdentityPatch function NewIdentityPatch (line 35) | func NewIdentityPatch() *IdentityPatch { function NewIdentityPatchWithDefaults (line 43) | func NewIdentityPatchWithDefaults() *IdentityPatch { type NullableIdentityPatch (line 158) | type NullableIdentityPatch struct method Get (line 163) | func (v NullableIdentityPatch) Get() *IdentityPatch { method Set (line 167) | func (v *NullableIdentityPatch) Set(val *IdentityPatch) { method IsSet (line 172) | func (v NullableIdentityPatch) IsSet() bool { method Unset (line 176) | func (v *NullableIdentityPatch) Unset() { method MarshalJSON (line 185) | func (v NullableIdentityPatch) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 189) | func (v *NullableIdentityPatch) UnmarshalJSON(src []byte) error { function NewNullableIdentityPatch (line 181) | func NewNullableIdentityPatch(val *IdentityPatch) *NullableIdentityPatch { FILE: pkg/client-go/model_identity_patch_response.go type IdentityPatchResponse (line 22) | type IdentityPatchResponse struct method GetAction (line 53) | func (o *IdentityPatchResponse) GetAction() string { method GetActionOk (line 63) | func (o *IdentityPatchResponse) GetActionOk() (*string, bool) { method HasAction (line 71) | func (o *IdentityPatchResponse) HasAction() bool { method SetAction (line 80) | func (o *IdentityPatchResponse) SetAction(v string) { method GetError (line 85) | func (o *IdentityPatchResponse) GetError() interface{} { method GetErrorOk (line 96) | func (o *IdentityPatchResponse) GetErrorOk() (*interface{}, bool) { method HasError (line 104) | func (o *IdentityPatchResponse) HasError() bool { method SetError (line 113) | func (o *IdentityPatchResponse) SetError(v interface{}) { method GetIdentity (line 118) | func (o *IdentityPatchResponse) GetIdentity() string { method GetIdentityOk (line 128) | func (o *IdentityPatchResponse) GetIdentityOk() (*string, bool) { method HasIdentity (line 136) | func (o *IdentityPatchResponse) HasIdentity() bool { method SetIdentity (line 145) | func (o *IdentityPatchResponse) SetIdentity(v string) { method GetPatchId (line 150) | func (o *IdentityPatchResponse) GetPatchId() string { method GetPatchIdOk (line 160) | func (o *IdentityPatchResponse) GetPatchIdOk() (*string, bool) { method HasPatchId (line 168) | func (o *IdentityPatchResponse) HasPatchId() bool { method SetPatchId (line 177) | func (o *IdentityPatchResponse) SetPatchId(v string) { method MarshalJSON (line 181) | func (o IdentityPatchResponse) MarshalJSON() ([]byte, error) { method ToMap (line 189) | func (o IdentityPatchResponse) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 211) | func (o *IdentityPatchResponse) UnmarshalJSON(data []byte) (err error) { type _IdentityPatchResponse (line 33) | type _IdentityPatchResponse function NewIdentityPatchResponse (line 39) | func NewIdentityPatchResponse() *IdentityPatchResponse { function NewIdentityPatchResponseWithDefaults (line 47) | func NewIdentityPatchResponseWithDefaults() *IdentityPatchResponse { type NullableIdentityPatchResponse (line 235) | type NullableIdentityPatchResponse struct method Get (line 240) | func (v NullableIdentityPatchResponse) Get() *IdentityPatchResponse { method Set (line 244) | func (v *NullableIdentityPatchResponse) Set(val *IdentityPatchResponse) { method IsSet (line 249) | func (v NullableIdentityPatchResponse) IsSet() bool { method Unset (line 253) | func (v *NullableIdentityPatchResponse) Unset() { method MarshalJSON (line 262) | func (v NullableIdentityPatchResponse) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 266) | func (v *NullableIdentityPatchResponse) UnmarshalJSON(src []byte) error { function NewNullableIdentityPatchResponse (line 258) | func NewNullableIdentityPatchResponse(val *IdentityPatchResponse) *Nulla... FILE: pkg/client-go/model_identity_schema_container.go type IdentitySchemaContainer (line 23) | type IdentitySchemaContainer struct method GetId (line 53) | func (o *IdentitySchemaContainer) GetId() string { method GetIdOk (line 64) | func (o *IdentitySchemaContainer) GetIdOk() (*string, bool) { method SetId (line 72) | func (o *IdentitySchemaContainer) SetId(v string) { method GetSchema (line 77) | func (o *IdentitySchemaContainer) GetSchema() map[string]interface{} { method GetSchemaOk (line 88) | func (o *IdentitySchemaContainer) GetSchemaOk() (map[string]interface{... method SetSchema (line 96) | func (o *IdentitySchemaContainer) SetSchema(v map[string]interface{}) { method MarshalJSON (line 100) | func (o IdentitySchemaContainer) MarshalJSON() ([]byte, error) { method ToMap (line 108) | func (o IdentitySchemaContainer) ToMap() (map[string]interface{}, erro... method UnmarshalJSON (line 120) | func (o *IdentitySchemaContainer) UnmarshalJSON(data []byte) (err erro... type _IdentitySchemaContainer (line 31) | type _IdentitySchemaContainer function NewIdentitySchemaContainer (line 37) | func NewIdentitySchemaContainer(id string, schema map[string]interface{}... function NewIdentitySchemaContainerWithDefaults (line 47) | func NewIdentitySchemaContainerWithDefaults() *IdentitySchemaContainer { type NullableIdentitySchemaContainer (line 164) | type NullableIdentitySchemaContainer struct method Get (line 169) | func (v NullableIdentitySchemaContainer) Get() *IdentitySchemaContainer { method Set (line 173) | func (v *NullableIdentitySchemaContainer) Set(val *IdentitySchemaConta... method IsSet (line 178) | func (v NullableIdentitySchemaContainer) IsSet() bool { method Unset (line 182) | func (v *NullableIdentitySchemaContainer) Unset() { method MarshalJSON (line 191) | func (v NullableIdentitySchemaContainer) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 195) | func (v *NullableIdentitySchemaContainer) UnmarshalJSON(src []byte) er... function NewNullableIdentitySchemaContainer (line 187) | func NewNullableIdentitySchemaContainer(val *IdentitySchemaContainer) *N... FILE: pkg/client-go/model_identity_with_credentials.go type IdentityWithCredentials (line 22) | type IdentityWithCredentials struct method GetOidc (line 49) | func (o *IdentityWithCredentials) GetOidc() IdentityWithCredentialsOidc { method GetOidcOk (line 59) | func (o *IdentityWithCredentials) GetOidcOk() (*IdentityWithCredential... method HasOidc (line 67) | func (o *IdentityWithCredentials) HasOidc() bool { method SetOidc (line 76) | func (o *IdentityWithCredentials) SetOidc(v IdentityWithCredentialsOid... method GetPassword (line 81) | func (o *IdentityWithCredentials) GetPassword() IdentityWithCredential... method GetPasswordOk (line 91) | func (o *IdentityWithCredentials) GetPasswordOk() (*IdentityWithCreden... method HasPassword (line 99) | func (o *IdentityWithCredentials) HasPassword() bool { method SetPassword (line 108) | func (o *IdentityWithCredentials) SetPassword(v IdentityWithCredential... method GetSaml (line 113) | func (o *IdentityWithCredentials) GetSaml() IdentityWithCredentialsSaml { method GetSamlOk (line 123) | func (o *IdentityWithCredentials) GetSamlOk() (*IdentityWithCredential... method HasSaml (line 131) | func (o *IdentityWithCredentials) HasSaml() bool { method SetSaml (line 140) | func (o *IdentityWithCredentials) SetSaml(v IdentityWithCredentialsSam... method MarshalJSON (line 144) | func (o IdentityWithCredentials) MarshalJSON() ([]byte, error) { method ToMap (line 152) | func (o IdentityWithCredentials) ToMap() (map[string]interface{}, erro... method UnmarshalJSON (line 171) | func (o *IdentityWithCredentials) UnmarshalJSON(data []byte) (err erro... type _IdentityWithCredentials (line 29) | type _IdentityWithCredentials function NewIdentityWithCredentials (line 35) | func NewIdentityWithCredentials() *IdentityWithCredentials { function NewIdentityWithCredentialsWithDefaults (line 43) | func NewIdentityWithCredentialsWithDefaults() *IdentityWithCredentials { type NullableIdentityWithCredentials (line 194) | type NullableIdentityWithCredentials struct method Get (line 199) | func (v NullableIdentityWithCredentials) Get() *IdentityWithCredentials { method Set (line 203) | func (v *NullableIdentityWithCredentials) Set(val *IdentityWithCredent... method IsSet (line 208) | func (v NullableIdentityWithCredentials) IsSet() bool { method Unset (line 212) | func (v *NullableIdentityWithCredentials) Unset() { method MarshalJSON (line 221) | func (v NullableIdentityWithCredentials) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 225) | func (v *NullableIdentityWithCredentials) UnmarshalJSON(src []byte) er... function NewNullableIdentityWithCredentials (line 217) | func NewNullableIdentityWithCredentials(val *IdentityWithCredentials) *N... FILE: pkg/client-go/model_identity_with_credentials_oidc.go type IdentityWithCredentialsOidc (line 22) | type IdentityWithCredentialsOidc struct method GetConfig (line 47) | func (o *IdentityWithCredentialsOidc) GetConfig() IdentityWithCredenti... method GetConfigOk (line 57) | func (o *IdentityWithCredentialsOidc) GetConfigOk() (*IdentityWithCred... method HasConfig (line 65) | func (o *IdentityWithCredentialsOidc) HasConfig() bool { method SetConfig (line 74) | func (o *IdentityWithCredentialsOidc) SetConfig(v IdentityWithCredenti... method MarshalJSON (line 78) | func (o IdentityWithCredentialsOidc) MarshalJSON() ([]byte, error) { method ToMap (line 86) | func (o IdentityWithCredentialsOidc) ToMap() (map[string]interface{}, ... method UnmarshalJSON (line 99) | func (o *IdentityWithCredentialsOidc) UnmarshalJSON(data []byte) (err ... type _IdentityWithCredentialsOidc (line 27) | type _IdentityWithCredentialsOidc function NewIdentityWithCredentialsOidc (line 33) | func NewIdentityWithCredentialsOidc() *IdentityWithCredentialsOidc { function NewIdentityWithCredentialsOidcWithDefaults (line 41) | func NewIdentityWithCredentialsOidcWithDefaults() *IdentityWithCredentia... type NullableIdentityWithCredentialsOidc (line 120) | type NullableIdentityWithCredentialsOidc struct method Get (line 125) | func (v NullableIdentityWithCredentialsOidc) Get() *IdentityWithCreden... method Set (line 129) | func (v *NullableIdentityWithCredentialsOidc) Set(val *IdentityWithCre... method IsSet (line 134) | func (v NullableIdentityWithCredentialsOidc) IsSet() bool { method Unset (line 138) | func (v *NullableIdentityWithCredentialsOidc) Unset() { method MarshalJSON (line 147) | func (v NullableIdentityWithCredentialsOidc) MarshalJSON() ([]byte, er... method UnmarshalJSON (line 151) | func (v *NullableIdentityWithCredentialsOidc) UnmarshalJSON(src []byte... function NewNullableIdentityWithCredentialsOidc (line 143) | func NewNullableIdentityWithCredentialsOidc(val *IdentityWithCredentials... FILE: pkg/client-go/model_identity_with_credentials_oidc_config.go type IdentityWithCredentialsOidcConfig (line 22) | type IdentityWithCredentialsOidcConfig struct method GetProviders (line 48) | func (o *IdentityWithCredentialsOidcConfig) GetProviders() []IdentityW... method GetProvidersOk (line 58) | func (o *IdentityWithCredentialsOidcConfig) GetProvidersOk() ([]Identi... method HasProviders (line 66) | func (o *IdentityWithCredentialsOidcConfig) HasProviders() bool { method SetProviders (line 75) | func (o *IdentityWithCredentialsOidcConfig) SetProviders(v []IdentityW... method MarshalJSON (line 79) | func (o IdentityWithCredentialsOidcConfig) MarshalJSON() ([]byte, erro... method ToMap (line 87) | func (o IdentityWithCredentialsOidcConfig) ToMap() (map[string]interfa... method UnmarshalJSON (line 100) | func (o *IdentityWithCredentialsOidcConfig) UnmarshalJSON(data []byte)... type _IdentityWithCredentialsOidcConfig (line 28) | type _IdentityWithCredentialsOidcConfig function NewIdentityWithCredentialsOidcConfig (line 34) | func NewIdentityWithCredentialsOidcConfig() *IdentityWithCredentialsOidc... function NewIdentityWithCredentialsOidcConfigWithDefaults (line 42) | func NewIdentityWithCredentialsOidcConfigWithDefaults() *IdentityWithCre... type NullableIdentityWithCredentialsOidcConfig (line 121) | type NullableIdentityWithCredentialsOidcConfig struct method Get (line 126) | func (v NullableIdentityWithCredentialsOidcConfig) Get() *IdentityWith... method Set (line 130) | func (v *NullableIdentityWithCredentialsOidcConfig) Set(val *IdentityW... method IsSet (line 135) | func (v NullableIdentityWithCredentialsOidcConfig) IsSet() bool { method Unset (line 139) | func (v *NullableIdentityWithCredentialsOidcConfig) Unset() { method MarshalJSON (line 148) | func (v NullableIdentityWithCredentialsOidcConfig) MarshalJSON() ([]by... method UnmarshalJSON (line 152) | func (v *NullableIdentityWithCredentialsOidcConfig) UnmarshalJSON(src ... function NewNullableIdentityWithCredentialsOidcConfig (line 144) | func NewNullableIdentityWithCredentialsOidcConfig(val *IdentityWithCrede... FILE: pkg/client-go/model_identity_with_credentials_oidc_config_provider.go type IdentityWithCredentialsOidcConfigProvider (line 23) | type IdentityWithCredentialsOidcConfigProvider struct method GetOrganization (line 56) | func (o *IdentityWithCredentialsOidcConfigProvider) GetOrganization() ... method GetOrganizationOk (line 67) | func (o *IdentityWithCredentialsOidcConfigProvider) GetOrganizationOk(... method HasOrganization (line 75) | func (o *IdentityWithCredentialsOidcConfigProvider) HasOrganization() ... method SetOrganization (line 84) | func (o *IdentityWithCredentialsOidcConfigProvider) SetOrganization(v ... method SetOrganizationNil (line 89) | func (o *IdentityWithCredentialsOidcConfigProvider) SetOrganizationNil... method UnsetOrganization (line 94) | func (o *IdentityWithCredentialsOidcConfigProvider) UnsetOrganization() { method GetProvider (line 99) | func (o *IdentityWithCredentialsOidcConfigProvider) GetProvider() stri... method GetProviderOk (line 110) | func (o *IdentityWithCredentialsOidcConfigProvider) GetProviderOk() (*... method SetProvider (line 118) | func (o *IdentityWithCredentialsOidcConfigProvider) SetProvider(v stri... method GetSubject (line 123) | func (o *IdentityWithCredentialsOidcConfigProvider) GetSubject() string { method GetSubjectOk (line 134) | func (o *IdentityWithCredentialsOidcConfigProvider) GetSubjectOk() (*s... method SetSubject (line 142) | func (o *IdentityWithCredentialsOidcConfigProvider) SetSubject(v strin... method GetUseAutoLink (line 147) | func (o *IdentityWithCredentialsOidcConfigProvider) GetUseAutoLink() b... method GetUseAutoLinkOk (line 157) | func (o *IdentityWithCredentialsOidcConfigProvider) GetUseAutoLinkOk()... method HasUseAutoLink (line 165) | func (o *IdentityWithCredentialsOidcConfigProvider) HasUseAutoLink() b... method SetUseAutoLink (line 174) | func (o *IdentityWithCredentialsOidcConfigProvider) SetUseAutoLink(v b... method MarshalJSON (line 178) | func (o IdentityWithCredentialsOidcConfigProvider) MarshalJSON() ([]by... method ToMap (line 186) | func (o IdentityWithCredentialsOidcConfigProvider) ToMap() (map[string... method UnmarshalJSON (line 204) | func (o *IdentityWithCredentialsOidcConfigProvider) UnmarshalJSON(data... type _IdentityWithCredentialsOidcConfigProvider (line 34) | type _IdentityWithCredentialsOidcConfigProvider function NewIdentityWithCredentialsOidcConfigProvider (line 40) | func NewIdentityWithCredentialsOidcConfigProvider(provider string, subje... function NewIdentityWithCredentialsOidcConfigProviderWithDefaults (line 50) | func NewIdentityWithCredentialsOidcConfigProviderWithDefaults() *Identit... type NullableIdentityWithCredentialsOidcConfigProvider (line 250) | type NullableIdentityWithCredentialsOidcConfigProvider struct method Get (line 255) | func (v NullableIdentityWithCredentialsOidcConfigProvider) Get() *Iden... method Set (line 259) | func (v *NullableIdentityWithCredentialsOidcConfigProvider) Set(val *I... method IsSet (line 264) | func (v NullableIdentityWithCredentialsOidcConfigProvider) IsSet() bool { method Unset (line 268) | func (v *NullableIdentityWithCredentialsOidcConfigProvider) Unset() { method MarshalJSON (line 277) | func (v NullableIdentityWithCredentialsOidcConfigProvider) MarshalJSON... method UnmarshalJSON (line 281) | func (v *NullableIdentityWithCredentialsOidcConfigProvider) UnmarshalJ... function NewNullableIdentityWithCredentialsOidcConfigProvider (line 273) | func NewNullableIdentityWithCredentialsOidcConfigProvider(val *IdentityW... FILE: pkg/client-go/model_identity_with_credentials_password.go type IdentityWithCredentialsPassword (line 22) | type IdentityWithCredentialsPassword struct method GetConfig (line 47) | func (o *IdentityWithCredentialsPassword) GetConfig() IdentityWithCred... method GetConfigOk (line 57) | func (o *IdentityWithCredentialsPassword) GetConfigOk() (*IdentityWith... method HasConfig (line 65) | func (o *IdentityWithCredentialsPassword) HasConfig() bool { method SetConfig (line 74) | func (o *IdentityWithCredentialsPassword) SetConfig(v IdentityWithCred... method MarshalJSON (line 78) | func (o IdentityWithCredentialsPassword) MarshalJSON() ([]byte, error) { method ToMap (line 86) | func (o IdentityWithCredentialsPassword) ToMap() (map[string]interface... method UnmarshalJSON (line 99) | func (o *IdentityWithCredentialsPassword) UnmarshalJSON(data []byte) (... type _IdentityWithCredentialsPassword (line 27) | type _IdentityWithCredentialsPassword function NewIdentityWithCredentialsPassword (line 33) | func NewIdentityWithCredentialsPassword() *IdentityWithCredentialsPasswo... function NewIdentityWithCredentialsPasswordWithDefaults (line 41) | func NewIdentityWithCredentialsPasswordWithDefaults() *IdentityWithCrede... type NullableIdentityWithCredentialsPassword (line 120) | type NullableIdentityWithCredentialsPassword struct method Get (line 125) | func (v NullableIdentityWithCredentialsPassword) Get() *IdentityWithCr... method Set (line 129) | func (v *NullableIdentityWithCredentialsPassword) Set(val *IdentityWit... method IsSet (line 134) | func (v NullableIdentityWithCredentialsPassword) IsSet() bool { method Unset (line 138) | func (v *NullableIdentityWithCredentialsPassword) Unset() { method MarshalJSON (line 147) | func (v NullableIdentityWithCredentialsPassword) MarshalJSON() ([]byte... method UnmarshalJSON (line 151) | func (v *NullableIdentityWithCredentialsPassword) UnmarshalJSON(src []... function NewNullableIdentityWithCredentialsPassword (line 143) | func NewNullableIdentityWithCredentialsPassword(val *IdentityWithCredent... FILE: pkg/client-go/model_identity_with_credentials_password_config.go type IdentityWithCredentialsPasswordConfig (line 22) | type IdentityWithCredentialsPasswordConfig struct method GetHashedPassword (line 52) | func (o *IdentityWithCredentialsPasswordConfig) GetHashedPassword() st... method GetHashedPasswordOk (line 62) | func (o *IdentityWithCredentialsPasswordConfig) GetHashedPasswordOk() ... method HasHashedPassword (line 70) | func (o *IdentityWithCredentialsPasswordConfig) HasHashedPassword() bo... method SetHashedPassword (line 79) | func (o *IdentityWithCredentialsPasswordConfig) SetHashedPassword(v st... method GetPassword (line 84) | func (o *IdentityWithCredentialsPasswordConfig) GetPassword() string { method GetPasswordOk (line 94) | func (o *IdentityWithCredentialsPasswordConfig) GetPasswordOk() (*stri... method HasPassword (line 102) | func (o *IdentityWithCredentialsPasswordConfig) HasPassword() bool { method SetPassword (line 111) | func (o *IdentityWithCredentialsPasswordConfig) SetPassword(v string) { method GetUsePasswordMigrationHook (line 116) | func (o *IdentityWithCredentialsPasswordConfig) GetUsePasswordMigratio... method GetUsePasswordMigrationHookOk (line 126) | func (o *IdentityWithCredentialsPasswordConfig) GetUsePasswordMigratio... method HasUsePasswordMigrationHook (line 134) | func (o *IdentityWithCredentialsPasswordConfig) HasUsePasswordMigratio... method SetUsePasswordMigrationHook (line 143) | func (o *IdentityWithCredentialsPasswordConfig) SetUsePasswordMigratio... method MarshalJSON (line 147) | func (o IdentityWithCredentialsPasswordConfig) MarshalJSON() ([]byte, ... method ToMap (line 155) | func (o IdentityWithCredentialsPasswordConfig) ToMap() (map[string]int... method UnmarshalJSON (line 174) | func (o *IdentityWithCredentialsPasswordConfig) UnmarshalJSON(data []b... type _IdentityWithCredentialsPasswordConfig (line 32) | type _IdentityWithCredentialsPasswordConfig function NewIdentityWithCredentialsPasswordConfig (line 38) | func NewIdentityWithCredentialsPasswordConfig() *IdentityWithCredentials... function NewIdentityWithCredentialsPasswordConfigWithDefaults (line 46) | func NewIdentityWithCredentialsPasswordConfigWithDefaults() *IdentityWit... type NullableIdentityWithCredentialsPasswordConfig (line 197) | type NullableIdentityWithCredentialsPasswordConfig struct method Get (line 202) | func (v NullableIdentityWithCredentialsPasswordConfig) Get() *Identity... method Set (line 206) | func (v *NullableIdentityWithCredentialsPasswordConfig) Set(val *Ident... method IsSet (line 211) | func (v NullableIdentityWithCredentialsPasswordConfig) IsSet() bool { method Unset (line 215) | func (v *NullableIdentityWithCredentialsPasswordConfig) Unset() { method MarshalJSON (line 224) | func (v NullableIdentityWithCredentialsPasswordConfig) MarshalJSON() (... method UnmarshalJSON (line 228) | func (v *NullableIdentityWithCredentialsPasswordConfig) UnmarshalJSON(... function NewNullableIdentityWithCredentialsPasswordConfig (line 220) | func NewNullableIdentityWithCredentialsPasswordConfig(val *IdentityWithC... FILE: pkg/client-go/model_identity_with_credentials_saml.go type IdentityWithCredentialsSaml (line 22) | type IdentityWithCredentialsSaml struct method GetConfig (line 47) | func (o *IdentityWithCredentialsSaml) GetConfig() IdentityWithCredenti... method GetConfigOk (line 57) | func (o *IdentityWithCredentialsSaml) GetConfigOk() (*IdentityWithCred... method HasConfig (line 65) | func (o *IdentityWithCredentialsSaml) HasConfig() bool { method SetConfig (line 74) | func (o *IdentityWithCredentialsSaml) SetConfig(v IdentityWithCredenti... method MarshalJSON (line 78) | func (o IdentityWithCredentialsSaml) MarshalJSON() ([]byte, error) { method ToMap (line 86) | func (o IdentityWithCredentialsSaml) ToMap() (map[string]interface{}, ... method UnmarshalJSON (line 99) | func (o *IdentityWithCredentialsSaml) UnmarshalJSON(data []byte) (err ... type _IdentityWithCredentialsSaml (line 27) | type _IdentityWithCredentialsSaml function NewIdentityWithCredentialsSaml (line 33) | func NewIdentityWithCredentialsSaml() *IdentityWithCredentialsSaml { function NewIdentityWithCredentialsSamlWithDefaults (line 41) | func NewIdentityWithCredentialsSamlWithDefaults() *IdentityWithCredentia... type NullableIdentityWithCredentialsSaml (line 120) | type NullableIdentityWithCredentialsSaml struct method Get (line 125) | func (v NullableIdentityWithCredentialsSaml) Get() *IdentityWithCreden... method Set (line 129) | func (v *NullableIdentityWithCredentialsSaml) Set(val *IdentityWithCre... method IsSet (line 134) | func (v NullableIdentityWithCredentialsSaml) IsSet() bool { method Unset (line 138) | func (v *NullableIdentityWithCredentialsSaml) Unset() { method MarshalJSON (line 147) | func (v NullableIdentityWithCredentialsSaml) MarshalJSON() ([]byte, er... method UnmarshalJSON (line 151) | func (v *NullableIdentityWithCredentialsSaml) UnmarshalJSON(src []byte... function NewNullableIdentityWithCredentialsSaml (line 143) | func NewNullableIdentityWithCredentialsSaml(val *IdentityWithCredentials... FILE: pkg/client-go/model_identity_with_credentials_saml_config.go type IdentityWithCredentialsSamlConfig (line 22) | type IdentityWithCredentialsSamlConfig struct method GetProviders (line 48) | func (o *IdentityWithCredentialsSamlConfig) GetProviders() []IdentityW... method GetProvidersOk (line 58) | func (o *IdentityWithCredentialsSamlConfig) GetProvidersOk() ([]Identi... method HasProviders (line 66) | func (o *IdentityWithCredentialsSamlConfig) HasProviders() bool { method SetProviders (line 75) | func (o *IdentityWithCredentialsSamlConfig) SetProviders(v []IdentityW... method MarshalJSON (line 79) | func (o IdentityWithCredentialsSamlConfig) MarshalJSON() ([]byte, erro... method ToMap (line 87) | func (o IdentityWithCredentialsSamlConfig) ToMap() (map[string]interfa... method UnmarshalJSON (line 100) | func (o *IdentityWithCredentialsSamlConfig) UnmarshalJSON(data []byte)... type _IdentityWithCredentialsSamlConfig (line 28) | type _IdentityWithCredentialsSamlConfig function NewIdentityWithCredentialsSamlConfig (line 34) | func NewIdentityWithCredentialsSamlConfig() *IdentityWithCredentialsSaml... function NewIdentityWithCredentialsSamlConfigWithDefaults (line 42) | func NewIdentityWithCredentialsSamlConfigWithDefaults() *IdentityWithCre... type NullableIdentityWithCredentialsSamlConfig (line 121) | type NullableIdentityWithCredentialsSamlConfig struct method Get (line 126) | func (v NullableIdentityWithCredentialsSamlConfig) Get() *IdentityWith... method Set (line 130) | func (v *NullableIdentityWithCredentialsSamlConfig) Set(val *IdentityW... method IsSet (line 135) | func (v NullableIdentityWithCredentialsSamlConfig) IsSet() bool { method Unset (line 139) | func (v *NullableIdentityWithCredentialsSamlConfig) Unset() { method MarshalJSON (line 148) | func (v NullableIdentityWithCredentialsSamlConfig) MarshalJSON() ([]by... method UnmarshalJSON (line 152) | func (v *NullableIdentityWithCredentialsSamlConfig) UnmarshalJSON(src ... function NewNullableIdentityWithCredentialsSamlConfig (line 144) | func NewNullableIdentityWithCredentialsSamlConfig(val *IdentityWithCrede... FILE: pkg/client-go/model_identity_with_credentials_saml_config_provider.go type IdentityWithCredentialsSamlConfigProvider (line 23) | type IdentityWithCredentialsSamlConfigProvider struct method GetOrganization (line 54) | func (o *IdentityWithCredentialsSamlConfigProvider) GetOrganization() ... method GetOrganizationOk (line 65) | func (o *IdentityWithCredentialsSamlConfigProvider) GetOrganizationOk(... method HasOrganization (line 73) | func (o *IdentityWithCredentialsSamlConfigProvider) HasOrganization() ... method SetOrganization (line 82) | func (o *IdentityWithCredentialsSamlConfigProvider) SetOrganization(v ... method SetOrganizationNil (line 87) | func (o *IdentityWithCredentialsSamlConfigProvider) SetOrganizationNil... method UnsetOrganization (line 92) | func (o *IdentityWithCredentialsSamlConfigProvider) UnsetOrganization() { method GetProvider (line 97) | func (o *IdentityWithCredentialsSamlConfigProvider) GetProvider() stri... method GetProviderOk (line 108) | func (o *IdentityWithCredentialsSamlConfigProvider) GetProviderOk() (*... method SetProvider (line 116) | func (o *IdentityWithCredentialsSamlConfigProvider) SetProvider(v stri... method GetSubject (line 121) | func (o *IdentityWithCredentialsSamlConfigProvider) GetSubject() string { method GetSubjectOk (line 132) | func (o *IdentityWithCredentialsSamlConfigProvider) GetSubjectOk() (*s... method SetSubject (line 140) | func (o *IdentityWithCredentialsSamlConfigProvider) SetSubject(v strin... method MarshalJSON (line 144) | func (o IdentityWithCredentialsSamlConfigProvider) MarshalJSON() ([]by... method ToMap (line 152) | func (o IdentityWithCredentialsSamlConfigProvider) ToMap() (map[string... method UnmarshalJSON (line 167) | func (o *IdentityWithCredentialsSamlConfigProvider) UnmarshalJSON(data... type _IdentityWithCredentialsSamlConfigProvider (line 32) | type _IdentityWithCredentialsSamlConfigProvider function NewIdentityWithCredentialsSamlConfigProvider (line 38) | func NewIdentityWithCredentialsSamlConfigProvider(provider string, subje... function NewIdentityWithCredentialsSamlConfigProviderWithDefaults (line 48) | func NewIdentityWithCredentialsSamlConfigProviderWithDefaults() *Identit... type NullableIdentityWithCredentialsSamlConfigProvider (line 212) | type NullableIdentityWithCredentialsSamlConfigProvider struct method Get (line 217) | func (v NullableIdentityWithCredentialsSamlConfigProvider) Get() *Iden... method Set (line 221) | func (v *NullableIdentityWithCredentialsSamlConfigProvider) Set(val *I... method IsSet (line 226) | func (v NullableIdentityWithCredentialsSamlConfigProvider) IsSet() bool { method Unset (line 230) | func (v *NullableIdentityWithCredentialsSamlConfigProvider) Unset() { method MarshalJSON (line 239) | func (v NullableIdentityWithCredentialsSamlConfigProvider) MarshalJSON... method UnmarshalJSON (line 243) | func (v *NullableIdentityWithCredentialsSamlConfigProvider) UnmarshalJ... function NewNullableIdentityWithCredentialsSamlConfigProvider (line 235) | func NewNullableIdentityWithCredentialsSamlConfigProvider(val *IdentityW... FILE: pkg/client-go/model_is_alive_200_response.go type IsAlive200Response (line 23) | type IsAlive200Response struct method GetStatus (line 50) | func (o *IsAlive200Response) GetStatus() string { method GetStatusOk (line 61) | func (o *IsAlive200Response) GetStatusOk() (*string, bool) { method SetStatus (line 69) | func (o *IsAlive200Response) SetStatus(v string) { method MarshalJSON (line 73) | func (o IsAlive200Response) MarshalJSON() ([]byte, error) { method ToMap (line 81) | func (o IsAlive200Response) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 92) | func (o *IsAlive200Response) UnmarshalJSON(data []byte) (err error) { type _IsAlive200Response (line 29) | type _IsAlive200Response function NewIsAlive200Response (line 35) | func NewIsAlive200Response(status string) *IsAlive200Response { function NewIsAlive200ResponseWithDefaults (line 44) | func NewIsAlive200ResponseWithDefaults() *IsAlive200Response { type NullableIsAlive200Response (line 134) | type NullableIsAlive200Response struct method Get (line 139) | func (v NullableIsAlive200Response) Get() *IsAlive200Response { method Set (line 143) | func (v *NullableIsAlive200Response) Set(val *IsAlive200Response) { method IsSet (line 148) | func (v NullableIsAlive200Response) IsSet() bool { method Unset (line 152) | func (v *NullableIsAlive200Response) Unset() { method MarshalJSON (line 161) | func (v NullableIsAlive200Response) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 165) | func (v *NullableIsAlive200Response) UnmarshalJSON(src []byte) error { function NewNullableIsAlive200Response (line 157) | func NewNullableIsAlive200Response(val *IsAlive200Response) *NullableIsA... FILE: pkg/client-go/model_is_ready_503_response.go type IsReady503Response (line 23) | type IsReady503Response struct method GetErrors (line 50) | func (o *IsReady503Response) GetErrors() map[string]string { method GetErrorsOk (line 61) | func (o *IsReady503Response) GetErrorsOk() (*map[string]string, bool) { method SetErrors (line 69) | func (o *IsReady503Response) SetErrors(v map[string]string) { method MarshalJSON (line 73) | func (o IsReady503Response) MarshalJSON() ([]byte, error) { method ToMap (line 81) | func (o IsReady503Response) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 92) | func (o *IsReady503Response) UnmarshalJSON(data []byte) (err error) { type _IsReady503Response (line 29) | type _IsReady503Response function NewIsReady503Response (line 35) | func NewIsReady503Response(errors map[string]string) *IsReady503Response { function NewIsReady503ResponseWithDefaults (line 44) | func NewIsReady503ResponseWithDefaults() *IsReady503Response { type NullableIsReady503Response (line 134) | type NullableIsReady503Response struct method Get (line 139) | func (v NullableIsReady503Response) Get() *IsReady503Response { method Set (line 143) | func (v *NullableIsReady503Response) Set(val *IsReady503Response) { method IsSet (line 148) | func (v NullableIsReady503Response) IsSet() bool { method Unset (line 152) | func (v *NullableIsReady503Response) Unset() { method MarshalJSON (line 161) | func (v NullableIsReady503Response) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 165) | func (v *NullableIsReady503Response) UnmarshalJSON(src []byte) error { function NewNullableIsReady503Response (line 157) | func NewNullableIsReady503Response(val *IsReady503Response) *NullableIsR... FILE: pkg/client-go/model_json_patch.go type JsonPatch (line 23) | type JsonPatch struct method GetFrom (line 57) | func (o *JsonPatch) GetFrom() string { method GetFromOk (line 67) | func (o *JsonPatch) GetFromOk() (*string, bool) { method HasFrom (line 75) | func (o *JsonPatch) HasFrom() bool { method SetFrom (line 84) | func (o *JsonPatch) SetFrom(v string) { method GetOp (line 89) | func (o *JsonPatch) GetOp() string { method GetOpOk (line 100) | func (o *JsonPatch) GetOpOk() (*string, bool) { method SetOp (line 108) | func (o *JsonPatch) SetOp(v string) { method GetPath (line 113) | func (o *JsonPatch) GetPath() string { method GetPathOk (line 124) | func (o *JsonPatch) GetPathOk() (*string, bool) { method SetPath (line 132) | func (o *JsonPatch) SetPath(v string) { method GetValue (line 137) | func (o *JsonPatch) GetValue() interface{} { method GetValueOk (line 148) | func (o *JsonPatch) GetValueOk() (*interface{}, bool) { method HasValue (line 156) | func (o *JsonPatch) HasValue() bool { method SetValue (line 165) | func (o *JsonPatch) SetValue(v interface{}) { method MarshalJSON (line 169) | func (o JsonPatch) MarshalJSON() ([]byte, error) { method ToMap (line 177) | func (o JsonPatch) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 195) | func (o *JsonPatch) UnmarshalJSON(data []byte) (err error) { type _JsonPatch (line 35) | type _JsonPatch function NewJsonPatch (line 41) | func NewJsonPatch(op string, path string) *JsonPatch { function NewJsonPatchWithDefaults (line 51) | func NewJsonPatchWithDefaults() *JsonPatch { type NullableJsonPatch (line 241) | type NullableJsonPatch struct method Get (line 246) | func (v NullableJsonPatch) Get() *JsonPatch { method Set (line 250) | func (v *NullableJsonPatch) Set(val *JsonPatch) { method IsSet (line 255) | func (v NullableJsonPatch) IsSet() bool { method Unset (line 259) | func (v *NullableJsonPatch) Unset() { method MarshalJSON (line 268) | func (v NullableJsonPatch) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 272) | func (v *NullableJsonPatch) UnmarshalJSON(src []byte) error { function NewNullableJsonPatch (line 264) | func NewNullableJsonPatch(val *JsonPatch) *NullableJsonPatch { FILE: pkg/client-go/model_login_flow.go type LoginFlow (line 24) | type LoginFlow struct method GetActive (line 89) | func (o *LoginFlow) GetActive() string { method GetActiveOk (line 99) | func (o *LoginFlow) GetActiveOk() (*string, bool) { method HasActive (line 107) | func (o *LoginFlow) HasActive() bool { method SetActive (line 116) | func (o *LoginFlow) SetActive(v string) { method GetCreatedAt (line 121) | func (o *LoginFlow) GetCreatedAt() time.Time { method GetCreatedAtOk (line 131) | func (o *LoginFlow) GetCreatedAtOk() (*time.Time, bool) { method HasCreatedAt (line 139) | func (o *LoginFlow) HasCreatedAt() bool { method SetCreatedAt (line 148) | func (o *LoginFlow) SetCreatedAt(v time.Time) { method GetExpiresAt (line 153) | func (o *LoginFlow) GetExpiresAt() time.Time { method GetExpiresAtOk (line 164) | func (o *LoginFlow) GetExpiresAtOk() (*time.Time, bool) { method SetExpiresAt (line 172) | func (o *LoginFlow) SetExpiresAt(v time.Time) { method GetId (line 177) | func (o *LoginFlow) GetId() string { method GetIdOk (line 188) | func (o *LoginFlow) GetIdOk() (*string, bool) { method SetId (line 196) | func (o *LoginFlow) SetId(v string) { method GetIdentitySchema (line 201) | func (o *LoginFlow) GetIdentitySchema() string { method GetIdentitySchemaOk (line 211) | func (o *LoginFlow) GetIdentitySchemaOk() (*string, bool) { method HasIdentitySchema (line 219) | func (o *LoginFlow) HasIdentitySchema() bool { method SetIdentitySchema (line 228) | func (o *LoginFlow) SetIdentitySchema(v string) { method GetIssuedAt (line 233) | func (o *LoginFlow) GetIssuedAt() time.Time { method GetIssuedAtOk (line 244) | func (o *LoginFlow) GetIssuedAtOk() (*time.Time, bool) { method SetIssuedAt (line 252) | func (o *LoginFlow) SetIssuedAt(v time.Time) { method GetOauth2LoginChallenge (line 257) | func (o *LoginFlow) GetOauth2LoginChallenge() string { method GetOauth2LoginChallengeOk (line 267) | func (o *LoginFlow) GetOauth2LoginChallengeOk() (*string, bool) { method HasOauth2LoginChallenge (line 275) | func (o *LoginFlow) HasOauth2LoginChallenge() bool { method SetOauth2LoginChallenge (line 284) | func (o *LoginFlow) SetOauth2LoginChallenge(v string) { method GetOauth2LoginRequest (line 289) | func (o *LoginFlow) GetOauth2LoginRequest() OAuth2LoginRequest { method GetOauth2LoginRequestOk (line 299) | func (o *LoginFlow) GetOauth2LoginRequestOk() (*OAuth2LoginRequest, bo... method HasOauth2LoginRequest (line 307) | func (o *LoginFlow) HasOauth2LoginRequest() bool { method SetOauth2LoginRequest (line 316) | func (o *LoginFlow) SetOauth2LoginRequest(v OAuth2LoginRequest) { method GetOrganizationId (line 321) | func (o *LoginFlow) GetOrganizationId() string { method GetOrganizationIdOk (line 332) | func (o *LoginFlow) GetOrganizationIdOk() (*string, bool) { method HasOrganizationId (line 340) | func (o *LoginFlow) HasOrganizationId() bool { method SetOrganizationId (line 349) | func (o *LoginFlow) SetOrganizationId(v string) { method SetOrganizationIdNil (line 354) | func (o *LoginFlow) SetOrganizationIdNil() { method UnsetOrganizationId (line 359) | func (o *LoginFlow) UnsetOrganizationId() { method GetRefresh (line 364) | func (o *LoginFlow) GetRefresh() bool { method GetRefreshOk (line 374) | func (o *LoginFlow) GetRefreshOk() (*bool, bool) { method HasRefresh (line 382) | func (o *LoginFlow) HasRefresh() bool { method SetRefresh (line 391) | func (o *LoginFlow) SetRefresh(v bool) { method GetRequestUrl (line 396) | func (o *LoginFlow) GetRequestUrl() string { method GetRequestUrlOk (line 407) | func (o *LoginFlow) GetRequestUrlOk() (*string, bool) { method SetRequestUrl (line 415) | func (o *LoginFlow) SetRequestUrl(v string) { method GetRequestedAal (line 420) | func (o *LoginFlow) GetRequestedAal() AuthenticatorAssuranceLevel { method GetRequestedAalOk (line 430) | func (o *LoginFlow) GetRequestedAalOk() (*AuthenticatorAssuranceLevel,... method HasRequestedAal (line 438) | func (o *LoginFlow) HasRequestedAal() bool { method SetRequestedAal (line 447) | func (o *LoginFlow) SetRequestedAal(v AuthenticatorAssuranceLevel) { method GetReturnTo (line 452) | func (o *LoginFlow) GetReturnTo() string { method GetReturnToOk (line 462) | func (o *LoginFlow) GetReturnToOk() (*string, bool) { method HasReturnTo (line 470) | func (o *LoginFlow) HasReturnTo() bool { method SetReturnTo (line 479) | func (o *LoginFlow) SetReturnTo(v string) { method GetSessionTokenExchangeCode (line 484) | func (o *LoginFlow) GetSessionTokenExchangeCode() string { method GetSessionTokenExchangeCodeOk (line 494) | func (o *LoginFlow) GetSessionTokenExchangeCodeOk() (*string, bool) { method HasSessionTokenExchangeCode (line 502) | func (o *LoginFlow) HasSessionTokenExchangeCode() bool { method SetSessionTokenExchangeCode (line 511) | func (o *LoginFlow) SetSessionTokenExchangeCode(v string) { method GetState (line 517) | func (o *LoginFlow) GetState() interface{} { method GetStateOk (line 529) | func (o *LoginFlow) GetStateOk() (*interface{}, bool) { method SetState (line 537) | func (o *LoginFlow) SetState(v interface{}) { method GetTransientPayload (line 542) | func (o *LoginFlow) GetTransientPayload() map[string]interface{} { method GetTransientPayloadOk (line 552) | func (o *LoginFlow) GetTransientPayloadOk() (map[string]interface{}, b... method HasTransientPayload (line 560) | func (o *LoginFlow) HasTransientPayload() bool { method SetTransientPayload (line 569) | func (o *LoginFlow) SetTransientPayload(v map[string]interface{}) { method GetType (line 574) | func (o *LoginFlow) GetType() string { method GetTypeOk (line 585) | func (o *LoginFlow) GetTypeOk() (*string, bool) { method SetType (line 593) | func (o *LoginFlow) SetType(v string) { method GetUi (line 598) | func (o *LoginFlow) GetUi() UiContainer { method GetUiOk (line 609) | func (o *LoginFlow) GetUiOk() (*UiContainer, bool) { method SetUi (line 617) | func (o *LoginFlow) SetUi(v UiContainer) { method GetUpdatedAt (line 622) | func (o *LoginFlow) GetUpdatedAt() time.Time { method GetUpdatedAtOk (line 632) | func (o *LoginFlow) GetUpdatedAtOk() (*time.Time, bool) { method HasUpdatedAt (line 640) | func (o *LoginFlow) HasUpdatedAt() bool { method SetUpdatedAt (line 649) | func (o *LoginFlow) SetUpdatedAt(v time.Time) { method MarshalJSON (line 653) | func (o LoginFlow) MarshalJSON() ([]byte, error) { method ToMap (line 661) | func (o LoginFlow) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 716) | func (o *LoginFlow) UnmarshalJSON(data []byte) (err error) { type _LoginFlow (line 62) | type _LoginFlow function NewLoginFlow (line 68) | func NewLoginFlow(expiresAt time.Time, id string, issuedAt time.Time, re... function NewLoginFlowWithDefaults (line 83) | func NewLoginFlowWithDefaults() *LoginFlow { type NullableLoginFlow (line 782) | type NullableLoginFlow struct method Get (line 787) | func (v NullableLoginFlow) Get() *LoginFlow { method Set (line 791) | func (v *NullableLoginFlow) Set(val *LoginFlow) { method IsSet (line 796) | func (v NullableLoginFlow) IsSet() bool { method Unset (line 800) | func (v *NullableLoginFlow) Unset() { method MarshalJSON (line 809) | func (v NullableLoginFlow) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 813) | func (v *NullableLoginFlow) UnmarshalJSON(src []byte) error { function NewNullableLoginFlow (line 805) | func NewNullableLoginFlow(val *LoginFlow) *NullableLoginFlow { FILE: pkg/client-go/model_login_flow_state.go type LoginFlowState (line 20) | type LoginFlowState method UnmarshalJSON (line 36) | func (v *LoginFlowState) UnmarshalJSON(src []byte) error { method IsValid (line 65) | func (v LoginFlowState) IsValid() bool { method Ptr (line 75) | func (v LoginFlowState) Ptr() *LoginFlowState { constant LOGINFLOWSTATE_CHOOSE_METHOD (line 24) | LOGINFLOWSTATE_CHOOSE_METHOD LoginFlowState = "choose_method" constant LOGINFLOWSTATE_SENT_EMAIL (line 25) | LOGINFLOWSTATE_SENT_EMAIL LoginFlowState = "sent_email" constant LOGINFLOWSTATE_PASSED_CHALLENGE (line 26) | LOGINFLOWSTATE_PASSED_CHALLENGE LoginFlowState = "passed_challenge" function NewLoginFlowStateFromValue (line 55) | func NewLoginFlowStateFromValue(v string) (*LoginFlowState, error) { type NullableLoginFlowState (line 79) | type NullableLoginFlowState struct method Get (line 84) | func (v NullableLoginFlowState) Get() *LoginFlowState { method Set (line 88) | func (v *NullableLoginFlowState) Set(val *LoginFlowState) { method IsSet (line 93) | func (v NullableLoginFlowState) IsSet() bool { method Unset (line 97) | func (v *NullableLoginFlowState) Unset() { method MarshalJSON (line 106) | func (v NullableLoginFlowState) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 110) | func (v *NullableLoginFlowState) UnmarshalJSON(src []byte) error { function NewNullableLoginFlowState (line 102) | func NewNullableLoginFlowState(val *LoginFlowState) *NullableLoginFlowSt... FILE: pkg/client-go/model_logout_flow.go type LogoutFlow (line 23) | type LogoutFlow struct method GetLogoutToken (line 53) | func (o *LogoutFlow) GetLogoutToken() string { method GetLogoutTokenOk (line 64) | func (o *LogoutFlow) GetLogoutTokenOk() (*string, bool) { method SetLogoutToken (line 72) | func (o *LogoutFlow) SetLogoutToken(v string) { method GetLogoutUrl (line 77) | func (o *LogoutFlow) GetLogoutUrl() string { method GetLogoutUrlOk (line 88) | func (o *LogoutFlow) GetLogoutUrlOk() (*string, bool) { method SetLogoutUrl (line 96) | func (o *LogoutFlow) SetLogoutUrl(v string) { method MarshalJSON (line 100) | func (o LogoutFlow) MarshalJSON() ([]byte, error) { method ToMap (line 108) | func (o LogoutFlow) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 120) | func (o *LogoutFlow) UnmarshalJSON(data []byte) (err error) { type _LogoutFlow (line 31) | type _LogoutFlow function NewLogoutFlow (line 37) | func NewLogoutFlow(logoutToken string, logoutUrl string) *LogoutFlow { function NewLogoutFlowWithDefaults (line 47) | func NewLogoutFlowWithDefaults() *LogoutFlow { type NullableLogoutFlow (line 164) | type NullableLogoutFlow struct method Get (line 169) | func (v NullableLogoutFlow) Get() *LogoutFlow { method Set (line 173) | func (v *NullableLogoutFlow) Set(val *LogoutFlow) { method IsSet (line 178) | func (v NullableLogoutFlow) IsSet() bool { method Unset (line 182) | func (v *NullableLogoutFlow) Unset() { method MarshalJSON (line 191) | func (v NullableLogoutFlow) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 195) | func (v *NullableLogoutFlow) UnmarshalJSON(src []byte) error { function NewNullableLogoutFlow (line 187) | func NewNullableLogoutFlow(val *LogoutFlow) *NullableLogoutFlow { FILE: pkg/client-go/model_message.go type Message (line 24) | type Message struct method GetBody (line 74) | func (o *Message) GetBody() string { method GetBodyOk (line 85) | func (o *Message) GetBodyOk() (*string, bool) { method SetBody (line 93) | func (o *Message) SetBody(v string) { method GetChannel (line 98) | func (o *Message) GetChannel() string { method GetChannelOk (line 108) | func (o *Message) GetChannelOk() (*string, bool) { method HasChannel (line 116) | func (o *Message) HasChannel() bool { method SetChannel (line 125) | func (o *Message) SetChannel(v string) { method GetCreatedAt (line 130) | func (o *Message) GetCreatedAt() time.Time { method GetCreatedAtOk (line 141) | func (o *Message) GetCreatedAtOk() (*time.Time, bool) { method SetCreatedAt (line 149) | func (o *Message) SetCreatedAt(v time.Time) { method GetDispatches (line 154) | func (o *Message) GetDispatches() []MessageDispatch { method GetDispatchesOk (line 164) | func (o *Message) GetDispatchesOk() ([]MessageDispatch, bool) { method HasDispatches (line 172) | func (o *Message) HasDispatches() bool { method SetDispatches (line 181) | func (o *Message) SetDispatches(v []MessageDispatch) { method GetId (line 186) | func (o *Message) GetId() string { method GetIdOk (line 197) | func (o *Message) GetIdOk() (*string, bool) { method SetId (line 205) | func (o *Message) SetId(v string) { method GetRecipient (line 210) | func (o *Message) GetRecipient() string { method GetRecipientOk (line 221) | func (o *Message) GetRecipientOk() (*string, bool) { method SetRecipient (line 229) | func (o *Message) SetRecipient(v string) { method GetSendCount (line 234) | func (o *Message) GetSendCount() int64 { method GetSendCountOk (line 245) | func (o *Message) GetSendCountOk() (*int64, bool) { method SetSendCount (line 253) | func (o *Message) SetSendCount(v int64) { method GetStatus (line 258) | func (o *Message) GetStatus() CourierMessageStatus { method GetStatusOk (line 269) | func (o *Message) GetStatusOk() (*CourierMessageStatus, bool) { method SetStatus (line 277) | func (o *Message) SetStatus(v CourierMessageStatus) { method GetSubject (line 282) | func (o *Message) GetSubject() string { method GetSubjectOk (line 293) | func (o *Message) GetSubjectOk() (*string, bool) { method SetSubject (line 301) | func (o *Message) SetSubject(v string) { method GetTemplateType (line 306) | func (o *Message) GetTemplateType() string { method GetTemplateTypeOk (line 317) | func (o *Message) GetTemplateTypeOk() (*string, bool) { method SetTemplateType (line 325) | func (o *Message) SetTemplateType(v string) { method GetType (line 330) | func (o *Message) GetType() CourierMessageType { method GetTypeOk (line 341) | func (o *Message) GetTypeOk() (*CourierMessageType, bool) { method SetType (line 349) | func (o *Message) SetType(v CourierMessageType) { method GetUpdatedAt (line 354) | func (o *Message) GetUpdatedAt() time.Time { method GetUpdatedAtOk (line 365) | func (o *Message) GetUpdatedAtOk() (*time.Time, bool) { method SetUpdatedAt (line 373) | func (o *Message) SetUpdatedAt(v time.Time) { method MarshalJSON (line 377) | func (o Message) MarshalJSON() ([]byte, error) { method ToMap (line 385) | func (o Message) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 411) | func (o *Message) UnmarshalJSON(data []byte) (err error) { type _Message (line 44) | type _Message function NewMessage (line 50) | func NewMessage(body string, createdAt time.Time, id string, recipient s... function NewMessageWithDefaults (line 68) | func NewMessageWithDefaults() *Message { type NullableMessage (line 473) | type NullableMessage struct method Get (line 478) | func (v NullableMessage) Get() *Message { method Set (line 482) | func (v *NullableMessage) Set(val *Message) { method IsSet (line 487) | func (v NullableMessage) IsSet() bool { method Unset (line 491) | func (v *NullableMessage) Unset() { method MarshalJSON (line 500) | func (v NullableMessage) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 504) | func (v *NullableMessage) UnmarshalJSON(src []byte) error { function NewNullableMessage (line 496) | func NewNullableMessage(val *Message) *NullableMessage { FILE: pkg/client-go/model_message_dispatch.go type MessageDispatch (line 24) | type MessageDispatch struct method GetCreatedAt (line 64) | func (o *MessageDispatch) GetCreatedAt() time.Time { method GetCreatedAtOk (line 75) | func (o *MessageDispatch) GetCreatedAtOk() (*time.Time, bool) { method SetCreatedAt (line 83) | func (o *MessageDispatch) SetCreatedAt(v time.Time) { method GetError (line 88) | func (o *MessageDispatch) GetError() map[string]interface{} { method GetErrorOk (line 98) | func (o *MessageDispatch) GetErrorOk() (map[string]interface{}, bool) { method HasError (line 106) | func (o *MessageDispatch) HasError() bool { method SetError (line 115) | func (o *MessageDispatch) SetError(v map[string]interface{}) { method GetId (line 120) | func (o *MessageDispatch) GetId() string { method GetIdOk (line 131) | func (o *MessageDispatch) GetIdOk() (*string, bool) { method SetId (line 139) | func (o *MessageDispatch) SetId(v string) { method GetMessageId (line 144) | func (o *MessageDispatch) GetMessageId() string { method GetMessageIdOk (line 155) | func (o *MessageDispatch) GetMessageIdOk() (*string, bool) { method SetMessageId (line 163) | func (o *MessageDispatch) SetMessageId(v string) { method GetStatus (line 168) | func (o *MessageDispatch) GetStatus() string { method GetStatusOk (line 179) | func (o *MessageDispatch) GetStatusOk() (*string, bool) { method SetStatus (line 187) | func (o *MessageDispatch) SetStatus(v string) { method GetUpdatedAt (line 192) | func (o *MessageDispatch) GetUpdatedAt() time.Time { method GetUpdatedAtOk (line 203) | func (o *MessageDispatch) GetUpdatedAtOk() (*time.Time, bool) { method SetUpdatedAt (line 211) | func (o *MessageDispatch) SetUpdatedAt(v time.Time) { method MarshalJSON (line 215) | func (o MessageDispatch) MarshalJSON() ([]byte, error) { method ToMap (line 223) | func (o MessageDispatch) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 241) | func (o *MessageDispatch) UnmarshalJSON(data []byte) (err error) { type _MessageDispatch (line 39) | type _MessageDispatch function NewMessageDispatch (line 45) | func NewMessageDispatch(createdAt time.Time, id string, messageId string... function NewMessageDispatchWithDefaults (line 58) | func NewMessageDispatchWithDefaults() *MessageDispatch { type NullableMessageDispatch (line 292) | type NullableMessageDispatch struct method Get (line 297) | func (v NullableMessageDispatch) Get() *MessageDispatch { method Set (line 301) | func (v *NullableMessageDispatch) Set(val *MessageDispatch) { method IsSet (line 306) | func (v NullableMessageDispatch) IsSet() bool { method Unset (line 310) | func (v *NullableMessageDispatch) Unset() { method MarshalJSON (line 319) | func (v NullableMessageDispatch) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 323) | func (v *NullableMessageDispatch) UnmarshalJSON(src []byte) error { function NewNullableMessageDispatch (line 315) | func NewNullableMessageDispatch(val *MessageDispatch) *NullableMessageDi... FILE: pkg/client-go/model_needs_privileged_session_error.go type NeedsPrivilegedSessionError (line 23) | type NeedsPrivilegedSessionError struct method GetError (line 51) | func (o *NeedsPrivilegedSessionError) GetError() GenericError { method GetErrorOk (line 61) | func (o *NeedsPrivilegedSessionError) GetErrorOk() (*GenericError, boo... method HasError (line 69) | func (o *NeedsPrivilegedSessionError) HasError() bool { method SetError (line 78) | func (o *NeedsPrivilegedSessionError) SetError(v GenericError) { method GetRedirectBrowserTo (line 83) | func (o *NeedsPrivilegedSessionError) GetRedirectBrowserTo() string { method GetRedirectBrowserToOk (line 94) | func (o *NeedsPrivilegedSessionError) GetRedirectBrowserToOk() (*strin... method SetRedirectBrowserTo (line 102) | func (o *NeedsPrivilegedSessionError) SetRedirectBrowserTo(v string) { method MarshalJSON (line 106) | func (o NeedsPrivilegedSessionError) MarshalJSON() ([]byte, error) { method ToMap (line 114) | func (o NeedsPrivilegedSessionError) ToMap() (map[string]interface{}, ... method UnmarshalJSON (line 128) | func (o *NeedsPrivilegedSessionError) UnmarshalJSON(data []byte) (err ... type _NeedsPrivilegedSessionError (line 30) | type _NeedsPrivilegedSessionError function NewNeedsPrivilegedSessionError (line 36) | func NewNeedsPrivilegedSessionError(redirectBrowserTo string) *NeedsPriv... function NewNeedsPrivilegedSessionErrorWithDefaults (line 45) | func NewNeedsPrivilegedSessionErrorWithDefaults() *NeedsPrivilegedSessio... type NullableNeedsPrivilegedSessionError (line 171) | type NullableNeedsPrivilegedSessionError struct method Get (line 176) | func (v NullableNeedsPrivilegedSessionError) Get() *NeedsPrivilegedSes... method Set (line 180) | func (v *NullableNeedsPrivilegedSessionError) Set(val *NeedsPrivileged... method IsSet (line 185) | func (v NullableNeedsPrivilegedSessionError) IsSet() bool { method Unset (line 189) | func (v *NullableNeedsPrivilegedSessionError) Unset() { method MarshalJSON (line 198) | func (v NullableNeedsPrivilegedSessionError) MarshalJSON() ([]byte, er... method UnmarshalJSON (line 202) | func (v *NullableNeedsPrivilegedSessionError) UnmarshalJSON(src []byte... function NewNullableNeedsPrivilegedSessionError (line 194) | func NewNullableNeedsPrivilegedSessionError(val *NeedsPrivilegedSessionE... FILE: pkg/client-go/model_o_auth2_client.go type OAuth2Client (line 23) | type OAuth2Client struct method GetAccessTokenStrategy (line 134) | func (o *OAuth2Client) GetAccessTokenStrategy() string { method GetAccessTokenStrategyOk (line 144) | func (o *OAuth2Client) GetAccessTokenStrategyOk() (*string, bool) { method HasAccessTokenStrategy (line 152) | func (o *OAuth2Client) HasAccessTokenStrategy() bool { method SetAccessTokenStrategy (line 161) | func (o *OAuth2Client) SetAccessTokenStrategy(v string) { method GetAllowedCorsOrigins (line 166) | func (o *OAuth2Client) GetAllowedCorsOrigins() []string { method GetAllowedCorsOriginsOk (line 176) | func (o *OAuth2Client) GetAllowedCorsOriginsOk() ([]string, bool) { method HasAllowedCorsOrigins (line 184) | func (o *OAuth2Client) HasAllowedCorsOrigins() bool { method SetAllowedCorsOrigins (line 193) | func (o *OAuth2Client) SetAllowedCorsOrigins(v []string) { method GetAudience (line 198) | func (o *OAuth2Client) GetAudience() []string { method GetAudienceOk (line 208) | func (o *OAuth2Client) GetAudienceOk() ([]string, bool) { method HasAudience (line 216) | func (o *OAuth2Client) HasAudience() bool { method SetAudience (line 225) | func (o *OAuth2Client) SetAudience(v []string) { method GetAuthorizationCodeGrantAccessTokenLifespan (line 230) | func (o *OAuth2Client) GetAuthorizationCodeGrantAccessTokenLifespan() ... method GetAuthorizationCodeGrantAccessTokenLifespanOk (line 240) | func (o *OAuth2Client) GetAuthorizationCodeGrantAccessTokenLifespanOk(... method HasAuthorizationCodeGrantAccessTokenLifespan (line 248) | func (o *OAuth2Client) HasAuthorizationCodeGrantAccessTokenLifespan() ... method SetAuthorizationCodeGrantAccessTokenLifespan (line 257) | func (o *OAuth2Client) SetAuthorizationCodeGrantAccessTokenLifespan(v ... method GetAuthorizationCodeGrantIdTokenLifespan (line 262) | func (o *OAuth2Client) GetAuthorizationCodeGrantIdTokenLifespan() stri... method GetAuthorizationCodeGrantIdTokenLifespanOk (line 272) | func (o *OAuth2Client) GetAuthorizationCodeGrantIdTokenLifespanOk() (*... method HasAuthorizationCodeGrantIdTokenLifespan (line 280) | func (o *OAuth2Client) HasAuthorizationCodeGrantIdTokenLifespan() bool { method SetAuthorizationCodeGrantIdTokenLifespan (line 289) | func (o *OAuth2Client) SetAuthorizationCodeGrantIdTokenLifespan(v stri... method GetAuthorizationCodeGrantRefreshTokenLifespan (line 294) | func (o *OAuth2Client) GetAuthorizationCodeGrantRefreshTokenLifespan()... method GetAuthorizationCodeGrantRefreshTokenLifespanOk (line 304) | func (o *OAuth2Client) GetAuthorizationCodeGrantRefreshTokenLifespanOk... method HasAuthorizationCodeGrantRefreshTokenLifespan (line 312) | func (o *OAuth2Client) HasAuthorizationCodeGrantRefreshTokenLifespan()... method SetAuthorizationCodeGrantRefreshTokenLifespan (line 321) | func (o *OAuth2Client) SetAuthorizationCodeGrantRefreshTokenLifespan(v... method GetBackchannelLogoutSessionRequired (line 326) | func (o *OAuth2Client) GetBackchannelLogoutSessionRequired() bool { method GetBackchannelLogoutSessionRequiredOk (line 336) | func (o *OAuth2Client) GetBackchannelLogoutSessionRequiredOk() (*bool,... method HasBackchannelLogoutSessionRequired (line 344) | func (o *OAuth2Client) HasBackchannelLogoutSessionRequired() bool { method SetBackchannelLogoutSessionRequired (line 353) | func (o *OAuth2Client) SetBackchannelLogoutSessionRequired(v bool) { method GetBackchannelLogoutUri (line 358) | func (o *OAuth2Client) GetBackchannelLogoutUri() string { method GetBackchannelLogoutUriOk (line 368) | func (o *OAuth2Client) GetBackchannelLogoutUriOk() (*string, bool) { method HasBackchannelLogoutUri (line 376) | func (o *OAuth2Client) HasBackchannelLogoutUri() bool { method SetBackchannelLogoutUri (line 385) | func (o *OAuth2Client) SetBackchannelLogoutUri(v string) { method GetClientCredentialsGrantAccessTokenLifespan (line 390) | func (o *OAuth2Client) GetClientCredentialsGrantAccessTokenLifespan() ... method GetClientCredentialsGrantAccessTokenLifespanOk (line 400) | func (o *OAuth2Client) GetClientCredentialsGrantAccessTokenLifespanOk(... method HasClientCredentialsGrantAccessTokenLifespan (line 408) | func (o *OAuth2Client) HasClientCredentialsGrantAccessTokenLifespan() ... method SetClientCredentialsGrantAccessTokenLifespan (line 417) | func (o *OAuth2Client) SetClientCredentialsGrantAccessTokenLifespan(v ... method GetClientId (line 422) | func (o *OAuth2Client) GetClientId() string { method GetClientIdOk (line 432) | func (o *OAuth2Client) GetClientIdOk() (*string, bool) { method HasClientId (line 440) | func (o *OAuth2Client) HasClientId() bool { method SetClientId (line 449) | func (o *OAuth2Client) SetClientId(v string) { method GetClientName (line 454) | func (o *OAuth2Client) GetClientName() string { method GetClientNameOk (line 464) | func (o *OAuth2Client) GetClientNameOk() (*string, bool) { method HasClientName (line 472) | func (o *OAuth2Client) HasClientName() bool { method SetClientName (line 481) | func (o *OAuth2Client) SetClientName(v string) { method GetClientSecret (line 486) | func (o *OAuth2Client) GetClientSecret() string { method GetClientSecretOk (line 496) | func (o *OAuth2Client) GetClientSecretOk() (*string, bool) { method HasClientSecret (line 504) | func (o *OAuth2Client) HasClientSecret() bool { method SetClientSecret (line 513) | func (o *OAuth2Client) SetClientSecret(v string) { method GetClientSecretExpiresAt (line 518) | func (o *OAuth2Client) GetClientSecretExpiresAt() int64 { method GetClientSecretExpiresAtOk (line 528) | func (o *OAuth2Client) GetClientSecretExpiresAtOk() (*int64, bool) { method HasClientSecretExpiresAt (line 536) | func (o *OAuth2Client) HasClientSecretExpiresAt() bool { method SetClientSecretExpiresAt (line 545) | func (o *OAuth2Client) SetClientSecretExpiresAt(v int64) { method GetClientUri (line 550) | func (o *OAuth2Client) GetClientUri() string { method GetClientUriOk (line 560) | func (o *OAuth2Client) GetClientUriOk() (*string, bool) { method HasClientUri (line 568) | func (o *OAuth2Client) HasClientUri() bool { method SetClientUri (line 577) | func (o *OAuth2Client) SetClientUri(v string) { method GetContacts (line 582) | func (o *OAuth2Client) GetContacts() []string { method GetContactsOk (line 592) | func (o *OAuth2Client) GetContactsOk() ([]string, bool) { method HasContacts (line 600) | func (o *OAuth2Client) HasContacts() bool { method SetContacts (line 609) | func (o *OAuth2Client) SetContacts(v []string) { method GetCreatedAt (line 614) | func (o *OAuth2Client) GetCreatedAt() time.Time { method GetCreatedAtOk (line 624) | func (o *OAuth2Client) GetCreatedAtOk() (*time.Time, bool) { method HasCreatedAt (line 632) | func (o *OAuth2Client) HasCreatedAt() bool { method SetCreatedAt (line 641) | func (o *OAuth2Client) SetCreatedAt(v time.Time) { method GetFrontchannelLogoutSessionRequired (line 646) | func (o *OAuth2Client) GetFrontchannelLogoutSessionRequired() bool { method GetFrontchannelLogoutSessionRequiredOk (line 656) | func (o *OAuth2Client) GetFrontchannelLogoutSessionRequiredOk() (*bool... method HasFrontchannelLogoutSessionRequired (line 664) | func (o *OAuth2Client) HasFrontchannelLogoutSessionRequired() bool { method SetFrontchannelLogoutSessionRequired (line 673) | func (o *OAuth2Client) SetFrontchannelLogoutSessionRequired(v bool) { method GetFrontchannelLogoutUri (line 678) | func (o *OAuth2Client) GetFrontchannelLogoutUri() string { method GetFrontchannelLogoutUriOk (line 688) | func (o *OAuth2Client) GetFrontchannelLogoutUriOk() (*string, bool) { method HasFrontchannelLogoutUri (line 696) | func (o *OAuth2Client) HasFrontchannelLogoutUri() bool { method SetFrontchannelLogoutUri (line 705) | func (o *OAuth2Client) SetFrontchannelLogoutUri(v string) { method GetGrantTypes (line 710) | func (o *OAuth2Client) GetGrantTypes() []string { method GetGrantTypesOk (line 720) | func (o *OAuth2Client) GetGrantTypesOk() ([]string, bool) { method HasGrantTypes (line 728) | func (o *OAuth2Client) HasGrantTypes() bool { method SetGrantTypes (line 737) | func (o *OAuth2Client) SetGrantTypes(v []string) { method GetImplicitGrantAccessTokenLifespan (line 742) | func (o *OAuth2Client) GetImplicitGrantAccessTokenLifespan() string { method GetImplicitGrantAccessTokenLifespanOk (line 752) | func (o *OAuth2Client) GetImplicitGrantAccessTokenLifespanOk() (*strin... method HasImplicitGrantAccessTokenLifespan (line 760) | func (o *OAuth2Client) HasImplicitGrantAccessTokenLifespan() bool { method SetImplicitGrantAccessTokenLifespan (line 769) | func (o *OAuth2Client) SetImplicitGrantAccessTokenLifespan(v string) { method GetImplicitGrantIdTokenLifespan (line 774) | func (o *OAuth2Client) GetImplicitGrantIdTokenLifespan() string { method GetImplicitGrantIdTokenLifespanOk (line 784) | func (o *OAuth2Client) GetImplicitGrantIdTokenLifespanOk() (*string, b... method HasImplicitGrantIdTokenLifespan (line 792) | func (o *OAuth2Client) HasImplicitGrantIdTokenLifespan() bool { method SetImplicitGrantIdTokenLifespan (line 801) | func (o *OAuth2Client) SetImplicitGrantIdTokenLifespan(v string) { method GetJwks (line 806) | func (o *OAuth2Client) GetJwks() interface{} { method GetJwksOk (line 817) | func (o *OAuth2Client) GetJwksOk() (*interface{}, bool) { method HasJwks (line 825) | func (o *OAuth2Client) HasJwks() bool { method SetJwks (line 834) | func (o *OAuth2Client) SetJwks(v interface{}) { method GetJwksUri (line 839) | func (o *OAuth2Client) GetJwksUri() string { method GetJwksUriOk (line 849) | func (o *OAuth2Client) GetJwksUriOk() (*string, bool) { method HasJwksUri (line 857) | func (o *OAuth2Client) HasJwksUri() bool { method SetJwksUri (line 866) | func (o *OAuth2Client) SetJwksUri(v string) { method GetJwtBearerGrantAccessTokenLifespan (line 871) | func (o *OAuth2Client) GetJwtBearerGrantAccessTokenLifespan() string { method GetJwtBearerGrantAccessTokenLifespanOk (line 881) | func (o *OAuth2Client) GetJwtBearerGrantAccessTokenLifespanOk() (*stri... method HasJwtBearerGrantAccessTokenLifespan (line 889) | func (o *OAuth2Client) HasJwtBearerGrantAccessTokenLifespan() bool { method SetJwtBearerGrantAccessTokenLifespan (line 898) | func (o *OAuth2Client) SetJwtBearerGrantAccessTokenLifespan(v string) { method GetLogoUri (line 903) | func (o *OAuth2Client) GetLogoUri() string { method GetLogoUriOk (line 913) | func (o *OAuth2Client) GetLogoUriOk() (*string, bool) { method HasLogoUri (line 921) | func (o *OAuth2Client) HasLogoUri() bool { method SetLogoUri (line 930) | func (o *OAuth2Client) SetLogoUri(v string) { method GetMetadata (line 935) | func (o *OAuth2Client) GetMetadata() interface{} { method GetMetadataOk (line 946) | func (o *OAuth2Client) GetMetadataOk() (*interface{}, bool) { method HasMetadata (line 954) | func (o *OAuth2Client) HasMetadata() bool { method SetMetadata (line 963) | func (o *OAuth2Client) SetMetadata(v interface{}) { method GetOwner (line 968) | func (o *OAuth2Client) GetOwner() string { method GetOwnerOk (line 978) | func (o *OAuth2Client) GetOwnerOk() (*string, bool) { method HasOwner (line 986) | func (o *OAuth2Client) HasOwner() bool { method SetOwner (line 995) | func (o *OAuth2Client) SetOwner(v string) { method GetPolicyUri (line 1000) | func (o *OAuth2Client) GetPolicyUri() string { method GetPolicyUriOk (line 1010) | func (o *OAuth2Client) GetPolicyUriOk() (*string, bool) { method HasPolicyUri (line 1018) | func (o *OAuth2Client) HasPolicyUri() bool { method SetPolicyUri (line 1027) | func (o *OAuth2Client) SetPolicyUri(v string) { method GetPostLogoutRedirectUris (line 1032) | func (o *OAuth2Client) GetPostLogoutRedirectUris() []string { method GetPostLogoutRedirectUrisOk (line 1042) | func (o *OAuth2Client) GetPostLogoutRedirectUrisOk() ([]string, bool) { method HasPostLogoutRedirectUris (line 1050) | func (o *OAuth2Client) HasPostLogoutRedirectUris() bool { method SetPostLogoutRedirectUris (line 1059) | func (o *OAuth2Client) SetPostLogoutRedirectUris(v []string) { method GetRedirectUris (line 1064) | func (o *OAuth2Client) GetRedirectUris() []string { method GetRedirectUrisOk (line 1074) | func (o *OAuth2Client) GetRedirectUrisOk() ([]string, bool) { method HasRedirectUris (line 1082) | func (o *OAuth2Client) HasRedirectUris() bool { method SetRedirectUris (line 1091) | func (o *OAuth2Client) SetRedirectUris(v []string) { method GetRefreshTokenGrantAccessTokenLifespan (line 1096) | func (o *OAuth2Client) GetRefreshTokenGrantAccessTokenLifespan() string { method GetRefreshTokenGrantAccessTokenLifespanOk (line 1106) | func (o *OAuth2Client) GetRefreshTokenGrantAccessTokenLifespanOk() (*s... method HasRefreshTokenGrantAccessTokenLifespan (line 1114) | func (o *OAuth2Client) HasRefreshTokenGrantAccessTokenLifespan() bool { method SetRefreshTokenGrantAccessTokenLifespan (line 1123) | func (o *OAuth2Client) SetRefreshTokenGrantAccessTokenLifespan(v strin... method GetRefreshTokenGrantIdTokenLifespan (line 1128) | func (o *OAuth2Client) GetRefreshTokenGrantIdTokenLifespan() string { method GetRefreshTokenGrantIdTokenLifespanOk (line 1138) | func (o *OAuth2Client) GetRefreshTokenGrantIdTokenLifespanOk() (*strin... method HasRefreshTokenGrantIdTokenLifespan (line 1146) | func (o *OAuth2Client) HasRefreshTokenGrantIdTokenLifespan() bool { method SetRefreshTokenGrantIdTokenLifespan (line 1155) | func (o *OAuth2Client) SetRefreshTokenGrantIdTokenLifespan(v string) { method GetRefreshTokenGrantRefreshTokenLifespan (line 1160) | func (o *OAuth2Client) GetRefreshTokenGrantRefreshTokenLifespan() stri... method GetRefreshTokenGrantRefreshTokenLifespanOk (line 1170) | func (o *OAuth2Client) GetRefreshTokenGrantRefreshTokenLifespanOk() (*... method HasRefreshTokenGrantRefreshTokenLifespan (line 1178) | func (o *OAuth2Client) HasRefreshTokenGrantRefreshTokenLifespan() bool { method SetRefreshTokenGrantRefreshTokenLifespan (line 1187) | func (o *OAuth2Client) SetRefreshTokenGrantRefreshTokenLifespan(v stri... method GetRegistrationAccessToken (line 1192) | func (o *OAuth2Client) GetRegistrationAccessToken() string { method GetRegistrationAccessTokenOk (line 1202) | func (o *OAuth2Client) GetRegistrationAccessTokenOk() (*string, bool) { method HasRegistrationAccessToken (line 1210) | func (o *OAuth2Client) HasRegistrationAccessToken() bool { method SetRegistrationAccessToken (line 1219) | func (o *OAuth2Client) SetRegistrationAccessToken(v string) { method GetRegistrationClientUri (line 1224) | func (o *OAuth2Client) GetRegistrationClientUri() string { method GetRegistrationClientUriOk (line 1234) | func (o *OAuth2Client) GetRegistrationClientUriOk() (*string, bool) { method HasRegistrationClientUri (line 1242) | func (o *OAuth2Client) HasRegistrationClientUri() bool { method SetRegistrationClientUri (line 1251) | func (o *OAuth2Client) SetRegistrationClientUri(v string) { method GetRequestObjectSigningAlg (line 1256) | func (o *OAuth2Client) GetRequestObjectSigningAlg() string { method GetRequestObjectSigningAlgOk (line 1266) | func (o *OAuth2Client) GetRequestObjectSigningAlgOk() (*string, bool) { method HasRequestObjectSigningAlg (line 1274) | func (o *OAuth2Client) HasRequestObjectSigningAlg() bool { method SetRequestObjectSigningAlg (line 1283) | func (o *OAuth2Client) SetRequestObjectSigningAlg(v string) { method GetRequestUris (line 1288) | func (o *OAuth2Client) GetRequestUris() []string { method GetRequestUrisOk (line 1298) | func (o *OAuth2Client) GetRequestUrisOk() ([]string, bool) { method HasRequestUris (line 1306) | func (o *OAuth2Client) HasRequestUris() bool { method SetRequestUris (line 1315) | func (o *OAuth2Client) SetRequestUris(v []string) { method GetResponseTypes (line 1320) | func (o *OAuth2Client) GetResponseTypes() []string { method GetResponseTypesOk (line 1330) | func (o *OAuth2Client) GetResponseTypesOk() ([]string, bool) { method HasResponseTypes (line 1338) | func (o *OAuth2Client) HasResponseTypes() bool { method SetResponseTypes (line 1347) | func (o *OAuth2Client) SetResponseTypes(v []string) { method GetScope (line 1352) | func (o *OAuth2Client) GetScope() string { method GetScopeOk (line 1362) | func (o *OAuth2Client) GetScopeOk() (*string, bool) { method HasScope (line 1370) | func (o *OAuth2Client) HasScope() bool { method SetScope (line 1379) | func (o *OAuth2Client) SetScope(v string) { method GetSectorIdentifierUri (line 1384) | func (o *OAuth2Client) GetSectorIdentifierUri() string { method GetSectorIdentifierUriOk (line 1394) | func (o *OAuth2Client) GetSectorIdentifierUriOk() (*string, bool) { method HasSectorIdentifierUri (line 1402) | func (o *OAuth2Client) HasSectorIdentifierUri() bool { method SetSectorIdentifierUri (line 1411) | func (o *OAuth2Client) SetSectorIdentifierUri(v string) { method GetSkipConsent (line 1416) | func (o *OAuth2Client) GetSkipConsent() bool { method GetSkipConsentOk (line 1426) | func (o *OAuth2Client) GetSkipConsentOk() (*bool, bool) { method HasSkipConsent (line 1434) | func (o *OAuth2Client) HasSkipConsent() bool { method SetSkipConsent (line 1443) | func (o *OAuth2Client) SetSkipConsent(v bool) { method GetSkipLogoutConsent (line 1448) | func (o *OAuth2Client) GetSkipLogoutConsent() bool { method GetSkipLogoutConsentOk (line 1458) | func (o *OAuth2Client) GetSkipLogoutConsentOk() (*bool, bool) { method HasSkipLogoutConsent (line 1466) | func (o *OAuth2Client) HasSkipLogoutConsent() bool { method SetSkipLogoutConsent (line 1475) | func (o *OAuth2Client) SetSkipLogoutConsent(v bool) { method GetSubjectType (line 1480) | func (o *OAuth2Client) GetSubjectType() string { method GetSubjectTypeOk (line 1490) | func (o *OAuth2Client) GetSubjectTypeOk() (*string, bool) { method HasSubjectType (line 1498) | func (o *OAuth2Client) HasSubjectType() bool { method SetSubjectType (line 1507) | func (o *OAuth2Client) SetSubjectType(v string) { method GetTokenEndpointAuthMethod (line 1512) | func (o *OAuth2Client) GetTokenEndpointAuthMethod() string { method GetTokenEndpointAuthMethodOk (line 1522) | func (o *OAuth2Client) GetTokenEndpointAuthMethodOk() (*string, bool) { method HasTokenEndpointAuthMethod (line 1530) | func (o *OAuth2Client) HasTokenEndpointAuthMethod() bool { method SetTokenEndpointAuthMethod (line 1539) | func (o *OAuth2Client) SetTokenEndpointAuthMethod(v string) { method GetTokenEndpointAuthSigningAlg (line 1544) | func (o *OAuth2Client) GetTokenEndpointAuthSigningAlg() string { method GetTokenEndpointAuthSigningAlgOk (line 1554) | func (o *OAuth2Client) GetTokenEndpointAuthSigningAlgOk() (*string, bo... method HasTokenEndpointAuthSigningAlg (line 1562) | func (o *OAuth2Client) HasTokenEndpointAuthSigningAlg() bool { method SetTokenEndpointAuthSigningAlg (line 1571) | func (o *OAuth2Client) SetTokenEndpointAuthSigningAlg(v string) { method GetTosUri (line 1576) | func (o *OAuth2Client) GetTosUri() string { method GetTosUriOk (line 1586) | func (o *OAuth2Client) GetTosUriOk() (*string, bool) { method HasTosUri (line 1594) | func (o *OAuth2Client) HasTosUri() bool { method SetTosUri (line 1603) | func (o *OAuth2Client) SetTosUri(v string) { method GetUpdatedAt (line 1608) | func (o *OAuth2Client) GetUpdatedAt() time.Time { method GetUpdatedAtOk (line 1618) | func (o *OAuth2Client) GetUpdatedAtOk() (*time.Time, bool) { method HasUpdatedAt (line 1626) | func (o *OAuth2Client) HasUpdatedAt() bool { method SetUpdatedAt (line 1635) | func (o *OAuth2Client) SetUpdatedAt(v time.Time) { method GetUserinfoSignedResponseAlg (line 1640) | func (o *OAuth2Client) GetUserinfoSignedResponseAlg() string { method GetUserinfoSignedResponseAlgOk (line 1650) | func (o *OAuth2Client) GetUserinfoSignedResponseAlgOk() (*string, bool) { method HasUserinfoSignedResponseAlg (line 1658) | func (o *OAuth2Client) HasUserinfoSignedResponseAlg() bool { method SetUserinfoSignedResponseAlg (line 1667) | func (o *OAuth2Client) SetUserinfoSignedResponseAlg(v string) { method MarshalJSON (line 1671) | func (o OAuth2Client) MarshalJSON() ([]byte, error) { method ToMap (line 1679) | func (o OAuth2Client) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 1833) | func (o *OAuth2Client) UnmarshalJSON(data []byte) (err error) { type _OAuth2Client (line 114) | type _OAuth2Client function NewOAuth2Client (line 120) | func NewOAuth2Client() *OAuth2Client { function NewOAuth2ClientWithDefaults (line 128) | func NewOAuth2ClientWithDefaults() *OAuth2Client { type NullableOAuth2Client (line 1901) | type NullableOAuth2Client struct method Get (line 1906) | func (v NullableOAuth2Client) Get() *OAuth2Client { method Set (line 1910) | func (v *NullableOAuth2Client) Set(val *OAuth2Client) { method IsSet (line 1915) | func (v NullableOAuth2Client) IsSet() bool { method Unset (line 1919) | func (v *NullableOAuth2Client) Unset() { method MarshalJSON (line 1928) | func (v NullableOAuth2Client) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 1932) | func (v *NullableOAuth2Client) UnmarshalJSON(src []byte) error { function NewNullableOAuth2Client (line 1924) | func NewNullableOAuth2Client(val *OAuth2Client) *NullableOAuth2Client { FILE: pkg/client-go/model_o_auth2_consent_request_open_id_connect_context.go type OAuth2ConsentRequestOpenIDConnectContext (line 22) | type OAuth2ConsentRequestOpenIDConnectContext struct method GetAcrValues (line 56) | func (o *OAuth2ConsentRequestOpenIDConnectContext) GetAcrValues() []st... method GetAcrValuesOk (line 66) | func (o *OAuth2ConsentRequestOpenIDConnectContext) GetAcrValuesOk() ([... method HasAcrValues (line 74) | func (o *OAuth2ConsentRequestOpenIDConnectContext) HasAcrValues() bool { method SetAcrValues (line 83) | func (o *OAuth2ConsentRequestOpenIDConnectContext) SetAcrValues(v []st... method GetDisplay (line 88) | func (o *OAuth2ConsentRequestOpenIDConnectContext) GetDisplay() string { method GetDisplayOk (line 98) | func (o *OAuth2ConsentRequestOpenIDConnectContext) GetDisplayOk() (*st... method HasDisplay (line 106) | func (o *OAuth2ConsentRequestOpenIDConnectContext) HasDisplay() bool { method SetDisplay (line 115) | func (o *OAuth2ConsentRequestOpenIDConnectContext) SetDisplay(v string) { method GetIdTokenHintClaims (line 120) | func (o *OAuth2ConsentRequestOpenIDConnectContext) GetIdTokenHintClaim... method GetIdTokenHintClaimsOk (line 130) | func (o *OAuth2ConsentRequestOpenIDConnectContext) GetIdTokenHintClaim... method HasIdTokenHintClaims (line 138) | func (o *OAuth2ConsentRequestOpenIDConnectContext) HasIdTokenHintClaim... method SetIdTokenHintClaims (line 147) | func (o *OAuth2ConsentRequestOpenIDConnectContext) SetIdTokenHintClaim... method GetLoginHint (line 152) | func (o *OAuth2ConsentRequestOpenIDConnectContext) GetLoginHint() stri... method GetLoginHintOk (line 162) | func (o *OAuth2ConsentRequestOpenIDConnectContext) GetLoginHintOk() (*... method HasLoginHint (line 170) | func (o *OAuth2ConsentRequestOpenIDConnectContext) HasLoginHint() bool { method SetLoginHint (line 179) | func (o *OAuth2ConsentRequestOpenIDConnectContext) SetLoginHint(v stri... method GetUiLocales (line 184) | func (o *OAuth2ConsentRequestOpenIDConnectContext) GetUiLocales() []st... method GetUiLocalesOk (line 194) | func (o *OAuth2ConsentRequestOpenIDConnectContext) GetUiLocalesOk() ([... method HasUiLocales (line 202) | func (o *OAuth2ConsentRequestOpenIDConnectContext) HasUiLocales() bool { method SetUiLocales (line 211) | func (o *OAuth2ConsentRequestOpenIDConnectContext) SetUiLocales(v []st... method MarshalJSON (line 215) | func (o OAuth2ConsentRequestOpenIDConnectContext) MarshalJSON() ([]byt... method ToMap (line 223) | func (o OAuth2ConsentRequestOpenIDConnectContext) ToMap() (map[string]... method UnmarshalJSON (line 248) | func (o *OAuth2ConsentRequestOpenIDConnectContext) UnmarshalJSON(data ... type _OAuth2ConsentRequestOpenIDConnectContext (line 36) | type _OAuth2ConsentRequestOpenIDConnectContext function NewOAuth2ConsentRequestOpenIDConnectContext (line 42) | func NewOAuth2ConsentRequestOpenIDConnectContext() *OAuth2ConsentRequest... function NewOAuth2ConsentRequestOpenIDConnectContextWithDefaults (line 50) | func NewOAuth2ConsentRequestOpenIDConnectContextWithDefaults() *OAuth2Co... type NullableOAuth2ConsentRequestOpenIDConnectContext (line 273) | type NullableOAuth2ConsentRequestOpenIDConnectContext struct method Get (line 278) | func (v NullableOAuth2ConsentRequestOpenIDConnectContext) Get() *OAuth... method Set (line 282) | func (v *NullableOAuth2ConsentRequestOpenIDConnectContext) Set(val *OA... method IsSet (line 287) | func (v NullableOAuth2ConsentRequestOpenIDConnectContext) IsSet() bool { method Unset (line 291) | func (v *NullableOAuth2ConsentRequestOpenIDConnectContext) Unset() { method MarshalJSON (line 300) | func (v NullableOAuth2ConsentRequestOpenIDConnectContext) MarshalJSON(... method UnmarshalJSON (line 304) | func (v *NullableOAuth2ConsentRequestOpenIDConnectContext) UnmarshalJS... function NewNullableOAuth2ConsentRequestOpenIDConnectContext (line 296) | func NewNullableOAuth2ConsentRequestOpenIDConnectContext(val *OAuth2Cons... FILE: pkg/client-go/model_o_auth2_login_request.go type OAuth2LoginRequest (line 22) | type OAuth2LoginRequest struct method GetChallenge (line 60) | func (o *OAuth2LoginRequest) GetChallenge() string { method GetChallengeOk (line 70) | func (o *OAuth2LoginRequest) GetChallengeOk() (*string, bool) { method HasChallenge (line 78) | func (o *OAuth2LoginRequest) HasChallenge() bool { method SetChallenge (line 87) | func (o *OAuth2LoginRequest) SetChallenge(v string) { method GetClient (line 92) | func (o *OAuth2LoginRequest) GetClient() OAuth2Client { method GetClientOk (line 102) | func (o *OAuth2LoginRequest) GetClientOk() (*OAuth2Client, bool) { method HasClient (line 110) | func (o *OAuth2LoginRequest) HasClient() bool { method SetClient (line 119) | func (o *OAuth2LoginRequest) SetClient(v OAuth2Client) { method GetOidcContext (line 124) | func (o *OAuth2LoginRequest) GetOidcContext() OAuth2ConsentRequestOpen... method GetOidcContextOk (line 134) | func (o *OAuth2LoginRequest) GetOidcContextOk() (*OAuth2ConsentRequest... method HasOidcContext (line 142) | func (o *OAuth2LoginRequest) HasOidcContext() bool { method SetOidcContext (line 151) | func (o *OAuth2LoginRequest) SetOidcContext(v OAuth2ConsentRequestOpen... method GetRequestUrl (line 156) | func (o *OAuth2LoginRequest) GetRequestUrl() string { method GetRequestUrlOk (line 166) | func (o *OAuth2LoginRequest) GetRequestUrlOk() (*string, bool) { method HasRequestUrl (line 174) | func (o *OAuth2LoginRequest) HasRequestUrl() bool { method SetRequestUrl (line 183) | func (o *OAuth2LoginRequest) SetRequestUrl(v string) { method GetRequestedAccessTokenAudience (line 188) | func (o *OAuth2LoginRequest) GetRequestedAccessTokenAudience() []string { method GetRequestedAccessTokenAudienceOk (line 198) | func (o *OAuth2LoginRequest) GetRequestedAccessTokenAudienceOk() ([]st... method HasRequestedAccessTokenAudience (line 206) | func (o *OAuth2LoginRequest) HasRequestedAccessTokenAudience() bool { method SetRequestedAccessTokenAudience (line 215) | func (o *OAuth2LoginRequest) SetRequestedAccessTokenAudience(v []strin... method GetRequestedScope (line 220) | func (o *OAuth2LoginRequest) GetRequestedScope() []string { method GetRequestedScopeOk (line 230) | func (o *OAuth2LoginRequest) GetRequestedScopeOk() ([]string, bool) { method HasRequestedScope (line 238) | func (o *OAuth2LoginRequest) HasRequestedScope() bool { method SetRequestedScope (line 247) | func (o *OAuth2LoginRequest) SetRequestedScope(v []string) { method GetSessionId (line 252) | func (o *OAuth2LoginRequest) GetSessionId() string { method GetSessionIdOk (line 262) | func (o *OAuth2LoginRequest) GetSessionIdOk() (*string, bool) { method HasSessionId (line 270) | func (o *OAuth2LoginRequest) HasSessionId() bool { method SetSessionId (line 279) | func (o *OAuth2LoginRequest) SetSessionId(v string) { method GetSkip (line 284) | func (o *OAuth2LoginRequest) GetSkip() bool { method GetSkipOk (line 294) | func (o *OAuth2LoginRequest) GetSkipOk() (*bool, bool) { method HasSkip (line 302) | func (o *OAuth2LoginRequest) HasSkip() bool { method SetSkip (line 311) | func (o *OAuth2LoginRequest) SetSkip(v bool) { method GetSubject (line 316) | func (o *OAuth2LoginRequest) GetSubject() string { method GetSubjectOk (line 326) | func (o *OAuth2LoginRequest) GetSubjectOk() (*string, bool) { method HasSubject (line 334) | func (o *OAuth2LoginRequest) HasSubject() bool { method SetSubject (line 343) | func (o *OAuth2LoginRequest) SetSubject(v string) { method MarshalJSON (line 347) | func (o OAuth2LoginRequest) MarshalJSON() ([]byte, error) { method ToMap (line 355) | func (o OAuth2LoginRequest) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 392) | func (o *OAuth2LoginRequest) UnmarshalJSON(data []byte) (err error) { type _OAuth2LoginRequest (line 40) | type _OAuth2LoginRequest function NewOAuth2LoginRequest (line 46) | func NewOAuth2LoginRequest() *OAuth2LoginRequest { function NewOAuth2LoginRequestWithDefaults (line 54) | func NewOAuth2LoginRequestWithDefaults() *OAuth2LoginRequest { type NullableOAuth2LoginRequest (line 421) | type NullableOAuth2LoginRequest struct method Get (line 426) | func (v NullableOAuth2LoginRequest) Get() *OAuth2LoginRequest { method Set (line 430) | func (v *NullableOAuth2LoginRequest) Set(val *OAuth2LoginRequest) { method IsSet (line 435) | func (v NullableOAuth2LoginRequest) IsSet() bool { method Unset (line 439) | func (v *NullableOAuth2LoginRequest) Unset() { method MarshalJSON (line 448) | func (v NullableOAuth2LoginRequest) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 452) | func (v *NullableOAuth2LoginRequest) UnmarshalJSON(src []byte) error { function NewNullableOAuth2LoginRequest (line 444) | func NewNullableOAuth2LoginRequest(val *OAuth2LoginRequest) *NullableOAu... FILE: pkg/client-go/model_patch_identities_body.go type PatchIdentitiesBody (line 22) | type PatchIdentitiesBody struct method GetIdentities (line 48) | func (o *PatchIdentitiesBody) GetIdentities() []IdentityPatch { method GetIdentitiesOk (line 58) | func (o *PatchIdentitiesBody) GetIdentitiesOk() ([]IdentityPatch, bool) { method HasIdentities (line 66) | func (o *PatchIdentitiesBody) HasIdentities() bool { method SetIdentities (line 75) | func (o *PatchIdentitiesBody) SetIdentities(v []IdentityPatch) { method MarshalJSON (line 79) | func (o PatchIdentitiesBody) MarshalJSON() ([]byte, error) { method ToMap (line 87) | func (o PatchIdentitiesBody) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 100) | func (o *PatchIdentitiesBody) UnmarshalJSON(data []byte) (err error) { type _PatchIdentitiesBody (line 28) | type _PatchIdentitiesBody function NewPatchIdentitiesBody (line 34) | func NewPatchIdentitiesBody() *PatchIdentitiesBody { function NewPatchIdentitiesBodyWithDefaults (line 42) | func NewPatchIdentitiesBodyWithDefaults() *PatchIdentitiesBody { type NullablePatchIdentitiesBody (line 121) | type NullablePatchIdentitiesBody struct method Get (line 126) | func (v NullablePatchIdentitiesBody) Get() *PatchIdentitiesBody { method Set (line 130) | func (v *NullablePatchIdentitiesBody) Set(val *PatchIdentitiesBody) { method IsSet (line 135) | func (v NullablePatchIdentitiesBody) IsSet() bool { method Unset (line 139) | func (v *NullablePatchIdentitiesBody) Unset() { method MarshalJSON (line 148) | func (v NullablePatchIdentitiesBody) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 152) | func (v *NullablePatchIdentitiesBody) UnmarshalJSON(src []byte) error { function NewNullablePatchIdentitiesBody (line 144) | func NewNullablePatchIdentitiesBody(val *PatchIdentitiesBody) *NullableP... FILE: pkg/client-go/model_perform_native_logout_body.go type PerformNativeLogoutBody (line 23) | type PerformNativeLogoutBody struct method GetSessionToken (line 50) | func (o *PerformNativeLogoutBody) GetSessionToken() string { method GetSessionTokenOk (line 61) | func (o *PerformNativeLogoutBody) GetSessionTokenOk() (*string, bool) { method SetSessionToken (line 69) | func (o *PerformNativeLogoutBody) SetSessionToken(v string) { method MarshalJSON (line 73) | func (o PerformNativeLogoutBody) MarshalJSON() ([]byte, error) { method ToMap (line 81) | func (o PerformNativeLogoutBody) ToMap() (map[string]interface{}, erro... method UnmarshalJSON (line 92) | func (o *PerformNativeLogoutBody) UnmarshalJSON(data []byte) (err erro... type _PerformNativeLogoutBody (line 29) | type _PerformNativeLogoutBody function NewPerformNativeLogoutBody (line 35) | func NewPerformNativeLogoutBody(sessionToken string) *PerformNativeLogou... function NewPerformNativeLogoutBodyWithDefaults (line 44) | func NewPerformNativeLogoutBodyWithDefaults() *PerformNativeLogoutBody { type NullablePerformNativeLogoutBody (line 134) | type NullablePerformNativeLogoutBody struct method Get (line 139) | func (v NullablePerformNativeLogoutBody) Get() *PerformNativeLogoutBody { method Set (line 143) | func (v *NullablePerformNativeLogoutBody) Set(val *PerformNativeLogout... method IsSet (line 148) | func (v NullablePerformNativeLogoutBody) IsSet() bool { method Unset (line 152) | func (v *NullablePerformNativeLogoutBody) Unset() { method MarshalJSON (line 161) | func (v NullablePerformNativeLogoutBody) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 165) | func (v *NullablePerformNativeLogoutBody) UnmarshalJSON(src []byte) er... function NewNullablePerformNativeLogoutBody (line 157) | func NewNullablePerformNativeLogoutBody(val *PerformNativeLogoutBody) *N... FILE: pkg/client-go/model_provider.go type Provider (line 22) | type Provider struct method GetClientId (line 60) | func (o *Provider) GetClientId() string { method GetClientIdOk (line 70) | func (o *Provider) GetClientIdOk() (*string, bool) { method HasClientId (line 78) | func (o *Provider) HasClientId() bool { method SetClientId (line 87) | func (o *Provider) SetClientId(v string) { method GetConfigUrl (line 92) | func (o *Provider) GetConfigUrl() string { method GetConfigUrlOk (line 102) | func (o *Provider) GetConfigUrlOk() (*string, bool) { method HasConfigUrl (line 110) | func (o *Provider) HasConfigUrl() bool { method SetConfigUrl (line 119) | func (o *Provider) SetConfigUrl(v string) { method GetDomainHint (line 124) | func (o *Provider) GetDomainHint() string { method GetDomainHintOk (line 134) | func (o *Provider) GetDomainHintOk() (*string, bool) { method HasDomainHint (line 142) | func (o *Provider) HasDomainHint() bool { method SetDomainHint (line 151) | func (o *Provider) SetDomainHint(v string) { method GetFields (line 156) | func (o *Provider) GetFields() []string { method GetFieldsOk (line 166) | func (o *Provider) GetFieldsOk() ([]string, bool) { method HasFields (line 174) | func (o *Provider) HasFields() bool { method SetFields (line 183) | func (o *Provider) SetFields(v []string) { method GetLoginHint (line 188) | func (o *Provider) GetLoginHint() string { method GetLoginHintOk (line 198) | func (o *Provider) GetLoginHintOk() (*string, bool) { method HasLoginHint (line 206) | func (o *Provider) HasLoginHint() bool { method SetLoginHint (line 215) | func (o *Provider) SetLoginHint(v string) { method GetNonce (line 220) | func (o *Provider) GetNonce() string { method GetNonceOk (line 230) | func (o *Provider) GetNonceOk() (*string, bool) { method HasNonce (line 238) | func (o *Provider) HasNonce() bool { method SetNonce (line 247) | func (o *Provider) SetNonce(v string) { method GetParameters (line 252) | func (o *Provider) GetParameters() map[string]string { method GetParametersOk (line 262) | func (o *Provider) GetParametersOk() (*map[string]string, bool) { method HasParameters (line 270) | func (o *Provider) HasParameters() bool { method SetParameters (line 279) | func (o *Provider) SetParameters(v map[string]string) { method MarshalJSON (line 283) | func (o Provider) MarshalJSON() ([]byte, error) { method ToMap (line 291) | func (o Provider) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 322) | func (o *Provider) UnmarshalJSON(data []byte) (err error) { type _Provider (line 40) | type _Provider function NewProvider (line 46) | func NewProvider() *Provider { function NewProviderWithDefaults (line 54) | func NewProviderWithDefaults() *Provider { type NullableProvider (line 349) | type NullableProvider struct method Get (line 354) | func (v NullableProvider) Get() *Provider { method Set (line 358) | func (v *NullableProvider) Set(val *Provider) { method IsSet (line 363) | func (v NullableProvider) IsSet() bool { method Unset (line 367) | func (v *NullableProvider) Unset() { method MarshalJSON (line 376) | func (v NullableProvider) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 380) | func (v *NullableProvider) UnmarshalJSON(src []byte) error { function NewNullableProvider (line 372) | func NewNullableProvider(val *Provider) *NullableProvider { FILE: pkg/client-go/model_recovery_code_for_identity.go type RecoveryCodeForIdentity (line 24) | type RecoveryCodeForIdentity struct method GetExpiresAt (line 56) | func (o *RecoveryCodeForIdentity) GetExpiresAt() time.Time { method GetExpiresAtOk (line 66) | func (o *RecoveryCodeForIdentity) GetExpiresAtOk() (*time.Time, bool) { method HasExpiresAt (line 74) | func (o *RecoveryCodeForIdentity) HasExpiresAt() bool { method SetExpiresAt (line 83) | func (o *RecoveryCodeForIdentity) SetExpiresAt(v time.Time) { method GetRecoveryCode (line 88) | func (o *RecoveryCodeForIdentity) GetRecoveryCode() string { method GetRecoveryCodeOk (line 99) | func (o *RecoveryCodeForIdentity) GetRecoveryCodeOk() (*string, bool) { method SetRecoveryCode (line 107) | func (o *RecoveryCodeForIdentity) SetRecoveryCode(v string) { method GetRecoveryLink (line 112) | func (o *RecoveryCodeForIdentity) GetRecoveryLink() string { method GetRecoveryLinkOk (line 123) | func (o *RecoveryCodeForIdentity) GetRecoveryLinkOk() (*string, bool) { method SetRecoveryLink (line 131) | func (o *RecoveryCodeForIdentity) SetRecoveryLink(v string) { method MarshalJSON (line 135) | func (o RecoveryCodeForIdentity) MarshalJSON() ([]byte, error) { method ToMap (line 143) | func (o RecoveryCodeForIdentity) ToMap() (map[string]interface{}, erro... method UnmarshalJSON (line 158) | func (o *RecoveryCodeForIdentity) UnmarshalJSON(data []byte) (err erro... type _RecoveryCodeForIdentity (line 34) | type _RecoveryCodeForIdentity function NewRecoveryCodeForIdentity (line 40) | func NewRecoveryCodeForIdentity(recoveryCode string, recoveryLink string... function NewRecoveryCodeForIdentityWithDefaults (line 50) | func NewRecoveryCodeForIdentityWithDefaults() *RecoveryCodeForIdentity { type NullableRecoveryCodeForIdentity (line 203) | type NullableRecoveryCodeForIdentity struct method Get (line 208) | func (v NullableRecoveryCodeForIdentity) Get() *RecoveryCodeForIdentity { method Set (line 212) | func (v *NullableRecoveryCodeForIdentity) Set(val *RecoveryCodeForIden... method IsSet (line 217) | func (v NullableRecoveryCodeForIdentity) IsSet() bool { method Unset (line 221) | func (v *NullableRecoveryCodeForIdentity) Unset() { method MarshalJSON (line 230) | func (v NullableRecoveryCodeForIdentity) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 234) | func (v *NullableRecoveryCodeForIdentity) UnmarshalJSON(src []byte) er... function NewNullableRecoveryCodeForIdentity (line 226) | func NewNullableRecoveryCodeForIdentity(val *RecoveryCodeForIdentity) *N... FILE: pkg/client-go/model_recovery_flow.go type RecoveryFlow (line 24) | type RecoveryFlow struct method GetActive (line 76) | func (o *RecoveryFlow) GetActive() string { method GetActiveOk (line 86) | func (o *RecoveryFlow) GetActiveOk() (*string, bool) { method HasActive (line 94) | func (o *RecoveryFlow) HasActive() bool { method SetActive (line 103) | func (o *RecoveryFlow) SetActive(v string) { method GetContinueWith (line 108) | func (o *RecoveryFlow) GetContinueWith() []ContinueWith { method GetContinueWithOk (line 118) | func (o *RecoveryFlow) GetContinueWithOk() ([]ContinueWith, bool) { method HasContinueWith (line 126) | func (o *RecoveryFlow) HasContinueWith() bool { method SetContinueWith (line 135) | func (o *RecoveryFlow) SetContinueWith(v []ContinueWith) { method GetExpiresAt (line 140) | func (o *RecoveryFlow) GetExpiresAt() time.Time { method GetExpiresAtOk (line 151) | func (o *RecoveryFlow) GetExpiresAtOk() (*time.Time, bool) { method SetExpiresAt (line 159) | func (o *RecoveryFlow) SetExpiresAt(v time.Time) { method GetId (line 164) | func (o *RecoveryFlow) GetId() string { method GetIdOk (line 175) | func (o *RecoveryFlow) GetIdOk() (*string, bool) { method SetId (line 183) | func (o *RecoveryFlow) SetId(v string) { method GetIssuedAt (line 188) | func (o *RecoveryFlow) GetIssuedAt() time.Time { method GetIssuedAtOk (line 199) | func (o *RecoveryFlow) GetIssuedAtOk() (*time.Time, bool) { method SetIssuedAt (line 207) | func (o *RecoveryFlow) SetIssuedAt(v time.Time) { method GetRequestUrl (line 212) | func (o *RecoveryFlow) GetRequestUrl() string { method GetRequestUrlOk (line 223) | func (o *RecoveryFlow) GetRequestUrlOk() (*string, bool) { method SetRequestUrl (line 231) | func (o *RecoveryFlow) SetRequestUrl(v string) { method GetReturnTo (line 236) | func (o *RecoveryFlow) GetReturnTo() string { method GetReturnToOk (line 246) | func (o *RecoveryFlow) GetReturnToOk() (*string, bool) { method HasReturnTo (line 254) | func (o *RecoveryFlow) HasReturnTo() bool { method SetReturnTo (line 263) | func (o *RecoveryFlow) SetReturnTo(v string) { method GetState (line 269) | func (o *RecoveryFlow) GetState() interface{} { method GetStateOk (line 281) | func (o *RecoveryFlow) GetStateOk() (*interface{}, bool) { method SetState (line 289) | func (o *RecoveryFlow) SetState(v interface{}) { method GetTransientPayload (line 294) | func (o *RecoveryFlow) GetTransientPayload() map[string]interface{} { method GetTransientPayloadOk (line 304) | func (o *RecoveryFlow) GetTransientPayloadOk() (map[string]interface{}... method HasTransientPayload (line 312) | func (o *RecoveryFlow) HasTransientPayload() bool { method SetTransientPayload (line 321) | func (o *RecoveryFlow) SetTransientPayload(v map[string]interface{}) { method GetType (line 326) | func (o *RecoveryFlow) GetType() string { method GetTypeOk (line 337) | func (o *RecoveryFlow) GetTypeOk() (*string, bool) { method SetType (line 345) | func (o *RecoveryFlow) SetType(v string) { method GetUi (line 350) | func (o *RecoveryFlow) GetUi() UiContainer { method GetUiOk (line 361) | func (o *RecoveryFlow) GetUiOk() (*UiContainer, bool) { method SetUi (line 369) | func (o *RecoveryFlow) SetUi(v UiContainer) { method MarshalJSON (line 373) | func (o RecoveryFlow) MarshalJSON() ([]byte, error) { method ToMap (line 381) | func (o RecoveryFlow) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 412) | func (o *RecoveryFlow) UnmarshalJSON(data []byte) (err error) { type _RecoveryFlow (line 49) | type _RecoveryFlow function NewRecoveryFlow (line 55) | func NewRecoveryFlow(expiresAt time.Time, id string, issuedAt time.Time,... function NewRecoveryFlowWithDefaults (line 70) | func NewRecoveryFlowWithDefaults() *RecoveryFlow { type NullableRecoveryFlow (line 470) | type NullableRecoveryFlow struct method Get (line 475) | func (v NullableRecoveryFlow) Get() *RecoveryFlow { method Set (line 479) | func (v *NullableRecoveryFlow) Set(val *RecoveryFlow) { method IsSet (line 484) | func (v NullableRecoveryFlow) IsSet() bool { method Unset (line 488) | func (v *NullableRecoveryFlow) Unset() { method MarshalJSON (line 497) | func (v NullableRecoveryFlow) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 501) | func (v *NullableRecoveryFlow) UnmarshalJSON(src []byte) error { function NewNullableRecoveryFlow (line 493) | func NewNullableRecoveryFlow(val *RecoveryFlow) *NullableRecoveryFlow { FILE: pkg/client-go/model_recovery_flow_state.go type RecoveryFlowState (line 20) | type RecoveryFlowState method UnmarshalJSON (line 36) | func (v *RecoveryFlowState) UnmarshalJSON(src []byte) error { method IsValid (line 65) | func (v RecoveryFlowState) IsValid() bool { method Ptr (line 75) | func (v RecoveryFlowState) Ptr() *RecoveryFlowState { constant RECOVERYFLOWSTATE_CHOOSE_METHOD (line 24) | RECOVERYFLOWSTATE_CHOOSE_METHOD RecoveryFlowState = "choose_method" constant RECOVERYFLOWSTATE_SENT_EMAIL (line 25) | RECOVERYFLOWSTATE_SENT_EMAIL RecoveryFlowState = "sent_email" constant RECOVERYFLOWSTATE_PASSED_CHALLENGE (line 26) | RECOVERYFLOWSTATE_PASSED_CHALLENGE RecoveryFlowState = "passed_challenge" function NewRecoveryFlowStateFromValue (line 55) | func NewRecoveryFlowStateFromValue(v string) (*RecoveryFlowState, error) { type NullableRecoveryFlowState (line 79) | type NullableRecoveryFlowState struct method Get (line 84) | func (v NullableRecoveryFlowState) Get() *RecoveryFlowState { method Set (line 88) | func (v *NullableRecoveryFlowState) Set(val *RecoveryFlowState) { method IsSet (line 93) | func (v NullableRecoveryFlowState) IsSet() bool { method Unset (line 97) | func (v *NullableRecoveryFlowState) Unset() { method MarshalJSON (line 106) | func (v NullableRecoveryFlowState) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 110) | func (v *NullableRecoveryFlowState) UnmarshalJSON(src []byte) error { function NewNullableRecoveryFlowState (line 102) | func NewNullableRecoveryFlowState(val *RecoveryFlowState) *NullableRecov... FILE: pkg/client-go/model_recovery_identity_address.go type RecoveryIdentityAddress (line 24) | type RecoveryIdentityAddress struct method GetCreatedAt (line 57) | func (o *RecoveryIdentityAddress) GetCreatedAt() time.Time { method GetCreatedAtOk (line 67) | func (o *RecoveryIdentityAddress) GetCreatedAtOk() (*time.Time, bool) { method HasCreatedAt (line 75) | func (o *RecoveryIdentityAddress) HasCreatedAt() bool { method SetCreatedAt (line 84) | func (o *RecoveryIdentityAddress) SetCreatedAt(v time.Time) { method GetId (line 89) | func (o *RecoveryIdentityAddress) GetId() string { method GetIdOk (line 99) | func (o *RecoveryIdentityAddress) GetIdOk() (*string, bool) { method HasId (line 107) | func (o *RecoveryIdentityAddress) HasId() bool { method SetId (line 116) | func (o *RecoveryIdentityAddress) SetId(v string) { method GetUpdatedAt (line 121) | func (o *RecoveryIdentityAddress) GetUpdatedAt() time.Time { method GetUpdatedAtOk (line 131) | func (o *RecoveryIdentityAddress) GetUpdatedAtOk() (*time.Time, bool) { method HasUpdatedAt (line 139) | func (o *RecoveryIdentityAddress) HasUpdatedAt() bool { method SetUpdatedAt (line 148) | func (o *RecoveryIdentityAddress) SetUpdatedAt(v time.Time) { method GetValue (line 153) | func (o *RecoveryIdentityAddress) GetValue() string { method GetValueOk (line 164) | func (o *RecoveryIdentityAddress) GetValueOk() (*string, bool) { method SetValue (line 172) | func (o *RecoveryIdentityAddress) SetValue(v string) { method GetVia (line 177) | func (o *RecoveryIdentityAddress) GetVia() string { method GetViaOk (line 188) | func (o *RecoveryIdentityAddress) GetViaOk() (*string, bool) { method SetVia (line 196) | func (o *RecoveryIdentityAddress) SetVia(v string) { method MarshalJSON (line 200) | func (o RecoveryIdentityAddress) MarshalJSON() ([]byte, error) { method ToMap (line 208) | func (o RecoveryIdentityAddress) ToMap() (map[string]interface{}, erro... method UnmarshalJSON (line 229) | func (o *RecoveryIdentityAddress) UnmarshalJSON(data []byte) (err erro... type _RecoveryIdentityAddress (line 35) | type _RecoveryIdentityAddress function NewRecoveryIdentityAddress (line 41) | func NewRecoveryIdentityAddress(value string, via string) *RecoveryIdent... function NewRecoveryIdentityAddressWithDefaults (line 51) | func NewRecoveryIdentityAddressWithDefaults() *RecoveryIdentityAddress { type NullableRecoveryIdentityAddress (line 276) | type NullableRecoveryIdentityAddress struct method Get (line 281) | func (v NullableRecoveryIdentityAddress) Get() *RecoveryIdentityAddress { method Set (line 285) | func (v *NullableRecoveryIdentityAddress) Set(val *RecoveryIdentityAdd... method IsSet (line 290) | func (v NullableRecoveryIdentityAddress) IsSet() bool { method Unset (line 294) | func (v *NullableRecoveryIdentityAddress) Unset() { method MarshalJSON (line 303) | func (v NullableRecoveryIdentityAddress) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 307) | func (v *NullableRecoveryIdentityAddress) UnmarshalJSON(src []byte) er... function NewNullableRecoveryIdentityAddress (line 299) | func NewNullableRecoveryIdentityAddress(val *RecoveryIdentityAddress) *N... FILE: pkg/client-go/model_recovery_link_for_identity.go type RecoveryLinkForIdentity (line 24) | type RecoveryLinkForIdentity struct method GetExpiresAt (line 53) | func (o *RecoveryLinkForIdentity) GetExpiresAt() time.Time { method GetExpiresAtOk (line 63) | func (o *RecoveryLinkForIdentity) GetExpiresAtOk() (*time.Time, bool) { method HasExpiresAt (line 71) | func (o *RecoveryLinkForIdentity) HasExpiresAt() bool { method SetExpiresAt (line 80) | func (o *RecoveryLinkForIdentity) SetExpiresAt(v time.Time) { method GetRecoveryLink (line 85) | func (o *RecoveryLinkForIdentity) GetRecoveryLink() string { method GetRecoveryLinkOk (line 96) | func (o *RecoveryLinkForIdentity) GetRecoveryLinkOk() (*string, bool) { method SetRecoveryLink (line 104) | func (o *RecoveryLinkForIdentity) SetRecoveryLink(v string) { method MarshalJSON (line 108) | func (o RecoveryLinkForIdentity) MarshalJSON() ([]byte, error) { method ToMap (line 116) | func (o RecoveryLinkForIdentity) ToMap() (map[string]interface{}, erro... method UnmarshalJSON (line 130) | func (o *RecoveryLinkForIdentity) UnmarshalJSON(data []byte) (err erro... type _RecoveryLinkForIdentity (line 32) | type _RecoveryLinkForIdentity function NewRecoveryLinkForIdentity (line 38) | func NewRecoveryLinkForIdentity(recoveryLink string) *RecoveryLinkForIde... function NewRecoveryLinkForIdentityWithDefaults (line 47) | func NewRecoveryLinkForIdentityWithDefaults() *RecoveryLinkForIdentity { type NullableRecoveryLinkForIdentity (line 173) | type NullableRecoveryLinkForIdentity struct method Get (line 178) | func (v NullableRecoveryLinkForIdentity) Get() *RecoveryLinkForIdentity { method Set (line 182) | func (v *NullableRecoveryLinkForIdentity) Set(val *RecoveryLinkForIden... method IsSet (line 187) | func (v NullableRecoveryLinkForIdentity) IsSet() bool { method Unset (line 191) | func (v *NullableRecoveryLinkForIdentity) Unset() { method MarshalJSON (line 200) | func (v NullableRecoveryLinkForIdentity) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 204) | func (v *NullableRecoveryLinkForIdentity) UnmarshalJSON(src []byte) er... function NewNullableRecoveryLinkForIdentity (line 196) | func NewNullableRecoveryLinkForIdentity(val *RecoveryLinkForIdentity) *N... FILE: pkg/client-go/model_registration_flow.go type RegistrationFlow (line 24) | type RegistrationFlow struct method GetActive (line 82) | func (o *RegistrationFlow) GetActive() string { method GetActiveOk (line 92) | func (o *RegistrationFlow) GetActiveOk() (*string, bool) { method HasActive (line 100) | func (o *RegistrationFlow) HasActive() bool { method SetActive (line 109) | func (o *RegistrationFlow) SetActive(v string) { method GetExpiresAt (line 114) | func (o *RegistrationFlow) GetExpiresAt() time.Time { method GetExpiresAtOk (line 125) | func (o *RegistrationFlow) GetExpiresAtOk() (*time.Time, bool) { method SetExpiresAt (line 133) | func (o *RegistrationFlow) SetExpiresAt(v time.Time) { method GetId (line 138) | func (o *RegistrationFlow) GetId() string { method GetIdOk (line 149) | func (o *RegistrationFlow) GetIdOk() (*string, bool) { method SetId (line 157) | func (o *RegistrationFlow) SetId(v string) { method GetIdentitySchema (line 162) | func (o *RegistrationFlow) GetIdentitySchema() string { method GetIdentitySchemaOk (line 172) | func (o *RegistrationFlow) GetIdentitySchemaOk() (*string, bool) { method HasIdentitySchema (line 180) | func (o *RegistrationFlow) HasIdentitySchema() bool { method SetIdentitySchema (line 189) | func (o *RegistrationFlow) SetIdentitySchema(v string) { method GetIssuedAt (line 194) | func (o *RegistrationFlow) GetIssuedAt() time.Time { method GetIssuedAtOk (line 205) | func (o *RegistrationFlow) GetIssuedAtOk() (*time.Time, bool) { method SetIssuedAt (line 213) | func (o *RegistrationFlow) SetIssuedAt(v time.Time) { method GetOauth2LoginChallenge (line 218) | func (o *RegistrationFlow) GetOauth2LoginChallenge() string { method GetOauth2LoginChallengeOk (line 228) | func (o *RegistrationFlow) GetOauth2LoginChallengeOk() (*string, bool) { method HasOauth2LoginChallenge (line 236) | func (o *RegistrationFlow) HasOauth2LoginChallenge() bool { method SetOauth2LoginChallenge (line 245) | func (o *RegistrationFlow) SetOauth2LoginChallenge(v string) { method GetOauth2LoginRequest (line 250) | func (o *RegistrationFlow) GetOauth2LoginRequest() OAuth2LoginRequest { method GetOauth2LoginRequestOk (line 260) | func (o *RegistrationFlow) GetOauth2LoginRequestOk() (*OAuth2LoginRequ... method HasOauth2LoginRequest (line 268) | func (o *RegistrationFlow) HasOauth2LoginRequest() bool { method SetOauth2LoginRequest (line 277) | func (o *RegistrationFlow) SetOauth2LoginRequest(v OAuth2LoginRequest) { method GetOrganizationId (line 282) | func (o *RegistrationFlow) GetOrganizationId() string { method GetOrganizationIdOk (line 293) | func (o *RegistrationFlow) GetOrganizationIdOk() (*string, bool) { method HasOrganizationId (line 301) | func (o *RegistrationFlow) HasOrganizationId() bool { method SetOrganizationId (line 310) | func (o *RegistrationFlow) SetOrganizationId(v string) { method SetOrganizationIdNil (line 315) | func (o *RegistrationFlow) SetOrganizationIdNil() { method UnsetOrganizationId (line 320) | func (o *RegistrationFlow) UnsetOrganizationId() { method GetRequestUrl (line 325) | func (o *RegistrationFlow) GetRequestUrl() string { method GetRequestUrlOk (line 336) | func (o *RegistrationFlow) GetRequestUrlOk() (*string, bool) { method SetRequestUrl (line 344) | func (o *RegistrationFlow) SetRequestUrl(v string) { method GetReturnTo (line 349) | func (o *RegistrationFlow) GetReturnTo() string { method GetReturnToOk (line 359) | func (o *RegistrationFlow) GetReturnToOk() (*string, bool) { method HasReturnTo (line 367) | func (o *RegistrationFlow) HasReturnTo() bool { method SetReturnTo (line 376) | func (o *RegistrationFlow) SetReturnTo(v string) { method GetSessionTokenExchangeCode (line 381) | func (o *RegistrationFlow) GetSessionTokenExchangeCode() string { method GetSessionTokenExchangeCodeOk (line 391) | func (o *RegistrationFlow) GetSessionTokenExchangeCodeOk() (*string, b... method HasSessionTokenExchangeCode (line 399) | func (o *RegistrationFlow) HasSessionTokenExchangeCode() bool { method SetSessionTokenExchangeCode (line 408) | func (o *RegistrationFlow) SetSessionTokenExchangeCode(v string) { method GetState (line 414) | func (o *RegistrationFlow) GetState() interface{} { method GetStateOk (line 426) | func (o *RegistrationFlow) GetStateOk() (*interface{}, bool) { method SetState (line 434) | func (o *RegistrationFlow) SetState(v interface{}) { method GetTransientPayload (line 439) | func (o *RegistrationFlow) GetTransientPayload() map[string]interface{} { method GetTransientPayloadOk (line 449) | func (o *RegistrationFlow) GetTransientPayloadOk() (map[string]interfa... method HasTransientPayload (line 457) | func (o *RegistrationFlow) HasTransientPayload() bool { method SetTransientPayload (line 466) | func (o *RegistrationFlow) SetTransientPayload(v map[string]interface{... method GetType (line 471) | func (o *RegistrationFlow) GetType() string { method GetTypeOk (line 482) | func (o *RegistrationFlow) GetTypeOk() (*string, bool) { method SetType (line 490) | func (o *RegistrationFlow) SetType(v string) { method GetUi (line 495) | func (o *RegistrationFlow) GetUi() UiContainer { method GetUiOk (line 506) | func (o *RegistrationFlow) GetUiOk() (*UiContainer, bool) { method SetUi (line 514) | func (o *RegistrationFlow) SetUi(v UiContainer) { method MarshalJSON (line 518) | func (o RegistrationFlow) MarshalJSON() ([]byte, error) { method ToMap (line 526) | func (o RegistrationFlow) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 569) | func (o *RegistrationFlow) UnmarshalJSON(data []byte) (err error) { type _RegistrationFlow (line 55) | type _RegistrationFlow function NewRegistrationFlow (line 61) | func NewRegistrationFlow(expiresAt time.Time, id string, issuedAt time.T... function NewRegistrationFlowWithDefaults (line 76) | func NewRegistrationFlowWithDefaults() *RegistrationFlow { type NullableRegistrationFlow (line 631) | type NullableRegistrationFlow struct method Get (line 636) | func (v NullableRegistrationFlow) Get() *RegistrationFlow { method Set (line 640) | func (v *NullableRegistrationFlow) Set(val *RegistrationFlow) { method IsSet (line 645) | func (v NullableRegistrationFlow) IsSet() bool { method Unset (line 649) | func (v *NullableRegistrationFlow) Unset() { method MarshalJSON (line 658) | func (v NullableRegistrationFlow) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 662) | func (v *NullableRegistrationFlow) UnmarshalJSON(src []byte) error { function NewNullableRegistrationFlow (line 654) | func NewNullableRegistrationFlow(val *RegistrationFlow) *NullableRegistr... FILE: pkg/client-go/model_registration_flow_state.go type RegistrationFlowState (line 20) | type RegistrationFlowState method UnmarshalJSON (line 36) | func (v *RegistrationFlowState) UnmarshalJSON(src []byte) error { method IsValid (line 65) | func (v RegistrationFlowState) IsValid() bool { method Ptr (line 75) | func (v RegistrationFlowState) Ptr() *RegistrationFlowState { constant REGISTRATIONFLOWSTATE_CHOOSE_METHOD (line 24) | REGISTRATIONFLOWSTATE_CHOOSE_METHOD RegistrationFlowState = "choose_m... constant REGISTRATIONFLOWSTATE_SENT_EMAIL (line 25) | REGISTRATIONFLOWSTATE_SENT_EMAIL RegistrationFlowState = "sent_email" constant REGISTRATIONFLOWSTATE_PASSED_CHALLENGE (line 26) | REGISTRATIONFLOWSTATE_PASSED_CHALLENGE RegistrationFlowState = "passed_c... function NewRegistrationFlowStateFromValue (line 55) | func NewRegistrationFlowStateFromValue(v string) (*RegistrationFlowState... type NullableRegistrationFlowState (line 79) | type NullableRegistrationFlowState struct method Get (line 84) | func (v NullableRegistrationFlowState) Get() *RegistrationFlowState { method Set (line 88) | func (v *NullableRegistrationFlowState) Set(val *RegistrationFlowState) { method IsSet (line 93) | func (v NullableRegistrationFlowState) IsSet() bool { method Unset (line 97) | func (v *NullableRegistrationFlowState) Unset() { method MarshalJSON (line 106) | func (v NullableRegistrationFlowState) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 110) | func (v *NullableRegistrationFlowState) UnmarshalJSON(src []byte) error { function NewNullableRegistrationFlowState (line 102) | func NewNullableRegistrationFlowState(val *RegistrationFlowState) *Nulla... FILE: pkg/client-go/model_self_service_flow_expired_error.go type SelfServiceFlowExpiredError (line 23) | type SelfServiceFlowExpiredError struct method GetError (line 54) | func (o *SelfServiceFlowExpiredError) GetError() GenericError { method GetErrorOk (line 64) | func (o *SelfServiceFlowExpiredError) GetErrorOk() (*GenericError, boo... method HasError (line 72) | func (o *SelfServiceFlowExpiredError) HasError() bool { method SetError (line 81) | func (o *SelfServiceFlowExpiredError) SetError(v GenericError) { method GetExpiredAt (line 86) | func (o *SelfServiceFlowExpiredError) GetExpiredAt() time.Time { method GetExpiredAtOk (line 96) | func (o *SelfServiceFlowExpiredError) GetExpiredAtOk() (*time.Time, bo... method HasExpiredAt (line 104) | func (o *SelfServiceFlowExpiredError) HasExpiredAt() bool { method SetExpiredAt (line 113) | func (o *SelfServiceFlowExpiredError) SetExpiredAt(v time.Time) { method GetSince (line 118) | func (o *SelfServiceFlowExpiredError) GetSince() int64 { method GetSinceOk (line 128) | func (o *SelfServiceFlowExpiredError) GetSinceOk() (*int64, bool) { method HasSince (line 136) | func (o *SelfServiceFlowExpiredError) HasSince() bool { method SetSince (line 145) | func (o *SelfServiceFlowExpiredError) SetSince(v int64) { method GetUseFlowId (line 150) | func (o *SelfServiceFlowExpiredError) GetUseFlowId() string { method GetUseFlowIdOk (line 160) | func (o *SelfServiceFlowExpiredError) GetUseFlowIdOk() (*string, bool) { method HasUseFlowId (line 168) | func (o *SelfServiceFlowExpiredError) HasUseFlowId() bool { method SetUseFlowId (line 177) | func (o *SelfServiceFlowExpiredError) SetUseFlowId(v string) { method MarshalJSON (line 181) | func (o SelfServiceFlowExpiredError) MarshalJSON() ([]byte, error) { method ToMap (line 189) | func (o SelfServiceFlowExpiredError) ToMap() (map[string]interface{}, ... method UnmarshalJSON (line 211) | func (o *SelfServiceFlowExpiredError) UnmarshalJSON(data []byte) (err ... type _SelfServiceFlowExpiredError (line 34) | type _SelfServiceFlowExpiredError function NewSelfServiceFlowExpiredError (line 40) | func NewSelfServiceFlowExpiredError() *SelfServiceFlowExpiredError { function NewSelfServiceFlowExpiredErrorWithDefaults (line 48) | func NewSelfServiceFlowExpiredErrorWithDefaults() *SelfServiceFlowExpire... type NullableSelfServiceFlowExpiredError (line 235) | type NullableSelfServiceFlowExpiredError struct method Get (line 240) | func (v NullableSelfServiceFlowExpiredError) Get() *SelfServiceFlowExp... method Set (line 244) | func (v *NullableSelfServiceFlowExpiredError) Set(val *SelfServiceFlow... method IsSet (line 249) | func (v NullableSelfServiceFlowExpiredError) IsSet() bool { method Unset (line 253) | func (v *NullableSelfServiceFlowExpiredError) Unset() { method MarshalJSON (line 262) | func (v NullableSelfServiceFlowExpiredError) MarshalJSON() ([]byte, er... method UnmarshalJSON (line 266) | func (v *NullableSelfServiceFlowExpiredError) UnmarshalJSON(src []byte... function NewNullableSelfServiceFlowExpiredError (line 258) | func NewNullableSelfServiceFlowExpiredError(val *SelfServiceFlowExpiredE... FILE: pkg/client-go/model_session.go type Session (line 24) | type Session struct method GetActive (line 67) | func (o *Session) GetActive() bool { method GetActiveOk (line 77) | func (o *Session) GetActiveOk() (*bool, bool) { method HasActive (line 85) | func (o *Session) HasActive() bool { method SetActive (line 94) | func (o *Session) SetActive(v bool) { method GetAuthenticatedAt (line 99) | func (o *Session) GetAuthenticatedAt() time.Time { method GetAuthenticatedAtOk (line 109) | func (o *Session) GetAuthenticatedAtOk() (*time.Time, bool) { method HasAuthenticatedAt (line 117) | func (o *Session) HasAuthenticatedAt() bool { method SetAuthenticatedAt (line 126) | func (o *Session) SetAuthenticatedAt(v time.Time) { method GetAuthenticationMethods (line 131) | func (o *Session) GetAuthenticationMethods() []SessionAuthenticationMe... method GetAuthenticationMethodsOk (line 141) | func (o *Session) GetAuthenticationMethodsOk() ([]SessionAuthenticatio... method HasAuthenticationMethods (line 149) | func (o *Session) HasAuthenticationMethods() bool { method SetAuthenticationMethods (line 158) | func (o *Session) SetAuthenticationMethods(v []SessionAuthenticationMe... method GetAuthenticatorAssuranceLevel (line 163) | func (o *Session) GetAuthenticatorAssuranceLevel() AuthenticatorAssura... method GetAuthenticatorAssuranceLevelOk (line 173) | func (o *Session) GetAuthenticatorAssuranceLevelOk() (*AuthenticatorAs... method HasAuthenticatorAssuranceLevel (line 181) | func (o *Session) HasAuthenticatorAssuranceLevel() bool { method SetAuthenticatorAssuranceLevel (line 190) | func (o *Session) SetAuthenticatorAssuranceLevel(v AuthenticatorAssura... method GetDevices (line 195) | func (o *Session) GetDevices() []SessionDevice { method GetDevicesOk (line 205) | func (o *Session) GetDevicesOk() ([]SessionDevice, bool) { method HasDevices (line 213) | func (o *Session) HasDevices() bool { method SetDevices (line 222) | func (o *Session) SetDevices(v []SessionDevice) { method GetExpiresAt (line 227) | func (o *Session) GetExpiresAt() time.Time { method GetExpiresAtOk (line 237) | func (o *Session) GetExpiresAtOk() (*time.Time, bool) { method HasExpiresAt (line 245) | func (o *Session) HasExpiresAt() bool { method SetExpiresAt (line 254) | func (o *Session) SetExpiresAt(v time.Time) { method GetId (line 259) | func (o *Session) GetId() string { method GetIdOk (line 270) | func (o *Session) GetIdOk() (*string, bool) { method SetId (line 278) | func (o *Session) SetId(v string) { method GetIdentity (line 283) | func (o *Session) GetIdentity() Identity { method GetIdentityOk (line 293) | func (o *Session) GetIdentityOk() (*Identity, bool) { method HasIdentity (line 301) | func (o *Session) HasIdentity() bool { method SetIdentity (line 310) | func (o *Session) SetIdentity(v Identity) { method GetIssuedAt (line 315) | func (o *Session) GetIssuedAt() time.Time { method GetIssuedAtOk (line 325) | func (o *Session) GetIssuedAtOk() (*time.Time, bool) { method HasIssuedAt (line 333) | func (o *Session) HasIssuedAt() bool { method SetIssuedAt (line 342) | func (o *Session) SetIssuedAt(v time.Time) { method GetTokenized (line 347) | func (o *Session) GetTokenized() string { method GetTokenizedOk (line 357) | func (o *Session) GetTokenizedOk() (*string, bool) { method HasTokenized (line 365) | func (o *Session) HasTokenized() bool { method SetTokenized (line 374) | func (o *Session) SetTokenized(v string) { method MarshalJSON (line 378) | func (o Session) MarshalJSON() ([]byte, error) { method ToMap (line 386) | func (o Session) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 424) | func (o *Session) UnmarshalJSON(data []byte) (err error) { type _Session (line 46) | type _Session function NewSession (line 52) | func NewSession(id string) *Session { function NewSessionWithDefaults (line 61) | func NewSessionWithDefaults() *Session { type NullableSession (line 475) | type NullableSession struct method Get (line 480) | func (v NullableSession) Get() *Session { method Set (line 484) | func (v *NullableSession) Set(val *Session) { method IsSet (line 489) | func (v NullableSession) IsSet() bool { method Unset (line 493) | func (v *NullableSession) Unset() { method MarshalJSON (line 502) | func (v NullableSession) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 506) | func (v *NullableSession) UnmarshalJSON(src []byte) error { function NewNullableSession (line 498) | func NewNullableSession(val *Session) *NullableSession { FILE: pkg/client-go/model_session_authentication_method.go type SessionAuthenticationMethod (line 23) | type SessionAuthenticationMethod struct method GetAal (line 56) | func (o *SessionAuthenticationMethod) GetAal() AuthenticatorAssuranceL... method GetAalOk (line 66) | func (o *SessionAuthenticationMethod) GetAalOk() (*AuthenticatorAssura... method HasAal (line 74) | func (o *SessionAuthenticationMethod) HasAal() bool { method SetAal (line 83) | func (o *SessionAuthenticationMethod) SetAal(v AuthenticatorAssuranceL... method GetCompletedAt (line 88) | func (o *SessionAuthenticationMethod) GetCompletedAt() time.Time { method GetCompletedAtOk (line 98) | func (o *SessionAuthenticationMethod) GetCompletedAtOk() (*time.Time, ... method HasCompletedAt (line 106) | func (o *SessionAuthenticationMethod) HasCompletedAt() bool { method SetCompletedAt (line 115) | func (o *SessionAuthenticationMethod) SetCompletedAt(v time.Time) { method GetMethod (line 120) | func (o *SessionAuthenticationMethod) GetMethod() string { method GetMethodOk (line 130) | func (o *SessionAuthenticationMethod) GetMethodOk() (*string, bool) { method HasMethod (line 138) | func (o *SessionAuthenticationMethod) HasMethod() bool { method SetMethod (line 147) | func (o *SessionAuthenticationMethod) SetMethod(v string) { method GetOrganization (line 152) | func (o *SessionAuthenticationMethod) GetOrganization() string { method GetOrganizationOk (line 162) | func (o *SessionAuthenticationMethod) GetOrganizationOk() (*string, bo... method HasOrganization (line 170) | func (o *SessionAuthenticationMethod) HasOrganization() bool { method SetOrganization (line 179) | func (o *SessionAuthenticationMethod) SetOrganization(v string) { method GetProvider (line 184) | func (o *SessionAuthenticationMethod) GetProvider() string { method GetProviderOk (line 194) | func (o *SessionAuthenticationMethod) GetProviderOk() (*string, bool) { method HasProvider (line 202) | func (o *SessionAuthenticationMethod) HasProvider() bool { method SetProvider (line 211) | func (o *SessionAuthenticationMethod) SetProvider(v string) { method MarshalJSON (line 215) | func (o SessionAuthenticationMethod) MarshalJSON() ([]byte, error) { method ToMap (line 223) | func (o SessionAuthenticationMethod) ToMap() (map[string]interface{}, ... method UnmarshalJSON (line 248) | func (o *SessionAuthenticationMethod) UnmarshalJSON(data []byte) (err ... type _SessionAuthenticationMethod (line 36) | type _SessionAuthenticationMethod function NewSessionAuthenticationMethod (line 42) | func NewSessionAuthenticationMethod() *SessionAuthenticationMethod { function NewSessionAuthenticationMethodWithDefaults (line 50) | func NewSessionAuthenticationMethodWithDefaults() *SessionAuthentication... type NullableSessionAuthenticationMethod (line 273) | type NullableSessionAuthenticationMethod struct method Get (line 278) | func (v NullableSessionAuthenticationMethod) Get() *SessionAuthenticat... method Set (line 282) | func (v *NullableSessionAuthenticationMethod) Set(val *SessionAuthenti... method IsSet (line 287) | func (v NullableSessionAuthenticationMethod) IsSet() bool { method Unset (line 291) | func (v *NullableSessionAuthenticationMethod) Unset() { method MarshalJSON (line 300) | func (v NullableSessionAuthenticationMethod) MarshalJSON() ([]byte, er... method UnmarshalJSON (line 304) | func (v *NullableSessionAuthenticationMethod) UnmarshalJSON(src []byte... function NewNullableSessionAuthenticationMethod (line 296) | func NewNullableSessionAuthenticationMethod(val *SessionAuthenticationMe... FILE: pkg/client-go/model_session_device.go type SessionDevice (line 23) | type SessionDevice struct method GetId (line 56) | func (o *SessionDevice) GetId() string { method GetIdOk (line 67) | func (o *SessionDevice) GetIdOk() (*string, bool) { method SetId (line 75) | func (o *SessionDevice) SetId(v string) { method GetIpAddress (line 80) | func (o *SessionDevice) GetIpAddress() string { method GetIpAddressOk (line 90) | func (o *SessionDevice) GetIpAddressOk() (*string, bool) { method HasIpAddress (line 98) | func (o *SessionDevice) HasIpAddress() bool { method SetIpAddress (line 107) | func (o *SessionDevice) SetIpAddress(v string) { method GetLocation (line 112) | func (o *SessionDevice) GetLocation() string { method GetLocationOk (line 122) | func (o *SessionDevice) GetLocationOk() (*string, bool) { method HasLocation (line 130) | func (o *SessionDevice) HasLocation() bool { method SetLocation (line 139) | func (o *SessionDevice) SetLocation(v string) { method GetUserAgent (line 144) | func (o *SessionDevice) GetUserAgent() string { method GetUserAgentOk (line 154) | func (o *SessionDevice) GetUserAgentOk() (*string, bool) { method HasUserAgent (line 162) | func (o *SessionDevice) HasUserAgent() bool { method SetUserAgent (line 171) | func (o *SessionDevice) SetUserAgent(v string) { method MarshalJSON (line 175) | func (o SessionDevice) MarshalJSON() ([]byte, error) { method ToMap (line 183) | func (o SessionDevice) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 203) | func (o *SessionDevice) UnmarshalJSON(data []byte) (err error) { type _SessionDevice (line 35) | type _SessionDevice function NewSessionDevice (line 41) | func NewSessionDevice(id string) *SessionDevice { function NewSessionDeviceWithDefaults (line 50) | func NewSessionDeviceWithDefaults() *SessionDevice { type NullableSessionDevice (line 248) | type NullableSessionDevice struct method Get (line 253) | func (v NullableSessionDevice) Get() *SessionDevice { method Set (line 257) | func (v *NullableSessionDevice) Set(val *SessionDevice) { method IsSet (line 262) | func (v NullableSessionDevice) IsSet() bool { method Unset (line 266) | func (v *NullableSessionDevice) Unset() { method MarshalJSON (line 275) | func (v NullableSessionDevice) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 279) | func (v *NullableSessionDevice) UnmarshalJSON(src []byte) error { function NewNullableSessionDevice (line 271) | func NewNullableSessionDevice(val *SessionDevice) *NullableSessionDevice { FILE: pkg/client-go/model_settings_flow.go type SettingsFlow (line 24) | type SettingsFlow struct method GetActive (line 78) | func (o *SettingsFlow) GetActive() string { method GetActiveOk (line 88) | func (o *SettingsFlow) GetActiveOk() (*string, bool) { method HasActive (line 96) | func (o *SettingsFlow) HasActive() bool { method SetActive (line 105) | func (o *SettingsFlow) SetActive(v string) { method GetContinueWith (line 110) | func (o *SettingsFlow) GetContinueWith() []ContinueWith { method GetContinueWithOk (line 120) | func (o *SettingsFlow) GetContinueWithOk() ([]ContinueWith, bool) { method HasContinueWith (line 128) | func (o *SettingsFlow) HasContinueWith() bool { method SetContinueWith (line 137) | func (o *SettingsFlow) SetContinueWith(v []ContinueWith) { method GetExpiresAt (line 142) | func (o *SettingsFlow) GetExpiresAt() time.Time { method GetExpiresAtOk (line 153) | func (o *SettingsFlow) GetExpiresAtOk() (*time.Time, bool) { method SetExpiresAt (line 161) | func (o *SettingsFlow) SetExpiresAt(v time.Time) { method GetId (line 166) | func (o *SettingsFlow) GetId() string { method GetIdOk (line 177) | func (o *SettingsFlow) GetIdOk() (*string, bool) { method SetId (line 185) | func (o *SettingsFlow) SetId(v string) { method GetIdentity (line 190) | func (o *SettingsFlow) GetIdentity() Identity { method GetIdentityOk (line 201) | func (o *SettingsFlow) GetIdentityOk() (*Identity, bool) { method SetIdentity (line 209) | func (o *SettingsFlow) SetIdentity(v Identity) { method GetIssuedAt (line 214) | func (o *SettingsFlow) GetIssuedAt() time.Time { method GetIssuedAtOk (line 225) | func (o *SettingsFlow) GetIssuedAtOk() (*time.Time, bool) { method SetIssuedAt (line 233) | func (o *SettingsFlow) SetIssuedAt(v time.Time) { method GetRequestUrl (line 238) | func (o *SettingsFlow) GetRequestUrl() string { method GetRequestUrlOk (line 249) | func (o *SettingsFlow) GetRequestUrlOk() (*string, bool) { method SetRequestUrl (line 257) | func (o *SettingsFlow) SetRequestUrl(v string) { method GetReturnTo (line 262) | func (o *SettingsFlow) GetReturnTo() string { method GetReturnToOk (line 272) | func (o *SettingsFlow) GetReturnToOk() (*string, bool) { method HasReturnTo (line 280) | func (o *SettingsFlow) HasReturnTo() bool { method SetReturnTo (line 289) | func (o *SettingsFlow) SetReturnTo(v string) { method GetState (line 295) | func (o *SettingsFlow) GetState() interface{} { method GetStateOk (line 307) | func (o *SettingsFlow) GetStateOk() (*interface{}, bool) { method SetState (line 315) | func (o *SettingsFlow) SetState(v interface{}) { method GetTransientPayload (line 320) | func (o *SettingsFlow) GetTransientPayload() map[string]interface{} { method GetTransientPayloadOk (line 330) | func (o *SettingsFlow) GetTransientPayloadOk() (map[string]interface{}... method HasTransientPayload (line 338) | func (o *SettingsFlow) HasTransientPayload() bool { method SetTransientPayload (line 347) | func (o *SettingsFlow) SetTransientPayload(v map[string]interface{}) { method GetType (line 352) | func (o *SettingsFlow) GetType() string { method GetTypeOk (line 363) | func (o *SettingsFlow) GetTypeOk() (*string, bool) { method SetType (line 371) | func (o *SettingsFlow) SetType(v string) { method GetUi (line 376) | func (o *SettingsFlow) GetUi() UiContainer { method GetUiOk (line 387) | func (o *SettingsFlow) GetUiOk() (*UiContainer, bool) { method SetUi (line 395) | func (o *SettingsFlow) SetUi(v UiContainer) { method MarshalJSON (line 399) | func (o SettingsFlow) MarshalJSON() ([]byte, error) { method ToMap (line 407) | func (o SettingsFlow) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 439) | func (o *SettingsFlow) UnmarshalJSON(data []byte) (err error) { type _SettingsFlow (line 50) | type _SettingsFlow function NewSettingsFlow (line 56) | func NewSettingsFlow(expiresAt time.Time, id string, identity Identity, ... function NewSettingsFlowWithDefaults (line 72) | func NewSettingsFlowWithDefaults() *SettingsFlow { type NullableSettingsFlow (line 499) | type NullableSettingsFlow struct method Get (line 504) | func (v NullableSettingsFlow) Get() *SettingsFlow { method Set (line 508) | func (v *NullableSettingsFlow) Set(val *SettingsFlow) { method IsSet (line 513) | func (v NullableSettingsFlow) IsSet() bool { method Unset (line 517) | func (v *NullableSettingsFlow) Unset() { method MarshalJSON (line 526) | func (v NullableSettingsFlow) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 530) | func (v *NullableSettingsFlow) UnmarshalJSON(src []byte) error { function NewNullableSettingsFlow (line 522) | func NewNullableSettingsFlow(val *SettingsFlow) *NullableSettingsFlow { FILE: pkg/client-go/model_settings_flow_state.go type SettingsFlowState (line 20) | type SettingsFlowState method UnmarshalJSON (line 34) | func (v *SettingsFlowState) UnmarshalJSON(src []byte) error { method IsValid (line 63) | func (v SettingsFlowState) IsValid() bool { method Ptr (line 73) | func (v SettingsFlowState) Ptr() *SettingsFlowState { constant SETTINGSFLOWSTATE_SHOW_FORM (line 24) | SETTINGSFLOWSTATE_SHOW_FORM SettingsFlowState = "show_form" constant SETTINGSFLOWSTATE_SUCCESS (line 25) | SETTINGSFLOWSTATE_SUCCESS SettingsFlowState = "success" function NewSettingsFlowStateFromValue (line 53) | func NewSettingsFlowStateFromValue(v string) (*SettingsFlowState, error) { type NullableSettingsFlowState (line 77) | type NullableSettingsFlowState struct method Get (line 82) | func (v NullableSettingsFlowState) Get() *SettingsFlowState { method Set (line 86) | func (v *NullableSettingsFlowState) Set(val *SettingsFlowState) { method IsSet (line 91) | func (v NullableSettingsFlowState) IsSet() bool { method Unset (line 95) | func (v *NullableSettingsFlowState) Unset() { method MarshalJSON (line 104) | func (v NullableSettingsFlowState) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 108) | func (v *NullableSettingsFlowState) UnmarshalJSON(src []byte) error { function NewNullableSettingsFlowState (line 100) | func NewNullableSettingsFlowState(val *SettingsFlowState) *NullableSetti... FILE: pkg/client-go/model_successful_code_exchange_response.go type SuccessfulCodeExchangeResponse (line 23) | type SuccessfulCodeExchangeResponse struct method GetSession (line 51) | func (o *SuccessfulCodeExchangeResponse) GetSession() Session { method GetSessionOk (line 62) | func (o *SuccessfulCodeExchangeResponse) GetSessionOk() (*Session, boo... method SetSession (line 70) | func (o *SuccessfulCodeExchangeResponse) SetSession(v Session) { method GetSessionToken (line 75) | func (o *SuccessfulCodeExchangeResponse) GetSessionToken() string { method GetSessionTokenOk (line 85) | func (o *SuccessfulCodeExchangeResponse) GetSessionTokenOk() (*string,... method HasSessionToken (line 93) | func (o *SuccessfulCodeExchangeResponse) HasSessionToken() bool { method SetSessionToken (line 102) | func (o *SuccessfulCodeExchangeResponse) SetSessionToken(v string) { method MarshalJSON (line 106) | func (o SuccessfulCodeExchangeResponse) MarshalJSON() ([]byte, error) { method ToMap (line 114) | func (o SuccessfulCodeExchangeResponse) ToMap() (map[string]interface{... method UnmarshalJSON (line 128) | func (o *SuccessfulCodeExchangeResponse) UnmarshalJSON(data []byte) (e... type _SuccessfulCodeExchangeResponse (line 30) | type _SuccessfulCodeExchangeResponse function NewSuccessfulCodeExchangeResponse (line 36) | func NewSuccessfulCodeExchangeResponse(session Session) *SuccessfulCodeE... function NewSuccessfulCodeExchangeResponseWithDefaults (line 45) | func NewSuccessfulCodeExchangeResponseWithDefaults() *SuccessfulCodeExch... type NullableSuccessfulCodeExchangeResponse (line 171) | type NullableSuccessfulCodeExchangeResponse struct method Get (line 176) | func (v NullableSuccessfulCodeExchangeResponse) Get() *SuccessfulCodeE... method Set (line 180) | func (v *NullableSuccessfulCodeExchangeResponse) Set(val *SuccessfulCo... method IsSet (line 185) | func (v NullableSuccessfulCodeExchangeResponse) IsSet() bool { method Unset (line 189) | func (v *NullableSuccessfulCodeExchangeResponse) Unset() { method MarshalJSON (line 198) | func (v NullableSuccessfulCodeExchangeResponse) MarshalJSON() ([]byte,... method UnmarshalJSON (line 202) | func (v *NullableSuccessfulCodeExchangeResponse) UnmarshalJSON(src []b... function NewNullableSuccessfulCodeExchangeResponse (line 194) | func NewNullableSuccessfulCodeExchangeResponse(val *SuccessfulCodeExchan... FILE: pkg/client-go/model_successful_native_login.go type SuccessfulNativeLogin (line 23) | type SuccessfulNativeLogin struct method GetContinueWith (line 53) | func (o *SuccessfulNativeLogin) GetContinueWith() []ContinueWith { method GetContinueWithOk (line 63) | func (o *SuccessfulNativeLogin) GetContinueWithOk() ([]ContinueWith, b... method HasContinueWith (line 71) | func (o *SuccessfulNativeLogin) HasContinueWith() bool { method SetContinueWith (line 80) | func (o *SuccessfulNativeLogin) SetContinueWith(v []ContinueWith) { method GetSession (line 85) | func (o *SuccessfulNativeLogin) GetSession() Session { method GetSessionOk (line 96) | func (o *SuccessfulNativeLogin) GetSessionOk() (*Session, bool) { method SetSession (line 104) | func (o *SuccessfulNativeLogin) SetSession(v Session) { method GetSessionToken (line 109) | func (o *SuccessfulNativeLogin) GetSessionToken() string { method GetSessionTokenOk (line 119) | func (o *SuccessfulNativeLogin) GetSessionTokenOk() (*string, bool) { method HasSessionToken (line 127) | func (o *SuccessfulNativeLogin) HasSessionToken() bool { method SetSessionToken (line 136) | func (o *SuccessfulNativeLogin) SetSessionToken(v string) { method MarshalJSON (line 140) | func (o SuccessfulNativeLogin) MarshalJSON() ([]byte, error) { method ToMap (line 148) | func (o SuccessfulNativeLogin) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 165) | func (o *SuccessfulNativeLogin) UnmarshalJSON(data []byte) (err error) { type _SuccessfulNativeLogin (line 32) | type _SuccessfulNativeLogin function NewSuccessfulNativeLogin (line 38) | func NewSuccessfulNativeLogin(session Session) *SuccessfulNativeLogin { function NewSuccessfulNativeLoginWithDefaults (line 47) | func NewSuccessfulNativeLoginWithDefaults() *SuccessfulNativeLogin { type NullableSuccessfulNativeLogin (line 209) | type NullableSuccessfulNativeLogin struct method Get (line 214) | func (v NullableSuccessfulNativeLogin) Get() *SuccessfulNativeLogin { method Set (line 218) | func (v *NullableSuccessfulNativeLogin) Set(val *SuccessfulNativeLogin) { method IsSet (line 223) | func (v NullableSuccessfulNativeLogin) IsSet() bool { method Unset (line 227) | func (v *NullableSuccessfulNativeLogin) Unset() { method MarshalJSON (line 236) | func (v NullableSuccessfulNativeLogin) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 240) | func (v *NullableSuccessfulNativeLogin) UnmarshalJSON(src []byte) error { function NewNullableSuccessfulNativeLogin (line 232) | func NewNullableSuccessfulNativeLogin(val *SuccessfulNativeLogin) *Nulla... FILE: pkg/client-go/model_successful_native_registration.go type SuccessfulNativeRegistration (line 23) | type SuccessfulNativeRegistration struct method GetContinueWith (line 54) | func (o *SuccessfulNativeRegistration) GetContinueWith() []ContinueWith { method GetContinueWithOk (line 64) | func (o *SuccessfulNativeRegistration) GetContinueWithOk() ([]Continue... method HasContinueWith (line 72) | func (o *SuccessfulNativeRegistration) HasContinueWith() bool { method SetContinueWith (line 81) | func (o *SuccessfulNativeRegistration) SetContinueWith(v []ContinueWit... method GetIdentity (line 86) | func (o *SuccessfulNativeRegistration) GetIdentity() Identity { method GetIdentityOk (line 97) | func (o *SuccessfulNativeRegistration) GetIdentityOk() (*Identity, boo... method SetIdentity (line 105) | func (o *SuccessfulNativeRegistration) SetIdentity(v Identity) { method GetSession (line 110) | func (o *SuccessfulNativeRegistration) GetSession() Session { method GetSessionOk (line 120) | func (o *SuccessfulNativeRegistration) GetSessionOk() (*Session, bool) { method HasSession (line 128) | func (o *SuccessfulNativeRegistration) HasSession() bool { method SetSession (line 137) | func (o *SuccessfulNativeRegistration) SetSession(v Session) { method GetSessionToken (line 142) | func (o *SuccessfulNativeRegistration) GetSessionToken() string { method GetSessionTokenOk (line 152) | func (o *SuccessfulNativeRegistration) GetSessionTokenOk() (*string, b... method HasSessionToken (line 160) | func (o *SuccessfulNativeRegistration) HasSessionToken() bool { method SetSessionToken (line 169) | func (o *SuccessfulNativeRegistration) SetSessionToken(v string) { method MarshalJSON (line 173) | func (o SuccessfulNativeRegistration) MarshalJSON() ([]byte, error) { method ToMap (line 181) | func (o SuccessfulNativeRegistration) ToMap() (map[string]interface{},... method UnmarshalJSON (line 201) | func (o *SuccessfulNativeRegistration) UnmarshalJSON(data []byte) (err... type _SuccessfulNativeRegistration (line 33) | type _SuccessfulNativeRegistration function NewSuccessfulNativeRegistration (line 39) | func NewSuccessfulNativeRegistration(identity Identity) *SuccessfulNativ... function NewSuccessfulNativeRegistrationWithDefaults (line 48) | func NewSuccessfulNativeRegistrationWithDefaults() *SuccessfulNativeRegi... type NullableSuccessfulNativeRegistration (line 246) | type NullableSuccessfulNativeRegistration struct method Get (line 251) | func (v NullableSuccessfulNativeRegistration) Get() *SuccessfulNativeR... method Set (line 255) | func (v *NullableSuccessfulNativeRegistration) Set(val *SuccessfulNati... method IsSet (line 260) | func (v NullableSuccessfulNativeRegistration) IsSet() bool { method Unset (line 264) | func (v *NullableSuccessfulNativeRegistration) Unset() { method MarshalJSON (line 273) | func (v NullableSuccessfulNativeRegistration) MarshalJSON() ([]byte, e... method UnmarshalJSON (line 277) | func (v *NullableSuccessfulNativeRegistration) UnmarshalJSON(src []byt... function NewNullableSuccessfulNativeRegistration (line 269) | func NewNullableSuccessfulNativeRegistration(val *SuccessfulNativeRegist... FILE: pkg/client-go/model_token_pagination.go type TokenPagination (line 22) | type TokenPagination struct method GetPageSize (line 54) | func (o *TokenPagination) GetPageSize() int64 { method GetPageSizeOk (line 64) | func (o *TokenPagination) GetPageSizeOk() (*int64, bool) { method HasPageSize (line 72) | func (o *TokenPagination) HasPageSize() bool { method SetPageSize (line 81) | func (o *TokenPagination) SetPageSize(v int64) { method GetPageToken (line 86) | func (o *TokenPagination) GetPageToken() string { method GetPageTokenOk (line 96) | func (o *TokenPagination) GetPageTokenOk() (*string, bool) { method HasPageToken (line 104) | func (o *TokenPagination) HasPageToken() bool { method SetPageToken (line 113) | func (o *TokenPagination) SetPageToken(v string) { method MarshalJSON (line 117) | func (o TokenPagination) MarshalJSON() ([]byte, error) { method ToMap (line 125) | func (o TokenPagination) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 141) | func (o *TokenPagination) UnmarshalJSON(data []byte) (err error) { type _TokenPagination (line 30) | type _TokenPagination function NewTokenPagination (line 36) | func NewTokenPagination() *TokenPagination { function NewTokenPaginationWithDefaults (line 46) | func NewTokenPaginationWithDefaults() *TokenPagination { type NullableTokenPagination (line 163) | type NullableTokenPagination struct method Get (line 168) | func (v NullableTokenPagination) Get() *TokenPagination { method Set (line 172) | func (v *NullableTokenPagination) Set(val *TokenPagination) { method IsSet (line 177) | func (v NullableTokenPagination) IsSet() bool { method Unset (line 181) | func (v *NullableTokenPagination) Unset() { method MarshalJSON (line 190) | func (v NullableTokenPagination) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 194) | func (v *NullableTokenPagination) UnmarshalJSON(src []byte) error { function NewNullableTokenPagination (line 186) | func NewNullableTokenPagination(val *TokenPagination) *NullableTokenPagi... FILE: pkg/client-go/model_token_pagination_headers.go type TokenPaginationHeaders (line 22) | type TokenPaginationHeaders struct method GetLink (line 50) | func (o *TokenPaginationHeaders) GetLink() string { method GetLinkOk (line 60) | func (o *TokenPaginationHeaders) GetLinkOk() (*string, bool) { method HasLink (line 68) | func (o *TokenPaginationHeaders) HasLink() bool { method SetLink (line 77) | func (o *TokenPaginationHeaders) SetLink(v string) { method GetXTotalCount (line 82) | func (o *TokenPaginationHeaders) GetXTotalCount() string { method GetXTotalCountOk (line 92) | func (o *TokenPaginationHeaders) GetXTotalCountOk() (*string, bool) { method HasXTotalCount (line 100) | func (o *TokenPaginationHeaders) HasXTotalCount() bool { method SetXTotalCount (line 109) | func (o *TokenPaginationHeaders) SetXTotalCount(v string) { method MarshalJSON (line 113) | func (o TokenPaginationHeaders) MarshalJSON() ([]byte, error) { method ToMap (line 121) | func (o TokenPaginationHeaders) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 137) | func (o *TokenPaginationHeaders) UnmarshalJSON(data []byte) (err error) { type _TokenPaginationHeaders (line 30) | type _TokenPaginationHeaders function NewTokenPaginationHeaders (line 36) | func NewTokenPaginationHeaders() *TokenPaginationHeaders { function NewTokenPaginationHeadersWithDefaults (line 44) | func NewTokenPaginationHeadersWithDefaults() *TokenPaginationHeaders { type NullableTokenPaginationHeaders (line 159) | type NullableTokenPaginationHeaders struct method Get (line 164) | func (v NullableTokenPaginationHeaders) Get() *TokenPaginationHeaders { method Set (line 168) | func (v *NullableTokenPaginationHeaders) Set(val *TokenPaginationHeade... method IsSet (line 173) | func (v NullableTokenPaginationHeaders) IsSet() bool { method Unset (line 177) | func (v *NullableTokenPaginationHeaders) Unset() { method MarshalJSON (line 186) | func (v NullableTokenPaginationHeaders) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 190) | func (v *NullableTokenPaginationHeaders) UnmarshalJSON(src []byte) err... function NewNullableTokenPaginationHeaders (line 182) | func NewNullableTokenPaginationHeaders(val *TokenPaginationHeaders) *Nul... FILE: pkg/client-go/model_ui_container.go type UiContainer (line 23) | type UiContainer struct method GetAction (line 56) | func (o *UiContainer) GetAction() string { method GetActionOk (line 67) | func (o *UiContainer) GetActionOk() (*string, bool) { method SetAction (line 75) | func (o *UiContainer) SetAction(v string) { method GetMessages (line 80) | func (o *UiContainer) GetMessages() []UiText { method GetMessagesOk (line 90) | func (o *UiContainer) GetMessagesOk() ([]UiText, bool) { method HasMessages (line 98) | func (o *UiContainer) HasMessages() bool { method SetMessages (line 107) | func (o *UiContainer) SetMessages(v []UiText) { method GetMethod (line 112) | func (o *UiContainer) GetMethod() string { method GetMethodOk (line 123) | func (o *UiContainer) GetMethodOk() (*string, bool) { method SetMethod (line 131) | func (o *UiContainer) SetMethod(v string) { method GetNodes (line 136) | func (o *UiContainer) GetNodes() []UiNode { method GetNodesOk (line 147) | func (o *UiContainer) GetNodesOk() ([]UiNode, bool) { method SetNodes (line 155) | func (o *UiContainer) SetNodes(v []UiNode) { method MarshalJSON (line 159) | func (o UiContainer) MarshalJSON() ([]byte, error) { method ToMap (line 167) | func (o UiContainer) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 183) | func (o *UiContainer) UnmarshalJSON(data []byte) (err error) { type _UiContainer (line 33) | type _UiContainer function NewUiContainer (line 39) | func NewUiContainer(action string, method string, nodes []UiNode) *UiCon... function NewUiContainerWithDefaults (line 50) | func NewUiContainerWithDefaults() *UiContainer { type NullableUiContainer (line 230) | type NullableUiContainer struct method Get (line 235) | func (v NullableUiContainer) Get() *UiContainer { method Set (line 239) | func (v *NullableUiContainer) Set(val *UiContainer) { method IsSet (line 244) | func (v NullableUiContainer) IsSet() bool { method Unset (line 248) | func (v *NullableUiContainer) Unset() { method MarshalJSON (line 257) | func (v NullableUiContainer) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 261) | func (v *NullableUiContainer) UnmarshalJSON(src []byte) error { function NewNullableUiContainer (line 253) | func NewNullableUiContainer(val *UiContainer) *NullableUiContainer { FILE: pkg/client-go/model_ui_node.go type UiNode (line 23) | type UiNode struct method GetAttributes (line 59) | func (o *UiNode) GetAttributes() UiNodeAttributes { method GetAttributesOk (line 70) | func (o *UiNode) GetAttributesOk() (*UiNodeAttributes, bool) { method SetAttributes (line 78) | func (o *UiNode) SetAttributes(v UiNodeAttributes) { method GetGroup (line 83) | func (o *UiNode) GetGroup() string { method GetGroupOk (line 94) | func (o *UiNode) GetGroupOk() (*string, bool) { method SetGroup (line 102) | func (o *UiNode) SetGroup(v string) { method GetMessages (line 107) | func (o *UiNode) GetMessages() []UiText { method GetMessagesOk (line 118) | func (o *UiNode) GetMessagesOk() ([]UiText, bool) { method SetMessages (line 126) | func (o *UiNode) SetMessages(v []UiText) { method GetMeta (line 131) | func (o *UiNode) GetMeta() UiNodeMeta { method GetMetaOk (line 142) | func (o *UiNode) GetMetaOk() (*UiNodeMeta, bool) { method SetMeta (line 150) | func (o *UiNode) SetMeta(v UiNodeMeta) { method GetType (line 155) | func (o *UiNode) GetType() string { method GetTypeOk (line 166) | func (o *UiNode) GetTypeOk() (*string, bool) { method SetType (line 174) | func (o *UiNode) SetType(v string) { method MarshalJSON (line 178) | func (o UiNode) MarshalJSON() ([]byte, error) { method ToMap (line 186) | func (o UiNode) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 201) | func (o *UiNode) UnmarshalJSON(data []byte) (err error) { type _UiNode (line 34) | type _UiNode function NewUiNode (line 40) | func NewUiNode(attributes UiNodeAttributes, group string, messages []UiT... function NewUiNodeWithDefaults (line 53) | func NewUiNodeWithDefaults() *UiNode { type NullableUiNode (line 251) | type NullableUiNode struct method Get (line 256) | func (v NullableUiNode) Get() *UiNode { method Set (line 260) | func (v *NullableUiNode) Set(val *UiNode) { method IsSet (line 265) | func (v NullableUiNode) IsSet() bool { method Unset (line 269) | func (v *NullableUiNode) Unset() { method MarshalJSON (line 278) | func (v NullableUiNode) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 282) | func (v *NullableUiNode) UnmarshalJSON(src []byte) error { function NewNullableUiNode (line 274) | func NewNullableUiNode(val *UiNode) *NullableUiNode { FILE: pkg/client-go/model_ui_node_anchor_attributes.go type UiNodeAnchorAttributes (line 23) | type UiNodeAnchorAttributes struct method GetHref (line 58) | func (o *UiNodeAnchorAttributes) GetHref() string { method GetHrefOk (line 69) | func (o *UiNodeAnchorAttributes) GetHrefOk() (*string, bool) { method SetHref (line 77) | func (o *UiNodeAnchorAttributes) SetHref(v string) { method GetId (line 82) | func (o *UiNodeAnchorAttributes) GetId() string { method GetIdOk (line 93) | func (o *UiNodeAnchorAttributes) GetIdOk() (*string, bool) { method SetId (line 101) | func (o *UiNodeAnchorAttributes) SetId(v string) { method GetNodeType (line 106) | func (o *UiNodeAnchorAttributes) GetNodeType() string { method GetNodeTypeOk (line 117) | func (o *UiNodeAnchorAttributes) GetNodeTypeOk() (*string, bool) { method SetNodeType (line 125) | func (o *UiNodeAnchorAttributes) SetNodeType(v string) { method GetTitle (line 130) | func (o *UiNodeAnchorAttributes) GetTitle() UiText { method GetTitleOk (line 141) | func (o *UiNodeAnchorAttributes) GetTitleOk() (*UiText, bool) { method SetTitle (line 149) | func (o *UiNodeAnchorAttributes) SetTitle(v UiText) { method MarshalJSON (line 153) | func (o UiNodeAnchorAttributes) MarshalJSON() ([]byte, error) { method ToMap (line 161) | func (o UiNodeAnchorAttributes) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 175) | func (o *UiNodeAnchorAttributes) UnmarshalJSON(data []byte) (err error) { type _UiNodeAnchorAttributes (line 34) | type _UiNodeAnchorAttributes function NewUiNodeAnchorAttributes (line 40) | func NewUiNodeAnchorAttributes(href string, id string, nodeType string, ... function NewUiNodeAnchorAttributesWithDefaults (line 52) | func NewUiNodeAnchorAttributesWithDefaults() *UiNodeAnchorAttributes { type NullableUiNodeAnchorAttributes (line 223) | type NullableUiNodeAnchorAttributes struct method Get (line 228) | func (v NullableUiNodeAnchorAttributes) Get() *UiNodeAnchorAttributes { method Set (line 232) | func (v *NullableUiNodeAnchorAttributes) Set(val *UiNodeAnchorAttribut... method IsSet (line 237) | func (v NullableUiNodeAnchorAttributes) IsSet() bool { method Unset (line 241) | func (v *NullableUiNodeAnchorAttributes) Unset() { method MarshalJSON (line 250) | func (v NullableUiNodeAnchorAttributes) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 254) | func (v *NullableUiNodeAnchorAttributes) UnmarshalJSON(src []byte) err... function NewNullableUiNodeAnchorAttributes (line 246) | func NewNullableUiNodeAnchorAttributes(val *UiNodeAnchorAttributes) *Nul... FILE: pkg/client-go/model_ui_node_attributes.go type UiNodeAttributes (line 20) | type UiNodeAttributes struct method UnmarshalJSON (line 72) | func (dst *UiNodeAttributes) UnmarshalJSON(data []byte) error { method MarshalJSON (line 229) | func (src UiNodeAttributes) MarshalJSON() ([]byte, error) { method GetActualInstance (line 258) | func (obj *UiNodeAttributes) GetActualInstance() interface{} { method GetActualInstanceValue (line 291) | func (obj UiNodeAttributes) GetActualInstanceValue() interface{} { function UiNodeAnchorAttributesAsUiNodeAttributes (line 30) | func UiNodeAnchorAttributesAsUiNodeAttributes(v *UiNodeAnchorAttributes)... function UiNodeDivisionAttributesAsUiNodeAttributes (line 37) | func UiNodeDivisionAttributesAsUiNodeAttributes(v *UiNodeDivisionAttribu... function UiNodeImageAttributesAsUiNodeAttributes (line 44) | func UiNodeImageAttributesAsUiNodeAttributes(v *UiNodeImageAttributes) U... function UiNodeInputAttributesAsUiNodeAttributes (line 51) | func UiNodeInputAttributesAsUiNodeAttributes(v *UiNodeInputAttributes) U... function UiNodeScriptAttributesAsUiNodeAttributes (line 58) | func UiNodeScriptAttributesAsUiNodeAttributes(v *UiNodeScriptAttributes)... function UiNodeTextAttributesAsUiNodeAttributes (line 65) | func UiNodeTextAttributesAsUiNodeAttributes(v *UiNodeTextAttributes) UiN... type NullableUiNodeAttributes (line 320) | type NullableUiNodeAttributes struct method Get (line 325) | func (v NullableUiNodeAttributes) Get() *UiNodeAttributes { method Set (line 329) | func (v *NullableUiNodeAttributes) Set(val *UiNodeAttributes) { method IsSet (line 334) | func (v NullableUiNodeAttributes) IsSet() bool { method Unset (line 338) | func (v *NullableUiNodeAttributes) Unset() { method MarshalJSON (line 347) | func (v NullableUiNodeAttributes) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 351) | func (v *NullableUiNodeAttributes) UnmarshalJSON(src []byte) error { function NewNullableUiNodeAttributes (line 343) | func NewNullableUiNodeAttributes(val *UiNodeAttributes) *NullableUiNodeA... FILE: pkg/client-go/model_ui_node_division_attributes.go type UiNodeDivisionAttributes (line 23) | type UiNodeDivisionAttributes struct method GetClass (line 57) | func (o *UiNodeDivisionAttributes) GetClass() string { method GetClassOk (line 67) | func (o *UiNodeDivisionAttributes) GetClassOk() (*string, bool) { method HasClass (line 75) | func (o *UiNodeDivisionAttributes) HasClass() bool { method SetClass (line 84) | func (o *UiNodeDivisionAttributes) SetClass(v string) { method GetData (line 89) | func (o *UiNodeDivisionAttributes) GetData() map[string]string { method GetDataOk (line 99) | func (o *UiNodeDivisionAttributes) GetDataOk() (*map[string]string, bo... method HasData (line 107) | func (o *UiNodeDivisionAttributes) HasData() bool { method SetData (line 116) | func (o *UiNodeDivisionAttributes) SetData(v map[string]string) { method GetId (line 121) | func (o *UiNodeDivisionAttributes) GetId() string { method GetIdOk (line 132) | func (o *UiNodeDivisionAttributes) GetIdOk() (*string, bool) { method SetId (line 140) | func (o *UiNodeDivisionAttributes) SetId(v string) { method GetNodeType (line 145) | func (o *UiNodeDivisionAttributes) GetNodeType() string { method GetNodeTypeOk (line 156) | func (o *UiNodeDivisionAttributes) GetNodeTypeOk() (*string, bool) { method SetNodeType (line 164) | func (o *UiNodeDivisionAttributes) SetNodeType(v string) { method MarshalJSON (line 168) | func (o UiNodeDivisionAttributes) MarshalJSON() ([]byte, error) { method ToMap (line 176) | func (o UiNodeDivisionAttributes) ToMap() (map[string]interface{}, err... method UnmarshalJSON (line 194) | func (o *UiNodeDivisionAttributes) UnmarshalJSON(data []byte) (err err... type _UiNodeDivisionAttributes (line 35) | type _UiNodeDivisionAttributes function NewUiNodeDivisionAttributes (line 41) | func NewUiNodeDivisionAttributes(id string, nodeType string) *UiNodeDivi... function NewUiNodeDivisionAttributesWithDefaults (line 51) | func NewUiNodeDivisionAttributesWithDefaults() *UiNodeDivisionAttributes { type NullableUiNodeDivisionAttributes (line 240) | type NullableUiNodeDivisionAttributes struct method Get (line 245) | func (v NullableUiNodeDivisionAttributes) Get() *UiNodeDivisionAttribu... method Set (line 249) | func (v *NullableUiNodeDivisionAttributes) Set(val *UiNodeDivisionAttr... method IsSet (line 254) | func (v NullableUiNodeDivisionAttributes) IsSet() bool { method Unset (line 258) | func (v *NullableUiNodeDivisionAttributes) Unset() { method MarshalJSON (line 267) | func (v NullableUiNodeDivisionAttributes) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 271) | func (v *NullableUiNodeDivisionAttributes) UnmarshalJSON(src []byte) e... function NewNullableUiNodeDivisionAttributes (line 263) | func NewNullableUiNodeDivisionAttributes(val *UiNodeDivisionAttributes) ... FILE: pkg/client-go/model_ui_node_image_attributes.go type UiNodeImageAttributes (line 23) | type UiNodeImageAttributes struct method GetHeight (line 62) | func (o *UiNodeImageAttributes) GetHeight() int64 { method GetHeightOk (line 73) | func (o *UiNodeImageAttributes) GetHeightOk() (*int64, bool) { method SetHeight (line 81) | func (o *UiNodeImageAttributes) SetHeight(v int64) { method GetId (line 86) | func (o *UiNodeImageAttributes) GetId() string { method GetIdOk (line 97) | func (o *UiNodeImageAttributes) GetIdOk() (*string, bool) { method SetId (line 105) | func (o *UiNodeImageAttributes) SetId(v string) { method GetNodeType (line 110) | func (o *UiNodeImageAttributes) GetNodeType() string { method GetNodeTypeOk (line 121) | func (o *UiNodeImageAttributes) GetNodeTypeOk() (*string, bool) { method SetNodeType (line 129) | func (o *UiNodeImageAttributes) SetNodeType(v string) { method GetSrc (line 134) | func (o *UiNodeImageAttributes) GetSrc() string { method GetSrcOk (line 145) | func (o *UiNodeImageAttributes) GetSrcOk() (*string, bool) { method SetSrc (line 153) | func (o *UiNodeImageAttributes) SetSrc(v string) { method GetWidth (line 158) | func (o *UiNodeImageAttributes) GetWidth() int64 { method GetWidthOk (line 169) | func (o *UiNodeImageAttributes) GetWidthOk() (*int64, bool) { method SetWidth (line 177) | func (o *UiNodeImageAttributes) SetWidth(v int64) { method MarshalJSON (line 181) | func (o UiNodeImageAttributes) MarshalJSON() ([]byte, error) { method ToMap (line 189) | func (o UiNodeImageAttributes) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 204) | func (o *UiNodeImageAttributes) UnmarshalJSON(data []byte) (err error) { type _UiNodeImageAttributes (line 37) | type _UiNodeImageAttributes function NewUiNodeImageAttributes (line 43) | func NewUiNodeImageAttributes(height int64, id string, nodeType string, ... function NewUiNodeImageAttributesWithDefaults (line 56) | func NewUiNodeImageAttributesWithDefaults() *UiNodeImageAttributes { type NullableUiNodeImageAttributes (line 254) | type NullableUiNodeImageAttributes struct method Get (line 259) | func (v NullableUiNodeImageAttributes) Get() *UiNodeImageAttributes { method Set (line 263) | func (v *NullableUiNodeImageAttributes) Set(val *UiNodeImageAttributes) { method IsSet (line 268) | func (v NullableUiNodeImageAttributes) IsSet() bool { method Unset (line 272) | func (v *NullableUiNodeImageAttributes) Unset() { method MarshalJSON (line 281) | func (v NullableUiNodeImageAttributes) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 285) | func (v *NullableUiNodeImageAttributes) UnmarshalJSON(src []byte) error { function NewNullableUiNodeImageAttributes (line 277) | func NewNullableUiNodeImageAttributes(val *UiNodeImageAttributes) *Nulla... FILE: pkg/client-go/model_ui_node_input_attributes.go type UiNodeInputAttributes (line 23) | type UiNodeInputAttributes struct method GetAutocomplete (line 78) | func (o *UiNodeInputAttributes) GetAutocomplete() string { method GetAutocompleteOk (line 88) | func (o *UiNodeInputAttributes) GetAutocompleteOk() (*string, bool) { method HasAutocomplete (line 96) | func (o *UiNodeInputAttributes) HasAutocomplete() bool { method SetAutocomplete (line 105) | func (o *UiNodeInputAttributes) SetAutocomplete(v string) { method GetDisabled (line 110) | func (o *UiNodeInputAttributes) GetDisabled() bool { method GetDisabledOk (line 121) | func (o *UiNodeInputAttributes) GetDisabledOk() (*bool, bool) { method SetDisabled (line 129) | func (o *UiNodeInputAttributes) SetDisabled(v bool) { method GetLabel (line 134) | func (o *UiNodeInputAttributes) GetLabel() UiText { method GetLabelOk (line 144) | func (o *UiNodeInputAttributes) GetLabelOk() (*UiText, bool) { method HasLabel (line 152) | func (o *UiNodeInputAttributes) HasLabel() bool { method SetLabel (line 161) | func (o *UiNodeInputAttributes) SetLabel(v UiText) { method GetMaxlength (line 166) | func (o *UiNodeInputAttributes) GetMaxlength() int64 { method GetMaxlengthOk (line 176) | func (o *UiNodeInputAttributes) GetMaxlengthOk() (*int64, bool) { method HasMaxlength (line 184) | func (o *UiNodeInputAttributes) HasMaxlength() bool { method SetMaxlength (line 193) | func (o *UiNodeInputAttributes) SetMaxlength(v int64) { method GetName (line 198) | func (o *UiNodeInputAttributes) GetName() string { method GetNameOk (line 209) | func (o *UiNodeInputAttributes) GetNameOk() (*string, bool) { method SetName (line 217) | func (o *UiNodeInputAttributes) SetName(v string) { method GetNodeType (line 222) | func (o *UiNodeInputAttributes) GetNodeType() string { method GetNodeTypeOk (line 233) | func (o *UiNodeInputAttributes) GetNodeTypeOk() (*string, bool) { method SetNodeType (line 241) | func (o *UiNodeInputAttributes) SetNodeType(v string) { method GetOnclick (line 246) | func (o *UiNodeInputAttributes) GetOnclick() string { method GetOnclickOk (line 256) | func (o *UiNodeInputAttributes) GetOnclickOk() (*string, bool) { method HasOnclick (line 264) | func (o *UiNodeInputAttributes) HasOnclick() bool { method SetOnclick (line 273) | func (o *UiNodeInputAttributes) SetOnclick(v string) { method GetOnclickTrigger (line 278) | func (o *UiNodeInputAttributes) GetOnclickTrigger() string { method GetOnclickTriggerOk (line 288) | func (o *UiNodeInputAttributes) GetOnclickTriggerOk() (*string, bool) { method HasOnclickTrigger (line 296) | func (o *UiNodeInputAttributes) HasOnclickTrigger() bool { method SetOnclickTrigger (line 305) | func (o *UiNodeInputAttributes) SetOnclickTrigger(v string) { method GetOnload (line 310) | func (o *UiNodeInputAttributes) GetOnload() string { method GetOnloadOk (line 320) | func (o *UiNodeInputAttributes) GetOnloadOk() (*string, bool) { method HasOnload (line 328) | func (o *UiNodeInputAttributes) HasOnload() bool { method SetOnload (line 337) | func (o *UiNodeInputAttributes) SetOnload(v string) { method GetOnloadTrigger (line 342) | func (o *UiNodeInputAttributes) GetOnloadTrigger() string { method GetOnloadTriggerOk (line 352) | func (o *UiNodeInputAttributes) GetOnloadTriggerOk() (*string, bool) { method HasOnloadTrigger (line 360) | func (o *UiNodeInputAttributes) HasOnloadTrigger() bool { method SetOnloadTrigger (line 369) | func (o *UiNodeInputAttributes) SetOnloadTrigger(v string) { method GetPattern (line 374) | func (o *UiNodeInputAttributes) GetPattern() string { method GetPatternOk (line 384) | func (o *UiNodeInputAttributes) GetPatternOk() (*string, bool) { method HasPattern (line 392) | func (o *UiNodeInputAttributes) HasPattern() bool { method SetPattern (line 401) | func (o *UiNodeInputAttributes) SetPattern(v string) { method GetRequired (line 406) | func (o *UiNodeInputAttributes) GetRequired() bool { method GetRequiredOk (line 416) | func (o *UiNodeInputAttributes) GetRequiredOk() (*bool, bool) { method HasRequired (line 424) | func (o *UiNodeInputAttributes) HasRequired() bool { method SetRequired (line 433) | func (o *UiNodeInputAttributes) SetRequired(v bool) { method GetType (line 438) | func (o *UiNodeInputAttributes) GetType() string { method GetTypeOk (line 449) | func (o *UiNodeInputAttributes) GetTypeOk() (*string, bool) { method SetType (line 457) | func (o *UiNodeInputAttributes) SetType(v string) { method GetValue (line 462) | func (o *UiNodeInputAttributes) GetValue() interface{} { method GetValueOk (line 473) | func (o *UiNodeInputAttributes) GetValueOk() (*interface{}, bool) { method HasValue (line 481) | func (o *UiNodeInputAttributes) HasValue() bool { method SetValue (line 490) | func (o *UiNodeInputAttributes) SetValue(v interface{}) { method MarshalJSON (line 494) | func (o UiNodeInputAttributes) MarshalJSON() ([]byte, error) { method ToMap (line 502) | func (o UiNodeInputAttributes) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 546) | func (o *UiNodeInputAttributes) UnmarshalJSON(data []byte) (err error) { type _UiNodeInputAttributes (line 54) | type _UiNodeInputAttributes function NewUiNodeInputAttributes (line 60) | func NewUiNodeInputAttributes(disabled bool, name string, nodeType strin... function NewUiNodeInputAttributesWithDefaults (line 72) | func NewUiNodeInputAttributesWithDefaults() *UiNodeInputAttributes { type NullableUiNodeInputAttributes (line 604) | type NullableUiNodeInputAttributes struct method Get (line 609) | func (v NullableUiNodeInputAttributes) Get() *UiNodeInputAttributes { method Set (line 613) | func (v *NullableUiNodeInputAttributes) Set(val *UiNodeInputAttributes) { method IsSet (line 618) | func (v NullableUiNodeInputAttributes) IsSet() bool { method Unset (line 622) | func (v *NullableUiNodeInputAttributes) Unset() { method MarshalJSON (line 631) | func (v NullableUiNodeInputAttributes) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 635) | func (v *NullableUiNodeInputAttributes) UnmarshalJSON(src []byte) error { function NewNullableUiNodeInputAttributes (line 627) | func NewNullableUiNodeInputAttributes(val *UiNodeInputAttributes) *Nulla... FILE: pkg/client-go/model_ui_node_meta.go type UiNodeMeta (line 22) | type UiNodeMeta struct method GetLabel (line 47) | func (o *UiNodeMeta) GetLabel() UiText { method GetLabelOk (line 57) | func (o *UiNodeMeta) GetLabelOk() (*UiText, bool) { method HasLabel (line 65) | func (o *UiNodeMeta) HasLabel() bool { method SetLabel (line 74) | func (o *UiNodeMeta) SetLabel(v UiText) { method MarshalJSON (line 78) | func (o UiNodeMeta) MarshalJSON() ([]byte, error) { method ToMap (line 86) | func (o UiNodeMeta) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 99) | func (o *UiNodeMeta) UnmarshalJSON(data []byte) (err error) { type _UiNodeMeta (line 27) | type _UiNodeMeta function NewUiNodeMeta (line 33) | func NewUiNodeMeta() *UiNodeMeta { function NewUiNodeMetaWithDefaults (line 41) | func NewUiNodeMetaWithDefaults() *UiNodeMeta { type NullableUiNodeMeta (line 120) | type NullableUiNodeMeta struct method Get (line 125) | func (v NullableUiNodeMeta) Get() *UiNodeMeta { method Set (line 129) | func (v *NullableUiNodeMeta) Set(val *UiNodeMeta) { method IsSet (line 134) | func (v NullableUiNodeMeta) IsSet() bool { method Unset (line 138) | func (v *NullableUiNodeMeta) Unset() { method MarshalJSON (line 147) | func (v NullableUiNodeMeta) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 151) | func (v *NullableUiNodeMeta) UnmarshalJSON(src []byte) error { function NewNullableUiNodeMeta (line 143) | func NewNullableUiNodeMeta(val *UiNodeMeta) *NullableUiNodeMeta { FILE: pkg/client-go/model_ui_node_script_attributes.go type UiNodeScriptAttributes (line 23) | type UiNodeScriptAttributes struct method GetAsync (line 74) | func (o *UiNodeScriptAttributes) GetAsync() bool { method GetAsyncOk (line 85) | func (o *UiNodeScriptAttributes) GetAsyncOk() (*bool, bool) { method SetAsync (line 93) | func (o *UiNodeScriptAttributes) SetAsync(v bool) { method GetCrossorigin (line 98) | func (o *UiNodeScriptAttributes) GetCrossorigin() string { method GetCrossoriginOk (line 109) | func (o *UiNodeScriptAttributes) GetCrossoriginOk() (*string, bool) { method SetCrossorigin (line 117) | func (o *UiNodeScriptAttributes) SetCrossorigin(v string) { method GetId (line 122) | func (o *UiNodeScriptAttributes) GetId() string { method GetIdOk (line 133) | func (o *UiNodeScriptAttributes) GetIdOk() (*string, bool) { method SetId (line 141) | func (o *UiNodeScriptAttributes) SetId(v string) { method GetIntegrity (line 146) | func (o *UiNodeScriptAttributes) GetIntegrity() string { method GetIntegrityOk (line 157) | func (o *UiNodeScriptAttributes) GetIntegrityOk() (*string, bool) { method SetIntegrity (line 165) | func (o *UiNodeScriptAttributes) SetIntegrity(v string) { method GetNodeType (line 170) | func (o *UiNodeScriptAttributes) GetNodeType() string { method GetNodeTypeOk (line 181) | func (o *UiNodeScriptAttributes) GetNodeTypeOk() (*string, bool) { method SetNodeType (line 189) | func (o *UiNodeScriptAttributes) SetNodeType(v string) { method GetNonce (line 194) | func (o *UiNodeScriptAttributes) GetNonce() string { method GetNonceOk (line 205) | func (o *UiNodeScriptAttributes) GetNonceOk() (*string, bool) { method SetNonce (line 213) | func (o *UiNodeScriptAttributes) SetNonce(v string) { method GetReferrerpolicy (line 218) | func (o *UiNodeScriptAttributes) GetReferrerpolicy() string { method GetReferrerpolicyOk (line 229) | func (o *UiNodeScriptAttributes) GetReferrerpolicyOk() (*string, bool) { method SetReferrerpolicy (line 237) | func (o *UiNodeScriptAttributes) SetReferrerpolicy(v string) { method GetSrc (line 242) | func (o *UiNodeScriptAttributes) GetSrc() string { method GetSrcOk (line 253) | func (o *UiNodeScriptAttributes) GetSrcOk() (*string, bool) { method SetSrc (line 261) | func (o *UiNodeScriptAttributes) SetSrc(v string) { method GetType (line 266) | func (o *UiNodeScriptAttributes) GetType() string { method GetTypeOk (line 277) | func (o *UiNodeScriptAttributes) GetTypeOk() (*string, bool) { method SetType (line 285) | func (o *UiNodeScriptAttributes) SetType(v string) { method MarshalJSON (line 289) | func (o UiNodeScriptAttributes) MarshalJSON() ([]byte, error) { method ToMap (line 297) | func (o UiNodeScriptAttributes) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 316) | func (o *UiNodeScriptAttributes) UnmarshalJSON(data []byte) (err error) { type _UiNodeScriptAttributes (line 45) | type _UiNodeScriptAttributes function NewUiNodeScriptAttributes (line 51) | func NewUiNodeScriptAttributes(async bool, crossorigin string, id string... function NewUiNodeScriptAttributesWithDefaults (line 68) | func NewUiNodeScriptAttributesWithDefaults() *UiNodeScriptAttributes { type NullableUiNodeScriptAttributes (line 374) | type NullableUiNodeScriptAttributes struct method Get (line 379) | func (v NullableUiNodeScriptAttributes) Get() *UiNodeScriptAttributes { method Set (line 383) | func (v *NullableUiNodeScriptAttributes) Set(val *UiNodeScriptAttribut... method IsSet (line 388) | func (v NullableUiNodeScriptAttributes) IsSet() bool { method Unset (line 392) | func (v *NullableUiNodeScriptAttributes) Unset() { method MarshalJSON (line 401) | func (v NullableUiNodeScriptAttributes) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 405) | func (v *NullableUiNodeScriptAttributes) UnmarshalJSON(src []byte) err... function NewNullableUiNodeScriptAttributes (line 397) | func NewNullableUiNodeScriptAttributes(val *UiNodeScriptAttributes) *Nul... FILE: pkg/client-go/model_ui_node_text_attributes.go type UiNodeTextAttributes (line 23) | type UiNodeTextAttributes struct method GetId (line 55) | func (o *UiNodeTextAttributes) GetId() string { method GetIdOk (line 66) | func (o *UiNodeTextAttributes) GetIdOk() (*string, bool) { method SetId (line 74) | func (o *UiNodeTextAttributes) SetId(v string) { method GetNodeType (line 79) | func (o *UiNodeTextAttributes) GetNodeType() string { method GetNodeTypeOk (line 90) | func (o *UiNodeTextAttributes) GetNodeTypeOk() (*string, bool) { method SetNodeType (line 98) | func (o *UiNodeTextAttributes) SetNodeType(v string) { method GetText (line 103) | func (o *UiNodeTextAttributes) GetText() UiText { method GetTextOk (line 114) | func (o *UiNodeTextAttributes) GetTextOk() (*UiText, bool) { method SetText (line 122) | func (o *UiNodeTextAttributes) SetText(v UiText) { method MarshalJSON (line 126) | func (o UiNodeTextAttributes) MarshalJSON() ([]byte, error) { method ToMap (line 134) | func (o UiNodeTextAttributes) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 147) | func (o *UiNodeTextAttributes) UnmarshalJSON(data []byte) (err error) { type _UiNodeTextAttributes (line 32) | type _UiNodeTextAttributes function NewUiNodeTextAttributes (line 38) | func NewUiNodeTextAttributes(id string, nodeType string, text UiText) *U... function NewUiNodeTextAttributesWithDefaults (line 49) | func NewUiNodeTextAttributesWithDefaults() *UiNodeTextAttributes { type NullableUiNodeTextAttributes (line 193) | type NullableUiNodeTextAttributes struct method Get (line 198) | func (v NullableUiNodeTextAttributes) Get() *UiNodeTextAttributes { method Set (line 202) | func (v *NullableUiNodeTextAttributes) Set(val *UiNodeTextAttributes) { method IsSet (line 207) | func (v NullableUiNodeTextAttributes) IsSet() bool { method Unset (line 211) | func (v *NullableUiNodeTextAttributes) Unset() { method MarshalJSON (line 220) | func (v NullableUiNodeTextAttributes) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 224) | func (v *NullableUiNodeTextAttributes) UnmarshalJSON(src []byte) error { function NewNullableUiNodeTextAttributes (line 216) | func NewNullableUiNodeTextAttributes(val *UiNodeTextAttributes) *Nullabl... FILE: pkg/client-go/model_ui_text.go type UiText (line 23) | type UiText struct method GetContext (line 57) | func (o *UiText) GetContext() map[string]interface{} { method GetContextOk (line 67) | func (o *UiText) GetContextOk() (map[string]interface{}, bool) { method HasContext (line 75) | func (o *UiText) HasContext() bool { method SetContext (line 84) | func (o *UiText) SetContext(v map[string]interface{}) { method GetId (line 89) | func (o *UiText) GetId() int64 { method GetIdOk (line 100) | func (o *UiText) GetIdOk() (*int64, bool) { method SetId (line 108) | func (o *UiText) SetId(v int64) { method GetText (line 113) | func (o *UiText) GetText() string { method GetTextOk (line 124) | func (o *UiText) GetTextOk() (*string, bool) { method SetText (line 132) | func (o *UiText) SetText(v string) { method GetType (line 137) | func (o *UiText) GetType() string { method GetTypeOk (line 148) | func (o *UiText) GetTypeOk() (*string, bool) { method SetType (line 156) | func (o *UiText) SetType(v string) { method MarshalJSON (line 160) | func (o UiText) MarshalJSON() ([]byte, error) { method ToMap (line 168) | func (o UiText) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 184) | func (o *UiText) UnmarshalJSON(data []byte) (err error) { type _UiText (line 34) | type _UiText function NewUiText (line 40) | func NewUiText(id int64, text string, type_ string) *UiText { function NewUiTextWithDefaults (line 51) | func NewUiTextWithDefaults() *UiText { type NullableUiText (line 231) | type NullableUiText struct method Get (line 236) | func (v NullableUiText) Get() *UiText { method Set (line 240) | func (v *NullableUiText) Set(val *UiText) { method IsSet (line 245) | func (v NullableUiText) IsSet() bool { method Unset (line 249) | func (v *NullableUiText) Unset() { method MarshalJSON (line 258) | func (v NullableUiText) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 262) | func (v *NullableUiText) UnmarshalJSON(src []byte) error { function NewNullableUiText (line 254) | func NewNullableUiText(val *UiText) *NullableUiText { FILE: pkg/client-go/model_update_fedcm_flow_body.go type UpdateFedcmFlowBody (line 23) | type UpdateFedcmFlowBody struct method GetCsrfToken (line 57) | func (o *UpdateFedcmFlowBody) GetCsrfToken() string { method GetCsrfTokenOk (line 68) | func (o *UpdateFedcmFlowBody) GetCsrfTokenOk() (*string, bool) { method SetCsrfToken (line 76) | func (o *UpdateFedcmFlowBody) SetCsrfToken(v string) { method GetNonce (line 81) | func (o *UpdateFedcmFlowBody) GetNonce() string { method GetNonceOk (line 91) | func (o *UpdateFedcmFlowBody) GetNonceOk() (*string, bool) { method HasNonce (line 99) | func (o *UpdateFedcmFlowBody) HasNonce() bool { method SetNonce (line 108) | func (o *UpdateFedcmFlowBody) SetNonce(v string) { method GetToken (line 113) | func (o *UpdateFedcmFlowBody) GetToken() string { method GetTokenOk (line 124) | func (o *UpdateFedcmFlowBody) GetTokenOk() (*string, bool) { method SetToken (line 132) | func (o *UpdateFedcmFlowBody) SetToken(v string) { method GetTransientPayload (line 137) | func (o *UpdateFedcmFlowBody) GetTransientPayload() map[string]interfa... method GetTransientPayloadOk (line 147) | func (o *UpdateFedcmFlowBody) GetTransientPayloadOk() (map[string]inte... method HasTransientPayload (line 155) | func (o *UpdateFedcmFlowBody) HasTransientPayload() bool { method SetTransientPayload (line 164) | func (o *UpdateFedcmFlowBody) SetTransientPayload(v map[string]interfa... method MarshalJSON (line 168) | func (o UpdateFedcmFlowBody) MarshalJSON() ([]byte, error) { method ToMap (line 176) | func (o UpdateFedcmFlowBody) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 194) | func (o *UpdateFedcmFlowBody) UnmarshalJSON(data []byte) (err error) { type _UpdateFedcmFlowBody (line 35) | type _UpdateFedcmFlowBody function NewUpdateFedcmFlowBody (line 41) | func NewUpdateFedcmFlowBody(csrfToken string, token string) *UpdateFedcm... function NewUpdateFedcmFlowBodyWithDefaults (line 51) | func NewUpdateFedcmFlowBodyWithDefaults() *UpdateFedcmFlowBody { type NullableUpdateFedcmFlowBody (line 240) | type NullableUpdateFedcmFlowBody struct method Get (line 245) | func (v NullableUpdateFedcmFlowBody) Get() *UpdateFedcmFlowBody { method Set (line 249) | func (v *NullableUpdateFedcmFlowBody) Set(val *UpdateFedcmFlowBody) { method IsSet (line 254) | func (v NullableUpdateFedcmFlowBody) IsSet() bool { method Unset (line 258) | func (v *NullableUpdateFedcmFlowBody) Unset() { method MarshalJSON (line 267) | func (v NullableUpdateFedcmFlowBody) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 271) | func (v *NullableUpdateFedcmFlowBody) UnmarshalJSON(src []byte) error { function NewNullableUpdateFedcmFlowBody (line 263) | func NewNullableUpdateFedcmFlowBody(val *UpdateFedcmFlowBody) *NullableU... FILE: pkg/client-go/model_update_identity_body.go type UpdateIdentityBody (line 23) | type UpdateIdentityBody struct method GetCredentials (line 63) | func (o *UpdateIdentityBody) GetCredentials() IdentityWithCredentials { method GetCredentialsOk (line 73) | func (o *UpdateIdentityBody) GetCredentialsOk() (*IdentityWithCredenti... method HasCredentials (line 81) | func (o *UpdateIdentityBody) HasCredentials() bool { method SetCredentials (line 90) | func (o *UpdateIdentityBody) SetCredentials(v IdentityWithCredentials) { method GetExternalId (line 95) | func (o *UpdateIdentityBody) GetExternalId() string { method GetExternalIdOk (line 105) | func (o *UpdateIdentityBody) GetExternalIdOk() (*string, bool) { method HasExternalId (line 113) | func (o *UpdateIdentityBody) HasExternalId() bool { method SetExternalId (line 122) | func (o *UpdateIdentityBody) SetExternalId(v string) { method GetMetadataAdmin (line 127) | func (o *UpdateIdentityBody) GetMetadataAdmin() interface{} { method GetMetadataAdminOk (line 138) | func (o *UpdateIdentityBody) GetMetadataAdminOk() (*interface{}, bool) { method HasMetadataAdmin (line 146) | func (o *UpdateIdentityBody) HasMetadataAdmin() bool { method SetMetadataAdmin (line 155) | func (o *UpdateIdentityBody) SetMetadataAdmin(v interface{}) { method GetMetadataPublic (line 160) | func (o *UpdateIdentityBody) GetMetadataPublic() interface{} { method GetMetadataPublicOk (line 171) | func (o *UpdateIdentityBody) GetMetadataPublicOk() (*interface{}, bool) { method HasMetadataPublic (line 179) | func (o *UpdateIdentityBody) HasMetadataPublic() bool { method SetMetadataPublic (line 188) | func (o *UpdateIdentityBody) SetMetadataPublic(v interface{}) { method GetSchemaId (line 193) | func (o *UpdateIdentityBody) GetSchemaId() string { method GetSchemaIdOk (line 204) | func (o *UpdateIdentityBody) GetSchemaIdOk() (*string, bool) { method SetSchemaId (line 212) | func (o *UpdateIdentityBody) SetSchemaId(v string) { method GetState (line 217) | func (o *UpdateIdentityBody) GetState() string { method GetStateOk (line 228) | func (o *UpdateIdentityBody) GetStateOk() (*string, bool) { method SetState (line 236) | func (o *UpdateIdentityBody) SetState(v string) { method GetTraits (line 241) | func (o *UpdateIdentityBody) GetTraits() map[string]interface{} { method GetTraitsOk (line 252) | func (o *UpdateIdentityBody) GetTraitsOk() (map[string]interface{}, bo... method SetTraits (line 260) | func (o *UpdateIdentityBody) SetTraits(v map[string]interface{}) { method MarshalJSON (line 264) | func (o UpdateIdentityBody) MarshalJSON() ([]byte, error) { method ToMap (line 272) | func (o UpdateIdentityBody) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 297) | func (o *UpdateIdentityBody) UnmarshalJSON(data []byte) (err error) { type _UpdateIdentityBody (line 40) | type _UpdateIdentityBody function NewUpdateIdentityBody (line 46) | func NewUpdateIdentityBody(schemaId string, state string, traits map[str... function NewUpdateIdentityBodyWithDefaults (line 57) | func NewUpdateIdentityBodyWithDefaults() *UpdateIdentityBody { type NullableUpdateIdentityBody (line 347) | type NullableUpdateIdentityBody struct method Get (line 352) | func (v NullableUpdateIdentityBody) Get() *UpdateIdentityBody { method Set (line 356) | func (v *NullableUpdateIdentityBody) Set(val *UpdateIdentityBody) { method IsSet (line 361) | func (v NullableUpdateIdentityBody) IsSet() bool { method Unset (line 365) | func (v *NullableUpdateIdentityBody) Unset() { method MarshalJSON (line 374) | func (v NullableUpdateIdentityBody) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 378) | func (v *NullableUpdateIdentityBody) UnmarshalJSON(src []byte) error { function NewNullableUpdateIdentityBody (line 370) | func NewNullableUpdateIdentityBody(val *UpdateIdentityBody) *NullableUpd... FILE: pkg/client-go/model_update_login_flow_body.go type UpdateLoginFlowBody (line 20) | type UpdateLoginFlowBody struct method UnmarshalJSON (line 96) | func (dst *UpdateLoginFlowBody) UnmarshalJSON(data []byte) error { method MarshalJSON (line 325) | func (src UpdateLoginFlowBody) MarshalJSON() ([]byte, error) { method GetActualInstance (line 366) | func (obj *UpdateLoginFlowBody) GetActualInstance() interface{} { method GetActualInstanceValue (line 411) | func (obj UpdateLoginFlowBody) GetActualInstanceValue() interface{} { function UpdateLoginFlowWithCodeMethodAsUpdateLoginFlowBody (line 33) | func UpdateLoginFlowWithCodeMethodAsUpdateLoginFlowBody(v *UpdateLoginFl... function UpdateLoginFlowWithIdentifierFirstMethodAsUpdateLoginFlowBody (line 40) | func UpdateLoginFlowWithIdentifierFirstMethodAsUpdateLoginFlowBody(v *Up... function UpdateLoginFlowWithLookupSecretMethodAsUpdateLoginFlowBody (line 47) | func UpdateLoginFlowWithLookupSecretMethodAsUpdateLoginFlowBody(v *Updat... function UpdateLoginFlowWithOidcMethodAsUpdateLoginFlowBody (line 54) | func UpdateLoginFlowWithOidcMethodAsUpdateLoginFlowBody(v *UpdateLoginFl... function UpdateLoginFlowWithPasskeyMethodAsUpdateLoginFlowBody (line 61) | func UpdateLoginFlowWithPasskeyMethodAsUpdateLoginFlowBody(v *UpdateLogi... function UpdateLoginFlowWithPasswordMethodAsUpdateLoginFlowBody (line 68) | func UpdateLoginFlowWithPasswordMethodAsUpdateLoginFlowBody(v *UpdateLog... function UpdateLoginFlowWithSamlMethodAsUpdateLoginFlowBody (line 75) | func UpdateLoginFlowWithSamlMethodAsUpdateLoginFlowBody(v *UpdateLoginFl... function UpdateLoginFlowWithTotpMethodAsUpdateLoginFlowBody (line 82) | func UpdateLoginFlowWithTotpMethodAsUpdateLoginFlowBody(v *UpdateLoginFl... function UpdateLoginFlowWithWebAuthnMethodAsUpdateLoginFlowBody (line 89) | func UpdateLoginFlowWithWebAuthnMethodAsUpdateLoginFlowBody(v *UpdateLog... type NullableUpdateLoginFlowBody (line 452) | type NullableUpdateLoginFlowBody struct method Get (line 457) | func (v NullableUpdateLoginFlowBody) Get() *UpdateLoginFlowBody { method Set (line 461) | func (v *NullableUpdateLoginFlowBody) Set(val *UpdateLoginFlowBody) { method IsSet (line 466) | func (v NullableUpdateLoginFlowBody) IsSet() bool { method Unset (line 470) | func (v *NullableUpdateLoginFlowBody) Unset() { method MarshalJSON (line 479) | func (v NullableUpdateLoginFlowBody) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 483) | func (v *NullableUpdateLoginFlowBody) UnmarshalJSON(src []byte) error { function NewNullableUpdateLoginFlowBody (line 475) | func NewNullableUpdateLoginFlowBody(val *UpdateLoginFlowBody) *NullableU... FILE: pkg/client-go/model_update_login_flow_with_code_method.go type UpdateLoginFlowWithCodeMethod (line 23) | type UpdateLoginFlowWithCodeMethod struct method GetAddress (line 63) | func (o *UpdateLoginFlowWithCodeMethod) GetAddress() string { method GetAddressOk (line 73) | func (o *UpdateLoginFlowWithCodeMethod) GetAddressOk() (*string, bool) { method HasAddress (line 81) | func (o *UpdateLoginFlowWithCodeMethod) HasAddress() bool { method SetAddress (line 90) | func (o *UpdateLoginFlowWithCodeMethod) SetAddress(v string) { method GetCode (line 95) | func (o *UpdateLoginFlowWithCodeMethod) GetCode() string { method GetCodeOk (line 105) | func (o *UpdateLoginFlowWithCodeMethod) GetCodeOk() (*string, bool) { method HasCode (line 113) | func (o *UpdateLoginFlowWithCodeMethod) HasCode() bool { method SetCode (line 122) | func (o *UpdateLoginFlowWithCodeMethod) SetCode(v string) { method GetCsrfToken (line 127) | func (o *UpdateLoginFlowWithCodeMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 138) | func (o *UpdateLoginFlowWithCodeMethod) GetCsrfTokenOk() (*string, boo... method SetCsrfToken (line 146) | func (o *UpdateLoginFlowWithCodeMethod) SetCsrfToken(v string) { method GetIdentifier (line 151) | func (o *UpdateLoginFlowWithCodeMethod) GetIdentifier() string { method GetIdentifierOk (line 161) | func (o *UpdateLoginFlowWithCodeMethod) GetIdentifierOk() (*string, bo... method HasIdentifier (line 169) | func (o *UpdateLoginFlowWithCodeMethod) HasIdentifier() bool { method SetIdentifier (line 178) | func (o *UpdateLoginFlowWithCodeMethod) SetIdentifier(v string) { method GetMethod (line 183) | func (o *UpdateLoginFlowWithCodeMethod) GetMethod() string { method GetMethodOk (line 194) | func (o *UpdateLoginFlowWithCodeMethod) GetMethodOk() (*string, bool) { method SetMethod (line 202) | func (o *UpdateLoginFlowWithCodeMethod) SetMethod(v string) { method GetResend (line 207) | func (o *UpdateLoginFlowWithCodeMethod) GetResend() string { method GetResendOk (line 217) | func (o *UpdateLoginFlowWithCodeMethod) GetResendOk() (*string, bool) { method HasResend (line 225) | func (o *UpdateLoginFlowWithCodeMethod) HasResend() bool { method SetResend (line 234) | func (o *UpdateLoginFlowWithCodeMethod) SetResend(v string) { method GetTransientPayload (line 239) | func (o *UpdateLoginFlowWithCodeMethod) GetTransientPayload() map[stri... method GetTransientPayloadOk (line 249) | func (o *UpdateLoginFlowWithCodeMethod) GetTransientPayloadOk() (map[s... method HasTransientPayload (line 257) | func (o *UpdateLoginFlowWithCodeMethod) HasTransientPayload() bool { method SetTransientPayload (line 266) | func (o *UpdateLoginFlowWithCodeMethod) SetTransientPayload(v map[stri... method MarshalJSON (line 270) | func (o UpdateLoginFlowWithCodeMethod) MarshalJSON() ([]byte, error) { method ToMap (line 278) | func (o UpdateLoginFlowWithCodeMethod) ToMap() (map[string]interface{}... method UnmarshalJSON (line 305) | func (o *UpdateLoginFlowWithCodeMethod) UnmarshalJSON(data []byte) (er... type _UpdateLoginFlowWithCodeMethod (line 41) | type _UpdateLoginFlowWithCodeMethod function NewUpdateLoginFlowWithCodeMethod (line 47) | func NewUpdateLoginFlowWithCodeMethod(csrfToken string, method string) *... function NewUpdateLoginFlowWithCodeMethodWithDefaults (line 57) | func NewUpdateLoginFlowWithCodeMethodWithDefaults() *UpdateLoginFlowWith... type NullableUpdateLoginFlowWithCodeMethod (line 354) | type NullableUpdateLoginFlowWithCodeMethod struct method Get (line 359) | func (v NullableUpdateLoginFlowWithCodeMethod) Get() *UpdateLoginFlowW... method Set (line 363) | func (v *NullableUpdateLoginFlowWithCodeMethod) Set(val *UpdateLoginFl... method IsSet (line 368) | func (v NullableUpdateLoginFlowWithCodeMethod) IsSet() bool { method Unset (line 372) | func (v *NullableUpdateLoginFlowWithCodeMethod) Unset() { method MarshalJSON (line 381) | func (v NullableUpdateLoginFlowWithCodeMethod) MarshalJSON() ([]byte, ... method UnmarshalJSON (line 385) | func (v *NullableUpdateLoginFlowWithCodeMethod) UnmarshalJSON(src []by... function NewNullableUpdateLoginFlowWithCodeMethod (line 377) | func NewNullableUpdateLoginFlowWithCodeMethod(val *UpdateLoginFlowWithCo... FILE: pkg/client-go/model_update_login_flow_with_identifier_first_method.go type UpdateLoginFlowWithIdentifierFirstMethod (line 23) | type UpdateLoginFlowWithIdentifierFirstMethod struct method GetCsrfToken (line 57) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) GetCsrfToken() stri... method GetCsrfTokenOk (line 67) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) GetCsrfTokenOk() (*... method HasCsrfToken (line 75) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) HasCsrfToken() bool { method SetCsrfToken (line 84) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) SetCsrfToken(v stri... method GetIdentifier (line 89) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) GetIdentifier() str... method GetIdentifierOk (line 100) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) GetIdentifierOk() (... method SetIdentifier (line 108) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) SetIdentifier(v str... method GetMethod (line 113) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) GetMethod() string { method GetMethodOk (line 124) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) GetMethodOk() (*str... method SetMethod (line 132) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) SetMethod(v string) { method GetTransientPayload (line 137) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) GetTransientPayload... method GetTransientPayloadOk (line 147) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) GetTransientPayload... method HasTransientPayload (line 155) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) HasTransientPayload... method SetTransientPayload (line 164) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) SetTransientPayload... method MarshalJSON (line 168) | func (o UpdateLoginFlowWithIdentifierFirstMethod) MarshalJSON() ([]byt... method ToMap (line 176) | func (o UpdateLoginFlowWithIdentifierFirstMethod) ToMap() (map[string]... method UnmarshalJSON (line 194) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) UnmarshalJSON(data ... type _UpdateLoginFlowWithIdentifierFirstMethod (line 35) | type _UpdateLoginFlowWithIdentifierFirstMethod function NewUpdateLoginFlowWithIdentifierFirstMethod (line 41) | func NewUpdateLoginFlowWithIdentifierFirstMethod(identifier string, meth... function NewUpdateLoginFlowWithIdentifierFirstMethodWithDefaults (line 51) | func NewUpdateLoginFlowWithIdentifierFirstMethodWithDefaults() *UpdateLo... type NullableUpdateLoginFlowWithIdentifierFirstMethod (line 240) | type NullableUpdateLoginFlowWithIdentifierFirstMethod struct method Get (line 245) | func (v NullableUpdateLoginFlowWithIdentifierFirstMethod) Get() *Updat... method Set (line 249) | func (v *NullableUpdateLoginFlowWithIdentifierFirstMethod) Set(val *Up... method IsSet (line 254) | func (v NullableUpdateLoginFlowWithIdentifierFirstMethod) IsSet() bool { method Unset (line 258) | func (v *NullableUpdateLoginFlowWithIdentifierFirstMethod) Unset() { method MarshalJSON (line 267) | func (v NullableUpdateLoginFlowWithIdentifierFirstMethod) MarshalJSON(... method UnmarshalJSON (line 271) | func (v *NullableUpdateLoginFlowWithIdentifierFirstMethod) UnmarshalJS... function NewNullableUpdateLoginFlowWithIdentifierFirstMethod (line 263) | func NewNullableUpdateLoginFlowWithIdentifierFirstMethod(val *UpdateLogi... FILE: pkg/client-go/model_update_login_flow_with_lookup_secret_method.go type UpdateLoginFlowWithLookupSecretMethod (line 23) | type UpdateLoginFlowWithLookupSecretMethod struct method GetCsrfToken (line 55) | func (o *UpdateLoginFlowWithLookupSecretMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 65) | func (o *UpdateLoginFlowWithLookupSecretMethod) GetCsrfTokenOk() (*str... method HasCsrfToken (line 73) | func (o *UpdateLoginFlowWithLookupSecretMethod) HasCsrfToken() bool { method SetCsrfToken (line 82) | func (o *UpdateLoginFlowWithLookupSecretMethod) SetCsrfToken(v string) { method GetLookupSecret (line 87) | func (o *UpdateLoginFlowWithLookupSecretMethod) GetLookupSecret() stri... method GetLookupSecretOk (line 98) | func (o *UpdateLoginFlowWithLookupSecretMethod) GetLookupSecretOk() (*... method SetLookupSecret (line 106) | func (o *UpdateLoginFlowWithLookupSecretMethod) SetLookupSecret(v stri... method GetMethod (line 111) | func (o *UpdateLoginFlowWithLookupSecretMethod) GetMethod() string { method GetMethodOk (line 122) | func (o *UpdateLoginFlowWithLookupSecretMethod) GetMethodOk() (*string... method SetMethod (line 130) | func (o *UpdateLoginFlowWithLookupSecretMethod) SetMethod(v string) { method MarshalJSON (line 134) | func (o UpdateLoginFlowWithLookupSecretMethod) MarshalJSON() ([]byte, ... method ToMap (line 142) | func (o UpdateLoginFlowWithLookupSecretMethod) ToMap() (map[string]int... method UnmarshalJSON (line 157) | func (o *UpdateLoginFlowWithLookupSecretMethod) UnmarshalJSON(data []b... type _UpdateLoginFlowWithLookupSecretMethod (line 33) | type _UpdateLoginFlowWithLookupSecretMethod function NewUpdateLoginFlowWithLookupSecretMethod (line 39) | func NewUpdateLoginFlowWithLookupSecretMethod(lookupSecret string, metho... function NewUpdateLoginFlowWithLookupSecretMethodWithDefaults (line 49) | func NewUpdateLoginFlowWithLookupSecretMethodWithDefaults() *UpdateLogin... type NullableUpdateLoginFlowWithLookupSecretMethod (line 202) | type NullableUpdateLoginFlowWithLookupSecretMethod struct method Get (line 207) | func (v NullableUpdateLoginFlowWithLookupSecretMethod) Get() *UpdateLo... method Set (line 211) | func (v *NullableUpdateLoginFlowWithLookupSecretMethod) Set(val *Updat... method IsSet (line 216) | func (v NullableUpdateLoginFlowWithLookupSecretMethod) IsSet() bool { method Unset (line 220) | func (v *NullableUpdateLoginFlowWithLookupSecretMethod) Unset() { method MarshalJSON (line 229) | func (v NullableUpdateLoginFlowWithLookupSecretMethod) MarshalJSON() (... method UnmarshalJSON (line 233) | func (v *NullableUpdateLoginFlowWithLookupSecretMethod) UnmarshalJSON(... function NewNullableUpdateLoginFlowWithLookupSecretMethod (line 225) | func NewNullableUpdateLoginFlowWithLookupSecretMethod(val *UpdateLoginFl... FILE: pkg/client-go/model_update_login_flow_with_oidc_method.go type UpdateLoginFlowWithOidcMethod (line 23) | type UpdateLoginFlowWithOidcMethod struct method GetCsrfToken (line 65) | func (o *UpdateLoginFlowWithOidcMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 75) | func (o *UpdateLoginFlowWithOidcMethod) GetCsrfTokenOk() (*string, boo... method HasCsrfToken (line 83) | func (o *UpdateLoginFlowWithOidcMethod) HasCsrfToken() bool { method SetCsrfToken (line 92) | func (o *UpdateLoginFlowWithOidcMethod) SetCsrfToken(v string) { method GetIdToken (line 97) | func (o *UpdateLoginFlowWithOidcMethod) GetIdToken() string { method GetIdTokenOk (line 107) | func (o *UpdateLoginFlowWithOidcMethod) GetIdTokenOk() (*string, bool) { method HasIdToken (line 115) | func (o *UpdateLoginFlowWithOidcMethod) HasIdToken() bool { method SetIdToken (line 124) | func (o *UpdateLoginFlowWithOidcMethod) SetIdToken(v string) { method GetIdTokenNonce (line 129) | func (o *UpdateLoginFlowWithOidcMethod) GetIdTokenNonce() string { method GetIdTokenNonceOk (line 139) | func (o *UpdateLoginFlowWithOidcMethod) GetIdTokenNonceOk() (*string, ... method HasIdTokenNonce (line 147) | func (o *UpdateLoginFlowWithOidcMethod) HasIdTokenNonce() bool { method SetIdTokenNonce (line 156) | func (o *UpdateLoginFlowWithOidcMethod) SetIdTokenNonce(v string) { method GetMethod (line 161) | func (o *UpdateLoginFlowWithOidcMethod) GetMethod() string { method GetMethodOk (line 172) | func (o *UpdateLoginFlowWithOidcMethod) GetMethodOk() (*string, bool) { method SetMethod (line 180) | func (o *UpdateLoginFlowWithOidcMethod) SetMethod(v string) { method GetProvider (line 185) | func (o *UpdateLoginFlowWithOidcMethod) GetProvider() string { method GetProviderOk (line 196) | func (o *UpdateLoginFlowWithOidcMethod) GetProviderOk() (*string, bool) { method SetProvider (line 204) | func (o *UpdateLoginFlowWithOidcMethod) SetProvider(v string) { method GetTraits (line 209) | func (o *UpdateLoginFlowWithOidcMethod) GetTraits() map[string]interfa... method GetTraitsOk (line 219) | func (o *UpdateLoginFlowWithOidcMethod) GetTraitsOk() (map[string]inte... method HasTraits (line 227) | func (o *UpdateLoginFlowWithOidcMethod) HasTraits() bool { method SetTraits (line 236) | func (o *UpdateLoginFlowWithOidcMethod) SetTraits(v map[string]interfa... method GetTransientPayload (line 241) | func (o *UpdateLoginFlowWithOidcMethod) GetTransientPayload() map[stri... method GetTransientPayloadOk (line 251) | func (o *UpdateLoginFlowWithOidcMethod) GetTransientPayloadOk() (map[s... method HasTransientPayload (line 259) | func (o *UpdateLoginFlowWithOidcMethod) HasTransientPayload() bool { method SetTransientPayload (line 268) | func (o *UpdateLoginFlowWithOidcMethod) SetTransientPayload(v map[stri... method GetUpstreamParameters (line 273) | func (o *UpdateLoginFlowWithOidcMethod) GetUpstreamParameters() map[st... method GetUpstreamParametersOk (line 283) | func (o *UpdateLoginFlowWithOidcMethod) GetUpstreamParametersOk() (map... method HasUpstreamParameters (line 291) | func (o *UpdateLoginFlowWithOidcMethod) HasUpstreamParameters() bool { method SetUpstreamParameters (line 300) | func (o *UpdateLoginFlowWithOidcMethod) SetUpstreamParameters(v map[st... method MarshalJSON (line 304) | func (o UpdateLoginFlowWithOidcMethod) MarshalJSON() ([]byte, error) { method ToMap (line 312) | func (o UpdateLoginFlowWithOidcMethod) ToMap() (map[string]interface{}... method UnmarshalJSON (line 342) | func (o *UpdateLoginFlowWithOidcMethod) UnmarshalJSON(data []byte) (er... type _UpdateLoginFlowWithOidcMethod (line 43) | type _UpdateLoginFlowWithOidcMethod function NewUpdateLoginFlowWithOidcMethod (line 49) | func NewUpdateLoginFlowWithOidcMethod(method string, provider string) *U... function NewUpdateLoginFlowWithOidcMethodWithDefaults (line 59) | func NewUpdateLoginFlowWithOidcMethodWithDefaults() *UpdateLoginFlowWith... type NullableUpdateLoginFlowWithOidcMethod (line 392) | type NullableUpdateLoginFlowWithOidcMethod struct method Get (line 397) | func (v NullableUpdateLoginFlowWithOidcMethod) Get() *UpdateLoginFlowW... method Set (line 401) | func (v *NullableUpdateLoginFlowWithOidcMethod) Set(val *UpdateLoginFl... method IsSet (line 406) | func (v NullableUpdateLoginFlowWithOidcMethod) IsSet() bool { method Unset (line 410) | func (v *NullableUpdateLoginFlowWithOidcMethod) Unset() { method MarshalJSON (line 419) | func (v NullableUpdateLoginFlowWithOidcMethod) MarshalJSON() ([]byte, ... method UnmarshalJSON (line 423) | func (v *NullableUpdateLoginFlowWithOidcMethod) UnmarshalJSON(src []by... function NewNullableUpdateLoginFlowWithOidcMethod (line 415) | func NewNullableUpdateLoginFlowWithOidcMethod(val *UpdateLoginFlowWithOi... FILE: pkg/client-go/model_update_login_flow_with_passkey_method.go type UpdateLoginFlowWithPasskeyMethod (line 23) | type UpdateLoginFlowWithPasskeyMethod struct method GetCsrfToken (line 54) | func (o *UpdateLoginFlowWithPasskeyMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 64) | func (o *UpdateLoginFlowWithPasskeyMethod) GetCsrfTokenOk() (*string, ... method HasCsrfToken (line 72) | func (o *UpdateLoginFlowWithPasskeyMethod) HasCsrfToken() bool { method SetCsrfToken (line 81) | func (o *UpdateLoginFlowWithPasskeyMethod) SetCsrfToken(v string) { method GetMethod (line 86) | func (o *UpdateLoginFlowWithPasskeyMethod) GetMethod() string { method GetMethodOk (line 97) | func (o *UpdateLoginFlowWithPasskeyMethod) GetMethodOk() (*string, boo... method SetMethod (line 105) | func (o *UpdateLoginFlowWithPasskeyMethod) SetMethod(v string) { method GetPasskeyLogin (line 110) | func (o *UpdateLoginFlowWithPasskeyMethod) GetPasskeyLogin() string { method GetPasskeyLoginOk (line 120) | func (o *UpdateLoginFlowWithPasskeyMethod) GetPasskeyLoginOk() (*strin... method HasPasskeyLogin (line 128) | func (o *UpdateLoginFlowWithPasskeyMethod) HasPasskeyLogin() bool { method SetPasskeyLogin (line 137) | func (o *UpdateLoginFlowWithPasskeyMethod) SetPasskeyLogin(v string) { method MarshalJSON (line 141) | func (o UpdateLoginFlowWithPasskeyMethod) MarshalJSON() ([]byte, error) { method ToMap (line 149) | func (o UpdateLoginFlowWithPasskeyMethod) ToMap() (map[string]interfac... method UnmarshalJSON (line 166) | func (o *UpdateLoginFlowWithPasskeyMethod) UnmarshalJSON(data []byte) ... type _UpdateLoginFlowWithPasskeyMethod (line 33) | type _UpdateLoginFlowWithPasskeyMethod function NewUpdateLoginFlowWithPasskeyMethod (line 39) | func NewUpdateLoginFlowWithPasskeyMethod(method string) *UpdateLoginFlow... function NewUpdateLoginFlowWithPasskeyMethodWithDefaults (line 48) | func NewUpdateLoginFlowWithPasskeyMethodWithDefaults() *UpdateLoginFlowW... type NullableUpdateLoginFlowWithPasskeyMethod (line 210) | type NullableUpdateLoginFlowWithPasskeyMethod struct method Get (line 215) | func (v NullableUpdateLoginFlowWithPasskeyMethod) Get() *UpdateLoginFl... method Set (line 219) | func (v *NullableUpdateLoginFlowWithPasskeyMethod) Set(val *UpdateLogi... method IsSet (line 224) | func (v NullableUpdateLoginFlowWithPasskeyMethod) IsSet() bool { method Unset (line 228) | func (v *NullableUpdateLoginFlowWithPasskeyMethod) Unset() { method MarshalJSON (line 237) | func (v NullableUpdateLoginFlowWithPasskeyMethod) MarshalJSON() ([]byt... method UnmarshalJSON (line 241) | func (v *NullableUpdateLoginFlowWithPasskeyMethod) UnmarshalJSON(src [... function NewNullableUpdateLoginFlowWithPasskeyMethod (line 233) | func NewNullableUpdateLoginFlowWithPasskeyMethod(val *UpdateLoginFlowWit... FILE: pkg/client-go/model_update_login_flow_with_password_method.go type UpdateLoginFlowWithPasswordMethod (line 23) | type UpdateLoginFlowWithPasswordMethod struct method GetCsrfToken (line 62) | func (o *UpdateLoginFlowWithPasswordMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 72) | func (o *UpdateLoginFlowWithPasswordMethod) GetCsrfTokenOk() (*string,... method HasCsrfToken (line 80) | func (o *UpdateLoginFlowWithPasswordMethod) HasCsrfToken() bool { method SetCsrfToken (line 89) | func (o *UpdateLoginFlowWithPasswordMethod) SetCsrfToken(v string) { method GetIdentifier (line 94) | func (o *UpdateLoginFlowWithPasswordMethod) GetIdentifier() string { method GetIdentifierOk (line 105) | func (o *UpdateLoginFlowWithPasswordMethod) GetIdentifierOk() (*string... method SetIdentifier (line 113) | func (o *UpdateLoginFlowWithPasswordMethod) SetIdentifier(v string) { method GetMethod (line 118) | func (o *UpdateLoginFlowWithPasswordMethod) GetMethod() string { method GetMethodOk (line 129) | func (o *UpdateLoginFlowWithPasswordMethod) GetMethodOk() (*string, bo... method SetMethod (line 137) | func (o *UpdateLoginFlowWithPasswordMethod) SetMethod(v string) { method GetPassword (line 142) | func (o *UpdateLoginFlowWithPasswordMethod) GetPassword() string { method GetPasswordOk (line 153) | func (o *UpdateLoginFlowWithPasswordMethod) GetPasswordOk() (*string, ... method SetPassword (line 161) | func (o *UpdateLoginFlowWithPasswordMethod) SetPassword(v string) { method GetPasswordIdentifier (line 166) | func (o *UpdateLoginFlowWithPasswordMethod) GetPasswordIdentifier() st... method GetPasswordIdentifierOk (line 176) | func (o *UpdateLoginFlowWithPasswordMethod) GetPasswordIdentifierOk() ... method HasPasswordIdentifier (line 184) | func (o *UpdateLoginFlowWithPasswordMethod) HasPasswordIdentifier() bo... method SetPasswordIdentifier (line 193) | func (o *UpdateLoginFlowWithPasswordMethod) SetPasswordIdentifier(v st... method GetTransientPayload (line 198) | func (o *UpdateLoginFlowWithPasswordMethod) GetTransientPayload() map[... method GetTransientPayloadOk (line 208) | func (o *UpdateLoginFlowWithPasswordMethod) GetTransientPayloadOk() (m... method HasTransientPayload (line 216) | func (o *UpdateLoginFlowWithPasswordMethod) HasTransientPayload() bool { method SetTransientPayload (line 225) | func (o *UpdateLoginFlowWithPasswordMethod) SetTransientPayload(v map[... method MarshalJSON (line 229) | func (o UpdateLoginFlowWithPasswordMethod) MarshalJSON() ([]byte, erro... method ToMap (line 237) | func (o UpdateLoginFlowWithPasswordMethod) ToMap() (map[string]interfa... method UnmarshalJSON (line 259) | func (o *UpdateLoginFlowWithPasswordMethod) UnmarshalJSON(data []byte)... type _UpdateLoginFlowWithPasswordMethod (line 39) | type _UpdateLoginFlowWithPasswordMethod function NewUpdateLoginFlowWithPasswordMethod (line 45) | func NewUpdateLoginFlowWithPasswordMethod(identifier string, method stri... function NewUpdateLoginFlowWithPasswordMethodWithDefaults (line 56) | func NewUpdateLoginFlowWithPasswordMethodWithDefaults() *UpdateLoginFlow... type NullableUpdateLoginFlowWithPasswordMethod (line 308) | type NullableUpdateLoginFlowWithPasswordMethod struct method Get (line 313) | func (v NullableUpdateLoginFlowWithPasswordMethod) Get() *UpdateLoginF... method Set (line 317) | func (v *NullableUpdateLoginFlowWithPasswordMethod) Set(val *UpdateLog... method IsSet (line 322) | func (v NullableUpdateLoginFlowWithPasswordMethod) IsSet() bool { method Unset (line 326) | func (v *NullableUpdateLoginFlowWithPasswordMethod) Unset() { method MarshalJSON (line 335) | func (v NullableUpdateLoginFlowWithPasswordMethod) MarshalJSON() ([]by... method UnmarshalJSON (line 339) | func (v *NullableUpdateLoginFlowWithPasswordMethod) UnmarshalJSON(src ... function NewNullableUpdateLoginFlowWithPasswordMethod (line 331) | func NewNullableUpdateLoginFlowWithPasswordMethod(val *UpdateLoginFlowWi... FILE: pkg/client-go/model_update_login_flow_with_saml_method.go type UpdateLoginFlowWithSamlMethod (line 23) | type UpdateLoginFlowWithSamlMethod struct method GetCsrfToken (line 57) | func (o *UpdateLoginFlowWithSamlMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 67) | func (o *UpdateLoginFlowWithSamlMethod) GetCsrfTokenOk() (*string, boo... method HasCsrfToken (line 75) | func (o *UpdateLoginFlowWithSamlMethod) HasCsrfToken() bool { method SetCsrfToken (line 84) | func (o *UpdateLoginFlowWithSamlMethod) SetCsrfToken(v string) { method GetMethod (line 89) | func (o *UpdateLoginFlowWithSamlMethod) GetMethod() string { method GetMethodOk (line 100) | func (o *UpdateLoginFlowWithSamlMethod) GetMethodOk() (*string, bool) { method SetMethod (line 108) | func (o *UpdateLoginFlowWithSamlMethod) SetMethod(v string) { method GetProvider (line 113) | func (o *UpdateLoginFlowWithSamlMethod) GetProvider() string { method GetProviderOk (line 124) | func (o *UpdateLoginFlowWithSamlMethod) GetProviderOk() (*string, bool) { method SetProvider (line 132) | func (o *UpdateLoginFlowWithSamlMethod) SetProvider(v string) { method GetTransientPayload (line 137) | func (o *UpdateLoginFlowWithSamlMethod) GetTransientPayload() map[stri... method GetTransientPayloadOk (line 147) | func (o *UpdateLoginFlowWithSamlMethod) GetTransientPayloadOk() (map[s... method HasTransientPayload (line 155) | func (o *UpdateLoginFlowWithSamlMethod) HasTransientPayload() bool { method SetTransientPayload (line 164) | func (o *UpdateLoginFlowWithSamlMethod) SetTransientPayload(v map[stri... method MarshalJSON (line 168) | func (o UpdateLoginFlowWithSamlMethod) MarshalJSON() ([]byte, error) { method ToMap (line 176) | func (o UpdateLoginFlowWithSamlMethod) ToMap() (map[string]interface{}... method UnmarshalJSON (line 194) | func (o *UpdateLoginFlowWithSamlMethod) UnmarshalJSON(data []byte) (er... type _UpdateLoginFlowWithSamlMethod (line 35) | type _UpdateLoginFlowWithSamlMethod function NewUpdateLoginFlowWithSamlMethod (line 41) | func NewUpdateLoginFlowWithSamlMethod(method string, provider string) *U... function NewUpdateLoginFlowWithSamlMethodWithDefaults (line 51) | func NewUpdateLoginFlowWithSamlMethodWithDefaults() *UpdateLoginFlowWith... type NullableUpdateLoginFlowWithSamlMethod (line 240) | type NullableUpdateLoginFlowWithSamlMethod struct method Get (line 245) | func (v NullableUpdateLoginFlowWithSamlMethod) Get() *UpdateLoginFlowW... method Set (line 249) | func (v *NullableUpdateLoginFlowWithSamlMethod) Set(val *UpdateLoginFl... method IsSet (line 254) | func (v NullableUpdateLoginFlowWithSamlMethod) IsSet() bool { method Unset (line 258) | func (v *NullableUpdateLoginFlowWithSamlMethod) Unset() { method MarshalJSON (line 267) | func (v NullableUpdateLoginFlowWithSamlMethod) MarshalJSON() ([]byte, ... method UnmarshalJSON (line 271) | func (v *NullableUpdateLoginFlowWithSamlMethod) UnmarshalJSON(src []by... function NewNullableUpdateLoginFlowWithSamlMethod (line 263) | func NewNullableUpdateLoginFlowWithSamlMethod(val *UpdateLoginFlowWithSa... FILE: pkg/client-go/model_update_login_flow_with_totp_method.go type UpdateLoginFlowWithTotpMethod (line 23) | type UpdateLoginFlowWithTotpMethod struct method GetCsrfToken (line 57) | func (o *UpdateLoginFlowWithTotpMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 67) | func (o *UpdateLoginFlowWithTotpMethod) GetCsrfTokenOk() (*string, boo... method HasCsrfToken (line 75) | func (o *UpdateLoginFlowWithTotpMethod) HasCsrfToken() bool { method SetCsrfToken (line 84) | func (o *UpdateLoginFlowWithTotpMethod) SetCsrfToken(v string) { method GetMethod (line 89) | func (o *UpdateLoginFlowWithTotpMethod) GetMethod() string { method GetMethodOk (line 100) | func (o *UpdateLoginFlowWithTotpMethod) GetMethodOk() (*string, bool) { method SetMethod (line 108) | func (o *UpdateLoginFlowWithTotpMethod) SetMethod(v string) { method GetTotpCode (line 113) | func (o *UpdateLoginFlowWithTotpMethod) GetTotpCode() string { method GetTotpCodeOk (line 124) | func (o *UpdateLoginFlowWithTotpMethod) GetTotpCodeOk() (*string, bool) { method SetTotpCode (line 132) | func (o *UpdateLoginFlowWithTotpMethod) SetTotpCode(v string) { method GetTransientPayload (line 137) | func (o *UpdateLoginFlowWithTotpMethod) GetTransientPayload() map[stri... method GetTransientPayloadOk (line 147) | func (o *UpdateLoginFlowWithTotpMethod) GetTransientPayloadOk() (map[s... method HasTransientPayload (line 155) | func (o *UpdateLoginFlowWithTotpMethod) HasTransientPayload() bool { method SetTransientPayload (line 164) | func (o *UpdateLoginFlowWithTotpMethod) SetTransientPayload(v map[stri... method MarshalJSON (line 168) | func (o UpdateLoginFlowWithTotpMethod) MarshalJSON() ([]byte, error) { method ToMap (line 176) | func (o UpdateLoginFlowWithTotpMethod) ToMap() (map[string]interface{}... method UnmarshalJSON (line 194) | func (o *UpdateLoginFlowWithTotpMethod) UnmarshalJSON(data []byte) (er... type _UpdateLoginFlowWithTotpMethod (line 35) | type _UpdateLoginFlowWithTotpMethod function NewUpdateLoginFlowWithTotpMethod (line 41) | func NewUpdateLoginFlowWithTotpMethod(method string, totpCode string) *U... function NewUpdateLoginFlowWithTotpMethodWithDefaults (line 51) | func NewUpdateLoginFlowWithTotpMethodWithDefaults() *UpdateLoginFlowWith... type NullableUpdateLoginFlowWithTotpMethod (line 240) | type NullableUpdateLoginFlowWithTotpMethod struct method Get (line 245) | func (v NullableUpdateLoginFlowWithTotpMethod) Get() *UpdateLoginFlowW... method Set (line 249) | func (v *NullableUpdateLoginFlowWithTotpMethod) Set(val *UpdateLoginFl... method IsSet (line 254) | func (v NullableUpdateLoginFlowWithTotpMethod) IsSet() bool { method Unset (line 258) | func (v *NullableUpdateLoginFlowWithTotpMethod) Unset() { method MarshalJSON (line 267) | func (v NullableUpdateLoginFlowWithTotpMethod) MarshalJSON() ([]byte, ... method UnmarshalJSON (line 271) | func (v *NullableUpdateLoginFlowWithTotpMethod) UnmarshalJSON(src []by... function NewNullableUpdateLoginFlowWithTotpMethod (line 263) | func NewNullableUpdateLoginFlowWithTotpMethod(val *UpdateLoginFlowWithTo... FILE: pkg/client-go/model_update_login_flow_with_web_authn_method.go type UpdateLoginFlowWithWebAuthnMethod (line 23) | type UpdateLoginFlowWithWebAuthnMethod struct method GetCsrfToken (line 59) | func (o *UpdateLoginFlowWithWebAuthnMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 69) | func (o *UpdateLoginFlowWithWebAuthnMethod) GetCsrfTokenOk() (*string,... method HasCsrfToken (line 77) | func (o *UpdateLoginFlowWithWebAuthnMethod) HasCsrfToken() bool { method SetCsrfToken (line 86) | func (o *UpdateLoginFlowWithWebAuthnMethod) SetCsrfToken(v string) { method GetIdentifier (line 91) | func (o *UpdateLoginFlowWithWebAuthnMethod) GetIdentifier() string { method GetIdentifierOk (line 102) | func (o *UpdateLoginFlowWithWebAuthnMethod) GetIdentifierOk() (*string... method SetIdentifier (line 110) | func (o *UpdateLoginFlowWithWebAuthnMethod) SetIdentifier(v string) { method GetMethod (line 115) | func (o *UpdateLoginFlowWithWebAuthnMethod) GetMethod() string { method GetMethodOk (line 126) | func (o *UpdateLoginFlowWithWebAuthnMethod) GetMethodOk() (*string, bo... method SetMethod (line 134) | func (o *UpdateLoginFlowWithWebAuthnMethod) SetMethod(v string) { method GetTransientPayload (line 139) | func (o *UpdateLoginFlowWithWebAuthnMethod) GetTransientPayload() map[... method GetTransientPayloadOk (line 149) | func (o *UpdateLoginFlowWithWebAuthnMethod) GetTransientPayloadOk() (m... method HasTransientPayload (line 157) | func (o *UpdateLoginFlowWithWebAuthnMethod) HasTransientPayload() bool { method SetTransientPayload (line 166) | func (o *UpdateLoginFlowWithWebAuthnMethod) SetTransientPayload(v map[... method GetWebauthnLogin (line 171) | func (o *UpdateLoginFlowWithWebAuthnMethod) GetWebauthnLogin() string { method GetWebauthnLoginOk (line 181) | func (o *UpdateLoginFlowWithWebAuthnMethod) GetWebauthnLoginOk() (*str... method HasWebauthnLogin (line 189) | func (o *UpdateLoginFlowWithWebAuthnMethod) HasWebauthnLogin() bool { method SetWebauthnLogin (line 198) | func (o *UpdateLoginFlowWithWebAuthnMethod) SetWebauthnLogin(v string) { method MarshalJSON (line 202) | func (o UpdateLoginFlowWithWebAuthnMethod) MarshalJSON() ([]byte, erro... method ToMap (line 210) | func (o UpdateLoginFlowWithWebAuthnMethod) ToMap() (map[string]interfa... method UnmarshalJSON (line 231) | func (o *UpdateLoginFlowWithWebAuthnMethod) UnmarshalJSON(data []byte)... type _UpdateLoginFlowWithWebAuthnMethod (line 37) | type _UpdateLoginFlowWithWebAuthnMethod function NewUpdateLoginFlowWithWebAuthnMethod (line 43) | func NewUpdateLoginFlowWithWebAuthnMethod(identifier string, method stri... function NewUpdateLoginFlowWithWebAuthnMethodWithDefaults (line 53) | func NewUpdateLoginFlowWithWebAuthnMethodWithDefaults() *UpdateLoginFlow... type NullableUpdateLoginFlowWithWebAuthnMethod (line 278) | type NullableUpdateLoginFlowWithWebAuthnMethod struct method Get (line 283) | func (v NullableUpdateLoginFlowWithWebAuthnMethod) Get() *UpdateLoginF... method Set (line 287) | func (v *NullableUpdateLoginFlowWithWebAuthnMethod) Set(val *UpdateLog... method IsSet (line 292) | func (v NullableUpdateLoginFlowWithWebAuthnMethod) IsSet() bool { method Unset (line 296) | func (v *NullableUpdateLoginFlowWithWebAuthnMethod) Unset() { method MarshalJSON (line 305) | func (v NullableUpdateLoginFlowWithWebAuthnMethod) MarshalJSON() ([]by... method UnmarshalJSON (line 309) | func (v *NullableUpdateLoginFlowWithWebAuthnMethod) UnmarshalJSON(src ... function NewNullableUpdateLoginFlowWithWebAuthnMethod (line 301) | func NewNullableUpdateLoginFlowWithWebAuthnMethod(val *UpdateLoginFlowWi... FILE: pkg/client-go/model_update_recovery_flow_body.go type UpdateRecoveryFlowBody (line 20) | type UpdateRecoveryFlowBody struct method UnmarshalJSON (line 40) | func (dst *UpdateRecoveryFlowBody) UnmarshalJSON(data []byte) error { method MarshalJSON (line 101) | func (src UpdateRecoveryFlowBody) MarshalJSON() ([]byte, error) { method GetActualInstance (line 114) | func (obj *UpdateRecoveryFlowBody) GetActualInstance() interface{} { method GetActualInstanceValue (line 131) | func (obj UpdateRecoveryFlowBody) GetActualInstanceValue() interface{} { function UpdateRecoveryFlowWithCodeMethodAsUpdateRecoveryFlowBody (line 26) | func UpdateRecoveryFlowWithCodeMethodAsUpdateRecoveryFlowBody(v *UpdateR... function UpdateRecoveryFlowWithLinkMethodAsUpdateRecoveryFlowBody (line 33) | func UpdateRecoveryFlowWithLinkMethodAsUpdateRecoveryFlowBody(v *UpdateR... type NullableUpdateRecoveryFlowBody (line 144) | type NullableUpdateRecoveryFlowBody struct method Get (line 149) | func (v NullableUpdateRecoveryFlowBody) Get() *UpdateRecoveryFlowBody { method Set (line 153) | func (v *NullableUpdateRecoveryFlowBody) Set(val *UpdateRecoveryFlowBo... method IsSet (line 158) | func (v NullableUpdateRecoveryFlowBody) IsSet() bool { method Unset (line 162) | func (v *NullableUpdateRecoveryFlowBody) Unset() { method MarshalJSON (line 171) | func (v NullableUpdateRecoveryFlowBody) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 175) | func (v *NullableUpdateRecoveryFlowBody) UnmarshalJSON(src []byte) err... function NewNullableUpdateRecoveryFlowBody (line 167) | func NewNullableUpdateRecoveryFlowBody(val *UpdateRecoveryFlowBody) *Nul... FILE: pkg/client-go/model_update_recovery_flow_with_code_method.go type UpdateRecoveryFlowWithCodeMethod (line 23) | type UpdateRecoveryFlowWithCodeMethod struct method GetCode (line 66) | func (o *UpdateRecoveryFlowWithCodeMethod) GetCode() string { method GetCodeOk (line 76) | func (o *UpdateRecoveryFlowWithCodeMethod) GetCodeOk() (*string, bool) { method HasCode (line 84) | func (o *UpdateRecoveryFlowWithCodeMethod) HasCode() bool { method SetCode (line 93) | func (o *UpdateRecoveryFlowWithCodeMethod) SetCode(v string) { method GetCsrfToken (line 98) | func (o *UpdateRecoveryFlowWithCodeMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 108) | func (o *UpdateRecoveryFlowWithCodeMethod) GetCsrfTokenOk() (*string, ... method HasCsrfToken (line 116) | func (o *UpdateRecoveryFlowWithCodeMethod) HasCsrfToken() bool { method SetCsrfToken (line 125) | func (o *UpdateRecoveryFlowWithCodeMethod) SetCsrfToken(v string) { method GetEmail (line 130) | func (o *UpdateRecoveryFlowWithCodeMethod) GetEmail() string { method GetEmailOk (line 140) | func (o *UpdateRecoveryFlowWithCodeMethod) GetEmailOk() (*string, bool) { method HasEmail (line 148) | func (o *UpdateRecoveryFlowWithCodeMethod) HasEmail() bool { method SetEmail (line 157) | func (o *UpdateRecoveryFlowWithCodeMethod) SetEmail(v string) { method GetMethod (line 162) | func (o *UpdateRecoveryFlowWithCodeMethod) GetMethod() string { method GetMethodOk (line 173) | func (o *UpdateRecoveryFlowWithCodeMethod) GetMethodOk() (*string, boo... method SetMethod (line 181) | func (o *UpdateRecoveryFlowWithCodeMethod) SetMethod(v string) { method GetRecoveryAddress (line 186) | func (o *UpdateRecoveryFlowWithCodeMethod) GetRecoveryAddress() string { method GetRecoveryAddressOk (line 196) | func (o *UpdateRecoveryFlowWithCodeMethod) GetRecoveryAddressOk() (*st... method HasRecoveryAddress (line 204) | func (o *UpdateRecoveryFlowWithCodeMethod) HasRecoveryAddress() bool { method SetRecoveryAddress (line 213) | func (o *UpdateRecoveryFlowWithCodeMethod) SetRecoveryAddress(v string) { method GetRecoveryConfirmAddress (line 218) | func (o *UpdateRecoveryFlowWithCodeMethod) GetRecoveryConfirmAddress()... method GetRecoveryConfirmAddressOk (line 228) | func (o *UpdateRecoveryFlowWithCodeMethod) GetRecoveryConfirmAddressOk... method HasRecoveryConfirmAddress (line 236) | func (o *UpdateRecoveryFlowWithCodeMethod) HasRecoveryConfirmAddress()... method SetRecoveryConfirmAddress (line 245) | func (o *UpdateRecoveryFlowWithCodeMethod) SetRecoveryConfirmAddress(v... method GetRecoverySelectAddress (line 250) | func (o *UpdateRecoveryFlowWithCodeMethod) GetRecoverySelectAddress() ... method GetRecoverySelectAddressOk (line 260) | func (o *UpdateRecoveryFlowWithCodeMethod) GetRecoverySelectAddressOk(... method HasRecoverySelectAddress (line 268) | func (o *UpdateRecoveryFlowWithCodeMethod) HasRecoverySelectAddress() ... method SetRecoverySelectAddress (line 277) | func (o *UpdateRecoveryFlowWithCodeMethod) SetRecoverySelectAddress(v ... method GetScreen (line 282) | func (o *UpdateRecoveryFlowWithCodeMethod) GetScreen() string { method GetScreenOk (line 292) | func (o *UpdateRecoveryFlowWithCodeMethod) GetScreenOk() (*string, boo... method HasScreen (line 300) | func (o *UpdateRecoveryFlowWithCodeMethod) HasScreen() bool { method SetScreen (line 309) | func (o *UpdateRecoveryFlowWithCodeMethod) SetScreen(v string) { method GetTransientPayload (line 314) | func (o *UpdateRecoveryFlowWithCodeMethod) GetTransientPayload() map[s... method GetTransientPayloadOk (line 324) | func (o *UpdateRecoveryFlowWithCodeMethod) GetTransientPayloadOk() (ma... method HasTransientPayload (line 332) | func (o *UpdateRecoveryFlowWithCodeMethod) HasTransientPayload() bool { method SetTransientPayload (line 341) | func (o *UpdateRecoveryFlowWithCodeMethod) SetTransientPayload(v map[s... method MarshalJSON (line 345) | func (o UpdateRecoveryFlowWithCodeMethod) MarshalJSON() ([]byte, error) { method ToMap (line 353) | func (o UpdateRecoveryFlowWithCodeMethod) ToMap() (map[string]interfac... method UnmarshalJSON (line 388) | func (o *UpdateRecoveryFlowWithCodeMethod) UnmarshalJSON(data []byte) ... type _UpdateRecoveryFlowWithCodeMethod (line 45) | type _UpdateRecoveryFlowWithCodeMethod function NewUpdateRecoveryFlowWithCodeMethod (line 51) | func NewUpdateRecoveryFlowWithCodeMethod(method string) *UpdateRecoveryF... function NewUpdateRecoveryFlowWithCodeMethodWithDefaults (line 60) | func NewUpdateRecoveryFlowWithCodeMethodWithDefaults() *UpdateRecoveryFl... type NullableUpdateRecoveryFlowWithCodeMethod (line 438) | type NullableUpdateRecoveryFlowWithCodeMethod struct method Get (line 443) | func (v NullableUpdateRecoveryFlowWithCodeMethod) Get() *UpdateRecover... method Set (line 447) | func (v *NullableUpdateRecoveryFlowWithCodeMethod) Set(val *UpdateReco... method IsSet (line 452) | func (v NullableUpdateRecoveryFlowWithCodeMethod) IsSet() bool { method Unset (line 456) | func (v *NullableUpdateRecoveryFlowWithCodeMethod) Unset() { method MarshalJSON (line 465) | func (v NullableUpdateRecoveryFlowWithCodeMethod) MarshalJSON() ([]byt... method UnmarshalJSON (line 469) | func (v *NullableUpdateRecoveryFlowWithCodeMethod) UnmarshalJSON(src [... function NewNullableUpdateRecoveryFlowWithCodeMethod (line 461) | func NewNullableUpdateRecoveryFlowWithCodeMethod(val *UpdateRecoveryFlow... FILE: pkg/client-go/model_update_recovery_flow_with_link_method.go type UpdateRecoveryFlowWithLinkMethod (line 23) | type UpdateRecoveryFlowWithLinkMethod struct method GetCsrfToken (line 57) | func (o *UpdateRecoveryFlowWithLinkMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 67) | func (o *UpdateRecoveryFlowWithLinkMethod) GetCsrfTokenOk() (*string, ... method HasCsrfToken (line 75) | func (o *UpdateRecoveryFlowWithLinkMethod) HasCsrfToken() bool { method SetCsrfToken (line 84) | func (o *UpdateRecoveryFlowWithLinkMethod) SetCsrfToken(v string) { method GetEmail (line 89) | func (o *UpdateRecoveryFlowWithLinkMethod) GetEmail() string { method GetEmailOk (line 100) | func (o *UpdateRecoveryFlowWithLinkMethod) GetEmailOk() (*string, bool) { method SetEmail (line 108) | func (o *UpdateRecoveryFlowWithLinkMethod) SetEmail(v string) { method GetMethod (line 113) | func (o *UpdateRecoveryFlowWithLinkMethod) GetMethod() string { method GetMethodOk (line 124) | func (o *UpdateRecoveryFlowWithLinkMethod) GetMethodOk() (*string, boo... method SetMethod (line 132) | func (o *UpdateRecoveryFlowWithLinkMethod) SetMethod(v string) { method GetTransientPayload (line 137) | func (o *UpdateRecoveryFlowWithLinkMethod) GetTransientPayload() map[s... method GetTransientPayloadOk (line 147) | func (o *UpdateRecoveryFlowWithLinkMethod) GetTransientPayloadOk() (ma... method HasTransientPayload (line 155) | func (o *UpdateRecoveryFlowWithLinkMethod) HasTransientPayload() bool { method SetTransientPayload (line 164) | func (o *UpdateRecoveryFlowWithLinkMethod) SetTransientPayload(v map[s... method MarshalJSON (line 168) | func (o UpdateRecoveryFlowWithLinkMethod) MarshalJSON() ([]byte, error) { method ToMap (line 176) | func (o UpdateRecoveryFlowWithLinkMethod) ToMap() (map[string]interfac... method UnmarshalJSON (line 194) | func (o *UpdateRecoveryFlowWithLinkMethod) UnmarshalJSON(data []byte) ... type _UpdateRecoveryFlowWithLinkMethod (line 35) | type _UpdateRecoveryFlowWithLinkMethod function NewUpdateRecoveryFlowWithLinkMethod (line 41) | func NewUpdateRecoveryFlowWithLinkMethod(email string, method string) *U... function NewUpdateRecoveryFlowWithLinkMethodWithDefaults (line 51) | func NewUpdateRecoveryFlowWithLinkMethodWithDefaults() *UpdateRecoveryFl... type NullableUpdateRecoveryFlowWithLinkMethod (line 240) | type NullableUpdateRecoveryFlowWithLinkMethod struct method Get (line 245) | func (v NullableUpdateRecoveryFlowWithLinkMethod) Get() *UpdateRecover... method Set (line 249) | func (v *NullableUpdateRecoveryFlowWithLinkMethod) Set(val *UpdateReco... method IsSet (line 254) | func (v NullableUpdateRecoveryFlowWithLinkMethod) IsSet() bool { method Unset (line 258) | func (v *NullableUpdateRecoveryFlowWithLinkMethod) Unset() { method MarshalJSON (line 267) | func (v NullableUpdateRecoveryFlowWithLinkMethod) MarshalJSON() ([]byt... method UnmarshalJSON (line 271) | func (v *NullableUpdateRecoveryFlowWithLinkMethod) UnmarshalJSON(src [... function NewNullableUpdateRecoveryFlowWithLinkMethod (line 263) | func NewNullableUpdateRecoveryFlowWithLinkMethod(val *UpdateRecoveryFlow... FILE: pkg/client-go/model_update_registration_flow_body.go type UpdateRegistrationFlowBody (line 20) | type UpdateRegistrationFlowBody struct method UnmarshalJSON (line 80) | func (dst *UpdateRegistrationFlowBody) UnmarshalJSON(data []byte) error { method MarshalJSON (line 261) | func (src UpdateRegistrationFlowBody) MarshalJSON() ([]byte, error) { method GetActualInstance (line 294) | func (obj *UpdateRegistrationFlowBody) GetActualInstance() interface{} { method GetActualInstanceValue (line 331) | func (obj UpdateRegistrationFlowBody) GetActualInstanceValue() interfa... function UpdateRegistrationFlowWithCodeMethodAsUpdateRegistrationFlowBody (line 31) | func UpdateRegistrationFlowWithCodeMethodAsUpdateRegistrationFlowBody(v ... function UpdateRegistrationFlowWithOidcMethodAsUpdateRegistrationFlowBody (line 38) | func UpdateRegistrationFlowWithOidcMethodAsUpdateRegistrationFlowBody(v ... function UpdateRegistrationFlowWithPasskeyMethodAsUpdateRegistrationFlowBody (line 45) | func UpdateRegistrationFlowWithPasskeyMethodAsUpdateRegistrationFlowBody... function UpdateRegistrationFlowWithPasswordMethodAsUpdateRegistrationFlowBody (line 52) | func UpdateRegistrationFlowWithPasswordMethodAsUpdateRegistrationFlowBod... function UpdateRegistrationFlowWithProfileMethodAsUpdateRegistrationFlowBody (line 59) | func UpdateRegistrationFlowWithProfileMethodAsUpdateRegistrationFlowBody... function UpdateRegistrationFlowWithSamlMethodAsUpdateRegistrationFlowBody (line 66) | func UpdateRegistrationFlowWithSamlMethodAsUpdateRegistrationFlowBody(v ... function UpdateRegistrationFlowWithWebAuthnMethodAsUpdateRegistrationFlowBody (line 73) | func UpdateRegistrationFlowWithWebAuthnMethodAsUpdateRegistrationFlowBod... type NullableUpdateRegistrationFlowBody (line 364) | type NullableUpdateRegistrationFlowBody struct method Get (line 369) | func (v NullableUpdateRegistrationFlowBody) Get() *UpdateRegistrationF... method Set (line 373) | func (v *NullableUpdateRegistrationFlowBody) Set(val *UpdateRegistrati... method IsSet (line 378) | func (v NullableUpdateRegistrationFlowBody) IsSet() bool { method Unset (line 382) | func (v *NullableUpdateRegistrationFlowBody) Unset() { method MarshalJSON (line 391) | func (v NullableUpdateRegistrationFlowBody) MarshalJSON() ([]byte, err... method UnmarshalJSON (line 395) | func (v *NullableUpdateRegistrationFlowBody) UnmarshalJSON(src []byte)... function NewNullableUpdateRegistrationFlowBody (line 387) | func NewNullableUpdateRegistrationFlowBody(val *UpdateRegistrationFlowBo... FILE: pkg/client-go/model_update_registration_flow_with_code_method.go type UpdateRegistrationFlowWithCodeMethod (line 23) | type UpdateRegistrationFlowWithCodeMethod struct method GetCode (line 61) | func (o *UpdateRegistrationFlowWithCodeMethod) GetCode() string { method GetCodeOk (line 71) | func (o *UpdateRegistrationFlowWithCodeMethod) GetCodeOk() (*string, b... method HasCode (line 79) | func (o *UpdateRegistrationFlowWithCodeMethod) HasCode() bool { method SetCode (line 88) | func (o *UpdateRegistrationFlowWithCodeMethod) SetCode(v string) { method GetCsrfToken (line 93) | func (o *UpdateRegistrationFlowWithCodeMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 103) | func (o *UpdateRegistrationFlowWithCodeMethod) GetCsrfTokenOk() (*stri... method HasCsrfToken (line 111) | func (o *UpdateRegistrationFlowWithCodeMethod) HasCsrfToken() bool { method SetCsrfToken (line 120) | func (o *UpdateRegistrationFlowWithCodeMethod) SetCsrfToken(v string) { method GetMethod (line 125) | func (o *UpdateRegistrationFlowWithCodeMethod) GetMethod() string { method GetMethodOk (line 136) | func (o *UpdateRegistrationFlowWithCodeMethod) GetMethodOk() (*string,... method SetMethod (line 144) | func (o *UpdateRegistrationFlowWithCodeMethod) SetMethod(v string) { method GetResend (line 149) | func (o *UpdateRegistrationFlowWithCodeMethod) GetResend() string { method GetResendOk (line 159) | func (o *UpdateRegistrationFlowWithCodeMethod) GetResendOk() (*string,... method HasResend (line 167) | func (o *UpdateRegistrationFlowWithCodeMethod) HasResend() bool { method SetResend (line 176) | func (o *UpdateRegistrationFlowWithCodeMethod) SetResend(v string) { method GetTraits (line 181) | func (o *UpdateRegistrationFlowWithCodeMethod) GetTraits() map[string]... method GetTraitsOk (line 192) | func (o *UpdateRegistrationFlowWithCodeMethod) GetTraitsOk() (map[stri... method SetTraits (line 200) | func (o *UpdateRegistrationFlowWithCodeMethod) SetTraits(v map[string]... method GetTransientPayload (line 205) | func (o *UpdateRegistrationFlowWithCodeMethod) GetTransientPayload() m... method GetTransientPayloadOk (line 215) | func (o *UpdateRegistrationFlowWithCodeMethod) GetTransientPayloadOk()... method HasTransientPayload (line 223) | func (o *UpdateRegistrationFlowWithCodeMethod) HasTransientPayload() b... method SetTransientPayload (line 232) | func (o *UpdateRegistrationFlowWithCodeMethod) SetTransientPayload(v m... method MarshalJSON (line 236) | func (o UpdateRegistrationFlowWithCodeMethod) MarshalJSON() ([]byte, e... method ToMap (line 244) | func (o UpdateRegistrationFlowWithCodeMethod) ToMap() (map[string]inte... method UnmarshalJSON (line 268) | func (o *UpdateRegistrationFlowWithCodeMethod) UnmarshalJSON(data []by... type _UpdateRegistrationFlowWithCodeMethod (line 39) | type _UpdateRegistrationFlowWithCodeMethod function NewUpdateRegistrationFlowWithCodeMethod (line 45) | func NewUpdateRegistrationFlowWithCodeMethod(method string, traits map[s... function NewUpdateRegistrationFlowWithCodeMethodWithDefaults (line 55) | func NewUpdateRegistrationFlowWithCodeMethodWithDefaults() *UpdateRegist... type NullableUpdateRegistrationFlowWithCodeMethod (line 316) | type NullableUpdateRegistrationFlowWithCodeMethod struct method Get (line 321) | func (v NullableUpdateRegistrationFlowWithCodeMethod) Get() *UpdateReg... method Set (line 325) | func (v *NullableUpdateRegistrationFlowWithCodeMethod) Set(val *Update... method IsSet (line 330) | func (v NullableUpdateRegistrationFlowWithCodeMethod) IsSet() bool { method Unset (line 334) | func (v *NullableUpdateRegistrationFlowWithCodeMethod) Unset() { method MarshalJSON (line 343) | func (v NullableUpdateRegistrationFlowWithCodeMethod) MarshalJSON() ([... method UnmarshalJSON (line 347) | func (v *NullableUpdateRegistrationFlowWithCodeMethod) UnmarshalJSON(s... function NewNullableUpdateRegistrationFlowWithCodeMethod (line 339) | func NewNullableUpdateRegistrationFlowWithCodeMethod(val *UpdateRegistra... FILE: pkg/client-go/model_update_registration_flow_with_oidc_method.go type UpdateRegistrationFlowWithOidcMethod (line 23) | type UpdateRegistrationFlowWithOidcMethod struct method GetCsrfToken (line 65) | func (o *UpdateRegistrationFlowWithOidcMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 75) | func (o *UpdateRegistrationFlowWithOidcMethod) GetCsrfTokenOk() (*stri... method HasCsrfToken (line 83) | func (o *UpdateRegistrationFlowWithOidcMethod) HasCsrfToken() bool { method SetCsrfToken (line 92) | func (o *UpdateRegistrationFlowWithOidcMethod) SetCsrfToken(v string) { method GetIdToken (line 97) | func (o *UpdateRegistrationFlowWithOidcMethod) GetIdToken() string { method GetIdTokenOk (line 107) | func (o *UpdateRegistrationFlowWithOidcMethod) GetIdTokenOk() (*string... method HasIdToken (line 115) | func (o *UpdateRegistrationFlowWithOidcMethod) HasIdToken() bool { method SetIdToken (line 124) | func (o *UpdateRegistrationFlowWithOidcMethod) SetIdToken(v string) { method GetIdTokenNonce (line 129) | func (o *UpdateRegistrationFlowWithOidcMethod) GetIdTokenNonce() string { method GetIdTokenNonceOk (line 139) | func (o *UpdateRegistrationFlowWithOidcMethod) GetIdTokenNonceOk() (*s... method HasIdTokenNonce (line 147) | func (o *UpdateRegistrationFlowWithOidcMethod) HasIdTokenNonce() bool { method SetIdTokenNonce (line 156) | func (o *UpdateRegistrationFlowWithOidcMethod) SetIdTokenNonce(v strin... method GetMethod (line 161) | func (o *UpdateRegistrationFlowWithOidcMethod) GetMethod() string { method GetMethodOk (line 172) | func (o *UpdateRegistrationFlowWithOidcMethod) GetMethodOk() (*string,... method SetMethod (line 180) | func (o *UpdateRegistrationFlowWithOidcMethod) SetMethod(v string) { method GetProvider (line 185) | func (o *UpdateRegistrationFlowWithOidcMethod) GetProvider() string { method GetProviderOk (line 196) | func (o *UpdateRegistrationFlowWithOidcMethod) GetProviderOk() (*strin... method SetProvider (line 204) | func (o *UpdateRegistrationFlowWithOidcMethod) SetProvider(v string) { method GetTraits (line 209) | func (o *UpdateRegistrationFlowWithOidcMethod) GetTraits() map[string]... method GetTraitsOk (line 219) | func (o *UpdateRegistrationFlowWithOidcMethod) GetTraitsOk() (map[stri... method HasTraits (line 227) | func (o *UpdateRegistrationFlowWithOidcMethod) HasTraits() bool { method SetTraits (line 236) | func (o *UpdateRegistrationFlowWithOidcMethod) SetTraits(v map[string]... method GetTransientPayload (line 241) | func (o *UpdateRegistrationFlowWithOidcMethod) GetTransientPayload() m... method GetTransientPayloadOk (line 251) | func (o *UpdateRegistrationFlowWithOidcMethod) GetTransientPayloadOk()... method HasTransientPayload (line 259) | func (o *UpdateRegistrationFlowWithOidcMethod) HasTransientPayload() b... method SetTransientPayload (line 268) | func (o *UpdateRegistrationFlowWithOidcMethod) SetTransientPayload(v m... method GetUpstreamParameters (line 273) | func (o *UpdateRegistrationFlowWithOidcMethod) GetUpstreamParameters()... method GetUpstreamParametersOk (line 283) | func (o *UpdateRegistrationFlowWithOidcMethod) GetUpstreamParametersOk... method HasUpstreamParameters (line 291) | func (o *UpdateRegistrationFlowWithOidcMethod) HasUpstreamParameters()... method SetUpstreamParameters (line 300) | func (o *UpdateRegistrationFlowWithOidcMethod) SetUpstreamParameters(v... method MarshalJSON (line 304) | func (o UpdateRegistrationFlowWithOidcMethod) MarshalJSON() ([]byte, e... method ToMap (line 312) | func (o UpdateRegistrationFlowWithOidcMethod) ToMap() (map[string]inte... method UnmarshalJSON (line 342) | func (o *UpdateRegistrationFlowWithOidcMethod) UnmarshalJSON(data []by... type _UpdateRegistrationFlowWithOidcMethod (line 43) | type _UpdateRegistrationFlowWithOidcMethod function NewUpdateRegistrationFlowWithOidcMethod (line 49) | func NewUpdateRegistrationFlowWithOidcMethod(method string, provider str... function NewUpdateRegistrationFlowWithOidcMethodWithDefaults (line 59) | func NewUpdateRegistrationFlowWithOidcMethodWithDefaults() *UpdateRegist... type NullableUpdateRegistrationFlowWithOidcMethod (line 392) | type NullableUpdateRegistrationFlowWithOidcMethod struct method Get (line 397) | func (v NullableUpdateRegistrationFlowWithOidcMethod) Get() *UpdateReg... method Set (line 401) | func (v *NullableUpdateRegistrationFlowWithOidcMethod) Set(val *Update... method IsSet (line 406) | func (v NullableUpdateRegistrationFlowWithOidcMethod) IsSet() bool { method Unset (line 410) | func (v *NullableUpdateRegistrationFlowWithOidcMethod) Unset() { method MarshalJSON (line 419) | func (v NullableUpdateRegistrationFlowWithOidcMethod) MarshalJSON() ([... method UnmarshalJSON (line 423) | func (v *NullableUpdateRegistrationFlowWithOidcMethod) UnmarshalJSON(s... function NewNullableUpdateRegistrationFlowWithOidcMethod (line 415) | func NewNullableUpdateRegistrationFlowWithOidcMethod(val *UpdateRegistra... FILE: pkg/client-go/model_update_registration_flow_with_passkey_method.go type UpdateRegistrationFlowWithPasskeyMethod (line 23) | type UpdateRegistrationFlowWithPasskeyMethod struct method GetCsrfToken (line 59) | func (o *UpdateRegistrationFlowWithPasskeyMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 69) | func (o *UpdateRegistrationFlowWithPasskeyMethod) GetCsrfTokenOk() (*s... method HasCsrfToken (line 77) | func (o *UpdateRegistrationFlowWithPasskeyMethod) HasCsrfToken() bool { method SetCsrfToken (line 86) | func (o *UpdateRegistrationFlowWithPasskeyMethod) SetCsrfToken(v strin... method GetMethod (line 91) | func (o *UpdateRegistrationFlowWithPasskeyMethod) GetMethod() string { method GetMethodOk (line 102) | func (o *UpdateRegistrationFlowWithPasskeyMethod) GetMethodOk() (*stri... method SetMethod (line 110) | func (o *UpdateRegistrationFlowWithPasskeyMethod) SetMethod(v string) { method GetPasskeyRegister (line 115) | func (o *UpdateRegistrationFlowWithPasskeyMethod) GetPasskeyRegister()... method GetPasskeyRegisterOk (line 125) | func (o *UpdateRegistrationFlowWithPasskeyMethod) GetPasskeyRegisterOk... method HasPasskeyRegister (line 133) | func (o *UpdateRegistrationFlowWithPasskeyMethod) HasPasskeyRegister()... method SetPasskeyRegister (line 142) | func (o *UpdateRegistrationFlowWithPasskeyMethod) SetPasskeyRegister(v... method GetTraits (line 147) | func (o *UpdateRegistrationFlowWithPasskeyMethod) GetTraits() map[stri... method GetTraitsOk (line 158) | func (o *UpdateRegistrationFlowWithPasskeyMethod) GetTraitsOk() (map[s... method SetTraits (line 166) | func (o *UpdateRegistrationFlowWithPasskeyMethod) SetTraits(v map[stri... method GetTransientPayload (line 171) | func (o *UpdateRegistrationFlowWithPasskeyMethod) GetTransientPayload(... method GetTransientPayloadOk (line 181) | func (o *UpdateRegistrationFlowWithPasskeyMethod) GetTransientPayloadO... method HasTransientPayload (line 189) | func (o *UpdateRegistrationFlowWithPasskeyMethod) HasTransientPayload(... method SetTransientPayload (line 198) | func (o *UpdateRegistrationFlowWithPasskeyMethod) SetTransientPayload(... method MarshalJSON (line 202) | func (o UpdateRegistrationFlowWithPasskeyMethod) MarshalJSON() ([]byte... method ToMap (line 210) | func (o UpdateRegistrationFlowWithPasskeyMethod) ToMap() (map[string]i... method UnmarshalJSON (line 231) | func (o *UpdateRegistrationFlowWithPasskeyMethod) UnmarshalJSON(data [... type _UpdateRegistrationFlowWithPasskeyMethod (line 37) | type _UpdateRegistrationFlowWithPasskeyMethod function NewUpdateRegistrationFlowWithPasskeyMethod (line 43) | func NewUpdateRegistrationFlowWithPasskeyMethod(method string, traits ma... function NewUpdateRegistrationFlowWithPasskeyMethodWithDefaults (line 53) | func NewUpdateRegistrationFlowWithPasskeyMethodWithDefaults() *UpdateReg... type NullableUpdateRegistrationFlowWithPasskeyMethod (line 278) | type NullableUpdateRegistrationFlowWithPasskeyMethod struct method Get (line 283) | func (v NullableUpdateRegistrationFlowWithPasskeyMethod) Get() *Update... method Set (line 287) | func (v *NullableUpdateRegistrationFlowWithPasskeyMethod) Set(val *Upd... method IsSet (line 292) | func (v NullableUpdateRegistrationFlowWithPasskeyMethod) IsSet() bool { method Unset (line 296) | func (v *NullableUpdateRegistrationFlowWithPasskeyMethod) Unset() { method MarshalJSON (line 305) | func (v NullableUpdateRegistrationFlowWithPasskeyMethod) MarshalJSON()... method UnmarshalJSON (line 309) | func (v *NullableUpdateRegistrationFlowWithPasskeyMethod) UnmarshalJSO... function NewNullableUpdateRegistrationFlowWithPasskeyMethod (line 301) | func NewNullableUpdateRegistrationFlowWithPasskeyMethod(val *UpdateRegis... FILE: pkg/client-go/model_update_registration_flow_with_password_method.go type UpdateRegistrationFlowWithPasswordMethod (line 23) | type UpdateRegistrationFlowWithPasswordMethod struct method GetCsrfToken (line 60) | func (o *UpdateRegistrationFlowWithPasswordMethod) GetCsrfToken() stri... method GetCsrfTokenOk (line 70) | func (o *UpdateRegistrationFlowWithPasswordMethod) GetCsrfTokenOk() (*... method HasCsrfToken (line 78) | func (o *UpdateRegistrationFlowWithPasswordMethod) HasCsrfToken() bool { method SetCsrfToken (line 87) | func (o *UpdateRegistrationFlowWithPasswordMethod) SetCsrfToken(v stri... method GetMethod (line 92) | func (o *UpdateRegistrationFlowWithPasswordMethod) GetMethod() string { method GetMethodOk (line 103) | func (o *UpdateRegistrationFlowWithPasswordMethod) GetMethodOk() (*str... method SetMethod (line 111) | func (o *UpdateRegistrationFlowWithPasswordMethod) SetMethod(v string) { method GetPassword (line 116) | func (o *UpdateRegistrationFlowWithPasswordMethod) GetPassword() string { method GetPasswordOk (line 127) | func (o *UpdateRegistrationFlowWithPasswordMethod) GetPasswordOk() (*s... method SetPassword (line 135) | func (o *UpdateRegistrationFlowWithPasswordMethod) SetPassword(v strin... method GetTraits (line 140) | func (o *UpdateRegistrationFlowWithPasswordMethod) GetTraits() map[str... method GetTraitsOk (line 151) | func (o *UpdateRegistrationFlowWithPasswordMethod) GetTraitsOk() (map[... method SetTraits (line 159) | func (o *UpdateRegistrationFlowWithPasswordMethod) SetTraits(v map[str... method GetTransientPayload (line 164) | func (o *UpdateRegistrationFlowWithPasswordMethod) GetTransientPayload... method GetTransientPayloadOk (line 174) | func (o *UpdateRegistrationFlowWithPasswordMethod) GetTransientPayload... method HasTransientPayload (line 182) | func (o *UpdateRegistrationFlowWithPasswordMethod) HasTransientPayload... method SetTransientPayload (line 191) | func (o *UpdateRegistrationFlowWithPasswordMethod) SetTransientPayload... method MarshalJSON (line 195) | func (o UpdateRegistrationFlowWithPasswordMethod) MarshalJSON() ([]byt... method ToMap (line 203) | func (o UpdateRegistrationFlowWithPasswordMethod) ToMap() (map[string]... method UnmarshalJSON (line 222) | func (o *UpdateRegistrationFlowWithPasswordMethod) UnmarshalJSON(data ... type _UpdateRegistrationFlowWithPasswordMethod (line 37) | type _UpdateRegistrationFlowWithPasswordMethod function NewUpdateRegistrationFlowWithPasswordMethod (line 43) | func NewUpdateRegistrationFlowWithPasswordMethod(method string, password... function NewUpdateRegistrationFlowWithPasswordMethodWithDefaults (line 54) | func NewUpdateRegistrationFlowWithPasswordMethodWithDefaults() *UpdateRe... type NullableUpdateRegistrationFlowWithPasswordMethod (line 270) | type NullableUpdateRegistrationFlowWithPasswordMethod struct method Get (line 275) | func (v NullableUpdateRegistrationFlowWithPasswordMethod) Get() *Updat... method Set (line 279) | func (v *NullableUpdateRegistrationFlowWithPasswordMethod) Set(val *Up... method IsSet (line 284) | func (v NullableUpdateRegistrationFlowWithPasswordMethod) IsSet() bool { method Unset (line 288) | func (v *NullableUpdateRegistrationFlowWithPasswordMethod) Unset() { method MarshalJSON (line 297) | func (v NullableUpdateRegistrationFlowWithPasswordMethod) MarshalJSON(... method UnmarshalJSON (line 301) | func (v *NullableUpdateRegistrationFlowWithPasswordMethod) UnmarshalJS... function NewNullableUpdateRegistrationFlowWithPasswordMethod (line 293) | func NewNullableUpdateRegistrationFlowWithPasswordMethod(val *UpdateRegi... FILE: pkg/client-go/model_update_registration_flow_with_profile_method.go type UpdateRegistrationFlowWithProfileMethod (line 23) | type UpdateRegistrationFlowWithProfileMethod struct method GetCsrfToken (line 59) | func (o *UpdateRegistrationFlowWithProfileMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 69) | func (o *UpdateRegistrationFlowWithProfileMethod) GetCsrfTokenOk() (*s... method HasCsrfToken (line 77) | func (o *UpdateRegistrationFlowWithProfileMethod) HasCsrfToken() bool { method SetCsrfToken (line 86) | func (o *UpdateRegistrationFlowWithProfileMethod) SetCsrfToken(v strin... method GetMethod (line 91) | func (o *UpdateRegistrationFlowWithProfileMethod) GetMethod() string { method GetMethodOk (line 102) | func (o *UpdateRegistrationFlowWithProfileMethod) GetMethodOk() (*stri... method SetMethod (line 110) | func (o *UpdateRegistrationFlowWithProfileMethod) SetMethod(v string) { method GetScreen (line 115) | func (o *UpdateRegistrationFlowWithProfileMethod) GetScreen() string { method GetScreenOk (line 125) | func (o *UpdateRegistrationFlowWithProfileMethod) GetScreenOk() (*stri... method HasScreen (line 133) | func (o *UpdateRegistrationFlowWithProfileMethod) HasScreen() bool { method SetScreen (line 142) | func (o *UpdateRegistrationFlowWithProfileMethod) SetScreen(v string) { method GetTraits (line 147) | func (o *UpdateRegistrationFlowWithProfileMethod) GetTraits() map[stri... method GetTraitsOk (line 158) | func (o *UpdateRegistrationFlowWithProfileMethod) GetTraitsOk() (map[s... method SetTraits (line 166) | func (o *UpdateRegistrationFlowWithProfileMethod) SetTraits(v map[stri... method GetTransientPayload (line 171) | func (o *UpdateRegistrationFlowWithProfileMethod) GetTransientPayload(... method GetTransientPayloadOk (line 181) | func (o *UpdateRegistrationFlowWithProfileMethod) GetTransientPayloadO... method HasTransientPayload (line 189) | func (o *UpdateRegistrationFlowWithProfileMethod) HasTransientPayload(... method SetTransientPayload (line 198) | func (o *UpdateRegistrationFlowWithProfileMethod) SetTransientPayload(... method MarshalJSON (line 202) | func (o UpdateRegistrationFlowWithProfileMethod) MarshalJSON() ([]byte... method ToMap (line 210) | func (o UpdateRegistrationFlowWithProfileMethod) ToMap() (map[string]i... method UnmarshalJSON (line 231) | func (o *UpdateRegistrationFlowWithProfileMethod) UnmarshalJSON(data [... type _UpdateRegistrationFlowWithProfileMethod (line 37) | type _UpdateRegistrationFlowWithProfileMethod function NewUpdateRegistrationFlowWithProfileMethod (line 43) | func NewUpdateRegistrationFlowWithProfileMethod(method string, traits ma... function NewUpdateRegistrationFlowWithProfileMethodWithDefaults (line 53) | func NewUpdateRegistrationFlowWithProfileMethodWithDefaults() *UpdateReg... type NullableUpdateRegistrationFlowWithProfileMethod (line 278) | type NullableUpdateRegistrationFlowWithProfileMethod struct method Get (line 283) | func (v NullableUpdateRegistrationFlowWithProfileMethod) Get() *Update... method Set (line 287) | func (v *NullableUpdateRegistrationFlowWithProfileMethod) Set(val *Upd... method IsSet (line 292) | func (v NullableUpdateRegistrationFlowWithProfileMethod) IsSet() bool { method Unset (line 296) | func (v *NullableUpdateRegistrationFlowWithProfileMethod) Unset() { method MarshalJSON (line 305) | func (v NullableUpdateRegistrationFlowWithProfileMethod) MarshalJSON()... method UnmarshalJSON (line 309) | func (v *NullableUpdateRegistrationFlowWithProfileMethod) UnmarshalJSO... function NewNullableUpdateRegistrationFlowWithProfileMethod (line 301) | func NewNullableUpdateRegistrationFlowWithProfileMethod(val *UpdateRegis... FILE: pkg/client-go/model_update_registration_flow_with_saml_method.go type UpdateRegistrationFlowWithSamlMethod (line 23) | type UpdateRegistrationFlowWithSamlMethod struct method GetCsrfToken (line 59) | func (o *UpdateRegistrationFlowWithSamlMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 69) | func (o *UpdateRegistrationFlowWithSamlMethod) GetCsrfTokenOk() (*stri... method HasCsrfToken (line 77) | func (o *UpdateRegistrationFlowWithSamlMethod) HasCsrfToken() bool { method SetCsrfToken (line 86) | func (o *UpdateRegistrationFlowWithSamlMethod) SetCsrfToken(v string) { method GetMethod (line 91) | func (o *UpdateRegistrationFlowWithSamlMethod) GetMethod() string { method GetMethodOk (line 102) | func (o *UpdateRegistrationFlowWithSamlMethod) GetMethodOk() (*string,... method SetMethod (line 110) | func (o *UpdateRegistrationFlowWithSamlMethod) SetMethod(v string) { method GetProvider (line 115) | func (o *UpdateRegistrationFlowWithSamlMethod) GetProvider() string { method GetProviderOk (line 126) | func (o *UpdateRegistrationFlowWithSamlMethod) GetProviderOk() (*strin... method SetProvider (line 134) | func (o *UpdateRegistrationFlowWithSamlMethod) SetProvider(v string) { method GetTraits (line 139) | func (o *UpdateRegistrationFlowWithSamlMethod) GetTraits() map[string]... method GetTraitsOk (line 149) | func (o *UpdateRegistrationFlowWithSamlMethod) GetTraitsOk() (map[stri... method HasTraits (line 157) | func (o *UpdateRegistrationFlowWithSamlMethod) HasTraits() bool { method SetTraits (line 166) | func (o *UpdateRegistrationFlowWithSamlMethod) SetTraits(v map[string]... method GetTransientPayload (line 171) | func (o *UpdateRegistrationFlowWithSamlMethod) GetTransientPayload() m... method GetTransientPayloadOk (line 181) | func (o *UpdateRegistrationFlowWithSamlMethod) GetTransientPayloadOk()... method HasTransientPayload (line 189) | func (o *UpdateRegistrationFlowWithSamlMethod) HasTransientPayload() b... method SetTransientPayload (line 198) | func (o *UpdateRegistrationFlowWithSamlMethod) SetTransientPayload(v m... method MarshalJSON (line 202) | func (o UpdateRegistrationFlowWithSamlMethod) MarshalJSON() ([]byte, e... method ToMap (line 210) | func (o UpdateRegistrationFlowWithSamlMethod) ToMap() (map[string]inte... method UnmarshalJSON (line 231) | func (o *UpdateRegistrationFlowWithSamlMethod) UnmarshalJSON(data []by... type _UpdateRegistrationFlowWithSamlMethod (line 37) | type _UpdateRegistrationFlowWithSamlMethod function NewUpdateRegistrationFlowWithSamlMethod (line 43) | func NewUpdateRegistrationFlowWithSamlMethod(method string, provider str... function NewUpdateRegistrationFlowWithSamlMethodWithDefaults (line 53) | func NewUpdateRegistrationFlowWithSamlMethodWithDefaults() *UpdateRegist... type NullableUpdateRegistrationFlowWithSamlMethod (line 278) | type NullableUpdateRegistrationFlowWithSamlMethod struct method Get (line 283) | func (v NullableUpdateRegistrationFlowWithSamlMethod) Get() *UpdateReg... method Set (line 287) | func (v *NullableUpdateRegistrationFlowWithSamlMethod) Set(val *Update... method IsSet (line 292) | func (v NullableUpdateRegistrationFlowWithSamlMethod) IsSet() bool { method Unset (line 296) | func (v *NullableUpdateRegistrationFlowWithSamlMethod) Unset() { method MarshalJSON (line 305) | func (v NullableUpdateRegistrationFlowWithSamlMethod) MarshalJSON() ([... method UnmarshalJSON (line 309) | func (v *NullableUpdateRegistrationFlowWithSamlMethod) UnmarshalJSON(s... function NewNullableUpdateRegistrationFlowWithSamlMethod (line 301) | func NewNullableUpdateRegistrationFlowWithSamlMethod(val *UpdateRegistra... FILE: pkg/client-go/model_update_registration_flow_with_web_authn_method.go type UpdateRegistrationFlowWithWebAuthnMethod (line 23) | type UpdateRegistrationFlowWithWebAuthnMethod struct method GetCsrfToken (line 61) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetCsrfToken() stri... method GetCsrfTokenOk (line 71) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetCsrfTokenOk() (*... method HasCsrfToken (line 79) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) HasCsrfToken() bool { method SetCsrfToken (line 88) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) SetCsrfToken(v stri... method GetMethod (line 93) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetMethod() string { method GetMethodOk (line 104) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetMethodOk() (*str... method SetMethod (line 112) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) SetMethod(v string) { method GetTraits (line 117) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetTraits() map[str... method GetTraitsOk (line 128) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetTraitsOk() (map[... method SetTraits (line 136) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) SetTraits(v map[str... method GetTransientPayload (line 141) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetTransientPayload... method GetTransientPayloadOk (line 151) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetTransientPayload... method HasTransientPayload (line 159) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) HasTransientPayload... method SetTransientPayload (line 168) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) SetTransientPayload... method GetWebauthnRegister (line 173) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetWebauthnRegister... method GetWebauthnRegisterOk (line 183) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetWebauthnRegister... method HasWebauthnRegister (line 191) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) HasWebauthnRegister... method SetWebauthnRegister (line 200) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) SetWebauthnRegister... method GetWebauthnRegisterDisplayname (line 205) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetWebauthnRegister... method GetWebauthnRegisterDisplaynameOk (line 215) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetWebauthnRegister... method HasWebauthnRegisterDisplayname (line 223) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) HasWebauthnRegister... method SetWebauthnRegisterDisplayname (line 232) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) SetWebauthnRegister... method MarshalJSON (line 236) | func (o UpdateRegistrationFlowWithWebAuthnMethod) MarshalJSON() ([]byt... method ToMap (line 244) | func (o UpdateRegistrationFlowWithWebAuthnMethod) ToMap() (map[string]... method UnmarshalJSON (line 268) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) UnmarshalJSON(data ... type _UpdateRegistrationFlowWithWebAuthnMethod (line 39) | type _UpdateRegistrationFlowWithWebAuthnMethod function NewUpdateRegistrationFlowWithWebAuthnMethod (line 45) | func NewUpdateRegistrationFlowWithWebAuthnMethod(method string, traits m... function NewUpdateRegistrationFlowWithWebAuthnMethodWithDefaults (line 55) | func NewUpdateRegistrationFlowWithWebAuthnMethodWithDefaults() *UpdateRe... type NullableUpdateRegistrationFlowWithWebAuthnMethod (line 316) | type NullableUpdateRegistrationFlowWithWebAuthnMethod struct method Get (line 321) | func (v NullableUpdateRegistrationFlowWithWebAuthnMethod) Get() *Updat... method Set (line 325) | func (v *NullableUpdateRegistrationFlowWithWebAuthnMethod) Set(val *Up... method IsSet (line 330) | func (v NullableUpdateRegistrationFlowWithWebAuthnMethod) IsSet() bool { method Unset (line 334) | func (v *NullableUpdateRegistrationFlowWithWebAuthnMethod) Unset() { method MarshalJSON (line 343) | func (v NullableUpdateRegistrationFlowWithWebAuthnMethod) MarshalJSON(... method UnmarshalJSON (line 347) | func (v *NullableUpdateRegistrationFlowWithWebAuthnMethod) UnmarshalJS... function NewNullableUpdateRegistrationFlowWithWebAuthnMethod (line 339) | func NewNullableUpdateRegistrationFlowWithWebAuthnMethod(val *UpdateRegi... FILE: pkg/client-go/model_update_settings_flow_body.go type UpdateSettingsFlowBody (line 20) | type UpdateSettingsFlowBody struct method UnmarshalJSON (line 88) | func (dst *UpdateSettingsFlowBody) UnmarshalJSON(data []byte) error { method MarshalJSON (line 293) | func (src UpdateSettingsFlowBody) MarshalJSON() ([]byte, error) { method GetActualInstance (line 330) | func (obj *UpdateSettingsFlowBody) GetActualInstance() interface{} { method GetActualInstanceValue (line 371) | func (obj UpdateSettingsFlowBody) GetActualInstanceValue() interface{} { function UpdateSettingsFlowWithLookupMethodAsUpdateSettingsFlowBody (line 32) | func UpdateSettingsFlowWithLookupMethodAsUpdateSettingsFlowBody(v *Updat... function UpdateSettingsFlowWithOidcMethodAsUpdateSettingsFlowBody (line 39) | func UpdateSettingsFlowWithOidcMethodAsUpdateSettingsFlowBody(v *UpdateS... function UpdateSettingsFlowWithPasskeyMethodAsUpdateSettingsFlowBody (line 46) | func UpdateSettingsFlowWithPasskeyMethodAsUpdateSettingsFlowBody(v *Upda... function UpdateSettingsFlowWithPasswordMethodAsUpdateSettingsFlowBody (line 53) | func UpdateSettingsFlowWithPasswordMethodAsUpdateSettingsFlowBody(v *Upd... function UpdateSettingsFlowWithProfileMethodAsUpdateSettingsFlowBody (line 60) | func UpdateSettingsFlowWithProfileMethodAsUpdateSettingsFlowBody(v *Upda... function UpdateSettingsFlowWithSamlMethodAsUpdateSettingsFlowBody (line 67) | func UpdateSettingsFlowWithSamlMethodAsUpdateSettingsFlowBody(v *UpdateS... function UpdateSettingsFlowWithTotpMethodAsUpdateSettingsFlowBody (line 74) | func UpdateSettingsFlowWithTotpMethodAsUpdateSettingsFlowBody(v *UpdateS... function UpdateSettingsFlowWithWebAuthnMethodAsUpdateSettingsFlowBody (line 81) | func UpdateSettingsFlowWithWebAuthnMethodAsUpdateSettingsFlowBody(v *Upd... type NullableUpdateSettingsFlowBody (line 408) | type NullableUpdateSettingsFlowBody struct method Get (line 413) | func (v NullableUpdateSettingsFlowBody) Get() *UpdateSettingsFlowBody { method Set (line 417) | func (v *NullableUpdateSettingsFlowBody) Set(val *UpdateSettingsFlowBo... method IsSet (line 422) | func (v NullableUpdateSettingsFlowBody) IsSet() bool { method Unset (line 426) | func (v *NullableUpdateSettingsFlowBody) Unset() { method MarshalJSON (line 435) | func (v NullableUpdateSettingsFlowBody) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 439) | func (v *NullableUpdateSettingsFlowBody) UnmarshalJSON(src []byte) err... function NewNullableUpdateSettingsFlowBody (line 431) | func NewNullableUpdateSettingsFlowBody(val *UpdateSettingsFlowBody) *Nul... FILE: pkg/client-go/model_update_settings_flow_with_lookup_method.go type UpdateSettingsFlowWithLookupMethod (line 23) | type UpdateSettingsFlowWithLookupMethod struct method GetCsrfToken (line 62) | func (o *UpdateSettingsFlowWithLookupMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 72) | func (o *UpdateSettingsFlowWithLookupMethod) GetCsrfTokenOk() (*string... method HasCsrfToken (line 80) | func (o *UpdateSettingsFlowWithLookupMethod) HasCsrfToken() bool { method SetCsrfToken (line 89) | func (o *UpdateSettingsFlowWithLookupMethod) SetCsrfToken(v string) { method GetLookupSecretConfirm (line 94) | func (o *UpdateSettingsFlowWithLookupMethod) GetLookupSecretConfirm() ... method GetLookupSecretConfirmOk (line 104) | func (o *UpdateSettingsFlowWithLookupMethod) GetLookupSecretConfirmOk(... method HasLookupSecretConfirm (line 112) | func (o *UpdateSettingsFlowWithLookupMethod) HasLookupSecretConfirm() ... method SetLookupSecretConfirm (line 121) | func (o *UpdateSettingsFlowWithLookupMethod) SetLookupSecretConfirm(v ... method GetLookupSecretDisable (line 126) | func (o *UpdateSettingsFlowWithLookupMethod) GetLookupSecretDisable() ... method GetLookupSecretDisableOk (line 136) | func (o *UpdateSettingsFlowWithLookupMethod) GetLookupSecretDisableOk(... method HasLookupSecretDisable (line 144) | func (o *UpdateSettingsFlowWithLookupMethod) HasLookupSecretDisable() ... method SetLookupSecretDisable (line 153) | func (o *UpdateSettingsFlowWithLookupMethod) SetLookupSecretDisable(v ... method GetLookupSecretRegenerate (line 158) | func (o *UpdateSettingsFlowWithLookupMethod) GetLookupSecretRegenerate... method GetLookupSecretRegenerateOk (line 168) | func (o *UpdateSettingsFlowWithLookupMethod) GetLookupSecretRegenerate... method HasLookupSecretRegenerate (line 176) | func (o *UpdateSettingsFlowWithLookupMethod) HasLookupSecretRegenerate... method SetLookupSecretRegenerate (line 185) | func (o *UpdateSettingsFlowWithLookupMethod) SetLookupSecretRegenerate... method GetLookupSecretReveal (line 190) | func (o *UpdateSettingsFlowWithLookupMethod) GetLookupSecretReveal() b... method GetLookupSecretRevealOk (line 200) | func (o *UpdateSettingsFlowWithLookupMethod) GetLookupSecretRevealOk()... method HasLookupSecretReveal (line 208) | func (o *UpdateSettingsFlowWithLookupMethod) HasLookupSecretReveal() b... method SetLookupSecretReveal (line 217) | func (o *UpdateSettingsFlowWithLookupMethod) SetLookupSecretReveal(v b... method GetMethod (line 222) | func (o *UpdateSettingsFlowWithLookupMethod) GetMethod() string { method GetMethodOk (line 233) | func (o *UpdateSettingsFlowWithLookupMethod) GetMethodOk() (*string, b... method SetMethod (line 241) | func (o *UpdateSettingsFlowWithLookupMethod) SetMethod(v string) { method GetTransientPayload (line 246) | func (o *UpdateSettingsFlowWithLookupMethod) GetTransientPayload() map... method GetTransientPayloadOk (line 256) | func (o *UpdateSettingsFlowWithLookupMethod) GetTransientPayloadOk() (... method HasTransientPayload (line 264) | func (o *UpdateSettingsFlowWithLookupMethod) HasTransientPayload() bool { method SetTransientPayload (line 273) | func (o *UpdateSettingsFlowWithLookupMethod) SetTransientPayload(v map... method MarshalJSON (line 277) | func (o UpdateSettingsFlowWithLookupMethod) MarshalJSON() ([]byte, err... method ToMap (line 285) | func (o UpdateSettingsFlowWithLookupMethod) ToMap() (map[string]interf... method UnmarshalJSON (line 314) | func (o *UpdateSettingsFlowWithLookupMethod) UnmarshalJSON(data []byte... type _UpdateSettingsFlowWithLookupMethod (line 41) | type _UpdateSettingsFlowWithLookupMethod function NewUpdateSettingsFlowWithLookupMethod (line 47) | func NewUpdateSettingsFlowWithLookupMethod(method string) *UpdateSetting... function NewUpdateSettingsFlowWithLookupMethodWithDefaults (line 56) | func NewUpdateSettingsFlowWithLookupMethodWithDefaults() *UpdateSettings... type NullableUpdateSettingsFlowWithLookupMethod (line 362) | type NullableUpdateSettingsFlowWithLookupMethod struct method Get (line 367) | func (v NullableUpdateSettingsFlowWithLookupMethod) Get() *UpdateSetti... method Set (line 371) | func (v *NullableUpdateSettingsFlowWithLookupMethod) Set(val *UpdateSe... method IsSet (line 376) | func (v NullableUpdateSettingsFlowWithLookupMethod) IsSet() bool { method Unset (line 380) | func (v *NullableUpdateSettingsFlowWithLookupMethod) Unset() { method MarshalJSON (line 389) | func (v NullableUpdateSettingsFlowWithLookupMethod) MarshalJSON() ([]b... method UnmarshalJSON (line 393) | func (v *NullableUpdateSettingsFlowWithLookupMethod) UnmarshalJSON(src... function NewNullableUpdateSettingsFlowWithLookupMethod (line 385) | func NewNullableUpdateSettingsFlowWithLookupMethod(val *UpdateSettingsFl... FILE: pkg/client-go/model_update_settings_flow_with_oidc_method.go type UpdateSettingsFlowWithOidcMethod (line 23) | type UpdateSettingsFlowWithOidcMethod struct method GetFlow (line 62) | func (o *UpdateSettingsFlowWithOidcMethod) GetFlow() string { method GetFlowOk (line 72) | func (o *UpdateSettingsFlowWithOidcMethod) GetFlowOk() (*string, bool) { method HasFlow (line 80) | func (o *UpdateSettingsFlowWithOidcMethod) HasFlow() bool { method SetFlow (line 89) | func (o *UpdateSettingsFlowWithOidcMethod) SetFlow(v string) { method GetLink (line 94) | func (o *UpdateSettingsFlowWithOidcMethod) GetLink() string { method GetLinkOk (line 104) | func (o *UpdateSettingsFlowWithOidcMethod) GetLinkOk() (*string, bool) { method HasLink (line 112) | func (o *UpdateSettingsFlowWithOidcMethod) HasLink() bool { method SetLink (line 121) | func (o *UpdateSettingsFlowWithOidcMethod) SetLink(v string) { method GetMethod (line 126) | func (o *UpdateSettingsFlowWithOidcMethod) GetMethod() string { method GetMethodOk (line 137) | func (o *UpdateSettingsFlowWithOidcMethod) GetMethodOk() (*string, boo... method SetMethod (line 145) | func (o *UpdateSettingsFlowWithOidcMethod) SetMethod(v string) { method GetTraits (line 150) | func (o *UpdateSettingsFlowWithOidcMethod) GetTraits() map[string]inte... method GetTraitsOk (line 160) | func (o *UpdateSettingsFlowWithOidcMethod) GetTraitsOk() (map[string]i... method HasTraits (line 168) | func (o *UpdateSettingsFlowWithOidcMethod) HasTraits() bool { method SetTraits (line 177) | func (o *UpdateSettingsFlowWithOidcMethod) SetTraits(v map[string]inte... method GetTransientPayload (line 182) | func (o *UpdateSettingsFlowWithOidcMethod) GetTransientPayload() map[s... method GetTransientPayloadOk (line 192) | func (o *UpdateSettingsFlowWithOidcMethod) GetTransientPayloadOk() (ma... method HasTransientPayload (line 200) | func (o *UpdateSettingsFlowWithOidcMethod) HasTransientPayload() bool { method SetTransientPayload (line 209) | func (o *UpdateSettingsFlowWithOidcMethod) SetTransientPayload(v map[s... method GetUnlink (line 214) | func (o *UpdateSettingsFlowWithOidcMethod) GetUnlink() string { method GetUnlinkOk (line 224) | func (o *UpdateSettingsFlowWithOidcMethod) GetUnlinkOk() (*string, boo... method HasUnlink (line 232) | func (o *UpdateSettingsFlowWithOidcMethod) HasUnlink() bool { method SetUnlink (line 241) | func (o *UpdateSettingsFlowWithOidcMethod) SetUnlink(v string) { method GetUpstreamParameters (line 246) | func (o *UpdateSettingsFlowWithOidcMethod) GetUpstreamParameters() map... method GetUpstreamParametersOk (line 256) | func (o *UpdateSettingsFlowWithOidcMethod) GetUpstreamParametersOk() (... method HasUpstreamParameters (line 264) | func (o *UpdateSettingsFlowWithOidcMethod) HasUpstreamParameters() bool { method SetUpstreamParameters (line 273) | func (o *UpdateSettingsFlowWithOidcMethod) SetUpstreamParameters(v map... method MarshalJSON (line 277) | func (o UpdateSettingsFlowWithOidcMethod) MarshalJSON() ([]byte, error) { method ToMap (line 285) | func (o UpdateSettingsFlowWithOidcMethod) ToMap() (map[string]interfac... method UnmarshalJSON (line 314) | func (o *UpdateSettingsFlowWithOidcMethod) UnmarshalJSON(data []byte) ... type _UpdateSettingsFlowWithOidcMethod (line 41) | type _UpdateSettingsFlowWithOidcMethod function NewUpdateSettingsFlowWithOidcMethod (line 47) | func NewUpdateSettingsFlowWithOidcMethod(method string) *UpdateSettingsF... function NewUpdateSettingsFlowWithOidcMethodWithDefaults (line 56) | func NewUpdateSettingsFlowWithOidcMethodWithDefaults() *UpdateSettingsFl... type NullableUpdateSettingsFlowWithOidcMethod (line 362) | type NullableUpdateSettingsFlowWithOidcMethod struct method Get (line 367) | func (v NullableUpdateSettingsFlowWithOidcMethod) Get() *UpdateSetting... method Set (line 371) | func (v *NullableUpdateSettingsFlowWithOidcMethod) Set(val *UpdateSett... method IsSet (line 376) | func (v NullableUpdateSettingsFlowWithOidcMethod) IsSet() bool { method Unset (line 380) | func (v *NullableUpdateSettingsFlowWithOidcMethod) Unset() { method MarshalJSON (line 389) | func (v NullableUpdateSettingsFlowWithOidcMethod) MarshalJSON() ([]byt... method UnmarshalJSON (line 393) | func (v *NullableUpdateSettingsFlowWithOidcMethod) UnmarshalJSON(src [... function NewNullableUpdateSettingsFlowWithOidcMethod (line 385) | func NewNullableUpdateSettingsFlowWithOidcMethod(val *UpdateSettingsFlow... FILE: pkg/client-go/model_update_settings_flow_with_passkey_method.go type UpdateSettingsFlowWithPasskeyMethod (line 23) | type UpdateSettingsFlowWithPasskeyMethod struct method GetCsrfToken (line 56) | func (o *UpdateSettingsFlowWithPasskeyMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 66) | func (o *UpdateSettingsFlowWithPasskeyMethod) GetCsrfTokenOk() (*strin... method HasCsrfToken (line 74) | func (o *UpdateSettingsFlowWithPasskeyMethod) HasCsrfToken() bool { method SetCsrfToken (line 83) | func (o *UpdateSettingsFlowWithPasskeyMethod) SetCsrfToken(v string) { method GetMethod (line 88) | func (o *UpdateSettingsFlowWithPasskeyMethod) GetMethod() string { method GetMethodOk (line 99) | func (o *UpdateSettingsFlowWithPasskeyMethod) GetMethodOk() (*string, ... method SetMethod (line 107) | func (o *UpdateSettingsFlowWithPasskeyMethod) SetMethod(v string) { method GetPasskeyRemove (line 112) | func (o *UpdateSettingsFlowWithPasskeyMethod) GetPasskeyRemove() string { method GetPasskeyRemoveOk (line 122) | func (o *UpdateSettingsFlowWithPasskeyMethod) GetPasskeyRemoveOk() (*s... method HasPasskeyRemove (line 130) | func (o *UpdateSettingsFlowWithPasskeyMethod) HasPasskeyRemove() bool { method SetPasskeyRemove (line 139) | func (o *UpdateSettingsFlowWithPasskeyMethod) SetPasskeyRemove(v strin... method GetPasskeySettingsRegister (line 144) | func (o *UpdateSettingsFlowWithPasskeyMethod) GetPasskeySettingsRegist... method GetPasskeySettingsRegisterOk (line 154) | func (o *UpdateSettingsFlowWithPasskeyMethod) GetPasskeySettingsRegist... method HasPasskeySettingsRegister (line 162) | func (o *UpdateSettingsFlowWithPasskeyMethod) HasPasskeySettingsRegist... method SetPasskeySettingsRegister (line 171) | func (o *UpdateSettingsFlowWithPasskeyMethod) SetPasskeySettingsRegist... method MarshalJSON (line 175) | func (o UpdateSettingsFlowWithPasskeyMethod) MarshalJSON() ([]byte, er... method ToMap (line 183) | func (o UpdateSettingsFlowWithPasskeyMethod) ToMap() (map[string]inter... method UnmarshalJSON (line 203) | func (o *UpdateSettingsFlowWithPasskeyMethod) UnmarshalJSON(data []byt... type _UpdateSettingsFlowWithPasskeyMethod (line 35) | type _UpdateSettingsFlowWithPasskeyMethod function NewUpdateSettingsFlowWithPasskeyMethod (line 41) | func NewUpdateSettingsFlowWithPasskeyMethod(method string) *UpdateSettin... function NewUpdateSettingsFlowWithPasskeyMethodWithDefaults (line 50) | func NewUpdateSettingsFlowWithPasskeyMethodWithDefaults() *UpdateSetting... type NullableUpdateSettingsFlowWithPasskeyMethod (line 248) | type NullableUpdateSettingsFlowWithPasskeyMethod struct method Get (line 253) | func (v NullableUpdateSettingsFlowWithPasskeyMethod) Get() *UpdateSett... method Set (line 257) | func (v *NullableUpdateSettingsFlowWithPasskeyMethod) Set(val *UpdateS... method IsSet (line 262) | func (v NullableUpdateSettingsFlowWithPasskeyMethod) IsSet() bool { method Unset (line 266) | func (v *NullableUpdateSettingsFlowWithPasskeyMethod) Unset() { method MarshalJSON (line 275) | func (v NullableUpdateSettingsFlowWithPasskeyMethod) MarshalJSON() ([]... method UnmarshalJSON (line 279) | func (v *NullableUpdateSettingsFlowWithPasskeyMethod) UnmarshalJSON(sr... function NewNullableUpdateSettingsFlowWithPasskeyMethod (line 271) | func NewNullableUpdateSettingsFlowWithPasskeyMethod(val *UpdateSettingsF... FILE: pkg/client-go/model_update_settings_flow_with_password_method.go type UpdateSettingsFlowWithPasswordMethod (line 23) | type UpdateSettingsFlowWithPasswordMethod struct method GetCsrfToken (line 57) | func (o *UpdateSettingsFlowWithPasswordMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 67) | func (o *UpdateSettingsFlowWithPasswordMethod) GetCsrfTokenOk() (*stri... method HasCsrfToken (line 75) | func (o *UpdateSettingsFlowWithPasswordMethod) HasCsrfToken() bool { method SetCsrfToken (line 84) | func (o *UpdateSettingsFlowWithPasswordMethod) SetCsrfToken(v string) { method GetMethod (line 89) | func (o *UpdateSettingsFlowWithPasswordMethod) GetMethod() string { method GetMethodOk (line 100) | func (o *UpdateSettingsFlowWithPasswordMethod) GetMethodOk() (*string,... method SetMethod (line 108) | func (o *UpdateSettingsFlowWithPasswordMethod) SetMethod(v string) { method GetPassword (line 113) | func (o *UpdateSettingsFlowWithPasswordMethod) GetPassword() string { method GetPasswordOk (line 124) | func (o *UpdateSettingsFlowWithPasswordMethod) GetPasswordOk() (*strin... method SetPassword (line 132) | func (o *UpdateSettingsFlowWithPasswordMethod) SetPassword(v string) { method GetTransientPayload (line 137) | func (o *UpdateSettingsFlowWithPasswordMethod) GetTransientPayload() m... method GetTransientPayloadOk (line 147) | func (o *UpdateSettingsFlowWithPasswordMethod) GetTransientPayloadOk()... method HasTransientPayload (line 155) | func (o *UpdateSettingsFlowWithPasswordMethod) HasTransientPayload() b... method SetTransientPayload (line 164) | func (o *UpdateSettingsFlowWithPasswordMethod) SetTransientPayload(v m... method MarshalJSON (line 168) | func (o UpdateSettingsFlowWithPasswordMethod) MarshalJSON() ([]byte, e... method ToMap (line 176) | func (o UpdateSettingsFlowWithPasswordMethod) ToMap() (map[string]inte... method UnmarshalJSON (line 194) | func (o *UpdateSettingsFlowWithPasswordMethod) UnmarshalJSON(data []by... type _UpdateSettingsFlowWithPasswordMethod (line 35) | type _UpdateSettingsFlowWithPasswordMethod function NewUpdateSettingsFlowWithPasswordMethod (line 41) | func NewUpdateSettingsFlowWithPasswordMethod(method string, password str... function NewUpdateSettingsFlowWithPasswordMethodWithDefaults (line 51) | func NewUpdateSettingsFlowWithPasswordMethodWithDefaults() *UpdateSettin... type NullableUpdateSettingsFlowWithPasswordMethod (line 240) | type NullableUpdateSettingsFlowWithPasswordMethod struct method Get (line 245) | func (v NullableUpdateSettingsFlowWithPasswordMethod) Get() *UpdateSet... method Set (line 249) | func (v *NullableUpdateSettingsFlowWithPasswordMethod) Set(val *Update... method IsSet (line 254) | func (v NullableUpdateSettingsFlowWithPasswordMethod) IsSet() bool { method Unset (line 258) | func (v *NullableUpdateSettingsFlowWithPasswordMethod) Unset() { method MarshalJSON (line 267) | func (v NullableUpdateSettingsFlowWithPasswordMethod) MarshalJSON() ([... method UnmarshalJSON (line 271) | func (v *NullableUpdateSettingsFlowWithPasswordMethod) UnmarshalJSON(s... function NewNullableUpdateSettingsFlowWithPasswordMethod (line 263) | func NewNullableUpdateSettingsFlowWithPasswordMethod(val *UpdateSettings... FILE: pkg/client-go/model_update_settings_flow_with_profile_method.go type UpdateSettingsFlowWithProfileMethod (line 23) | type UpdateSettingsFlowWithProfileMethod struct method GetCsrfToken (line 57) | func (o *UpdateSettingsFlowWithProfileMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 67) | func (o *UpdateSettingsFlowWithProfileMethod) GetCsrfTokenOk() (*strin... method HasCsrfToken (line 75) | func (o *UpdateSettingsFlowWithProfileMethod) HasCsrfToken() bool { method SetCsrfToken (line 84) | func (o *UpdateSettingsFlowWithProfileMethod) SetCsrfToken(v string) { method GetMethod (line 89) | func (o *UpdateSettingsFlowWithProfileMethod) GetMethod() string { method GetMethodOk (line 100) | func (o *UpdateSettingsFlowWithProfileMethod) GetMethodOk() (*string, ... method SetMethod (line 108) | func (o *UpdateSettingsFlowWithProfileMethod) SetMethod(v string) { method GetTraits (line 113) | func (o *UpdateSettingsFlowWithProfileMethod) GetTraits() map[string]i... method GetTraitsOk (line 124) | func (o *UpdateSettingsFlowWithProfileMethod) GetTraitsOk() (map[strin... method SetTraits (line 132) | func (o *UpdateSettingsFlowWithProfileMethod) SetTraits(v map[string]i... method GetTransientPayload (line 137) | func (o *UpdateSettingsFlowWithProfileMethod) GetTransientPayload() ma... method GetTransientPayloadOk (line 147) | func (o *UpdateSettingsFlowWithProfileMethod) GetTransientPayloadOk() ... method HasTransientPayload (line 155) | func (o *UpdateSettingsFlowWithProfileMethod) HasTransientPayload() bo... method SetTransientPayload (line 164) | func (o *UpdateSettingsFlowWithProfileMethod) SetTransientPayload(v ma... method MarshalJSON (line 168) | func (o UpdateSettingsFlowWithProfileMethod) MarshalJSON() ([]byte, er... method ToMap (line 176) | func (o UpdateSettingsFlowWithProfileMethod) ToMap() (map[string]inter... method UnmarshalJSON (line 194) | func (o *UpdateSettingsFlowWithProfileMethod) UnmarshalJSON(data []byt... type _UpdateSettingsFlowWithProfileMethod (line 35) | type _UpdateSettingsFlowWithProfileMethod function NewUpdateSettingsFlowWithProfileMethod (line 41) | func NewUpdateSettingsFlowWithProfileMethod(method string, traits map[st... function NewUpdateSettingsFlowWithProfileMethodWithDefaults (line 51) | func NewUpdateSettingsFlowWithProfileMethodWithDefaults() *UpdateSetting... type NullableUpdateSettingsFlowWithProfileMethod (line 240) | type NullableUpdateSettingsFlowWithProfileMethod struct method Get (line 245) | func (v NullableUpdateSettingsFlowWithProfileMethod) Get() *UpdateSett... method Set (line 249) | func (v *NullableUpdateSettingsFlowWithProfileMethod) Set(val *UpdateS... method IsSet (line 254) | func (v NullableUpdateSettingsFlowWithProfileMethod) IsSet() bool { method Unset (line 258) | func (v *NullableUpdateSettingsFlowWithProfileMethod) Unset() { method MarshalJSON (line 267) | func (v NullableUpdateSettingsFlowWithProfileMethod) MarshalJSON() ([]... method UnmarshalJSON (line 271) | func (v *NullableUpdateSettingsFlowWithProfileMethod) UnmarshalJSON(sr... function NewNullableUpdateSettingsFlowWithProfileMethod (line 263) | func NewNullableUpdateSettingsFlowWithProfileMethod(val *UpdateSettingsF... FILE: pkg/client-go/model_update_settings_flow_with_saml_method.go type UpdateSettingsFlowWithSamlMethod (line 23) | type UpdateSettingsFlowWithSamlMethod struct method GetCsrfToken (line 62) | func (o *UpdateSettingsFlowWithSamlMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 72) | func (o *UpdateSettingsFlowWithSamlMethod) GetCsrfTokenOk() (*string, ... method HasCsrfToken (line 80) | func (o *UpdateSettingsFlowWithSamlMethod) HasCsrfToken() bool { method SetCsrfToken (line 89) | func (o *UpdateSettingsFlowWithSamlMethod) SetCsrfToken(v string) { method GetFlow (line 94) | func (o *UpdateSettingsFlowWithSamlMethod) GetFlow() string { method GetFlowOk (line 104) | func (o *UpdateSettingsFlowWithSamlMethod) GetFlowOk() (*string, bool) { method HasFlow (line 112) | func (o *UpdateSettingsFlowWithSamlMethod) HasFlow() bool { method SetFlow (line 121) | func (o *UpdateSettingsFlowWithSamlMethod) SetFlow(v string) { method GetLink (line 126) | func (o *UpdateSettingsFlowWithSamlMethod) GetLink() string { method GetLinkOk (line 136) | func (o *UpdateSettingsFlowWithSamlMethod) GetLinkOk() (*string, bool) { method HasLink (line 144) | func (o *UpdateSettingsFlowWithSamlMethod) HasLink() bool { method SetLink (line 153) | func (o *UpdateSettingsFlowWithSamlMethod) SetLink(v string) { method GetMethod (line 158) | func (o *UpdateSettingsFlowWithSamlMethod) GetMethod() string { method GetMethodOk (line 169) | func (o *UpdateSettingsFlowWithSamlMethod) GetMethodOk() (*string, boo... method SetMethod (line 177) | func (o *UpdateSettingsFlowWithSamlMethod) SetMethod(v string) { method GetTraits (line 182) | func (o *UpdateSettingsFlowWithSamlMethod) GetTraits() map[string]inte... method GetTraitsOk (line 192) | func (o *UpdateSettingsFlowWithSamlMethod) GetTraitsOk() (map[string]i... method HasTraits (line 200) | func (o *UpdateSettingsFlowWithSamlMethod) HasTraits() bool { method SetTraits (line 209) | func (o *UpdateSettingsFlowWithSamlMethod) SetTraits(v map[string]inte... method GetTransientPayload (line 214) | func (o *UpdateSettingsFlowWithSamlMethod) GetTransientPayload() map[s... method GetTransientPayloadOk (line 224) | func (o *UpdateSettingsFlowWithSamlMethod) GetTransientPayloadOk() (ma... method HasTransientPayload (line 232) | func (o *UpdateSettingsFlowWithSamlMethod) HasTransientPayload() bool { method SetTransientPayload (line 241) | func (o *UpdateSettingsFlowWithSamlMethod) SetTransientPayload(v map[s... method GetUnlink (line 246) | func (o *UpdateSettingsFlowWithSamlMethod) GetUnlink() string { method GetUnlinkOk (line 256) | func (o *UpdateSettingsFlowWithSamlMethod) GetUnlinkOk() (*string, boo... method HasUnlink (line 264) | func (o *UpdateSettingsFlowWithSamlMethod) HasUnlink() bool { method SetUnlink (line 273) | func (o *UpdateSettingsFlowWithSamlMethod) SetUnlink(v string) { method MarshalJSON (line 277) | func (o UpdateSettingsFlowWithSamlMethod) MarshalJSON() ([]byte, error) { method ToMap (line 285) | func (o UpdateSettingsFlowWithSamlMethod) ToMap() (map[string]interfac... method UnmarshalJSON (line 314) | func (o *UpdateSettingsFlowWithSamlMethod) UnmarshalJSON(data []byte) ... type _UpdateSettingsFlowWithSamlMethod (line 41) | type _UpdateSettingsFlowWithSamlMethod function NewUpdateSettingsFlowWithSamlMethod (line 47) | func NewUpdateSettingsFlowWithSamlMethod(method string) *UpdateSettingsF... function NewUpdateSettingsFlowWithSamlMethodWithDefaults (line 56) | func NewUpdateSettingsFlowWithSamlMethodWithDefaults() *UpdateSettingsFl... type NullableUpdateSettingsFlowWithSamlMethod (line 362) | type NullableUpdateSettingsFlowWithSamlMethod struct method Get (line 367) | func (v NullableUpdateSettingsFlowWithSamlMethod) Get() *UpdateSetting... method Set (line 371) | func (v *NullableUpdateSettingsFlowWithSamlMethod) Set(val *UpdateSett... method IsSet (line 376) | func (v NullableUpdateSettingsFlowWithSamlMethod) IsSet() bool { method Unset (line 380) | func (v *NullableUpdateSettingsFlowWithSamlMethod) Unset() { method MarshalJSON (line 389) | func (v NullableUpdateSettingsFlowWithSamlMethod) MarshalJSON() ([]byt... method UnmarshalJSON (line 393) | func (v *NullableUpdateSettingsFlowWithSamlMethod) UnmarshalJSON(src [... function NewNullableUpdateSettingsFlowWithSamlMethod (line 385) | func NewNullableUpdateSettingsFlowWithSamlMethod(val *UpdateSettingsFlow... FILE: pkg/client-go/model_update_settings_flow_with_totp_method.go type UpdateSettingsFlowWithTotpMethod (line 23) | type UpdateSettingsFlowWithTotpMethod struct method GetCsrfToken (line 58) | func (o *UpdateSettingsFlowWithTotpMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 68) | func (o *UpdateSettingsFlowWithTotpMethod) GetCsrfTokenOk() (*string, ... method HasCsrfToken (line 76) | func (o *UpdateSettingsFlowWithTotpMethod) HasCsrfToken() bool { method SetCsrfToken (line 85) | func (o *UpdateSettingsFlowWithTotpMethod) SetCsrfToken(v string) { method GetMethod (line 90) | func (o *UpdateSettingsFlowWithTotpMethod) GetMethod() string { method GetMethodOk (line 101) | func (o *UpdateSettingsFlowWithTotpMethod) GetMethodOk() (*string, boo... method SetMethod (line 109) | func (o *UpdateSettingsFlowWithTotpMethod) SetMethod(v string) { method GetTotpCode (line 114) | func (o *UpdateSettingsFlowWithTotpMethod) GetTotpCode() string { method GetTotpCodeOk (line 124) | func (o *UpdateSettingsFlowWithTotpMethod) GetTotpCodeOk() (*string, b... method HasTotpCode (line 132) | func (o *UpdateSettingsFlowWithTotpMethod) HasTotpCode() bool { method SetTotpCode (line 141) | func (o *UpdateSettingsFlowWithTotpMethod) SetTotpCode(v string) { method GetTotpUnlink (line 146) | func (o *UpdateSettingsFlowWithTotpMethod) GetTotpUnlink() bool { method GetTotpUnlinkOk (line 156) | func (o *UpdateSettingsFlowWithTotpMethod) GetTotpUnlinkOk() (*bool, b... method HasTotpUnlink (line 164) | func (o *UpdateSettingsFlowWithTotpMethod) HasTotpUnlink() bool { method SetTotpUnlink (line 173) | func (o *UpdateSettingsFlowWithTotpMethod) SetTotpUnlink(v bool) { method GetTransientPayload (line 178) | func (o *UpdateSettingsFlowWithTotpMethod) GetTransientPayload() map[s... method GetTransientPayloadOk (line 188) | func (o *UpdateSettingsFlowWithTotpMethod) GetTransientPayloadOk() (ma... method HasTransientPayload (line 196) | func (o *UpdateSettingsFlowWithTotpMethod) HasTransientPayload() bool { method SetTransientPayload (line 205) | func (o *UpdateSettingsFlowWithTotpMethod) SetTransientPayload(v map[s... method MarshalJSON (line 209) | func (o UpdateSettingsFlowWithTotpMethod) MarshalJSON() ([]byte, error) { method ToMap (line 217) | func (o UpdateSettingsFlowWithTotpMethod) ToMap() (map[string]interfac... method UnmarshalJSON (line 240) | func (o *UpdateSettingsFlowWithTotpMethod) UnmarshalJSON(data []byte) ... type _UpdateSettingsFlowWithTotpMethod (line 37) | type _UpdateSettingsFlowWithTotpMethod function NewUpdateSettingsFlowWithTotpMethod (line 43) | func NewUpdateSettingsFlowWithTotpMethod(method string) *UpdateSettingsF... function NewUpdateSettingsFlowWithTotpMethodWithDefaults (line 52) | func NewUpdateSettingsFlowWithTotpMethodWithDefaults() *UpdateSettingsFl... type NullableUpdateSettingsFlowWithTotpMethod (line 286) | type NullableUpdateSettingsFlowWithTotpMethod struct method Get (line 291) | func (v NullableUpdateSettingsFlowWithTotpMethod) Get() *UpdateSetting... method Set (line 295) | func (v *NullableUpdateSettingsFlowWithTotpMethod) Set(val *UpdateSett... method IsSet (line 300) | func (v NullableUpdateSettingsFlowWithTotpMethod) IsSet() bool { method Unset (line 304) | func (v *NullableUpdateSettingsFlowWithTotpMethod) Unset() { method MarshalJSON (line 313) | func (v NullableUpdateSettingsFlowWithTotpMethod) MarshalJSON() ([]byt... method UnmarshalJSON (line 317) | func (v *NullableUpdateSettingsFlowWithTotpMethod) UnmarshalJSON(src [... function NewNullableUpdateSettingsFlowWithTotpMethod (line 309) | func NewNullableUpdateSettingsFlowWithTotpMethod(val *UpdateSettingsFlow... FILE: pkg/client-go/model_update_settings_flow_with_web_authn_method.go type UpdateSettingsFlowWithWebAuthnMethod (line 23) | type UpdateSettingsFlowWithWebAuthnMethod struct method GetCsrfToken (line 60) | func (o *UpdateSettingsFlowWithWebAuthnMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 70) | func (o *UpdateSettingsFlowWithWebAuthnMethod) GetCsrfTokenOk() (*stri... method HasCsrfToken (line 78) | func (o *UpdateSettingsFlowWithWebAuthnMethod) HasCsrfToken() bool { method SetCsrfToken (line 87) | func (o *UpdateSettingsFlowWithWebAuthnMethod) SetCsrfToken(v string) { method GetMethod (line 92) | func (o *UpdateSettingsFlowWithWebAuthnMethod) GetMethod() string { method GetMethodOk (line 103) | func (o *UpdateSettingsFlowWithWebAuthnMethod) GetMethodOk() (*string,... method SetMethod (line 111) | func (o *UpdateSettingsFlowWithWebAuthnMethod) SetMethod(v string) { method GetTransientPayload (line 116) | func (o *UpdateSettingsFlowWithWebAuthnMethod) GetTransientPayload() m... method GetTransientPayloadOk (line 126) | func (o *UpdateSettingsFlowWithWebAuthnMethod) GetTransientPayloadOk()... method HasTransientPayload (line 134) | func (o *UpdateSettingsFlowWithWebAuthnMethod) HasTransientPayload() b... method SetTransientPayload (line 143) | func (o *UpdateSettingsFlowWithWebAuthnMethod) SetTransientPayload(v m... method GetWebauthnRegister (line 148) | func (o *UpdateSettingsFlowWithWebAuthnMethod) GetWebauthnRegister() s... method GetWebauthnRegisterOk (line 158) | func (o *UpdateSettingsFlowWithWebAuthnMethod) GetWebauthnRegisterOk()... method HasWebauthnRegister (line 166) | func (o *UpdateSettingsFlowWithWebAuthnMethod) HasWebauthnRegister() b... method SetWebauthnRegister (line 175) | func (o *UpdateSettingsFlowWithWebAuthnMethod) SetWebauthnRegister(v s... method GetWebauthnRegisterDisplayname (line 180) | func (o *UpdateSettingsFlowWithWebAuthnMethod) GetWebauthnRegisterDisp... method GetWebauthnRegisterDisplaynameOk (line 190) | func (o *UpdateSettingsFlowWithWebAuthnMethod) GetWebauthnRegisterDisp... method HasWebauthnRegisterDisplayname (line 198) | func (o *UpdateSettingsFlowWithWebAuthnMethod) HasWebauthnRegisterDisp... method SetWebauthnRegisterDisplayname (line 207) | func (o *UpdateSettingsFlowWithWebAuthnMethod) SetWebauthnRegisterDisp... method GetWebauthnRemove (line 212) | func (o *UpdateSettingsFlowWithWebAuthnMethod) GetWebauthnRemove() str... method GetWebauthnRemoveOk (line 222) | func (o *UpdateSettingsFlowWithWebAuthnMethod) GetWebauthnRemoveOk() (... method HasWebauthnRemove (line 230) | func (o *UpdateSettingsFlowWithWebAuthnMethod) HasWebauthnRemove() bool { method SetWebauthnRemove (line 239) | func (o *UpdateSettingsFlowWithWebAuthnMethod) SetWebauthnRemove(v str... method MarshalJSON (line 243) | func (o UpdateSettingsFlowWithWebAuthnMethod) MarshalJSON() ([]byte, e... method ToMap (line 251) | func (o UpdateSettingsFlowWithWebAuthnMethod) ToMap() (map[string]inte... method UnmarshalJSON (line 277) | func (o *UpdateSettingsFlowWithWebAuthnMethod) UnmarshalJSON(data []by... type _UpdateSettingsFlowWithWebAuthnMethod (line 39) | type _UpdateSettingsFlowWithWebAuthnMethod function NewUpdateSettingsFlowWithWebAuthnMethod (line 45) | func NewUpdateSettingsFlowWithWebAuthnMethod(method string) *UpdateSetti... function NewUpdateSettingsFlowWithWebAuthnMethodWithDefaults (line 54) | func NewUpdateSettingsFlowWithWebAuthnMethodWithDefaults() *UpdateSettin... type NullableUpdateSettingsFlowWithWebAuthnMethod (line 324) | type NullableUpdateSettingsFlowWithWebAuthnMethod struct method Get (line 329) | func (v NullableUpdateSettingsFlowWithWebAuthnMethod) Get() *UpdateSet... method Set (line 333) | func (v *NullableUpdateSettingsFlowWithWebAuthnMethod) Set(val *Update... method IsSet (line 338) | func (v NullableUpdateSettingsFlowWithWebAuthnMethod) IsSet() bool { method Unset (line 342) | func (v *NullableUpdateSettingsFlowWithWebAuthnMethod) Unset() { method MarshalJSON (line 351) | func (v NullableUpdateSettingsFlowWithWebAuthnMethod) MarshalJSON() ([... method UnmarshalJSON (line 355) | func (v *NullableUpdateSettingsFlowWithWebAuthnMethod) UnmarshalJSON(s... function NewNullableUpdateSettingsFlowWithWebAuthnMethod (line 347) | func NewNullableUpdateSettingsFlowWithWebAuthnMethod(val *UpdateSettings... FILE: pkg/client-go/model_update_verification_flow_body.go type UpdateVerificationFlowBody (line 20) | type UpdateVerificationFlowBody struct method UnmarshalJSON (line 40) | func (dst *UpdateVerificationFlowBody) UnmarshalJSON(data []byte) error { method MarshalJSON (line 101) | func (src UpdateVerificationFlowBody) MarshalJSON() ([]byte, error) { method GetActualInstance (line 114) | func (obj *UpdateVerificationFlowBody) GetActualInstance() interface{} { method GetActualInstanceValue (line 131) | func (obj UpdateVerificationFlowBody) GetActualInstanceValue() interfa... function UpdateVerificationFlowWithCodeMethodAsUpdateVerificationFlowBody (line 26) | func UpdateVerificationFlowWithCodeMethodAsUpdateVerificationFlowBody(v ... function UpdateVerificationFlowWithLinkMethodAsUpdateVerificationFlowBody (line 33) | func UpdateVerificationFlowWithLinkMethodAsUpdateVerificationFlowBody(v ... type NullableUpdateVerificationFlowBody (line 144) | type NullableUpdateVerificationFlowBody struct method Get (line 149) | func (v NullableUpdateVerificationFlowBody) Get() *UpdateVerificationF... method Set (line 153) | func (v *NullableUpdateVerificationFlowBody) Set(val *UpdateVerificati... method IsSet (line 158) | func (v NullableUpdateVerificationFlowBody) IsSet() bool { method Unset (line 162) | func (v *NullableUpdateVerificationFlowBody) Unset() { method MarshalJSON (line 171) | func (v NullableUpdateVerificationFlowBody) MarshalJSON() ([]byte, err... method UnmarshalJSON (line 175) | func (v *NullableUpdateVerificationFlowBody) UnmarshalJSON(src []byte)... function NewNullableUpdateVerificationFlowBody (line 167) | func NewNullableUpdateVerificationFlowBody(val *UpdateVerificationFlowBo... FILE: pkg/client-go/model_update_verification_flow_with_code_method.go type UpdateVerificationFlowWithCodeMethod (line 23) | type UpdateVerificationFlowWithCodeMethod struct method GetCode (line 58) | func (o *UpdateVerificationFlowWithCodeMethod) GetCode() string { method GetCodeOk (line 68) | func (o *UpdateVerificationFlowWithCodeMethod) GetCodeOk() (*string, b... method HasCode (line 76) | func (o *UpdateVerificationFlowWithCodeMethod) HasCode() bool { method SetCode (line 85) | func (o *UpdateVerificationFlowWithCodeMethod) SetCode(v string) { method GetCsrfToken (line 90) | func (o *UpdateVerificationFlowWithCodeMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 100) | func (o *UpdateVerificationFlowWithCodeMethod) GetCsrfTokenOk() (*stri... method HasCsrfToken (line 108) | func (o *UpdateVerificationFlowWithCodeMethod) HasCsrfToken() bool { method SetCsrfToken (line 117) | func (o *UpdateVerificationFlowWithCodeMethod) SetCsrfToken(v string) { method GetEmail (line 122) | func (o *UpdateVerificationFlowWithCodeMethod) GetEmail() string { method GetEmailOk (line 132) | func (o *UpdateVerificationFlowWithCodeMethod) GetEmailOk() (*string, ... method HasEmail (line 140) | func (o *UpdateVerificationFlowWithCodeMethod) HasEmail() bool { method SetEmail (line 149) | func (o *UpdateVerificationFlowWithCodeMethod) SetEmail(v string) { method GetMethod (line 154) | func (o *UpdateVerificationFlowWithCodeMethod) GetMethod() string { method GetMethodOk (line 165) | func (o *UpdateVerificationFlowWithCodeMethod) GetMethodOk() (*string,... method SetMethod (line 173) | func (o *UpdateVerificationFlowWithCodeMethod) SetMethod(v string) { method GetTransientPayload (line 178) | func (o *UpdateVerificationFlowWithCodeMethod) GetTransientPayload() m... method GetTransientPayloadOk (line 188) | func (o *UpdateVerificationFlowWithCodeMethod) GetTransientPayloadOk()... method HasTransientPayload (line 196) | func (o *UpdateVerificationFlowWithCodeMethod) HasTransientPayload() b... method SetTransientPayload (line 205) | func (o *UpdateVerificationFlowWithCodeMethod) SetTransientPayload(v m... method MarshalJSON (line 209) | func (o UpdateVerificationFlowWithCodeMethod) MarshalJSON() ([]byte, e... method ToMap (line 217) | func (o UpdateVerificationFlowWithCodeMethod) ToMap() (map[string]inte... method UnmarshalJSON (line 240) | func (o *UpdateVerificationFlowWithCodeMethod) UnmarshalJSON(data []by... type _UpdateVerificationFlowWithCodeMethod (line 37) | type _UpdateVerificationFlowWithCodeMethod function NewUpdateVerificationFlowWithCodeMethod (line 43) | func NewUpdateVerificationFlowWithCodeMethod(method string) *UpdateVerif... function NewUpdateVerificationFlowWithCodeMethodWithDefaults (line 52) | func NewUpdateVerificationFlowWithCodeMethodWithDefaults() *UpdateVerifi... type NullableUpdateVerificationFlowWithCodeMethod (line 286) | type NullableUpdateVerificationFlowWithCodeMethod struct method Get (line 291) | func (v NullableUpdateVerificationFlowWithCodeMethod) Get() *UpdateVer... method Set (line 295) | func (v *NullableUpdateVerificationFlowWithCodeMethod) Set(val *Update... method IsSet (line 300) | func (v NullableUpdateVerificationFlowWithCodeMethod) IsSet() bool { method Unset (line 304) | func (v *NullableUpdateVerificationFlowWithCodeMethod) Unset() { method MarshalJSON (line 313) | func (v NullableUpdateVerificationFlowWithCodeMethod) MarshalJSON() ([... method UnmarshalJSON (line 317) | func (v *NullableUpdateVerificationFlowWithCodeMethod) UnmarshalJSON(s... function NewNullableUpdateVerificationFlowWithCodeMethod (line 309) | func NewNullableUpdateVerificationFlowWithCodeMethod(val *UpdateVerifica... FILE: pkg/client-go/model_update_verification_flow_with_link_method.go type UpdateVerificationFlowWithLinkMethod (line 23) | type UpdateVerificationFlowWithLinkMethod struct method GetCsrfToken (line 57) | func (o *UpdateVerificationFlowWithLinkMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 67) | func (o *UpdateVerificationFlowWithLinkMethod) GetCsrfTokenOk() (*stri... method HasCsrfToken (line 75) | func (o *UpdateVerificationFlowWithLinkMethod) HasCsrfToken() bool { method SetCsrfToken (line 84) | func (o *UpdateVerificationFlowWithLinkMethod) SetCsrfToken(v string) { method GetEmail (line 89) | func (o *UpdateVerificationFlowWithLinkMethod) GetEmail() string { method GetEmailOk (line 100) | func (o *UpdateVerificationFlowWithLinkMethod) GetEmailOk() (*string, ... method SetEmail (line 108) | func (o *UpdateVerificationFlowWithLinkMethod) SetEmail(v string) { method GetMethod (line 113) | func (o *UpdateVerificationFlowWithLinkMethod) GetMethod() string { method GetMethodOk (line 124) | func (o *UpdateVerificationFlowWithLinkMethod) GetMethodOk() (*string,... method SetMethod (line 132) | func (o *UpdateVerificationFlowWithLinkMethod) SetMethod(v string) { method GetTransientPayload (line 137) | func (o *UpdateVerificationFlowWithLinkMethod) GetTransientPayload() m... method GetTransientPayloadOk (line 147) | func (o *UpdateVerificationFlowWithLinkMethod) GetTransientPayloadOk()... method HasTransientPayload (line 155) | func (o *UpdateVerificationFlowWithLinkMethod) HasTransientPayload() b... method SetTransientPayload (line 164) | func (o *UpdateVerificationFlowWithLinkMethod) SetTransientPayload(v m... method MarshalJSON (line 168) | func (o UpdateVerificationFlowWithLinkMethod) MarshalJSON() ([]byte, e... method ToMap (line 176) | func (o UpdateVerificationFlowWithLinkMethod) ToMap() (map[string]inte... method UnmarshalJSON (line 194) | func (o *UpdateVerificationFlowWithLinkMethod) UnmarshalJSON(data []by... type _UpdateVerificationFlowWithLinkMethod (line 35) | type _UpdateVerificationFlowWithLinkMethod function NewUpdateVerificationFlowWithLinkMethod (line 41) | func NewUpdateVerificationFlowWithLinkMethod(email string, method string... function NewUpdateVerificationFlowWithLinkMethodWithDefaults (line 51) | func NewUpdateVerificationFlowWithLinkMethodWithDefaults() *UpdateVerifi... type NullableUpdateVerificationFlowWithLinkMethod (line 240) | type NullableUpdateVerificationFlowWithLinkMethod struct method Get (line 245) | func (v NullableUpdateVerificationFlowWithLinkMethod) Get() *UpdateVer... method Set (line 249) | func (v *NullableUpdateVerificationFlowWithLinkMethod) Set(val *Update... method IsSet (line 254) | func (v NullableUpdateVerificationFlowWithLinkMethod) IsSet() bool { method Unset (line 258) | func (v *NullableUpdateVerificationFlowWithLinkMethod) Unset() { method MarshalJSON (line 267) | func (v NullableUpdateVerificationFlowWithLinkMethod) MarshalJSON() ([... method UnmarshalJSON (line 271) | func (v *NullableUpdateVerificationFlowWithLinkMethod) UnmarshalJSON(s... function NewNullableUpdateVerificationFlowWithLinkMethod (line 263) | func NewNullableUpdateVerificationFlowWithLinkMethod(val *UpdateVerifica... FILE: pkg/client-go/model_verifiable_identity_address.go type VerifiableIdentityAddress (line 24) | type VerifiableIdentityAddress struct method GetCreatedAt (line 67) | func (o *VerifiableIdentityAddress) GetCreatedAt() time.Time { method GetCreatedAtOk (line 77) | func (o *VerifiableIdentityAddress) GetCreatedAtOk() (*time.Time, bool) { method HasCreatedAt (line 85) | func (o *VerifiableIdentityAddress) HasCreatedAt() bool { method SetCreatedAt (line 94) | func (o *VerifiableIdentityAddress) SetCreatedAt(v time.Time) { method GetId (line 99) | func (o *VerifiableIdentityAddress) GetId() string { method GetIdOk (line 109) | func (o *VerifiableIdentityAddress) GetIdOk() (*string, bool) { method HasId (line 117) | func (o *VerifiableIdentityAddress) HasId() bool { method SetId (line 126) | func (o *VerifiableIdentityAddress) SetId(v string) { method GetStatus (line 131) | func (o *VerifiableIdentityAddress) GetStatus() string { method GetStatusOk (line 142) | func (o *VerifiableIdentityAddress) GetStatusOk() (*string, bool) { method SetStatus (line 150) | func (o *VerifiableIdentityAddress) SetStatus(v string) { method GetUpdatedAt (line 155) | func (o *VerifiableIdentityAddress) GetUpdatedAt() time.Time { method GetUpdatedAtOk (line 165) | func (o *VerifiableIdentityAddress) GetUpdatedAtOk() (*time.Time, bool) { method HasUpdatedAt (line 173) | func (o *VerifiableIdentityAddress) HasUpdatedAt() bool { method SetUpdatedAt (line 182) | func (o *VerifiableIdentityAddress) SetUpdatedAt(v time.Time) { method GetValue (line 187) | func (o *VerifiableIdentityAddress) GetValue() string { method GetValueOk (line 198) | func (o *VerifiableIdentityAddress) GetValueOk() (*string, bool) { method SetValue (line 206) | func (o *VerifiableIdentityAddress) SetValue(v string) { method GetVerified (line 211) | func (o *VerifiableIdentityAddress) GetVerified() bool { method GetVerifiedOk (line 222) | func (o *VerifiableIdentityAddress) GetVerifiedOk() (*bool, bool) { method SetVerified (line 230) | func (o *VerifiableIdentityAddress) SetVerified(v bool) { method GetVerifiedAt (line 235) | func (o *VerifiableIdentityAddress) GetVerifiedAt() time.Time { method GetVerifiedAtOk (line 245) | func (o *VerifiableIdentityAddress) GetVerifiedAtOk() (*time.Time, boo... method HasVerifiedAt (line 253) | func (o *VerifiableIdentityAddress) HasVerifiedAt() bool { method SetVerifiedAt (line 262) | func (o *VerifiableIdentityAddress) SetVerifiedAt(v time.Time) { method GetVia (line 267) | func (o *VerifiableIdentityAddress) GetVia() string { method GetViaOk (line 278) | func (o *VerifiableIdentityAddress) GetViaOk() (*string, bool) { method SetVia (line 286) | func (o *VerifiableIdentityAddress) SetVia(v string) { method MarshalJSON (line 290) | func (o VerifiableIdentityAddress) MarshalJSON() ([]byte, error) { method ToMap (line 298) | func (o VerifiableIdentityAddress) ToMap() (map[string]interface{}, er... method UnmarshalJSON (line 324) | func (o *VerifiableIdentityAddress) UnmarshalJSON(data []byte) (err er... type _VerifiableIdentityAddress (line 43) | type _VerifiableIdentityAddress function NewVerifiableIdentityAddress (line 49) | func NewVerifiableIdentityAddress(status string, value string, verified ... function NewVerifiableIdentityAddressWithDefaults (line 61) | func NewVerifiableIdentityAddressWithDefaults() *VerifiableIdentityAddre... type NullableVerifiableIdentityAddress (line 376) | type NullableVerifiableIdentityAddress struct method Get (line 381) | func (v NullableVerifiableIdentityAddress) Get() *VerifiableIdentityAd... method Set (line 385) | func (v *NullableVerifiableIdentityAddress) Set(val *VerifiableIdentit... method IsSet (line 390) | func (v NullableVerifiableIdentityAddress) IsSet() bool { method Unset (line 394) | func (v *NullableVerifiableIdentityAddress) Unset() { method MarshalJSON (line 403) | func (v NullableVerifiableIdentityAddress) MarshalJSON() ([]byte, erro... method UnmarshalJSON (line 407) | func (v *NullableVerifiableIdentityAddress) UnmarshalJSON(src []byte) ... function NewNullableVerifiableIdentityAddress (line 399) | func NewNullableVerifiableIdentityAddress(val *VerifiableIdentityAddress... FILE: pkg/client-go/model_verification_flow.go type VerificationFlow (line 24) | type VerificationFlow struct method GetActive (line 71) | func (o *VerificationFlow) GetActive() string { method GetActiveOk (line 81) | func (o *VerificationFlow) GetActiveOk() (*string, bool) { method HasActive (line 89) | func (o *VerificationFlow) HasActive() bool { method SetActive (line 98) | func (o *VerificationFlow) SetActive(v string) { method GetExpiresAt (line 103) | func (o *VerificationFlow) GetExpiresAt() time.Time { method GetExpiresAtOk (line 113) | func (o *VerificationFlow) GetExpiresAtOk() (*time.Time, bool) { method HasExpiresAt (line 121) | func (o *VerificationFlow) HasExpiresAt() bool { method SetExpiresAt (line 130) | func (o *VerificationFlow) SetExpiresAt(v time.Time) { method GetId (line 135) | func (o *VerificationFlow) GetId() string { method GetIdOk (line 146) | func (o *VerificationFlow) GetIdOk() (*string, bool) { method SetId (line 154) | func (o *VerificationFlow) SetId(v string) { method GetIssuedAt (line 159) | func (o *VerificationFlow) GetIssuedAt() time.Time { method GetIssuedAtOk (line 169) | func (o *VerificationFlow) GetIssuedAtOk() (*time.Time, bool) { method HasIssuedAt (line 177) | func (o *VerificationFlow) HasIssuedAt() bool { method SetIssuedAt (line 186) | func (o *VerificationFlow) SetIssuedAt(v time.Time) { method GetRequestUrl (line 191) | func (o *VerificationFlow) GetRequestUrl() string { method GetRequestUrlOk (line 201) | func (o *VerificationFlow) GetRequestUrlOk() (*string, bool) { method HasRequestUrl (line 209) | func (o *VerificationFlow) HasRequestUrl() bool { method SetRequestUrl (line 218) | func (o *VerificationFlow) SetRequestUrl(v string) { method GetReturnTo (line 223) | func (o *VerificationFlow) GetReturnTo() string { method GetReturnToOk (line 233) | func (o *VerificationFlow) GetReturnToOk() (*string, bool) { method HasReturnTo (line 241) | func (o *VerificationFlow) HasReturnTo() bool { method SetReturnTo (line 250) | func (o *VerificationFlow) SetReturnTo(v string) { method GetState (line 256) | func (o *VerificationFlow) GetState() interface{} { method GetStateOk (line 268) | func (o *VerificationFlow) GetStateOk() (*interface{}, bool) { method SetState (line 276) | func (o *VerificationFlow) SetState(v interface{}) { method GetTransientPayload (line 281) | func (o *VerificationFlow) GetTransientPayload() map[string]interface{} { method GetTransientPayloadOk (line 291) | func (o *VerificationFlow) GetTransientPayloadOk() (map[string]interfa... method HasTransientPayload (line 299) | func (o *VerificationFlow) HasTransientPayload() bool { method SetTransientPayload (line 308) | func (o *VerificationFlow) SetTransientPayload(v map[string]interface{... method GetType (line 313) | func (o *VerificationFlow) GetType() string { method GetTypeOk (line 324) | func (o *VerificationFlow) GetTypeOk() (*string, bool) { method SetType (line 332) | func (o *VerificationFlow) SetType(v string) { method GetUi (line 337) | func (o *VerificationFlow) GetUi() UiContainer { method GetUiOk (line 348) | func (o *VerificationFlow) GetUiOk() (*UiContainer, bool) { method SetUi (line 356) | func (o *VerificationFlow) SetUi(v UiContainer) { method MarshalJSON (line 360) | func (o VerificationFlow) MarshalJSON() ([]byte, error) { method ToMap (line 368) | func (o VerificationFlow) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 402) | func (o *VerificationFlow) UnmarshalJSON(data []byte) (err error) { type _VerificationFlow (line 47) | type _VerificationFlow function NewVerificationFlow (line 53) | func NewVerificationFlow(id string, state interface{}, type_ string, ui ... function NewVerificationFlowWithDefaults (line 65) | func NewVerificationFlowWithDefaults() *VerificationFlow { type NullableVerificationFlow (line 456) | type NullableVerificationFlow struct method Get (line 461) | func (v NullableVerificationFlow) Get() *VerificationFlow { method Set (line 465) | func (v *NullableVerificationFlow) Set(val *VerificationFlow) { method IsSet (line 470) | func (v NullableVerificationFlow) IsSet() bool { method Unset (line 474) | func (v *NullableVerificationFlow) Unset() { method MarshalJSON (line 483) | func (v NullableVerificationFlow) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 487) | func (v *NullableVerificationFlow) UnmarshalJSON(src []byte) error { function NewNullableVerificationFlow (line 479) | func NewNullableVerificationFlow(val *VerificationFlow) *NullableVerific... FILE: pkg/client-go/model_verification_flow_state.go type VerificationFlowState (line 20) | type VerificationFlowState method UnmarshalJSON (line 36) | func (v *VerificationFlowState) UnmarshalJSON(src []byte) error { method IsValid (line 65) | func (v VerificationFlowState) IsValid() bool { method Ptr (line 75) | func (v VerificationFlowState) Ptr() *VerificationFlowState { constant VERIFICATIONFLOWSTATE_CHOOSE_METHOD (line 24) | VERIFICATIONFLOWSTATE_CHOOSE_METHOD VerificationFlowState = "choose_m... constant VERIFICATIONFLOWSTATE_SENT_EMAIL (line 25) | VERIFICATIONFLOWSTATE_SENT_EMAIL VerificationFlowState = "sent_email" constant VERIFICATIONFLOWSTATE_PASSED_CHALLENGE (line 26) | VERIFICATIONFLOWSTATE_PASSED_CHALLENGE VerificationFlowState = "passed_c... function NewVerificationFlowStateFromValue (line 55) | func NewVerificationFlowStateFromValue(v string) (*VerificationFlowState... type NullableVerificationFlowState (line 79) | type NullableVerificationFlowState struct method Get (line 84) | func (v NullableVerificationFlowState) Get() *VerificationFlowState { method Set (line 88) | func (v *NullableVerificationFlowState) Set(val *VerificationFlowState) { method IsSet (line 93) | func (v NullableVerificationFlowState) IsSet() bool { method Unset (line 97) | func (v *NullableVerificationFlowState) Unset() { method MarshalJSON (line 106) | func (v NullableVerificationFlowState) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 110) | func (v *NullableVerificationFlowState) UnmarshalJSON(src []byte) error { function NewNullableVerificationFlowState (line 102) | func NewNullableVerificationFlowState(val *VerificationFlowState) *Nulla... FILE: pkg/client-go/model_version.go type Version (line 22) | type Version struct method GetVersion (line 48) | func (o *Version) GetVersion() string { method GetVersionOk (line 58) | func (o *Version) GetVersionOk() (*string, bool) { method HasVersion (line 66) | func (o *Version) HasVersion() bool { method SetVersion (line 75) | func (o *Version) SetVersion(v string) { method MarshalJSON (line 79) | func (o Version) MarshalJSON() ([]byte, error) { method ToMap (line 87) | func (o Version) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 100) | func (o *Version) UnmarshalJSON(data []byte) (err error) { type _Version (line 28) | type _Version function NewVersion (line 34) | func NewVersion() *Version { function NewVersionWithDefaults (line 42) | func NewVersionWithDefaults() *Version { type NullableVersion (line 121) | type NullableVersion struct method Get (line 126) | func (v NullableVersion) Get() *Version { method Set (line 130) | func (v *NullableVersion) Set(val *Version) { method IsSet (line 135) | func (v NullableVersion) IsSet() bool { method Unset (line 139) | func (v *NullableVersion) Unset() { method MarshalJSON (line 148) | func (v NullableVersion) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 152) | func (v *NullableVersion) UnmarshalJSON(src []byte) error { function NewNullableVersion (line 144) | func NewNullableVersion(val *Version) *NullableVersion { FILE: pkg/client-go/response.go type APIResponse (line 19) | type APIResponse struct function NewAPIResponse (line 37) | func NewAPIResponse(r *http.Response) *APIResponse { function NewAPIResponseWithError (line 44) | func NewAPIResponseWithError(errorMessage string) *APIResponse { FILE: pkg/client-go/utils.go function PtrBool (line 23) | func PtrBool(v bool) *bool { return &v } function PtrInt (line 26) | func PtrInt(v int) *int { return &v } function PtrInt32 (line 29) | func PtrInt32(v int32) *int32 { return &v } function PtrInt64 (line 32) | func PtrInt64(v int64) *int64 { return &v } function PtrFloat32 (line 35) | func PtrFloat32(v float32) *float32 { return &v } function PtrFloat64 (line 38) | func PtrFloat64(v float64) *float64 { return &v } function PtrString (line 41) | func PtrString(v string) *string { return &v } function PtrTime (line 44) | func PtrTime(v time.Time) *time.Time { return &v } type NullableBool (line 46) | type NullableBool struct method Get (line 51) | func (v NullableBool) Get() *bool { method Set (line 55) | func (v *NullableBool) Set(val *bool) { method IsSet (line 60) | func (v NullableBool) IsSet() bool { method Unset (line 64) | func (v *NullableBool) Unset() { method MarshalJSON (line 73) | func (v NullableBool) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 77) | func (v *NullableBool) UnmarshalJSON(src []byte) error { function NewNullableBool (line 69) | func NewNullableBool(val *bool) *NullableBool { type NullableInt (line 82) | type NullableInt struct method Get (line 87) | func (v NullableInt) Get() *int { method Set (line 91) | func (v *NullableInt) Set(val *int) { method IsSet (line 96) | func (v NullableInt) IsSet() bool { method Unset (line 100) | func (v *NullableInt) Unset() { method MarshalJSON (line 109) | func (v NullableInt) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 113) | func (v *NullableInt) UnmarshalJSON(src []byte) error { function NewNullableInt (line 105) | func NewNullableInt(val *int) *NullableInt { type NullableInt32 (line 118) | type NullableInt32 struct method Get (line 123) | func (v NullableInt32) Get() *int32 { method Set (line 127) | func (v *NullableInt32) Set(val *int32) { method IsSet (line 132) | func (v NullableInt32) IsSet() bool { method Unset (line 136) | func (v *NullableInt32) Unset() { method MarshalJSON (line 145) | func (v NullableInt32) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 149) | func (v *NullableInt32) UnmarshalJSON(src []byte) error { function NewNullableInt32 (line 141) | func NewNullableInt32(val *int32) *NullableInt32 { type NullableInt64 (line 154) | type NullableInt64 struct method Get (line 159) | func (v NullableInt64) Get() *int64 { method Set (line 163) | func (v *NullableInt64) Set(val *int64) { method IsSet (line 168) | func (v NullableInt64) IsSet() bool { method Unset (line 172) | func (v *NullableInt64) Unset() { method MarshalJSON (line 181) | func (v NullableInt64) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 185) | func (v *NullableInt64) UnmarshalJSON(src []byte) error { function NewNullableInt64 (line 177) | func NewNullableInt64(val *int64) *NullableInt64 { type NullableFloat32 (line 190) | type NullableFloat32 struct method Get (line 195) | func (v NullableFloat32) Get() *float32 { method Set (line 199) | func (v *NullableFloat32) Set(val *float32) { method IsSet (line 204) | func (v NullableFloat32) IsSet() bool { method Unset (line 208) | func (v *NullableFloat32) Unset() { method MarshalJSON (line 217) | func (v NullableFloat32) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 221) | func (v *NullableFloat32) UnmarshalJSON(src []byte) error { function NewNullableFloat32 (line 213) | func NewNullableFloat32(val *float32) *NullableFloat32 { type NullableFloat64 (line 226) | type NullableFloat64 struct method Get (line 231) | func (v NullableFloat64) Get() *float64 { method Set (line 235) | func (v *NullableFloat64) Set(val *float64) { method IsSet (line 240) | func (v NullableFloat64) IsSet() bool { method Unset (line 244) | func (v *NullableFloat64) Unset() { method MarshalJSON (line 253) | func (v NullableFloat64) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 257) | func (v *NullableFloat64) UnmarshalJSON(src []byte) error { function NewNullableFloat64 (line 249) | func NewNullableFloat64(val *float64) *NullableFloat64 { type NullableString (line 262) | type NullableString struct method Get (line 267) | func (v NullableString) Get() *string { method Set (line 271) | func (v *NullableString) Set(val *string) { method IsSet (line 276) | func (v NullableString) IsSet() bool { method Unset (line 280) | func (v *NullableString) Unset() { method MarshalJSON (line 289) | func (v NullableString) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 293) | func (v *NullableString) UnmarshalJSON(src []byte) error { function NewNullableString (line 285) | func NewNullableString(val *string) *NullableString { type NullableTime (line 298) | type NullableTime struct method Get (line 303) | func (v NullableTime) Get() *time.Time { method Set (line 307) | func (v *NullableTime) Set(val *time.Time) { method IsSet (line 312) | func (v NullableTime) IsSet() bool { method Unset (line 316) | func (v *NullableTime) Unset() { method MarshalJSON (line 325) | func (v NullableTime) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 329) | func (v *NullableTime) UnmarshalJSON(src []byte) error { function NewNullableTime (line 321) | func NewNullableTime(val *time.Time) *NullableTime { function IsNil (line 335) | func IsNil(i interface{}) bool { type MappedNullable (line 348) | type MappedNullable interface function newStrictDecoder (line 353) | func newStrictDecoder(data []byte) *json.Decoder { function reportError (line 360) | func reportError(format string, a ...interface{}) error { FILE: pkg/clihelpers/helpers.go constant WarningJQIsComplicated (line 7) | WarningJQIsComplicated = "We have to admit, this is not easy if you don'... FILE: pkg/driver.go function NewConfigurationWithDefaults (line 29) | func NewConfigurationWithDefaults(t testing.TB, opts ...configx.OptionMo... function NewFastRegistryWithMocks (line 63) | func NewFastRegistryWithMocks(t *testing.T, opts ...configx.OptionModifi... function NewRegistryDefaultWithDSN (line 77) | func NewRegistryDefaultWithDSN(t testing.TB, dsn string, opts ...configx... function NewVeryFastRegistryWithoutDB (line 105) | func NewVeryFastRegistryWithoutDB(t *testing.T) (*config.Config, *driver... FILE: pkg/httpclient/api_courier.go type CourierAPI (line 23) | type CourierAPI interface type CourierAPIService (line 56) | type CourierAPIService method GetCourierMessage (line 77) | func (a *CourierAPIService) GetCourierMessage(ctx context.Context, id ... method GetCourierMessageExecute (line 88) | func (a *CourierAPIService) GetCourierMessageExecute(r CourierAPIGetCo... method ListCourierMessages (line 240) | func (a *CourierAPIService) ListCourierMessages(ctx context.Context) C... method ListCourierMessagesExecute (line 250) | func (a *CourierAPIService) ListCourierMessagesExecute(r CourierAPILis... type CourierAPIGetCourierMessageRequest (line 58) | type CourierAPIGetCourierMessageRequest struct method Execute (line 64) | func (r CourierAPIGetCourierMessageRequest) Execute() (*Message, *http... type CourierAPIListCourierMessagesRequest (line 195) | type CourierAPIListCourierMessagesRequest struct method PageSize (line 205) | func (r CourierAPIListCourierMessagesRequest) PageSize(pageSize int64)... method PageToken (line 211) | func (r CourierAPIListCourierMessagesRequest) PageToken(pageToken stri... method Status (line 217) | func (r CourierAPIListCourierMessagesRequest) Status(status CourierMes... method Recipient (line 223) | func (r CourierAPIListCourierMessagesRequest) Recipient(recipient stri... method Execute (line 228) | func (r CourierAPIListCourierMessagesRequest) Execute() ([]Message, *h... FILE: pkg/httpclient/api_frontend.go type FrontendAPI (line 23) | type FrontendAPI interface type FrontendAPIService (line 959) | type FrontendAPIService method CreateBrowserLoginFlow (line 1056) | func (a *FrontendAPIService) CreateBrowserLoginFlow(ctx context.Contex... method CreateBrowserLoginFlowExecute (line 1066) | func (a *FrontendAPIService) CreateBrowserLoginFlowExecute(r FrontendA... method CreateBrowserLogoutFlow (line 1222) | func (a *FrontendAPIService) CreateBrowserLogoutFlow(ctx context.Conte... method CreateBrowserLogoutFlowExecute (line 1232) | func (a *FrontendAPIService) CreateBrowserLogoutFlowExecute(r Frontend... method CreateBrowserRecoveryFlow (line 1376) | func (a *FrontendAPIService) CreateBrowserRecoveryFlow(ctx context.Con... method CreateBrowserRecoveryFlowExecute (line 1386) | func (a *FrontendAPIService) CreateBrowserRecoveryFlowExecute(r Fronte... method CreateBrowserRegistrationFlow (line 1551) | func (a *FrontendAPIService) CreateBrowserRegistrationFlow(ctx context... method CreateBrowserRegistrationFlowExecute (line 1561) | func (a *FrontendAPIService) CreateBrowserRegistrationFlowExecute(r Fr... method CreateBrowserSettingsFlow (line 1713) | func (a *FrontendAPIService) CreateBrowserSettingsFlow(ctx context.Con... method CreateBrowserSettingsFlowExecute (line 1723) | func (a *FrontendAPIService) CreateBrowserSettingsFlowExecute(r Fronte... method CreateBrowserVerificationFlow (line 1874) | func (a *FrontendAPIService) CreateBrowserVerificationFlow(ctx context... method CreateBrowserVerificationFlowExecute (line 1884) | func (a *FrontendAPIService) CreateBrowserVerificationFlowExecute(r Fr... method CreateFedcmFlow (line 1985) | func (a *FrontendAPIService) CreateFedcmFlow(ctx context.Context) Fron... method CreateFedcmFlowExecute (line 1995) | func (a *FrontendAPIService) CreateFedcmFlowExecute(r FrontendAPICreat... method CreateNativeLoginFlow (line 2179) | func (a *FrontendAPIService) CreateNativeLoginFlow(ctx context.Context... method CreateNativeLoginFlowExecute (line 2189) | func (a *FrontendAPIService) CreateNativeLoginFlowExecute(r FrontendAP... method CreateNativeRecoveryFlow (line 2334) | func (a *FrontendAPIService) CreateNativeRecoveryFlow(ctx context.Cont... method CreateNativeRecoveryFlowExecute (line 2344) | func (a *FrontendAPIService) CreateNativeRecoveryFlowExecute(r Fronten... method CreateNativeRegistrationFlow (line 2499) | func (a *FrontendAPIService) CreateNativeRegistrationFlow(ctx context.... method CreateNativeRegistrationFlowExecute (line 2509) | func (a *FrontendAPIService) CreateNativeRegistrationFlowExecute(r Fro... method CreateNativeSettingsFlow (line 2658) | func (a *FrontendAPIService) CreateNativeSettingsFlow(ctx context.Cont... method CreateNativeSettingsFlowExecute (line 2668) | func (a *FrontendAPIService) CreateNativeSettingsFlowExecute(r Fronten... method CreateNativeVerificationFlow (line 2797) | func (a *FrontendAPIService) CreateNativeVerificationFlow(ctx context.... method CreateNativeVerificationFlowExecute (line 2807) | func (a *FrontendAPIService) CreateNativeVerificationFlowExecute(r Fro... method DisableMyOtherSessions (line 2934) | func (a *FrontendAPIService) DisableMyOtherSessions(ctx context.Contex... method DisableMyOtherSessionsExecute (line 2944) | func (a *FrontendAPIService) DisableMyOtherSessionsExecute(r FrontendA... method DisableMySession (line 3087) | func (a *FrontendAPIService) DisableMySession(ctx context.Context, id ... method DisableMySessionExecute (line 3096) | func (a *FrontendAPIService) DisableMySessionExecute(r FrontendAPIDisa... method ExchangeSessionToken (line 3225) | func (a *FrontendAPIService) ExchangeSessionToken(ctx context.Context)... method ExchangeSessionTokenExecute (line 3235) | func (a *FrontendAPIService) ExchangeSessionTokenExecute(r FrontendAPI... method GetFlowError (line 3387) | func (a *FrontendAPIService) GetFlowError(ctx context.Context) Fronten... method GetFlowErrorExecute (line 3397) | func (a *FrontendAPIService) GetFlowErrorExecute(r FrontendAPIGetFlowE... method GetLoginFlow (line 3559) | func (a *FrontendAPIService) GetLoginFlow(ctx context.Context) Fronten... method GetLoginFlowExecute (line 3569) | func (a *FrontendAPIService) GetLoginFlowExecute(r FrontendAPIGetLogin... method GetRecoveryFlow (line 3738) | func (a *FrontendAPIService) GetRecoveryFlow(ctx context.Context) Fron... method GetRecoveryFlowExecute (line 3748) | func (a *FrontendAPIService) GetRecoveryFlowExecute(r FrontendAPIGetRe... method GetRegistrationFlow (line 3911) | func (a *FrontendAPIService) GetRegistrationFlow(ctx context.Context) ... method GetRegistrationFlowExecute (line 3921) | func (a *FrontendAPIService) GetRegistrationFlowExecute(r FrontendAPIG... method GetSettingsFlow (line 4098) | func (a *FrontendAPIService) GetSettingsFlow(ctx context.Context) Fron... method GetSettingsFlowExecute (line 4108) | func (a *FrontendAPIService) GetSettingsFlowExecute(r FrontendAPIGetSe... method GetVerificationFlow (line 4291) | func (a *FrontendAPIService) GetVerificationFlow(ctx context.Context) ... method GetVerificationFlowExecute (line 4301) | func (a *FrontendAPIService) GetVerificationFlowExecute(r FrontendAPIG... method GetWebAuthnJavaScript (line 4436) | func (a *FrontendAPIService) GetWebAuthnJavaScript(ctx context.Context... method GetWebAuthnJavaScriptExecute (line 4446) | func (a *FrontendAPIService) GetWebAuthnJavaScriptExecute(r FrontendAP... method ListMySessions (line 4579) | func (a *FrontendAPIService) ListMySessions(ctx context.Context) Front... method ListMySessionsExecute (line 4589) | func (a *FrontendAPIService) ListMySessionsExecute(r FrontendAPIListMy... method PerformNativeLogout (line 4746) | func (a *FrontendAPIService) PerformNativeLogout(ctx context.Context) ... method PerformNativeLogoutExecute (line 4754) | func (a *FrontendAPIService) PerformNativeLogoutExecute(r FrontendAPIP... method ToSession (line 4937) | func (a *FrontendAPIService) ToSession(ctx context.Context) FrontendAP... method ToSessionExecute (line 4947) | func (a *FrontendAPIService) ToSessionExecute(r FrontendAPIToSessionRe... method UpdateFedcmFlow (line 5085) | func (a *FrontendAPIService) UpdateFedcmFlow(ctx context.Context) Fron... method UpdateFedcmFlowExecute (line 5095) | func (a *FrontendAPIService) UpdateFedcmFlowExecute(r FrontendAPIUpdat... method UpdateLoginFlow (line 5284) | func (a *FrontendAPIService) UpdateLoginFlow(ctx context.Context) Fron... method UpdateLoginFlowExecute (line 5294) | func (a *FrontendAPIService) UpdateLoginFlowExecute(r FrontendAPIUpdat... method UpdateLogoutFlow (line 5473) | func (a *FrontendAPIService) UpdateLogoutFlow(ctx context.Context) Fro... method UpdateLogoutFlowExecute (line 5481) | func (a *FrontendAPIService) UpdateLogoutFlowExecute(r FrontendAPIUpda... method UpdateRecoveryFlow (line 5620) | func (a *FrontendAPIService) UpdateRecoveryFlow(ctx context.Context) F... method UpdateRecoveryFlowExecute (line 5630) | func (a *FrontendAPIService) UpdateRecoveryFlowExecute(r FrontendAPIUp... method UpdateRegistrationFlow (line 5823) | func (a *FrontendAPIService) UpdateRegistrationFlow(ctx context.Contex... method UpdateRegistrationFlowExecute (line 5833) | func (a *FrontendAPIService) UpdateRegistrationFlowExecute(r FrontendA... method UpdateSettingsFlow (line 6045) | func (a *FrontendAPIService) UpdateSettingsFlow(ctx context.Context) F... method UpdateSettingsFlowExecute (line 6055) | func (a *FrontendAPIService) UpdateSettingsFlowExecute(r FrontendAPIUp... method UpdateVerificationFlow (line 6265) | func (a *FrontendAPIService) UpdateVerificationFlow(ctx context.Contex... method UpdateVerificationFlowExecute (line 6275) | func (a *FrontendAPIService) UpdateVerificationFlowExecute(r FrontendA... type FrontendAPICreateBrowserLoginFlowRequest (line 961) | type FrontendAPICreateBrowserLoginFlowRequest struct method Refresh (line 975) | func (r FrontendAPICreateBrowserLoginFlowRequest) Refresh(refresh bool... method Aal (line 981) | func (r FrontendAPICreateBrowserLoginFlowRequest) Aal(aal string) Fron... method ReturnTo (line 987) | func (r FrontendAPICreateBrowserLoginFlowRequest) ReturnTo(returnTo st... method Cookie (line 993) | func (r FrontendAPICreateBrowserLoginFlowRequest) Cookie(cookie string... method LoginChallenge (line 999) | func (r FrontendAPICreateBrowserLoginFlowRequest) LoginChallenge(login... method Organization (line 1005) | func (r FrontendAPICreateBrowserLoginFlowRequest) Organization(organiz... method Via (line 1011) | func (r FrontendAPICreateBrowserLoginFlowRequest) Via(via string) Fron... method IdentitySchema (line 1017) | func (r FrontendAPICreateBrowserLoginFlowRequest) IdentitySchema(ident... method Execute (line 1022) | func (r FrontendAPICreateBrowserLoginFlowRequest) Execute() (*LoginFlo... type FrontendAPICreateBrowserLogoutFlowRequest (line 1182) | type FrontendAPICreateBrowserLogoutFlowRequest struct method Cookie (line 1190) | func (r FrontendAPICreateBrowserLogoutFlowRequest) Cookie(cookie strin... method ReturnTo (line 1196) | func (r FrontendAPICreateBrowserLogoutFlowRequest) ReturnTo(returnTo s... method Execute (line 1201) | func (r FrontendAPICreateBrowserLogoutFlowRequest) Execute() (*LogoutF... type FrontendAPICreateBrowserRecoveryFlowRequest (line 1343) | type FrontendAPICreateBrowserRecoveryFlowRequest struct method ReturnTo (line 1350) | func (r FrontendAPICreateBrowserRecoveryFlowRequest) ReturnTo(returnTo... method Execute (line 1355) | func (r FrontendAPICreateBrowserRecoveryFlowRequest) Execute() (*Recov... type FrontendAPICreateBrowserRegistrationFlowRequest (line 1481) | type FrontendAPICreateBrowserRegistrationFlowRequest struct method ReturnTo (line 1492) | func (r FrontendAPICreateBrowserRegistrationFlowRequest) ReturnTo(retu... method LoginChallenge (line 1498) | func (r FrontendAPICreateBrowserRegistrationFlowRequest) LoginChalleng... method AfterVerificationReturnTo (line 1504) | func (r FrontendAPICreateBrowserRegistrationFlowRequest) AfterVerifica... method Organization (line 1510) | func (r FrontendAPICreateBrowserRegistrationFlowRequest) Organization(... method IdentitySchema (line 1516) | func (r FrontendAPICreateBrowserRegistrationFlowRequest) IdentitySchem... method Execute (line 1521) | func (r FrontendAPICreateBrowserRegistrationFlowRequest) Execute() (*R... type FrontendAPICreateBrowserSettingsFlowRequest (line 1657) | type FrontendAPICreateBrowserSettingsFlowRequest struct method ReturnTo (line 1665) | func (r FrontendAPICreateBrowserSettingsFlowRequest) ReturnTo(returnTo... method Cookie (line 1671) | func (r FrontendAPICreateBrowserSettingsFlowRequest) Cookie(cookie str... method Execute (line 1676) | func (r FrontendAPICreateBrowserSettingsFlowRequest) Execute() (*Setti... type FrontendAPICreateBrowserVerificationFlowRequest (line 1843) | type FrontendAPICreateBrowserVerificationFlowRequest struct method ReturnTo (line 1850) | func (r FrontendAPICreateBrowserVerificationFlowRequest) ReturnTo(retu... method Execute (line 1855) | func (r FrontendAPICreateBrowserVerificationFlowRequest) Execute() (*V... type FrontendAPICreateFedcmFlowRequest (line 1968) | type FrontendAPICreateFedcmFlowRequest struct method Execute (line 1973) | func (r FrontendAPICreateFedcmFlowRequest) Execute() (*CreateFedcmFlow... type FrontendAPICreateNativeLoginFlowRequest (line 2087) | type FrontendAPICreateNativeLoginFlowRequest struct method Refresh (line 2101) | func (r FrontendAPICreateNativeLoginFlowRequest) Refresh(refresh bool)... method Aal (line 2107) | func (r FrontendAPICreateNativeLoginFlowRequest) Aal(aal string) Front... method XSessionToken (line 2113) | func (r FrontendAPICreateNativeLoginFlowRequest) XSessionToken(xSessio... method ReturnSessionTokenExchangeCode (line 2119) | func (r FrontendAPICreateNativeLoginFlowRequest) ReturnSessionTokenExc... method ReturnTo (line 2125) | func (r FrontendAPICreateNativeLoginFlowRequest) ReturnTo(returnTo str... method Organization (line 2131) | func (r FrontendAPICreateNativeLoginFlowRequest) Organization(organiza... method Via (line 2137) | func (r FrontendAPICreateNativeLoginFlowRequest) Via(via string) Front... method IdentitySchema (line 2143) | func (r FrontendAPICreateNativeLoginFlowRequest) IdentitySchema(identi... method Execute (line 2148) | func (r FrontendAPICreateNativeLoginFlowRequest) Execute() (*LoginFlow... type FrontendAPICreateNativeRecoveryFlowRequest (line 2305) | type FrontendAPICreateNativeRecoveryFlowRequest struct method Execute (line 2310) | func (r FrontendAPICreateNativeRecoveryFlowRequest) Execute() (*Recove... type FrontendAPICreateNativeRegistrationFlowRequest (line 2436) | type FrontendAPICreateNativeRegistrationFlowRequest struct method ReturnSessionTokenExchangeCode (line 2446) | func (r FrontendAPICreateNativeRegistrationFlowRequest) ReturnSessionT... method ReturnTo (line 2452) | func (r FrontendAPICreateNativeRegistrationFlowRequest) ReturnTo(retur... method Organization (line 2458) | func (r FrontendAPICreateNativeRegistrationFlowRequest) Organization(o... method IdentitySchema (line 2464) | func (r FrontendAPICreateNativeRegistrationFlowRequest) IdentitySchema... method Execute (line 2469) | func (r FrontendAPICreateNativeRegistrationFlowRequest) Execute() (*Re... type FrontendAPICreateNativeSettingsFlowRequest (line 2613) | type FrontendAPICreateNativeSettingsFlowRequest struct method XSessionToken (line 2620) | func (r FrontendAPICreateNativeSettingsFlowRequest) XSessionToken(xSes... method Execute (line 2625) | func (r FrontendAPICreateNativeSettingsFlowRequest) Execute() (*Settin... type FrontendAPICreateNativeVerificationFlowRequest (line 2763) | type FrontendAPICreateNativeVerificationFlowRequest struct method ReturnTo (line 2770) | func (r FrontendAPICreateNativeVerificationFlowRequest) ReturnTo(retur... method Execute (line 2775) | func (r FrontendAPICreateNativeVerificationFlowRequest) Execute() (*Ve... type FrontendAPIDisableMyOtherSessionsRequest (line 2902) | type FrontendAPIDisableMyOtherSessionsRequest struct method XSessionToken (line 2910) | func (r FrontendAPIDisableMyOtherSessionsRequest) XSessionToken(xSessi... method Cookie (line 2916) | func (r FrontendAPIDisableMyOtherSessionsRequest) Cookie(cookie string... method Execute (line 2921) | func (r FrontendAPIDisableMyOtherSessionsRequest) Execute() (*DeleteMy... type FrontendAPIDisableMySessionRequest (line 3053) | type FrontendAPIDisableMySessionRequest struct method XSessionToken (line 3062) | func (r FrontendAPIDisableMySessionRequest) XSessionToken(xSessionToke... method Cookie (line 3068) | func (r FrontendAPIDisableMySessionRequest) Cookie(cookie string) Fron... method Execute (line 3073) | func (r FrontendAPIDisableMySessionRequest) Execute() (*http.Response,... type FrontendAPIExchangeSessionTokenRequest (line 3196) | type FrontendAPIExchangeSessionTokenRequest struct method InitCode (line 3204) | func (r FrontendAPIExchangeSessionTokenRequest) InitCode(initCode stri... method ReturnToCode (line 3210) | func (r FrontendAPIExchangeSessionTokenRequest) ReturnToCode(returnToC... method Execute (line 3215) | func (r FrontendAPIExchangeSessionTokenRequest) Execute() (*Successful... type FrontendAPIGetFlowErrorRequest (line 3357) | type FrontendAPIGetFlowErrorRequest struct method Id (line 3364) | func (r FrontendAPIGetFlowErrorRequest) Id(id string) FrontendAPIGetFl... method Execute (line 3369) | func (r FrontendAPIGetFlowErrorRequest) Execute() (*FlowError, *http.R... type FrontendAPIGetLoginFlowRequest (line 3506) | type FrontendAPIGetLoginFlowRequest struct method Id (line 3514) | func (r FrontendAPIGetLoginFlowRequest) Id(id string) FrontendAPIGetLo... method Cookie (line 3520) | func (r FrontendAPIGetLoginFlowRequest) Cookie(cookie string) Frontend... method Execute (line 3525) | func (r FrontendAPIGetLoginFlowRequest) Execute() (*LoginFlow, *http.R... type FrontendAPIGetRecoveryFlowRequest (line 3690) | type FrontendAPIGetRecoveryFlowRequest struct method Id (line 3698) | func (r FrontendAPIGetRecoveryFlowRequest) Id(id string) FrontendAPIGe... method Cookie (line 3704) | func (r FrontendAPIGetRecoveryFlowRequest) Cookie(cookie string) Front... method Execute (line 3709) | func (r FrontendAPIGetRecoveryFlowRequest) Execute() (*RecoveryFlow, *... type FrontendAPIGetRegistrationFlowRequest (line 3858) | type FrontendAPIGetRegistrationFlowRequest struct method Id (line 3866) | func (r FrontendAPIGetRegistrationFlowRequest) Id(id string) FrontendA... method Cookie (line 3872) | func (r FrontendAPIGetRegistrationFlowRequest) Cookie(cookie string) F... method Execute (line 3877) | func (r FrontendAPIGetRegistrationFlowRequest) Execute() (*Registratio... type FrontendAPIGetSettingsFlowRequest (line 4042) | type FrontendAPIGetSettingsFlowRequest struct method Id (line 4051) | func (r FrontendAPIGetSettingsFlowRequest) Id(id string) FrontendAPIGe... method XSessionToken (line 4057) | func (r FrontendAPIGetSettingsFlowRequest) XSessionToken(xSessionToken... method Cookie (line 4063) | func (r FrontendAPIGetSettingsFlowRequest) Cookie(cookie string) Front... method Execute (line 4068) | func (r FrontendAPIGetSettingsFlowRequest) Execute() (*SettingsFlow, *... type FrontendAPIGetVerificationFlowRequest (line 4243) | type FrontendAPIGetVerificationFlowRequest struct method Id (line 4251) | func (r FrontendAPIGetVerificationFlowRequest) Id(id string) FrontendA... method Cookie (line 4257) | func (r FrontendAPIGetVerificationFlowRequest) Cookie(cookie string) F... method Execute (line 4262) | func (r FrontendAPIGetVerificationFlowRequest) Execute() (*Verificatio... type FrontendAPIGetWebAuthnJavaScriptRequest (line 4411) | type FrontendAPIGetWebAuthnJavaScriptRequest struct method Execute (line 4416) | func (r FrontendAPIGetWebAuthnJavaScriptRequest) Execute() (string, *h... type FrontendAPIListMySessionsRequest (line 4519) | type FrontendAPIListMySessionsRequest struct method PerPage (line 4531) | func (r FrontendAPIListMySessionsRequest) PerPage(perPage int64) Front... method Page (line 4537) | func (r FrontendAPIListMySessionsRequest) Page(page int64) FrontendAPI... method PageSize (line 4543) | func (r FrontendAPIListMySessionsRequest) PageSize(pageSize int64) Fro... method PageToken (line 4549) | func (r FrontendAPIListMySessionsRequest) PageToken(pageToken string) ... method XSessionToken (line 4555) | func (r FrontendAPIListMySessionsRequest) XSessionToken(xSessionToken ... method Cookie (line 4561) | func (r FrontendAPIListMySessionsRequest) Cookie(cookie string) Fronte... method Execute (line 4566) | func (r FrontendAPIListMySessionsRequest) Execute() ([]Session, *http.... type FrontendAPIPerformNativeLogoutRequest (line 4716) | type FrontendAPIPerformNativeLogoutRequest struct method PerformNativeLogoutBody (line 4722) | func (r FrontendAPIPerformNativeLogoutRequest) PerformNativeLogoutBody... method Execute (line 4727) | func (r FrontendAPIPerformNativeLogoutRequest) Execute() (*http.Respon... type FrontendAPIToSessionRequest (line 4841) | type FrontendAPIToSessionRequest struct method XSessionToken (line 4850) | func (r FrontendAPIToSessionRequest) XSessionToken(xSessionToken strin... method Cookie (line 4856) | func (r FrontendAPIToSessionRequest) Cookie(cookie string) FrontendAPI... method TokenizeAs (line 4862) | func (r FrontendAPIToSessionRequest) TokenizeAs(tokenizeAs string) Fro... method Execute (line 4867) | func (r FrontendAPIToSessionRequest) Execute() (*Session, *http.Respon... type FrontendAPIUpdateFedcmFlowRequest (line 5059) | type FrontendAPIUpdateFedcmFlowRequest struct method UpdateFedcmFlowBody (line 5065) | func (r FrontendAPIUpdateFedcmFlowRequest) UpdateFedcmFlowBody(updateF... method Execute (line 5070) | func (r FrontendAPIUpdateFedcmFlowRequest) Execute() (*SuccessfulNativ... type FrontendAPIUpdateLoginFlowRequest (line 5214) | type FrontendAPIUpdateLoginFlowRequest struct method Flow (line 5224) | func (r FrontendAPIUpdateLoginFlowRequest) Flow(flow string) FrontendA... method UpdateLoginFlowBody (line 5229) | func (r FrontendAPIUpdateLoginFlowRequest) UpdateLoginFlowBody(updateL... method XSessionToken (line 5235) | func (r FrontendAPIUpdateLoginFlowRequest) XSessionToken(xSessionToken... method Cookie (line 5241) | func (r FrontendAPIUpdateLoginFlowRequest) Cookie(cookie string) Front... method Execute (line 5246) | func (r FrontendAPIUpdateLoginFlowRequest) Execute() (*SuccessfulNativ... type FrontendAPIUpdateLogoutFlowRequest (line 5423) | type FrontendAPIUpdateLogoutFlowRequest struct method Token (line 5432) | func (r FrontendAPIUpdateLogoutFlowRequest) Token(token string) Fronte... method ReturnTo (line 5438) | func (r FrontendAPIUpdateLogoutFlowRequest) ReturnTo(returnTo string) ... method Cookie (line 5444) | func (r FrontendAPIUpdateLogoutFlowRequest) Cookie(cookie string) Fron... method Execute (line 5449) | func (r FrontendAPIUpdateLogoutFlowRequest) Execute() (*http.Response,... type FrontendAPIUpdateRecoveryFlowRequest (line 5561) | type FrontendAPIUpdateRecoveryFlowRequest struct method Flow (line 5571) | func (r FrontendAPIUpdateRecoveryFlowRequest) Flow(flow string) Fronte... method UpdateRecoveryFlowBody (line 5576) | func (r FrontendAPIUpdateRecoveryFlowRequest) UpdateRecoveryFlowBody(u... method Token (line 5582) | func (r FrontendAPIUpdateRecoveryFlowRequest) Token(token string) Fron... method Cookie (line 5588) | func (r FrontendAPIUpdateRecoveryFlowRequest) Cookie(cookie string) Fr... method Execute (line 5593) | func (r FrontendAPIUpdateRecoveryFlowRequest) Execute() (*RecoveryFlow... type FrontendAPIUpdateRegistrationFlowRequest (line 5759) | type FrontendAPIUpdateRegistrationFlowRequest struct method Flow (line 5768) | func (r FrontendAPIUpdateRegistrationFlowRequest) Flow(flow string) Fr... method UpdateRegistrationFlowBody (line 5773) | func (r FrontendAPIUpdateRegistrationFlowRequest) UpdateRegistrationFl... method Cookie (line 5779) | func (r FrontendAPIUpdateRegistrationFlowRequest) Cookie(cookie string... method Execute (line 5784) | func (r FrontendAPIUpdateRegistrationFlowRequest) Execute() (*Successf... type FrontendAPIUpdateSettingsFlowRequest (line 5959) | type FrontendAPIUpdateSettingsFlowRequest struct method Flow (line 5969) | func (r FrontendAPIUpdateSettingsFlowRequest) Flow(flow string) Fronte... method UpdateSettingsFlowBody (line 5974) | func (r FrontendAPIUpdateSettingsFlowRequest) UpdateSettingsFlowBody(u... method XSessionToken (line 5980) | func (r FrontendAPIUpdateSettingsFlowRequest) XSessionToken(xSessionTo... method Cookie (line 5986) | func (r FrontendAPIUpdateSettingsFlowRequest) Cookie(cookie string) Fr... method Execute (line 5991) | func (r FrontendAPIUpdateSettingsFlowRequest) Execute() (*SettingsFlow... type FrontendAPIUpdateVerificationFlowRequest (line 6206) | type FrontendAPIUpdateVerificationFlowRequest struct method Flow (line 6216) | func (r FrontendAPIUpdateVerificationFlowRequest) Flow(flow string) Fr... method UpdateVerificationFlowBody (line 6221) | func (r FrontendAPIUpdateVerificationFlowRequest) UpdateVerificationFl... method Token (line 6227) | func (r FrontendAPIUpdateVerificationFlowRequest) Token(token string) ... method Cookie (line 6233) | func (r FrontendAPIUpdateVerificationFlowRequest) Cookie(cookie string... method Execute (line 6238) | func (r FrontendAPIUpdateVerificationFlowRequest) Execute() (*Verifica... FILE: pkg/httpclient/api_identity.go type IdentityAPI (line 24) | type IdentityAPI interface type IdentityAPIService (line 349) | type IdentityAPIService method BatchPatchIdentities (line 395) | func (a *IdentityAPIService) BatchPatchIdentities(ctx context.Context)... method BatchPatchIdentitiesExecute (line 405) | func (a *IdentityAPIService) BatchPatchIdentitiesExecute(r IdentityAPI... method CreateIdentity (line 549) | func (a *IdentityAPIService) CreateIdentity(ctx context.Context) Ident... method CreateIdentityExecute (line 559) | func (a *IdentityAPIService) CreateIdentityExecute(r IdentityAPICreate... method CreateRecoveryCodeForIdentity (line 702) | func (a *IdentityAPIService) CreateRecoveryCodeForIdentity(ctx context... method CreateRecoveryCodeForIdentityExecute (line 712) | func (a *IdentityAPIService) CreateRecoveryCodeForIdentityExecute(r Id... method CreateRecoveryLinkForIdentity (line 861) | func (a *IdentityAPIService) CreateRecoveryLinkForIdentity(ctx context... method CreateRecoveryLinkForIdentityExecute (line 871) | func (a *IdentityAPIService) CreateRecoveryLinkForIdentityExecute(r Id... method DeleteIdentity (line 1013) | func (a *IdentityAPIService) DeleteIdentity(ctx context.Context, id st... method DeleteIdentityExecute (line 1022) | func (a *IdentityAPIService) DeleteIdentityExecute(r IdentityAPIDelete... method DeleteIdentityCredentials (line 1148) | func (a *IdentityAPIService) DeleteIdentityCredentials(ctx context.Con... method DeleteIdentityCredentialsExecute (line 1158) | func (a *IdentityAPIService) DeleteIdentityCredentialsExecute(r Identi... method DeleteIdentitySessions (line 1278) | func (a *IdentityAPIService) DeleteIdentitySessions(ctx context.Contex... method DeleteIdentitySessionsExecute (line 1287) | func (a *IdentityAPIService) DeleteIdentitySessionsExecute(r IdentityA... method DisableSession (line 1425) | func (a *IdentityAPIService) DisableSession(ctx context.Context, id st... method DisableSessionExecute (line 1434) | func (a *IdentityAPIService) DisableSessionExecute(r IdentityAPIDisabl... method ExtendSession (line 1571) | func (a *IdentityAPIService) ExtendSession(ctx context.Context, id str... method ExtendSessionExecute (line 1582) | func (a *IdentityAPIService) ExtendSessionExecute(r IdentityAPIExtendS... method GetIdentity (line 1727) | func (a *IdentityAPIService) GetIdentity(ctx context.Context, id strin... method GetIdentityExecute (line 1738) | func (a *IdentityAPIService) GetIdentityExecute(r IdentityAPIGetIdenti... method GetIdentityByExternalID (line 1883) | func (a *IdentityAPIService) GetIdentityByExternalID(ctx context.Conte... method GetIdentityByExternalIDExecute (line 1894) | func (a *IdentityAPIService) GetIdentityByExternalIDExecute(r Identity... method GetIdentitySchema (line 2031) | func (a *IdentityAPIService) GetIdentitySchema(ctx context.Context, id... method GetIdentitySchemaExecute (line 2042) | func (a *IdentityAPIService) GetIdentitySchemaExecute(r IdentityAPIGet... method GetSession (line 2163) | func (a *IdentityAPIService) GetSession(ctx context.Context, id string... method GetSessionExecute (line 2174) | func (a *IdentityAPIService) GetSessionExecute(r IdentityAPIGetSession... method ListIdentities (line 2379) | func (a *IdentityAPIService) ListIdentities(ctx context.Context) Ident... method ListIdentitiesExecute (line 2389) | func (a *IdentityAPIService) ListIdentitiesExecute(r IdentityAPIListId... method ListIdentitySchemas (line 2581) | func (a *IdentityAPIService) ListIdentitySchemas(ctx context.Context) ... method ListIdentitySchemasExecute (line 2591) | func (a *IdentityAPIService) ListIdentitySchemasExecute(r IdentityAPIL... method ListIdentitySessions (line 2744) | func (a *IdentityAPIService) ListIdentitySessions(ctx context.Context,... method ListIdentitySessionsExecute (line 2755) | func (a *IdentityAPIService) ListIdentitySessionsExecute(r IdentityAPI... method ListSessions (line 2939) | func (a *IdentityAPIService) ListSessions(ctx context.Context) Identit... method ListSessionsExecute (line 2949) | func (a *IdentityAPIService) ListSessionsExecute(r IdentityAPIListSess... method PatchIdentity (line 3104) | func (a *IdentityAPIService) PatchIdentity(ctx context.Context, id str... method PatchIdentityExecute (line 3115) | func (a *IdentityAPIService) PatchIdentityExecute(r IdentityAPIPatchId... method UpdateIdentity (line 3275) | func (a *IdentityAPIService) UpdateIdentity(ctx context.Context, id st... method UpdateIdentityExecute (line 3286) | func (a *IdentityAPIService) UpdateIdentityExecute(r IdentityAPIUpdate... type IdentityAPIBatchPatchIdentitiesRequest (line 351) | type IdentityAPIBatchPatchIdentitiesRequest struct method PatchIdentitiesBody (line 357) | func (r IdentityAPIBatchPatchIdentitiesRequest) PatchIdentitiesBody(pa... method Execute (line 362) | func (r IdentityAPIBatchPatchIdentitiesRequest) Execute() (*BatchPatch... type IdentityAPICreateIdentityRequest (line 524) | type IdentityAPICreateIdentityRequest struct method CreateIdentityBody (line 530) | func (r IdentityAPICreateIdentityRequest) CreateIdentityBody(createIde... method Execute (line 535) | func (r IdentityAPICreateIdentityRequest) Execute() (*Identity, *http.... type IdentityAPICreateRecoveryCodeForIdentityRequest (line 678) | type IdentityAPICreateRecoveryCodeForIdentityRequest struct method CreateRecoveryCodeForIdentityBody (line 684) | func (r IdentityAPICreateRecoveryCodeForIdentityRequest) CreateRecover... method Execute (line 689) | func (r IdentityAPICreateRecoveryCodeForIdentityRequest) Execute() (*R... type IdentityAPICreateRecoveryLinkForIdentityRequest (line 831) | type IdentityAPICreateRecoveryLinkForIdentityRequest struct method ReturnTo (line 838) | func (r IdentityAPICreateRecoveryLinkForIdentityRequest) ReturnTo(retu... method CreateRecoveryLinkForIdentityBody (line 843) | func (r IdentityAPICreateRecoveryLinkForIdentityRequest) CreateRecover... method Execute (line 848) | func (r IdentityAPICreateRecoveryLinkForIdentityRequest) Execute() (*R... type IdentityAPIDeleteIdentityRequest (line 993) | type IdentityAPIDeleteIdentityRequest struct method Execute (line 999) | func (r IdentityAPIDeleteIdentityRequest) Execute() (*http.Response, e... type IdentityAPIDeleteIdentityCredentialsRequest (line 1119) | type IdentityAPIDeleteIdentityCredentialsRequest struct method Identifier (line 1128) | func (r IdentityAPIDeleteIdentityCredentialsRequest) Identifier(identi... method Execute (line 1133) | func (r IdentityAPIDeleteIdentityCredentialsRequest) Execute() (*http.... type IdentityAPIDeleteIdentitySessionsRequest (line 1259) | type IdentityAPIDeleteIdentitySessionsRequest struct method Execute (line 1265) | func (r IdentityAPIDeleteIdentitySessionsRequest) Execute() (*http.Res... type IdentityAPIDisableSessionRequest (line 1406) | type IdentityAPIDisableSessionRequest struct method Execute (line 1412) | func (r IdentityAPIDisableSessionRequest) Execute() (*http.Response, e... type IdentityAPIExtendSessionRequest (line 1542) | type IdentityAPIExtendSessionRequest struct method Execute (line 1548) | func (r IdentityAPIExtendSessionRequest) Execute() (*Session, *http.Re... type IdentityAPIGetIdentityRequest (line 1700) | type IdentityAPIGetIdentityRequest struct method IncludeCredential (line 1708) | func (r IdentityAPIGetIdentityRequest) IncludeCredential(includeCreden... method Execute (line 1713) | func (r IdentityAPIGetIdentityRequest) Execute() (*Identity, *http.Res... type IdentityAPIGetIdentityByExternalIDRequest (line 1856) | type IdentityAPIGetIdentityByExternalIDRequest struct method IncludeCredential (line 1864) | func (r IdentityAPIGetIdentityByExternalIDRequest) IncludeCredential(i... method Execute (line 1869) | func (r IdentityAPIGetIdentityByExternalIDRequest) Execute() (*Identit... type IdentityAPIGetIdentitySchemaRequest (line 2012) | type IdentityAPIGetIdentitySchemaRequest struct method Execute (line 2018) | func (r IdentityAPIGetIdentitySchemaRequest) Execute() (map[string]int... type IdentityAPIGetSessionRequest (line 2135) | type IdentityAPIGetSessionRequest struct method Expand (line 2143) | func (r IdentityAPIGetSessionRequest) Expand(expand []string) Identity... method Execute (line 2148) | func (r IdentityAPIGetSessionRequest) Execute() (*Session, *http.Respo... type IdentityAPIListIdentitiesRequest (line 2292) | type IdentityAPIListIdentitiesRequest struct method PerPage (line 2308) | func (r IdentityAPIListIdentitiesRequest) PerPage(perPage int64) Ident... method Page (line 2314) | func (r IdentityAPIListIdentitiesRequest) Page(page int64) IdentityAPI... method PageSize (line 2320) | func (r IdentityAPIListIdentitiesRequest) PageSize(pageSize int64) Ide... method PageToken (line 2326) | func (r IdentityAPIListIdentitiesRequest) PageToken(pageToken string) ... method Consistency (line 2332) | func (r IdentityAPIListIdentitiesRequest) Consistency(consistency stri... method Ids (line 2338) | func (r IdentityAPIListIdentitiesRequest) Ids(ids []string) IdentityAP... method CredentialsIdentifier (line 2344) | func (r IdentityAPIListIdentitiesRequest) CredentialsIdentifier(creden... method PreviewCredentialsIdentifierSimilar (line 2350) | func (r IdentityAPIListIdentitiesRequest) PreviewCredentialsIdentifier... method IncludeCredential (line 2356) | func (r IdentityAPIListIdentitiesRequest) IncludeCredential(includeCre... method OrganizationId (line 2362) | func (r IdentityAPIListIdentitiesRequest) OrganizationId(organizationI... method Execute (line 2367) | func (r IdentityAPIListIdentitiesRequest) Execute() ([]Identity, *http... type IdentityAPIListIdentitySchemasRequest (line 2536) | type IdentityAPIListIdentitySchemasRequest struct method PerPage (line 2546) | func (r IdentityAPIListIdentitySchemasRequest) PerPage(perPage int64) ... method Page (line 2552) | func (r IdentityAPIListIdentitySchemasRequest) Page(page int64) Identi... method PageSize (line 2558) | func (r IdentityAPIListIdentitySchemasRequest) PageSize(pageSize int64... method PageToken (line 2564) | func (r IdentityAPIListIdentitySchemasRequest) PageToken(pageToken str... method Execute (line 2569) | func (r IdentityAPIListIdentitySchemasRequest) Execute() ([]IdentitySc... type IdentityAPIListIdentitySessionsRequest (line 2690) | type IdentityAPIListIdentitySessionsRequest struct method PerPage (line 2702) | func (r IdentityAPIListIdentitySessionsRequest) PerPage(perPage int64)... method Page (line 2708) | func (r IdentityAPIListIdentitySessionsRequest) Page(page int64) Ident... method PageSize (line 2714) | func (r IdentityAPIListIdentitySessionsRequest) PageSize(pageSize int6... method PageToken (line 2720) | func (r IdentityAPIListIdentitySessionsRequest) PageToken(pageToken st... method Active (line 2726) | func (r IdentityAPIListIdentitySessionsRequest) Active(active bool) Id... method Execute (line 2731) | func (r IdentityAPIListIdentitySessionsRequest) Execute() ([]Session, ... type IdentityAPIListSessionsRequest (line 2894) | type IdentityAPIListSessionsRequest struct method PageSize (line 2904) | func (r IdentityAPIListSessionsRequest) PageSize(pageSize int64) Ident... method PageToken (line 2910) | func (r IdentityAPIListSessionsRequest) PageToken(pageToken string) Id... method Active (line 2916) | func (r IdentityAPIListSessionsRequest) Active(active bool) IdentityAP... method Expand (line 2922) | func (r IdentityAPIListSessionsRequest) Expand(expand []string) Identi... method Execute (line 2927) | func (r IdentityAPIListSessionsRequest) Execute() ([]Session, *http.Re... type IdentityAPIPatchIdentityRequest (line 3078) | type IdentityAPIPatchIdentityRequest struct method JsonPatch (line 3085) | func (r IdentityAPIPatchIdentityRequest) JsonPatch(jsonPatch []JsonPat... method Execute (line 3090) | func (r IdentityAPIPatchIdentityRequest) Execute() (*Identity, *http.R... type IdentityAPIUpdateIdentityRequest (line 3246) | type IdentityAPIUpdateIdentityRequest struct method UpdateIdentityBody (line 3253) | func (r IdentityAPIUpdateIdentityRequest) UpdateIdentityBody(updateIde... method Execute (line 3258) | func (r IdentityAPIUpdateIdentityRequest) Execute() (*Identity, *http.... FILE: pkg/httpclient/api_metadata.go type MetadataAPI (line 22) | type MetadataAPI interface type MetadataAPIService (line 88) | type MetadataAPIService method GetVersion (line 113) | func (a *MetadataAPIService) GetVersion(ctx context.Context) MetadataA... method GetVersionExecute (line 123) | func (a *MetadataAPIService) GetVersionExecute(r MetadataAPIGetVersion... method IsAlive (line 220) | func (a *MetadataAPIService) IsAlive(ctx context.Context) MetadataAPII... method IsAliveExecute (line 230) | func (a *MetadataAPIService) IsAliveExecute(r MetadataAPIIsAliveReques... method IsReady (line 335) | func (a *MetadataAPIService) IsReady(ctx context.Context) MetadataAPII... method IsReadyExecute (line 345) | func (a *MetadataAPIService) IsReadyExecute(r MetadataAPIIsReadyReques... type MetadataAPIGetVersionRequest (line 90) | type MetadataAPIGetVersionRequest struct method Execute (line 95) | func (r MetadataAPIGetVersionRequest) Execute() (*GetVersion200Respons... type MetadataAPIIsAliveRequest (line 196) | type MetadataAPIIsAliveRequest struct method Execute (line 201) | func (r MetadataAPIIsAliveRequest) Execute() (*IsAlive200Response, *ht... type MetadataAPIIsReadyRequest (line 311) | type MetadataAPIIsReadyRequest struct method Execute (line 316) | func (r MetadataAPIIsReadyRequest) Execute() (*IsAlive200Response, *ht... FILE: pkg/httpclient/client.go type APIClient (line 46) | type APIClient struct method callAPI (line 257) | func (c *APIClient) callAPI(request *http.Request) (*http.Response, er... method GetConfig (line 283) | func (c *APIClient) GetConfig() *Configuration { method prepareRequest (line 294) | func (c *APIClient) prepareRequest( method decode (line 438) | func (c *APIClient) decode(v interface{}, b []byte, contentType string... type service (line 61) | type service struct function NewAPIClient (line 67) | func NewAPIClient(cfg *Configuration) *APIClient { function atoi (line 85) | func atoi(in string) (int, error) { function selectHeaderContentType (line 90) | func selectHeaderContentType(contentTypes []string) string { function selectHeaderAccept (line 101) | func selectHeaderAccept(accepts []string) string { function contains (line 114) | func contains(haystack []string, needle string) bool { function typeCheckParameter (line 124) | func typeCheckParameter(obj interface{}, expected string, name string) e... function parameterValueToString (line 137) | func parameterValueToString(obj interface{}, key string) string { function parameterAddToHeaderOrQuery (line 158) | func parameterAddToHeaderOrQuery(headerOrQueryParams interface{}, keyPre... function parameterToJson (line 248) | func parameterToJson(obj interface{}) (string, error) { type formFile (line 287) | type formFile struct function addFile (line 494) | func addFile(w *multipart.Writer, fieldName, path string) error { function setBody (line 514) | func setBody(body interface{}, contentType string) (bodyBuf *bytes.Buffe... function detectContentType (line 551) | func detectContentType(body interface{}) string { type cacheControl (line 572) | type cacheControl function parseCacheControl (line 574) | func parseCacheControl(headers http.Header) cacheControl { function CacheExpires (line 593) | func CacheExpires(r *http.Response) time.Time { function strlen (line 621) | func strlen(s string) int { type GenericOpenAPIError (line 626) | type GenericOpenAPIError struct method Error (line 633) | func (e GenericOpenAPIError) Error() string { method Body (line 638) | func (e GenericOpenAPIError) Body() []byte { method Model (line 643) | func (e GenericOpenAPIError) Model() interface{} { function formatErrorMessage (line 648) | func formatErrorMessage(status string, v interface{}) string { FILE: pkg/httpclient/configuration.go type contextKey (line 25) | type contextKey method String (line 27) | func (c contextKey) String() string { type BasicAuth (line 49) | type BasicAuth struct type APIKey (line 55) | type APIKey struct type ServerVariable (line 61) | type ServerVariable struct type ServerConfiguration (line 68) | type ServerConfiguration struct type ServerConfigurations (line 75) | type ServerConfigurations method URL (line 112) | func (sc ServerConfigurations) URL(index int, variables map[string]str... type Configuration (line 78) | type Configuration struct method AddDefaultHeader (line 107) | func (c *Configuration) AddDefaultHeader(key string, value string) { method ServerURL (line 140) | func (c *Configuration) ServerURL(index int, variables map[string]stri... method ServerURLWithContext (line 197) | func (c *Configuration) ServerURLWithContext(ctx context.Context, endp... function NewConfiguration (line 90) | func NewConfiguration() *Configuration { function getServerIndex (line 144) | func getServerIndex(ctx context.Context) (int, error) { function getServerOperationIndex (line 155) | func getServerOperationIndex(ctx context.Context, endpoint string) (int,... function getServerVariables (line 170) | func getServerVariables(ctx context.Context) (map[string]string, error) { function getServerOperationVariables (line 181) | func getServerOperationVariables(ctx context.Context, endpoint string) (... FILE: pkg/httpclient/model_authenticator_assurance_level.go type AuthenticatorAssuranceLevel (line 20) | type AuthenticatorAssuranceLevel method UnmarshalJSON (line 38) | func (v *AuthenticatorAssuranceLevel) UnmarshalJSON(src []byte) error { method IsValid (line 67) | func (v AuthenticatorAssuranceLevel) IsValid() bool { method Ptr (line 77) | func (v AuthenticatorAssuranceLevel) Ptr() *AuthenticatorAssuranceLevel { constant AUTHENTICATORASSURANCELEVEL_AAL0 (line 24) | AUTHENTICATORASSURANCELEVEL_AAL0 AuthenticatorAssuranceLevel = "aal0" constant AUTHENTICATORASSURANCELEVEL_AAL1 (line 25) | AUTHENTICATORASSURANCELEVEL_AAL1 AuthenticatorAssuranceLevel = "aal1" constant AUTHENTICATORASSURANCELEVEL_AAL2 (line 26) | AUTHENTICATORASSURANCELEVEL_AAL2 AuthenticatorAssuranceLevel = "aal2" constant AUTHENTICATORASSURANCELEVEL_AAL3 (line 27) | AUTHENTICATORASSURANCELEVEL_AAL3 AuthenticatorAssuranceLevel = "aal3" function NewAuthenticatorAssuranceLevelFromValue (line 57) | func NewAuthenticatorAssuranceLevelFromValue(v string) (*AuthenticatorAs... type NullableAuthenticatorAssuranceLevel (line 81) | type NullableAuthenticatorAssuranceLevel struct method Get (line 86) | func (v NullableAuthenticatorAssuranceLevel) Get() *AuthenticatorAssur... method Set (line 90) | func (v *NullableAuthenticatorAssuranceLevel) Set(val *AuthenticatorAs... method IsSet (line 95) | func (v NullableAuthenticatorAssuranceLevel) IsSet() bool { method Unset (line 99) | func (v *NullableAuthenticatorAssuranceLevel) Unset() { method MarshalJSON (line 108) | func (v NullableAuthenticatorAssuranceLevel) MarshalJSON() ([]byte, er... method UnmarshalJSON (line 112) | func (v *NullableAuthenticatorAssuranceLevel) UnmarshalJSON(src []byte... function NewNullableAuthenticatorAssuranceLevel (line 104) | func NewNullableAuthenticatorAssuranceLevel(val *AuthenticatorAssuranceL... FILE: pkg/httpclient/model_batch_patch_identities_response.go type BatchPatchIdentitiesResponse (line 22) | type BatchPatchIdentitiesResponse struct method GetIdentities (line 48) | func (o *BatchPatchIdentitiesResponse) GetIdentities() []IdentityPatch... method GetIdentitiesOk (line 58) | func (o *BatchPatchIdentitiesResponse) GetIdentitiesOk() ([]IdentityPa... method HasIdentities (line 66) | func (o *BatchPatchIdentitiesResponse) HasIdentities() bool { method SetIdentities (line 75) | func (o *BatchPatchIdentitiesResponse) SetIdentities(v []IdentityPatch... method MarshalJSON (line 79) | func (o BatchPatchIdentitiesResponse) MarshalJSON() ([]byte, error) { method ToMap (line 87) | func (o BatchPatchIdentitiesResponse) ToMap() (map[string]interface{},... method UnmarshalJSON (line 100) | func (o *BatchPatchIdentitiesResponse) UnmarshalJSON(data []byte) (err... type _BatchPatchIdentitiesResponse (line 28) | type _BatchPatchIdentitiesResponse function NewBatchPatchIdentitiesResponse (line 34) | func NewBatchPatchIdentitiesResponse() *BatchPatchIdentitiesResponse { function NewBatchPatchIdentitiesResponseWithDefaults (line 42) | func NewBatchPatchIdentitiesResponseWithDefaults() *BatchPatchIdentities... type NullableBatchPatchIdentitiesResponse (line 121) | type NullableBatchPatchIdentitiesResponse struct method Get (line 126) | func (v NullableBatchPatchIdentitiesResponse) Get() *BatchPatchIdentit... method Set (line 130) | func (v *NullableBatchPatchIdentitiesResponse) Set(val *BatchPatchIden... method IsSet (line 135) | func (v NullableBatchPatchIdentitiesResponse) IsSet() bool { method Unset (line 139) | func (v *NullableBatchPatchIdentitiesResponse) Unset() { method MarshalJSON (line 148) | func (v NullableBatchPatchIdentitiesResponse) MarshalJSON() ([]byte, e... method UnmarshalJSON (line 152) | func (v *NullableBatchPatchIdentitiesResponse) UnmarshalJSON(src []byt... function NewNullableBatchPatchIdentitiesResponse (line 144) | func NewNullableBatchPatchIdentitiesResponse(val *BatchPatchIdentitiesRe... FILE: pkg/httpclient/model_consistency_request_parameters.go type ConsistencyRequestParameters (line 22) | type ConsistencyRequestParameters struct method GetConsistency (line 48) | func (o *ConsistencyRequestParameters) GetConsistency() string { method GetConsistencyOk (line 58) | func (o *ConsistencyRequestParameters) GetConsistencyOk() (*string, bo... method HasConsistency (line 66) | func (o *ConsistencyRequestParameters) HasConsistency() bool { method SetConsistency (line 75) | func (o *ConsistencyRequestParameters) SetConsistency(v string) { method MarshalJSON (line 79) | func (o ConsistencyRequestParameters) MarshalJSON() ([]byte, error) { method ToMap (line 87) | func (o ConsistencyRequestParameters) ToMap() (map[string]interface{},... method UnmarshalJSON (line 100) | func (o *ConsistencyRequestParameters) UnmarshalJSON(data []byte) (err... type _ConsistencyRequestParameters (line 28) | type _ConsistencyRequestParameters function NewConsistencyRequestParameters (line 34) | func NewConsistencyRequestParameters() *ConsistencyRequestParameters { function NewConsistencyRequestParametersWithDefaults (line 42) | func NewConsistencyRequestParametersWithDefaults() *ConsistencyRequestPa... type NullableConsistencyRequestParameters (line 121) | type NullableConsistencyRequestParameters struct method Get (line 126) | func (v NullableConsistencyRequestParameters) Get() *ConsistencyReques... method Set (line 130) | func (v *NullableConsistencyRequestParameters) Set(val *ConsistencyReq... method IsSet (line 135) | func (v NullableConsistencyRequestParameters) IsSet() bool { method Unset (line 139) | func (v *NullableConsistencyRequestParameters) Unset() { method MarshalJSON (line 148) | func (v NullableConsistencyRequestParameters) MarshalJSON() ([]byte, e... method UnmarshalJSON (line 152) | func (v *NullableConsistencyRequestParameters) UnmarshalJSON(src []byt... function NewNullableConsistencyRequestParameters (line 144) | func NewNullableConsistencyRequestParameters(val *ConsistencyRequestPara... FILE: pkg/httpclient/model_continue_with.go type ContinueWith (line 20) | type ContinueWith struct method UnmarshalJSON (line 64) | func (dst *ContinueWith) UnmarshalJSON(data []byte) error { method MarshalJSON (line 197) | func (src ContinueWith) MarshalJSON() ([]byte, error) { method GetActualInstance (line 222) | func (obj *ContinueWith) GetActualInstance() interface{} { method GetActualInstanceValue (line 251) | func (obj ContinueWith) GetActualInstanceValue() interface{} { function ContinueWithRecoveryUiAsContinueWith (line 29) | func ContinueWithRecoveryUiAsContinueWith(v *ContinueWithRecoveryUi) Con... function ContinueWithRedirectBrowserToAsContinueWith (line 36) | func ContinueWithRedirectBrowserToAsContinueWith(v *ContinueWithRedirect... function ContinueWithSetOrySessionTokenAsContinueWith (line 43) | func ContinueWithSetOrySessionTokenAsContinueWith(v *ContinueWithSetOryS... function ContinueWithSettingsUiAsContinueWith (line 50) | func ContinueWithSettingsUiAsContinueWith(v *ContinueWithSettingsUi) Con... function ContinueWithVerificationUiAsContinueWith (line 57) | func ContinueWithVerificationUiAsContinueWith(v *ContinueWithVerificatio... type NullableContinueWith (line 276) | type NullableContinueWith struct method Get (line 281) | func (v NullableContinueWith) Get() *ContinueWith { method Set (line 285) | func (v *NullableContinueWith) Set(val *ContinueWith) { method IsSet (line 290) | func (v NullableContinueWith) IsSet() bool { method Unset (line 294) | func (v *NullableContinueWith) Unset() { method MarshalJSON (line 303) | func (v NullableContinueWith) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 307) | func (v *NullableContinueWith) UnmarshalJSON(src []byte) error { function NewNullableContinueWith (line 299) | func NewNullableContinueWith(val *ContinueWith) *NullableContinueWith { FILE: pkg/httpclient/model_continue_with_recovery_ui.go type ContinueWithRecoveryUi (line 23) | type ContinueWithRecoveryUi struct method GetAction (line 52) | func (o *ContinueWithRecoveryUi) GetAction() string { method GetActionOk (line 63) | func (o *ContinueWithRecoveryUi) GetActionOk() (*string, bool) { method SetAction (line 71) | func (o *ContinueWithRecoveryUi) SetAction(v string) { method GetFlow (line 76) | func (o *ContinueWithRecoveryUi) GetFlow() ContinueWithRecoveryUiFlow { method GetFlowOk (line 87) | func (o *ContinueWithRecoveryUi) GetFlowOk() (*ContinueWithRecoveryUiF... method SetFlow (line 95) | func (o *ContinueWithRecoveryUi) SetFlow(v ContinueWithRecoveryUiFlow) { method MarshalJSON (line 99) | func (o ContinueWithRecoveryUi) MarshalJSON() ([]byte, error) { method ToMap (line 107) | func (o ContinueWithRecoveryUi) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 119) | func (o *ContinueWithRecoveryUi) UnmarshalJSON(data []byte) (err error) { type _ContinueWithRecoveryUi (line 30) | type _ContinueWithRecoveryUi function NewContinueWithRecoveryUi (line 36) | func NewContinueWithRecoveryUi(action string, flow ContinueWithRecoveryU... function NewContinueWithRecoveryUiWithDefaults (line 46) | func NewContinueWithRecoveryUiWithDefaults() *ContinueWithRecoveryUi { type NullableContinueWithRecoveryUi (line 163) | type NullableContinueWithRecoveryUi struct method Get (line 168) | func (v NullableContinueWithRecoveryUi) Get() *ContinueWithRecoveryUi { method Set (line 172) | func (v *NullableContinueWithRecoveryUi) Set(val *ContinueWithRecovery... method IsSet (line 177) | func (v NullableContinueWithRecoveryUi) IsSet() bool { method Unset (line 181) | func (v *NullableContinueWithRecoveryUi) Unset() { method MarshalJSON (line 190) | func (v NullableContinueWithRecoveryUi) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 194) | func (v *NullableContinueWithRecoveryUi) UnmarshalJSON(src []byte) err... function NewNullableContinueWithRecoveryUi (line 186) | func NewNullableContinueWithRecoveryUi(val *ContinueWithRecoveryUi) *Nul... FILE: pkg/httpclient/model_continue_with_recovery_ui_flow.go type ContinueWithRecoveryUiFlow (line 23) | type ContinueWithRecoveryUiFlow struct method GetId (line 52) | func (o *ContinueWithRecoveryUiFlow) GetId() string { method GetIdOk (line 63) | func (o *ContinueWithRecoveryUiFlow) GetIdOk() (*string, bool) { method SetId (line 71) | func (o *ContinueWithRecoveryUiFlow) SetId(v string) { method GetUrl (line 76) | func (o *ContinueWithRecoveryUiFlow) GetUrl() string { method GetUrlOk (line 86) | func (o *ContinueWithRecoveryUiFlow) GetUrlOk() (*string, bool) { method HasUrl (line 94) | func (o *ContinueWithRecoveryUiFlow) HasUrl() bool { method SetUrl (line 103) | func (o *ContinueWithRecoveryUiFlow) SetUrl(v string) { method MarshalJSON (line 107) | func (o ContinueWithRecoveryUiFlow) MarshalJSON() ([]byte, error) { method ToMap (line 115) | func (o ContinueWithRecoveryUiFlow) ToMap() (map[string]interface{}, e... method UnmarshalJSON (line 129) | func (o *ContinueWithRecoveryUiFlow) UnmarshalJSON(data []byte) (err e... type _ContinueWithRecoveryUiFlow (line 31) | type _ContinueWithRecoveryUiFlow function NewContinueWithRecoveryUiFlow (line 37) | func NewContinueWithRecoveryUiFlow(id string) *ContinueWithRecoveryUiFlow { function NewContinueWithRecoveryUiFlowWithDefaults (line 46) | func NewContinueWithRecoveryUiFlowWithDefaults() *ContinueWithRecoveryUi... type NullableContinueWithRecoveryUiFlow (line 172) | type NullableContinueWithRecoveryUiFlow struct method Get (line 177) | func (v NullableContinueWithRecoveryUiFlow) Get() *ContinueWithRecover... method Set (line 181) | func (v *NullableContinueWithRecoveryUiFlow) Set(val *ContinueWithReco... method IsSet (line 186) | func (v NullableContinueWithRecoveryUiFlow) IsSet() bool { method Unset (line 190) | func (v *NullableContinueWithRecoveryUiFlow) Unset() { method MarshalJSON (line 199) | func (v NullableContinueWithRecoveryUiFlow) MarshalJSON() ([]byte, err... method UnmarshalJSON (line 203) | func (v *NullableContinueWithRecoveryUiFlow) UnmarshalJSON(src []byte)... function NewNullableContinueWithRecoveryUiFlow (line 195) | func NewNullableContinueWithRecoveryUiFlow(val *ContinueWithRecoveryUiFl... FILE: pkg/httpclient/model_continue_with_redirect_browser_to.go type ContinueWithRedirectBrowserTo (line 23) | type ContinueWithRedirectBrowserTo struct method GetAction (line 53) | func (o *ContinueWithRedirectBrowserTo) GetAction() string { method GetActionOk (line 64) | func (o *ContinueWithRedirectBrowserTo) GetActionOk() (*string, bool) { method SetAction (line 72) | func (o *ContinueWithRedirectBrowserTo) SetAction(v string) { method GetRedirectBrowserTo (line 77) | func (o *ContinueWithRedirectBrowserTo) GetRedirectBrowserTo() string { method GetRedirectBrowserToOk (line 88) | func (o *ContinueWithRedirectBrowserTo) GetRedirectBrowserToOk() (*str... method SetRedirectBrowserTo (line 96) | func (o *ContinueWithRedirectBrowserTo) SetRedirectBrowserTo(v string) { method MarshalJSON (line 100) | func (o ContinueWithRedirectBrowserTo) MarshalJSON() ([]byte, error) { method ToMap (line 108) | func (o ContinueWithRedirectBrowserTo) ToMap() (map[string]interface{}... method UnmarshalJSON (line 120) | func (o *ContinueWithRedirectBrowserTo) UnmarshalJSON(data []byte) (er... type _ContinueWithRedirectBrowserTo (line 31) | type _ContinueWithRedirectBrowserTo function NewContinueWithRedirectBrowserTo (line 37) | func NewContinueWithRedirectBrowserTo(action string, redirectBrowserTo s... function NewContinueWithRedirectBrowserToWithDefaults (line 47) | func NewContinueWithRedirectBrowserToWithDefaults() *ContinueWithRedirec... type NullableContinueWithRedirectBrowserTo (line 164) | type NullableContinueWithRedirectBrowserTo struct method Get (line 169) | func (v NullableContinueWithRedirectBrowserTo) Get() *ContinueWithRedi... method Set (line 173) | func (v *NullableContinueWithRedirectBrowserTo) Set(val *ContinueWithR... method IsSet (line 178) | func (v NullableContinueWithRedirectBrowserTo) IsSet() bool { method Unset (line 182) | func (v *NullableContinueWithRedirectBrowserTo) Unset() { method MarshalJSON (line 191) | func (v NullableContinueWithRedirectBrowserTo) MarshalJSON() ([]byte, ... method UnmarshalJSON (line 195) | func (v *NullableContinueWithRedirectBrowserTo) UnmarshalJSON(src []by... function NewNullableContinueWithRedirectBrowserTo (line 187) | func NewNullableContinueWithRedirectBrowserTo(val *ContinueWithRedirectB... FILE: pkg/httpclient/model_continue_with_set_ory_session_token.go type ContinueWithSetOrySessionToken (line 23) | type ContinueWithSetOrySessionToken struct method GetAction (line 53) | func (o *ContinueWithSetOrySessionToken) GetAction() string { method GetActionOk (line 64) | func (o *ContinueWithSetOrySessionToken) GetActionOk() (*string, bool) { method SetAction (line 72) | func (o *ContinueWithSetOrySessionToken) SetAction(v string) { method GetOrySessionToken (line 77) | func (o *ContinueWithSetOrySessionToken) GetOrySessionToken() string { method GetOrySessionTokenOk (line 88) | func (o *ContinueWithSetOrySessionToken) GetOrySessionTokenOk() (*stri... method SetOrySessionToken (line 96) | func (o *ContinueWithSetOrySessionToken) SetOrySessionToken(v string) { method MarshalJSON (line 100) | func (o ContinueWithSetOrySessionToken) MarshalJSON() ([]byte, error) { method ToMap (line 108) | func (o ContinueWithSetOrySessionToken) ToMap() (map[string]interface{... method UnmarshalJSON (line 120) | func (o *ContinueWithSetOrySessionToken) UnmarshalJSON(data []byte) (e... type _ContinueWithSetOrySessionToken (line 31) | type _ContinueWithSetOrySessionToken function NewContinueWithSetOrySessionToken (line 37) | func NewContinueWithSetOrySessionToken(action string, orySessionToken st... function NewContinueWithSetOrySessionTokenWithDefaults (line 47) | func NewContinueWithSetOrySessionTokenWithDefaults() *ContinueWithSetOry... type NullableContinueWithSetOrySessionToken (line 164) | type NullableContinueWithSetOrySessionToken struct method Get (line 169) | func (v NullableContinueWithSetOrySessionToken) Get() *ContinueWithSet... method Set (line 173) | func (v *NullableContinueWithSetOrySessionToken) Set(val *ContinueWith... method IsSet (line 178) | func (v NullableContinueWithSetOrySessionToken) IsSet() bool { method Unset (line 182) | func (v *NullableContinueWithSetOrySessionToken) Unset() { method MarshalJSON (line 191) | func (v NullableContinueWithSetOrySessionToken) MarshalJSON() ([]byte,... method UnmarshalJSON (line 195) | func (v *NullableContinueWithSetOrySessionToken) UnmarshalJSON(src []b... function NewNullableContinueWithSetOrySessionToken (line 187) | func NewNullableContinueWithSetOrySessionToken(val *ContinueWithSetOrySe... FILE: pkg/httpclient/model_continue_with_settings_ui.go type ContinueWithSettingsUi (line 23) | type ContinueWithSettingsUi struct method GetAction (line 52) | func (o *ContinueWithSettingsUi) GetAction() string { method GetActionOk (line 63) | func (o *ContinueWithSettingsUi) GetActionOk() (*string, bool) { method SetAction (line 71) | func (o *ContinueWithSettingsUi) SetAction(v string) { method GetFlow (line 76) | func (o *ContinueWithSettingsUi) GetFlow() ContinueWithSettingsUiFlow { method GetFlowOk (line 87) | func (o *ContinueWithSettingsUi) GetFlowOk() (*ContinueWithSettingsUiF... method SetFlow (line 95) | func (o *ContinueWithSettingsUi) SetFlow(v ContinueWithSettingsUiFlow) { method MarshalJSON (line 99) | func (o ContinueWithSettingsUi) MarshalJSON() ([]byte, error) { method ToMap (line 107) | func (o ContinueWithSettingsUi) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 119) | func (o *ContinueWithSettingsUi) UnmarshalJSON(data []byte) (err error) { type _ContinueWithSettingsUi (line 30) | type _ContinueWithSettingsUi function NewContinueWithSettingsUi (line 36) | func NewContinueWithSettingsUi(action string, flow ContinueWithSettingsU... function NewContinueWithSettingsUiWithDefaults (line 46) | func NewContinueWithSettingsUiWithDefaults() *ContinueWithSettingsUi { type NullableContinueWithSettingsUi (line 163) | type NullableContinueWithSettingsUi struct method Get (line 168) | func (v NullableContinueWithSettingsUi) Get() *ContinueWithSettingsUi { method Set (line 172) | func (v *NullableContinueWithSettingsUi) Set(val *ContinueWithSettings... method IsSet (line 177) | func (v NullableContinueWithSettingsUi) IsSet() bool { method Unset (line 181) | func (v *NullableContinueWithSettingsUi) Unset() { method MarshalJSON (line 190) | func (v NullableContinueWithSettingsUi) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 194) | func (v *NullableContinueWithSettingsUi) UnmarshalJSON(src []byte) err... function NewNullableContinueWithSettingsUi (line 186) | func NewNullableContinueWithSettingsUi(val *ContinueWithSettingsUi) *Nul... FILE: pkg/httpclient/model_continue_with_settings_ui_flow.go type ContinueWithSettingsUiFlow (line 23) | type ContinueWithSettingsUiFlow struct method GetId (line 52) | func (o *ContinueWithSettingsUiFlow) GetId() string { method GetIdOk (line 63) | func (o *ContinueWithSettingsUiFlow) GetIdOk() (*string, bool) { method SetId (line 71) | func (o *ContinueWithSettingsUiFlow) SetId(v string) { method GetUrl (line 76) | func (o *ContinueWithSettingsUiFlow) GetUrl() string { method GetUrlOk (line 86) | func (o *ContinueWithSettingsUiFlow) GetUrlOk() (*string, bool) { method HasUrl (line 94) | func (o *ContinueWithSettingsUiFlow) HasUrl() bool { method SetUrl (line 103) | func (o *ContinueWithSettingsUiFlow) SetUrl(v string) { method MarshalJSON (line 107) | func (o ContinueWithSettingsUiFlow) MarshalJSON() ([]byte, error) { method ToMap (line 115) | func (o ContinueWithSettingsUiFlow) ToMap() (map[string]interface{}, e... method UnmarshalJSON (line 129) | func (o *ContinueWithSettingsUiFlow) UnmarshalJSON(data []byte) (err e... type _ContinueWithSettingsUiFlow (line 31) | type _ContinueWithSettingsUiFlow function NewContinueWithSettingsUiFlow (line 37) | func NewContinueWithSettingsUiFlow(id string) *ContinueWithSettingsUiFlow { function NewContinueWithSettingsUiFlowWithDefaults (line 46) | func NewContinueWithSettingsUiFlowWithDefaults() *ContinueWithSettingsUi... type NullableContinueWithSettingsUiFlow (line 172) | type NullableContinueWithSettingsUiFlow struct method Get (line 177) | func (v NullableContinueWithSettingsUiFlow) Get() *ContinueWithSetting... method Set (line 181) | func (v *NullableContinueWithSettingsUiFlow) Set(val *ContinueWithSett... method IsSet (line 186) | func (v NullableContinueWithSettingsUiFlow) IsSet() bool { method Unset (line 190) | func (v *NullableContinueWithSettingsUiFlow) Unset() { method MarshalJSON (line 199) | func (v NullableContinueWithSettingsUiFlow) MarshalJSON() ([]byte, err... method UnmarshalJSON (line 203) | func (v *NullableContinueWithSettingsUiFlow) UnmarshalJSON(src []byte)... function NewNullableContinueWithSettingsUiFlow (line 195) | func NewNullableContinueWithSettingsUiFlow(val *ContinueWithSettingsUiFl... FILE: pkg/httpclient/model_continue_with_verification_ui.go type ContinueWithVerificationUi (line 23) | type ContinueWithVerificationUi struct method GetAction (line 52) | func (o *ContinueWithVerificationUi) GetAction() string { method GetActionOk (line 63) | func (o *ContinueWithVerificationUi) GetActionOk() (*string, bool) { method SetAction (line 71) | func (o *ContinueWithVerificationUi) SetAction(v string) { method GetFlow (line 76) | func (o *ContinueWithVerificationUi) GetFlow() ContinueWithVerificatio... method GetFlowOk (line 87) | func (o *ContinueWithVerificationUi) GetFlowOk() (*ContinueWithVerific... method SetFlow (line 95) | func (o *ContinueWithVerificationUi) SetFlow(v ContinueWithVerificatio... method MarshalJSON (line 99) | func (o ContinueWithVerificationUi) MarshalJSON() ([]byte, error) { method ToMap (line 107) | func (o ContinueWithVerificationUi) ToMap() (map[string]interface{}, e... method UnmarshalJSON (line 119) | func (o *ContinueWithVerificationUi) UnmarshalJSON(data []byte) (err e... type _ContinueWithVerificationUi (line 30) | type _ContinueWithVerificationUi function NewContinueWithVerificationUi (line 36) | func NewContinueWithVerificationUi(action string, flow ContinueWithVerif... function NewContinueWithVerificationUiWithDefaults (line 46) | func NewContinueWithVerificationUiWithDefaults() *ContinueWithVerificati... type NullableContinueWithVerificationUi (line 163) | type NullableContinueWithVerificationUi struct method Get (line 168) | func (v NullableContinueWithVerificationUi) Get() *ContinueWithVerific... method Set (line 172) | func (v *NullableContinueWithVerificationUi) Set(val *ContinueWithVeri... method IsSet (line 177) | func (v NullableContinueWithVerificationUi) IsSet() bool { method Unset (line 181) | func (v *NullableContinueWithVerificationUi) Unset() { method MarshalJSON (line 190) | func (v NullableContinueWithVerificationUi) MarshalJSON() ([]byte, err... method UnmarshalJSON (line 194) | func (v *NullableContinueWithVerificationUi) UnmarshalJSON(src []byte)... function NewNullableContinueWithVerificationUi (line 186) | func NewNullableContinueWithVerificationUi(val *ContinueWithVerification... FILE: pkg/httpclient/model_continue_with_verification_ui_flow.go type ContinueWithVerificationUiFlow (line 23) | type ContinueWithVerificationUiFlow struct method GetId (line 55) | func (o *ContinueWithVerificationUiFlow) GetId() string { method GetIdOk (line 66) | func (o *ContinueWithVerificationUiFlow) GetIdOk() (*string, bool) { method SetId (line 74) | func (o *ContinueWithVerificationUiFlow) SetId(v string) { method GetUrl (line 79) | func (o *ContinueWithVerificationUiFlow) GetUrl() string { method GetUrlOk (line 89) | func (o *ContinueWithVerificationUiFlow) GetUrlOk() (*string, bool) { method HasUrl (line 97) | func (o *ContinueWithVerificationUiFlow) HasUrl() bool { method SetUrl (line 106) | func (o *ContinueWithVerificationUiFlow) SetUrl(v string) { method GetVerifiableAddress (line 111) | func (o *ContinueWithVerificationUiFlow) GetVerifiableAddress() string { method GetVerifiableAddressOk (line 122) | func (o *ContinueWithVerificationUiFlow) GetVerifiableAddressOk() (*st... method SetVerifiableAddress (line 130) | func (o *ContinueWithVerificationUiFlow) SetVerifiableAddress(v string) { method MarshalJSON (line 134) | func (o ContinueWithVerificationUiFlow) MarshalJSON() ([]byte, error) { method ToMap (line 142) | func (o ContinueWithVerificationUiFlow) ToMap() (map[string]interface{... method UnmarshalJSON (line 157) | func (o *ContinueWithVerificationUiFlow) UnmarshalJSON(data []byte) (e... type _ContinueWithVerificationUiFlow (line 33) | type _ContinueWithVerificationUiFlow function NewContinueWithVerificationUiFlow (line 39) | func NewContinueWithVerificationUiFlow(id string, verifiableAddress stri... function NewContinueWithVerificationUiFlowWithDefaults (line 49) | func NewContinueWithVerificationUiFlowWithDefaults() *ContinueWithVerifi... type NullableContinueWithVerificationUiFlow (line 202) | type NullableContinueWithVerificationUiFlow struct method Get (line 207) | func (v NullableContinueWithVerificationUiFlow) Get() *ContinueWithVer... method Set (line 211) | func (v *NullableContinueWithVerificationUiFlow) Set(val *ContinueWith... method IsSet (line 216) | func (v NullableContinueWithVerificationUiFlow) IsSet() bool { method Unset (line 220) | func (v *NullableContinueWithVerificationUiFlow) Unset() { method MarshalJSON (line 229) | func (v NullableContinueWithVerificationUiFlow) MarshalJSON() ([]byte,... method UnmarshalJSON (line 233) | func (v *NullableContinueWithVerificationUiFlow) UnmarshalJSON(src []b... function NewNullableContinueWithVerificationUiFlow (line 225) | func NewNullableContinueWithVerificationUiFlow(val *ContinueWithVerifica... FILE: pkg/httpclient/model_courier_message_status.go type CourierMessageStatus (line 20) | type CourierMessageStatus method UnmarshalJSON (line 38) | func (v *CourierMessageStatus) UnmarshalJSON(src []byte) error { method IsValid (line 67) | func (v CourierMessageStatus) IsValid() bool { method Ptr (line 77) | func (v CourierMessageStatus) Ptr() *CourierMessageStatus { constant COURIERMESSAGESTATUS_QUEUED (line 24) | COURIERMESSAGESTATUS_QUEUED CourierMessageStatus = "queued" constant COURIERMESSAGESTATUS_SENT (line 25) | COURIERMESSAGESTATUS_SENT CourierMessageStatus = "sent" constant COURIERMESSAGESTATUS_PROCESSING (line 26) | COURIERMESSAGESTATUS_PROCESSING CourierMessageStatus = "processing" constant COURIERMESSAGESTATUS_ABANDONED (line 27) | COURIERMESSAGESTATUS_ABANDONED CourierMessageStatus = "abandoned" function NewCourierMessageStatusFromValue (line 57) | func NewCourierMessageStatusFromValue(v string) (*CourierMessageStatus, ... type NullableCourierMessageStatus (line 81) | type NullableCourierMessageStatus struct method Get (line 86) | func (v NullableCourierMessageStatus) Get() *CourierMessageStatus { method Set (line 90) | func (v *NullableCourierMessageStatus) Set(val *CourierMessageStatus) { method IsSet (line 95) | func (v NullableCourierMessageStatus) IsSet() bool { method Unset (line 99) | func (v *NullableCourierMessageStatus) Unset() { method MarshalJSON (line 108) | func (v NullableCourierMessageStatus) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 112) | func (v *NullableCourierMessageStatus) UnmarshalJSON(src []byte) error { function NewNullableCourierMessageStatus (line 104) | func NewNullableCourierMessageStatus(val *CourierMessageStatus) *Nullabl... FILE: pkg/httpclient/model_courier_message_type.go type CourierMessageType (line 20) | type CourierMessageType method UnmarshalJSON (line 34) | func (v *CourierMessageType) UnmarshalJSON(src []byte) error { method IsValid (line 63) | func (v CourierMessageType) IsValid() bool { method Ptr (line 73) | func (v CourierMessageType) Ptr() *CourierMessageType { constant COURIERMESSAGETYPE_EMAIL (line 24) | COURIERMESSAGETYPE_EMAIL CourierMessageType = "email" constant COURIERMESSAGETYPE_PHONE (line 25) | COURIERMESSAGETYPE_PHONE CourierMessageType = "phone" function NewCourierMessageTypeFromValue (line 53) | func NewCourierMessageTypeFromValue(v string) (*CourierMessageType, erro... type NullableCourierMessageType (line 77) | type NullableCourierMessageType struct method Get (line 82) | func (v NullableCourierMessageType) Get() *CourierMessageType { method Set (line 86) | func (v *NullableCourierMessageType) Set(val *CourierMessageType) { method IsSet (line 91) | func (v NullableCourierMessageType) IsSet() bool { method Unset (line 95) | func (v *NullableCourierMessageType) Unset() { method MarshalJSON (line 104) | func (v NullableCourierMessageType) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 108) | func (v *NullableCourierMessageType) UnmarshalJSON(src []byte) error { function NewNullableCourierMessageType (line 100) | func NewNullableCourierMessageType(val *CourierMessageType) *NullableCou... FILE: pkg/httpclient/model_create_fedcm_flow_response.go type CreateFedcmFlowResponse (line 22) | type CreateFedcmFlowResponse struct method GetCsrfToken (line 48) | func (o *CreateFedcmFlowResponse) GetCsrfToken() string { method GetCsrfTokenOk (line 58) | func (o *CreateFedcmFlowResponse) GetCsrfTokenOk() (*string, bool) { method HasCsrfToken (line 66) | func (o *CreateFedcmFlowResponse) HasCsrfToken() bool { method SetCsrfToken (line 75) | func (o *CreateFedcmFlowResponse) SetCsrfToken(v string) { method GetProviders (line 80) | func (o *CreateFedcmFlowResponse) GetProviders() []Provider { method GetProvidersOk (line 90) | func (o *CreateFedcmFlowResponse) GetProvidersOk() ([]Provider, bool) { method HasProviders (line 98) | func (o *CreateFedcmFlowResponse) HasProviders() bool { method SetProviders (line 107) | func (o *CreateFedcmFlowResponse) SetProviders(v []Provider) { method MarshalJSON (line 111) | func (o CreateFedcmFlowResponse) MarshalJSON() ([]byte, error) { method ToMap (line 119) | func (o CreateFedcmFlowResponse) ToMap() (map[string]interface{}, erro... method UnmarshalJSON (line 135) | func (o *CreateFedcmFlowResponse) UnmarshalJSON(data []byte) (err erro... type _CreateFedcmFlowResponse (line 28) | type _CreateFedcmFlowResponse function NewCreateFedcmFlowResponse (line 34) | func NewCreateFedcmFlowResponse() *CreateFedcmFlowResponse { function NewCreateFedcmFlowResponseWithDefaults (line 42) | func NewCreateFedcmFlowResponseWithDefaults() *CreateFedcmFlowResponse { type NullableCreateFedcmFlowResponse (line 157) | type NullableCreateFedcmFlowResponse struct method Get (line 162) | func (v NullableCreateFedcmFlowResponse) Get() *CreateFedcmFlowResponse { method Set (line 166) | func (v *NullableCreateFedcmFlowResponse) Set(val *CreateFedcmFlowResp... method IsSet (line 171) | func (v NullableCreateFedcmFlowResponse) IsSet() bool { method Unset (line 175) | func (v *NullableCreateFedcmFlowResponse) Unset() { method MarshalJSON (line 184) | func (v NullableCreateFedcmFlowResponse) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 188) | func (v *NullableCreateFedcmFlowResponse) UnmarshalJSON(src []byte) er... function NewNullableCreateFedcmFlowResponse (line 180) | func NewNullableCreateFedcmFlowResponse(val *CreateFedcmFlowResponse) *N... FILE: pkg/httpclient/model_create_identity_body.go type CreateIdentityBody (line 23) | type CreateIdentityBody struct method GetCredentials (line 67) | func (o *CreateIdentityBody) GetCredentials() IdentityWithCredentials { method GetCredentialsOk (line 77) | func (o *CreateIdentityBody) GetCredentialsOk() (*IdentityWithCredenti... method HasCredentials (line 85) | func (o *CreateIdentityBody) HasCredentials() bool { method SetCredentials (line 94) | func (o *CreateIdentityBody) SetCredentials(v IdentityWithCredentials) { method GetExternalId (line 99) | func (o *CreateIdentityBody) GetExternalId() string { method GetExternalIdOk (line 109) | func (o *CreateIdentityBody) GetExternalIdOk() (*string, bool) { method HasExternalId (line 117) | func (o *CreateIdentityBody) HasExternalId() bool { method SetExternalId (line 126) | func (o *CreateIdentityBody) SetExternalId(v string) { method GetMetadataAdmin (line 131) | func (o *CreateIdentityBody) GetMetadataAdmin() interface{} { method GetMetadataAdminOk (line 142) | func (o *CreateIdentityBody) GetMetadataAdminOk() (*interface{}, bool) { method HasMetadataAdmin (line 150) | func (o *CreateIdentityBody) HasMetadataAdmin() bool { method SetMetadataAdmin (line 159) | func (o *CreateIdentityBody) SetMetadataAdmin(v interface{}) { method GetMetadataPublic (line 164) | func (o *CreateIdentityBody) GetMetadataPublic() interface{} { method GetMetadataPublicOk (line 175) | func (o *CreateIdentityBody) GetMetadataPublicOk() (*interface{}, bool) { method HasMetadataPublic (line 183) | func (o *CreateIdentityBody) HasMetadataPublic() bool { method SetMetadataPublic (line 192) | func (o *CreateIdentityBody) SetMetadataPublic(v interface{}) { method GetOrganizationId (line 197) | func (o *CreateIdentityBody) GetOrganizationId() string { method GetOrganizationIdOk (line 208) | func (o *CreateIdentityBody) GetOrganizationIdOk() (*string, bool) { method HasOrganizationId (line 216) | func (o *CreateIdentityBody) HasOrganizationId() bool { method SetOrganizationId (line 225) | func (o *CreateIdentityBody) SetOrganizationId(v string) { method SetOrganizationIdNil (line 230) | func (o *CreateIdentityBody) SetOrganizationIdNil() { method UnsetOrganizationId (line 235) | func (o *CreateIdentityBody) UnsetOrganizationId() { method GetRecoveryAddresses (line 240) | func (o *CreateIdentityBody) GetRecoveryAddresses() []RecoveryIdentity... method GetRecoveryAddressesOk (line 250) | func (o *CreateIdentityBody) GetRecoveryAddressesOk() ([]RecoveryIdent... method HasRecoveryAddresses (line 258) | func (o *CreateIdentityBody) HasRecoveryAddresses() bool { method SetRecoveryAddresses (line 267) | func (o *CreateIdentityBody) SetRecoveryAddresses(v []RecoveryIdentity... method GetSchemaId (line 272) | func (o *CreateIdentityBody) GetSchemaId() string { method GetSchemaIdOk (line 283) | func (o *CreateIdentityBody) GetSchemaIdOk() (*string, bool) { method SetSchemaId (line 291) | func (o *CreateIdentityBody) SetSchemaId(v string) { method GetState (line 296) | func (o *CreateIdentityBody) GetState() string { method GetStateOk (line 306) | func (o *CreateIdentityBody) GetStateOk() (*string, bool) { method HasState (line 314) | func (o *CreateIdentityBody) HasState() bool { method SetState (line 323) | func (o *CreateIdentityBody) SetState(v string) { method GetTraits (line 328) | func (o *CreateIdentityBody) GetTraits() map[string]interface{} { method GetTraitsOk (line 339) | func (o *CreateIdentityBody) GetTraitsOk() (map[string]interface{}, bo... method SetTraits (line 347) | func (o *CreateIdentityBody) SetTraits(v map[string]interface{}) { method GetVerifiableAddresses (line 352) | func (o *CreateIdentityBody) GetVerifiableAddresses() []VerifiableIden... method GetVerifiableAddressesOk (line 362) | func (o *CreateIdentityBody) GetVerifiableAddressesOk() ([]VerifiableI... method HasVerifiableAddresses (line 370) | func (o *CreateIdentityBody) HasVerifiableAddresses() bool { method SetVerifiableAddresses (line 379) | func (o *CreateIdentityBody) SetVerifiableAddresses(v []VerifiableIden... method MarshalJSON (line 383) | func (o CreateIdentityBody) MarshalJSON() ([]byte, error) { method ToMap (line 391) | func (o CreateIdentityBody) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 427) | func (o *CreateIdentityBody) UnmarshalJSON(data []byte) (err error) { type _CreateIdentityBody (line 45) | type _CreateIdentityBody function NewCreateIdentityBody (line 51) | func NewCreateIdentityBody(schemaId string, traits map[string]interface{... function NewCreateIdentityBodyWithDefaults (line 61) | func NewCreateIdentityBodyWithDefaults() *CreateIdentityBody { type NullableCreateIdentityBody (line 479) | type NullableCreateIdentityBody struct method Get (line 484) | func (v NullableCreateIdentityBody) Get() *CreateIdentityBody { method Set (line 488) | func (v *NullableCreateIdentityBody) Set(val *CreateIdentityBody) { method IsSet (line 493) | func (v NullableCreateIdentityBody) IsSet() bool { method Unset (line 497) | func (v *NullableCreateIdentityBody) Unset() { method MarshalJSON (line 506) | func (v NullableCreateIdentityBody) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 510) | func (v *NullableCreateIdentityBody) UnmarshalJSON(src []byte) error { function NewNullableCreateIdentityBody (line 502) | func NewNullableCreateIdentityBody(val *CreateIdentityBody) *NullableCre... FILE: pkg/httpclient/model_create_recovery_code_for_identity_body.go type CreateRecoveryCodeForIdentityBody (line 23) | type CreateRecoveryCodeForIdentityBody struct method GetExpiresIn (line 54) | func (o *CreateRecoveryCodeForIdentityBody) GetExpiresIn() string { method GetExpiresInOk (line 64) | func (o *CreateRecoveryCodeForIdentityBody) GetExpiresInOk() (*string,... method HasExpiresIn (line 72) | func (o *CreateRecoveryCodeForIdentityBody) HasExpiresIn() bool { method SetExpiresIn (line 81) | func (o *CreateRecoveryCodeForIdentityBody) SetExpiresIn(v string) { method GetFlowType (line 86) | func (o *CreateRecoveryCodeForIdentityBody) GetFlowType() string { method GetFlowTypeOk (line 96) | func (o *CreateRecoveryCodeForIdentityBody) GetFlowTypeOk() (*string, ... method HasFlowType (line 104) | func (o *CreateRecoveryCodeForIdentityBody) HasFlowType() bool { method SetFlowType (line 113) | func (o *CreateRecoveryCodeForIdentityBody) SetFlowType(v string) { method GetIdentityId (line 118) | func (o *CreateRecoveryCodeForIdentityBody) GetIdentityId() string { method GetIdentityIdOk (line 129) | func (o *CreateRecoveryCodeForIdentityBody) GetIdentityIdOk() (*string... method SetIdentityId (line 137) | func (o *CreateRecoveryCodeForIdentityBody) SetIdentityId(v string) { method MarshalJSON (line 141) | func (o CreateRecoveryCodeForIdentityBody) MarshalJSON() ([]byte, erro... method ToMap (line 149) | func (o CreateRecoveryCodeForIdentityBody) ToMap() (map[string]interfa... method UnmarshalJSON (line 166) | func (o *CreateRecoveryCodeForIdentityBody) UnmarshalJSON(data []byte)... type _CreateRecoveryCodeForIdentityBody (line 33) | type _CreateRecoveryCodeForIdentityBody function NewCreateRecoveryCodeForIdentityBody (line 39) | func NewCreateRecoveryCodeForIdentityBody(identityId string) *CreateReco... function NewCreateRecoveryCodeForIdentityBodyWithDefaults (line 48) | func NewCreateRecoveryCodeForIdentityBodyWithDefaults() *CreateRecoveryC... type NullableCreateRecoveryCodeForIdentityBody (line 210) | type NullableCreateRecoveryCodeForIdentityBody struct method Get (line 215) | func (v NullableCreateRecoveryCodeForIdentityBody) Get() *CreateRecove... method Set (line 219) | func (v *NullableCreateRecoveryCodeForIdentityBody) Set(val *CreateRec... method IsSet (line 224) | func (v NullableCreateRecoveryCodeForIdentityBody) IsSet() bool { method Unset (line 228) | func (v *NullableCreateRecoveryCodeForIdentityBody) Unset() { method MarshalJSON (line 237) | func (v NullableCreateRecoveryCodeForIdentityBody) MarshalJSON() ([]by... method UnmarshalJSON (line 241) | func (v *NullableCreateRecoveryCodeForIdentityBody) UnmarshalJSON(src ... function NewNullableCreateRecoveryCodeForIdentityBody (line 233) | func NewNullableCreateRecoveryCodeForIdentityBody(val *CreateRecoveryCod... FILE: pkg/httpclient/model_create_recovery_link_for_identity_body.go type CreateRecoveryLinkForIdentityBody (line 23) | type CreateRecoveryLinkForIdentityBody struct method GetExpiresIn (line 52) | func (o *CreateRecoveryLinkForIdentityBody) GetExpiresIn() string { method GetExpiresInOk (line 62) | func (o *CreateRecoveryLinkForIdentityBody) GetExpiresInOk() (*string,... method HasExpiresIn (line 70) | func (o *CreateRecoveryLinkForIdentityBody) HasExpiresIn() bool { method SetExpiresIn (line 79) | func (o *CreateRecoveryLinkForIdentityBody) SetExpiresIn(v string) { method GetIdentityId (line 84) | func (o *CreateRecoveryLinkForIdentityBody) GetIdentityId() string { method GetIdentityIdOk (line 95) | func (o *CreateRecoveryLinkForIdentityBody) GetIdentityIdOk() (*string... method SetIdentityId (line 103) | func (o *CreateRecoveryLinkForIdentityBody) SetIdentityId(v string) { method MarshalJSON (line 107) | func (o CreateRecoveryLinkForIdentityBody) MarshalJSON() ([]byte, erro... method ToMap (line 115) | func (o CreateRecoveryLinkForIdentityBody) ToMap() (map[string]interfa... method UnmarshalJSON (line 129) | func (o *CreateRecoveryLinkForIdentityBody) UnmarshalJSON(data []byte)... type _CreateRecoveryLinkForIdentityBody (line 31) | type _CreateRecoveryLinkForIdentityBody function NewCreateRecoveryLinkForIdentityBody (line 37) | func NewCreateRecoveryLinkForIdentityBody(identityId string) *CreateReco... function NewCreateRecoveryLinkForIdentityBodyWithDefaults (line 46) | func NewCreateRecoveryLinkForIdentityBodyWithDefaults() *CreateRecoveryL... type NullableCreateRecoveryLinkForIdentityBody (line 172) | type NullableCreateRecoveryLinkForIdentityBody struct method Get (line 177) | func (v NullableCreateRecoveryLinkForIdentityBody) Get() *CreateRecove... method Set (line 181) | func (v *NullableCreateRecoveryLinkForIdentityBody) Set(val *CreateRec... method IsSet (line 186) | func (v NullableCreateRecoveryLinkForIdentityBody) IsSet() bool { method Unset (line 190) | func (v *NullableCreateRecoveryLinkForIdentityBody) Unset() { method MarshalJSON (line 199) | func (v NullableCreateRecoveryLinkForIdentityBody) MarshalJSON() ([]by... method UnmarshalJSON (line 203) | func (v *NullableCreateRecoveryLinkForIdentityBody) UnmarshalJSON(src ... function NewNullableCreateRecoveryLinkForIdentityBody (line 195) | func NewNullableCreateRecoveryLinkForIdentityBody(val *CreateRecoveryLin... FILE: pkg/httpclient/model_delete_my_sessions_count.go type DeleteMySessionsCount (line 22) | type DeleteMySessionsCount struct method GetCount (line 48) | func (o *DeleteMySessionsCount) GetCount() int64 { method GetCountOk (line 58) | func (o *DeleteMySessionsCount) GetCountOk() (*int64, bool) { method HasCount (line 66) | func (o *DeleteMySessionsCount) HasCount() bool { method SetCount (line 75) | func (o *DeleteMySessionsCount) SetCount(v int64) { method MarshalJSON (line 79) | func (o DeleteMySessionsCount) MarshalJSON() ([]byte, error) { method ToMap (line 87) | func (o DeleteMySessionsCount) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 100) | func (o *DeleteMySessionsCount) UnmarshalJSON(data []byte) (err error) { type _DeleteMySessionsCount (line 28) | type _DeleteMySessionsCount function NewDeleteMySessionsCount (line 34) | func NewDeleteMySessionsCount() *DeleteMySessionsCount { function NewDeleteMySessionsCountWithDefaults (line 42) | func NewDeleteMySessionsCountWithDefaults() *DeleteMySessionsCount { type NullableDeleteMySessionsCount (line 121) | type NullableDeleteMySessionsCount struct method Get (line 126) | func (v NullableDeleteMySessionsCount) Get() *DeleteMySessionsCount { method Set (line 130) | func (v *NullableDeleteMySessionsCount) Set(val *DeleteMySessionsCount) { method IsSet (line 135) | func (v NullableDeleteMySessionsCount) IsSet() bool { method Unset (line 139) | func (v *NullableDeleteMySessionsCount) Unset() { method MarshalJSON (line 148) | func (v NullableDeleteMySessionsCount) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 152) | func (v *NullableDeleteMySessionsCount) UnmarshalJSON(src []byte) error { function NewNullableDeleteMySessionsCount (line 144) | func NewNullableDeleteMySessionsCount(val *DeleteMySessionsCount) *Nulla... FILE: pkg/httpclient/model_error_authenticator_assurance_level_not_satisfied.go type ErrorAuthenticatorAssuranceLevelNotSatisfied (line 22) | type ErrorAuthenticatorAssuranceLevelNotSatisfied struct method GetError (line 49) | func (o *ErrorAuthenticatorAssuranceLevelNotSatisfied) GetError() Gene... method GetErrorOk (line 59) | func (o *ErrorAuthenticatorAssuranceLevelNotSatisfied) GetErrorOk() (*... method HasError (line 67) | func (o *ErrorAuthenticatorAssuranceLevelNotSatisfied) HasError() bool { method SetError (line 76) | func (o *ErrorAuthenticatorAssuranceLevelNotSatisfied) SetError(v Gene... method GetRedirectBrowserTo (line 81) | func (o *ErrorAuthenticatorAssuranceLevelNotSatisfied) GetRedirectBrow... method GetRedirectBrowserToOk (line 91) | func (o *ErrorAuthenticatorAssuranceLevelNotSatisfied) GetRedirectBrow... method HasRedirectBrowserTo (line 99) | func (o *ErrorAuthenticatorAssuranceLevelNotSatisfied) HasRedirectBrow... method SetRedirectBrowserTo (line 108) | func (o *ErrorAuthenticatorAssuranceLevelNotSatisfied) SetRedirectBrow... method MarshalJSON (line 112) | func (o ErrorAuthenticatorAssuranceLevelNotSatisfied) MarshalJSON() ([... method ToMap (line 120) | func (o ErrorAuthenticatorAssuranceLevelNotSatisfied) ToMap() (map[str... method UnmarshalJSON (line 136) | func (o *ErrorAuthenticatorAssuranceLevelNotSatisfied) UnmarshalJSON(d... type _ErrorAuthenticatorAssuranceLevelNotSatisfied (line 29) | type _ErrorAuthenticatorAssuranceLevelNotSatisfied function NewErrorAuthenticatorAssuranceLevelNotSatisfied (line 35) | func NewErrorAuthenticatorAssuranceLevelNotSatisfied() *ErrorAuthenticat... function NewErrorAuthenticatorAssuranceLevelNotSatisfiedWithDefaults (line 43) | func NewErrorAuthenticatorAssuranceLevelNotSatisfiedWithDefaults() *Erro... type NullableErrorAuthenticatorAssuranceLevelNotSatisfied (line 158) | type NullableErrorAuthenticatorAssuranceLevelNotSatisfied struct method Get (line 163) | func (v NullableErrorAuthenticatorAssuranceLevelNotSatisfied) Get() *E... method Set (line 167) | func (v *NullableErrorAuthenticatorAssuranceLevelNotSatisfied) Set(val... method IsSet (line 172) | func (v NullableErrorAuthenticatorAssuranceLevelNotSatisfied) IsSet() ... method Unset (line 176) | func (v *NullableErrorAuthenticatorAssuranceLevelNotSatisfied) Unset() { method MarshalJSON (line 185) | func (v NullableErrorAuthenticatorAssuranceLevelNotSatisfied) MarshalJ... method UnmarshalJSON (line 189) | func (v *NullableErrorAuthenticatorAssuranceLevelNotSatisfied) Unmarsh... function NewNullableErrorAuthenticatorAssuranceLevelNotSatisfied (line 181) | func NewNullableErrorAuthenticatorAssuranceLevelNotSatisfied(val *ErrorA... FILE: pkg/httpclient/model_error_browser_location_change_required.go type ErrorBrowserLocationChangeRequired (line 22) | type ErrorBrowserLocationChangeRequired struct method GetError (line 49) | func (o *ErrorBrowserLocationChangeRequired) GetError() ErrorGeneric { method GetErrorOk (line 59) | func (o *ErrorBrowserLocationChangeRequired) GetErrorOk() (*ErrorGener... method HasError (line 67) | func (o *ErrorBrowserLocationChangeRequired) HasError() bool { method SetError (line 76) | func (o *ErrorBrowserLocationChangeRequired) SetError(v ErrorGeneric) { method GetRedirectBrowserTo (line 81) | func (o *ErrorBrowserLocationChangeRequired) GetRedirectBrowserTo() st... method GetRedirectBrowserToOk (line 91) | func (o *ErrorBrowserLocationChangeRequired) GetRedirectBrowserToOk() ... method HasRedirectBrowserTo (line 99) | func (o *ErrorBrowserLocationChangeRequired) HasRedirectBrowserTo() bo... method SetRedirectBrowserTo (line 108) | func (o *ErrorBrowserLocationChangeRequired) SetRedirectBrowserTo(v st... method MarshalJSON (line 112) | func (o ErrorBrowserLocationChangeRequired) MarshalJSON() ([]byte, err... method ToMap (line 120) | func (o ErrorBrowserLocationChangeRequired) ToMap() (map[string]interf... method UnmarshalJSON (line 136) | func (o *ErrorBrowserLocationChangeRequired) UnmarshalJSON(data []byte... type _ErrorBrowserLocationChangeRequired (line 29) | type _ErrorBrowserLocationChangeRequired function NewErrorBrowserLocationChangeRequired (line 35) | func NewErrorBrowserLocationChangeRequired() *ErrorBrowserLocationChange... function NewErrorBrowserLocationChangeRequiredWithDefaults (line 43) | func NewErrorBrowserLocationChangeRequiredWithDefaults() *ErrorBrowserLo... type NullableErrorBrowserLocationChangeRequired (line 158) | type NullableErrorBrowserLocationChangeRequired struct method Get (line 163) | func (v NullableErrorBrowserLocationChangeRequired) Get() *ErrorBrowse... method Set (line 167) | func (v *NullableErrorBrowserLocationChangeRequired) Set(val *ErrorBro... method IsSet (line 172) | func (v NullableErrorBrowserLocationChangeRequired) IsSet() bool { method Unset (line 176) | func (v *NullableErrorBrowserLocationChangeRequired) Unset() { method MarshalJSON (line 185) | func (v NullableErrorBrowserLocationChangeRequired) MarshalJSON() ([]b... method UnmarshalJSON (line 189) | func (v *NullableErrorBrowserLocationChangeRequired) UnmarshalJSON(src... function NewNullableErrorBrowserLocationChangeRequired (line 181) | func NewNullableErrorBrowserLocationChangeRequired(val *ErrorBrowserLoca... FILE: pkg/httpclient/model_error_flow_replaced.go type ErrorFlowReplaced (line 22) | type ErrorFlowReplaced struct method GetError (line 49) | func (o *ErrorFlowReplaced) GetError() GenericError { method GetErrorOk (line 59) | func (o *ErrorFlowReplaced) GetErrorOk() (*GenericError, bool) { method HasError (line 67) | func (o *ErrorFlowReplaced) HasError() bool { method SetError (line 76) | func (o *ErrorFlowReplaced) SetError(v GenericError) { method GetUseFlowId (line 81) | func (o *ErrorFlowReplaced) GetUseFlowId() string { method GetUseFlowIdOk (line 91) | func (o *ErrorFlowReplaced) GetUseFlowIdOk() (*string, bool) { method HasUseFlowId (line 99) | func (o *ErrorFlowReplaced) HasUseFlowId() bool { method SetUseFlowId (line 108) | func (o *ErrorFlowReplaced) SetUseFlowId(v string) { method MarshalJSON (line 112) | func (o ErrorFlowReplaced) MarshalJSON() ([]byte, error) { method ToMap (line 120) | func (o ErrorFlowReplaced) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 136) | func (o *ErrorFlowReplaced) UnmarshalJSON(data []byte) (err error) { type _ErrorFlowReplaced (line 29) | type _ErrorFlowReplaced function NewErrorFlowReplaced (line 35) | func NewErrorFlowReplaced() *ErrorFlowReplaced { function NewErrorFlowReplacedWithDefaults (line 43) | func NewErrorFlowReplacedWithDefaults() *ErrorFlowReplaced { type NullableErrorFlowReplaced (line 158) | type NullableErrorFlowReplaced struct method Get (line 163) | func (v NullableErrorFlowReplaced) Get() *ErrorFlowReplaced { method Set (line 167) | func (v *NullableErrorFlowReplaced) Set(val *ErrorFlowReplaced) { method IsSet (line 172) | func (v NullableErrorFlowReplaced) IsSet() bool { method Unset (line 176) | func (v *NullableErrorFlowReplaced) Unset() { method MarshalJSON (line 185) | func (v NullableErrorFlowReplaced) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 189) | func (v *NullableErrorFlowReplaced) UnmarshalJSON(src []byte) error { function NewNullableErrorFlowReplaced (line 181) | func NewNullableErrorFlowReplaced(val *ErrorFlowReplaced) *NullableError... FILE: pkg/httpclient/model_error_generic.go type ErrorGeneric (line 23) | type ErrorGeneric struct method GetError (line 49) | func (o *ErrorGeneric) GetError() GenericError { method GetErrorOk (line 60) | func (o *ErrorGeneric) GetErrorOk() (*GenericError, bool) { method SetError (line 68) | func (o *ErrorGeneric) SetError(v GenericError) { method MarshalJSON (line 72) | func (o ErrorGeneric) MarshalJSON() ([]byte, error) { method ToMap (line 80) | func (o ErrorGeneric) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 91) | func (o *ErrorGeneric) UnmarshalJSON(data []byte) (err error) { type _ErrorGeneric (line 28) | type _ErrorGeneric function NewErrorGeneric (line 34) | func NewErrorGeneric(error_ GenericError) *ErrorGeneric { function NewErrorGenericWithDefaults (line 43) | func NewErrorGenericWithDefaults() *ErrorGeneric { type NullableErrorGeneric (line 133) | type NullableErrorGeneric struct method Get (line 138) | func (v NullableErrorGeneric) Get() *ErrorGeneric { method Set (line 142) | func (v *NullableErrorGeneric) Set(val *ErrorGeneric) { method IsSet (line 147) | func (v NullableErrorGeneric) IsSet() bool { method Unset (line 151) | func (v *NullableErrorGeneric) Unset() { method MarshalJSON (line 160) | func (v NullableErrorGeneric) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 164) | func (v *NullableErrorGeneric) UnmarshalJSON(src []byte) error { function NewNullableErrorGeneric (line 156) | func NewNullableErrorGeneric(val *ErrorGeneric) *NullableErrorGeneric { FILE: pkg/httpclient/model_flow_error.go type FlowError (line 24) | type FlowError struct method GetCreatedAt (line 56) | func (o *FlowError) GetCreatedAt() time.Time { method GetCreatedAtOk (line 66) | func (o *FlowError) GetCreatedAtOk() (*time.Time, bool) { method HasCreatedAt (line 74) | func (o *FlowError) HasCreatedAt() bool { method SetCreatedAt (line 83) | func (o *FlowError) SetCreatedAt(v time.Time) { method GetError (line 88) | func (o *FlowError) GetError() map[string]interface{} { method GetErrorOk (line 98) | func (o *FlowError) GetErrorOk() (map[string]interface{}, bool) { method HasError (line 106) | func (o *FlowError) HasError() bool { method SetError (line 115) | func (o *FlowError) SetError(v map[string]interface{}) { method GetId (line 120) | func (o *FlowError) GetId() string { method GetIdOk (line 131) | func (o *FlowError) GetIdOk() (*string, bool) { method SetId (line 139) | func (o *FlowError) SetId(v string) { method GetUpdatedAt (line 144) | func (o *FlowError) GetUpdatedAt() time.Time { method GetUpdatedAtOk (line 154) | func (o *FlowError) GetUpdatedAtOk() (*time.Time, bool) { method HasUpdatedAt (line 162) | func (o *FlowError) HasUpdatedAt() bool { method SetUpdatedAt (line 171) | func (o *FlowError) SetUpdatedAt(v time.Time) { method MarshalJSON (line 175) | func (o FlowError) MarshalJSON() ([]byte, error) { method ToMap (line 183) | func (o FlowError) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 203) | func (o *FlowError) UnmarshalJSON(data []byte) (err error) { type _FlowError (line 35) | type _FlowError function NewFlowError (line 41) | func NewFlowError(id string) *FlowError { function NewFlowErrorWithDefaults (line 50) | func NewFlowErrorWithDefaults() *FlowError { type NullableFlowError (line 248) | type NullableFlowError struct method Get (line 253) | func (v NullableFlowError) Get() *FlowError { method Set (line 257) | func (v *NullableFlowError) Set(val *FlowError) { method IsSet (line 262) | func (v NullableFlowError) IsSet() bool { method Unset (line 266) | func (v *NullableFlowError) Unset() { method MarshalJSON (line 275) | func (v NullableFlowError) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 279) | func (v *NullableFlowError) UnmarshalJSON(src []byte) error { function NewNullableFlowError (line 271) | func NewNullableFlowError(val *FlowError) *NullableFlowError { FILE: pkg/httpclient/model_generic_error.go type GenericError (line 23) | type GenericError struct method GetCode (line 64) | func (o *GenericError) GetCode() int64 { method GetCodeOk (line 74) | func (o *GenericError) GetCodeOk() (*int64, bool) { method HasCode (line 82) | func (o *GenericError) HasCode() bool { method SetCode (line 91) | func (o *GenericError) SetCode(v int64) { method GetDebug (line 96) | func (o *GenericError) GetDebug() string { method GetDebugOk (line 106) | func (o *GenericError) GetDebugOk() (*string, bool) { method HasDebug (line 114) | func (o *GenericError) HasDebug() bool { method SetDebug (line 123) | func (o *GenericError) SetDebug(v string) { method GetDetails (line 128) | func (o *GenericError) GetDetails() map[string]interface{} { method GetDetailsOk (line 138) | func (o *GenericError) GetDetailsOk() (map[string]interface{}, bool) { method HasDetails (line 146) | func (o *GenericError) HasDetails() bool { method SetDetails (line 155) | func (o *GenericError) SetDetails(v map[string]interface{}) { method GetId (line 160) | func (o *GenericError) GetId() string { method GetIdOk (line 170) | func (o *GenericError) GetIdOk() (*string, bool) { method HasId (line 178) | func (o *GenericError) HasId() bool { method SetId (line 187) | func (o *GenericError) SetId(v string) { method GetMessage (line 192) | func (o *GenericError) GetMessage() string { method GetMessageOk (line 203) | func (o *GenericError) GetMessageOk() (*string, bool) { method SetMessage (line 211) | func (o *GenericError) SetMessage(v string) { method GetReason (line 216) | func (o *GenericError) GetReason() string { method GetReasonOk (line 226) | func (o *GenericError) GetReasonOk() (*string, bool) { method HasReason (line 234) | func (o *GenericError) HasReason() bool { method SetReason (line 243) | func (o *GenericError) SetReason(v string) { method GetRequest (line 248) | func (o *GenericError) GetRequest() string { method GetRequestOk (line 258) | func (o *GenericError) GetRequestOk() (*string, bool) { method HasRequest (line 266) | func (o *GenericError) HasRequest() bool { method SetRequest (line 275) | func (o *GenericError) SetRequest(v string) { method GetStatus (line 280) | func (o *GenericError) GetStatus() string { method GetStatusOk (line 290) | func (o *GenericError) GetStatusOk() (*string, bool) { method HasStatus (line 298) | func (o *GenericError) HasStatus() bool { method SetStatus (line 307) | func (o *GenericError) SetStatus(v string) { method MarshalJSON (line 311) | func (o GenericError) MarshalJSON() ([]byte, error) { method ToMap (line 319) | func (o GenericError) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 351) | func (o *GenericError) UnmarshalJSON(data []byte) (err error) { type _GenericError (line 43) | type _GenericError function NewGenericError (line 49) | func NewGenericError(message string) *GenericError { function NewGenericErrorWithDefaults (line 58) | func NewGenericErrorWithDefaults() *GenericError { type NullableGenericError (line 400) | type NullableGenericError struct method Get (line 405) | func (v NullableGenericError) Get() *GenericError { method Set (line 409) | func (v *NullableGenericError) Set(val *GenericError) { method IsSet (line 414) | func (v NullableGenericError) IsSet() bool { method Unset (line 418) | func (v *NullableGenericError) Unset() { method MarshalJSON (line 427) | func (v NullableGenericError) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 431) | func (v *NullableGenericError) UnmarshalJSON(src []byte) error { function NewNullableGenericError (line 423) | func NewNullableGenericError(val *GenericError) *NullableGenericError { FILE: pkg/httpclient/model_get_version_200_response.go type GetVersion200Response (line 23) | type GetVersion200Response struct method GetVersion (line 50) | func (o *GetVersion200Response) GetVersion() string { method GetVersionOk (line 61) | func (o *GetVersion200Response) GetVersionOk() (*string, bool) { method SetVersion (line 69) | func (o *GetVersion200Response) SetVersion(v string) { method MarshalJSON (line 73) | func (o GetVersion200Response) MarshalJSON() ([]byte, error) { method ToMap (line 81) | func (o GetVersion200Response) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 92) | func (o *GetVersion200Response) UnmarshalJSON(data []byte) (err error) { type _GetVersion200Response (line 29) | type _GetVersion200Response function NewGetVersion200Response (line 35) | func NewGetVersion200Response(version string) *GetVersion200Response { function NewGetVersion200ResponseWithDefaults (line 44) | func NewGetVersion200ResponseWithDefaults() *GetVersion200Response { type NullableGetVersion200Response (line 134) | type NullableGetVersion200Response struct method Get (line 139) | func (v NullableGetVersion200Response) Get() *GetVersion200Response { method Set (line 143) | func (v *NullableGetVersion200Response) Set(val *GetVersion200Response) { method IsSet (line 148) | func (v NullableGetVersion200Response) IsSet() bool { method Unset (line 152) | func (v *NullableGetVersion200Response) Unset() { method MarshalJSON (line 161) | func (v NullableGetVersion200Response) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 165) | func (v *NullableGetVersion200Response) UnmarshalJSON(src []byte) error { function NewNullableGetVersion200Response (line 157) | func NewNullableGetVersion200Response(val *GetVersion200Response) *Nulla... FILE: pkg/httpclient/model_health_not_ready_status.go type HealthNotReadyStatus (line 22) | type HealthNotReadyStatus struct method GetErrors (line 48) | func (o *HealthNotReadyStatus) GetErrors() map[string]string { method GetErrorsOk (line 58) | func (o *HealthNotReadyStatus) GetErrorsOk() (*map[string]string, bool) { method HasErrors (line 66) | func (o *HealthNotReadyStatus) HasErrors() bool { method SetErrors (line 75) | func (o *HealthNotReadyStatus) SetErrors(v map[string]string) { method MarshalJSON (line 79) | func (o HealthNotReadyStatus) MarshalJSON() ([]byte, error) { method ToMap (line 87) | func (o HealthNotReadyStatus) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 100) | func (o *HealthNotReadyStatus) UnmarshalJSON(data []byte) (err error) { type _HealthNotReadyStatus (line 28) | type _HealthNotReadyStatus function NewHealthNotReadyStatus (line 34) | func NewHealthNotReadyStatus() *HealthNotReadyStatus { function NewHealthNotReadyStatusWithDefaults (line 42) | func NewHealthNotReadyStatusWithDefaults() *HealthNotReadyStatus { type NullableHealthNotReadyStatus (line 121) | type NullableHealthNotReadyStatus struct method Get (line 126) | func (v NullableHealthNotReadyStatus) Get() *HealthNotReadyStatus { method Set (line 130) | func (v *NullableHealthNotReadyStatus) Set(val *HealthNotReadyStatus) { method IsSet (line 135) | func (v NullableHealthNotReadyStatus) IsSet() bool { method Unset (line 139) | func (v *NullableHealthNotReadyStatus) Unset() { method MarshalJSON (line 148) | func (v NullableHealthNotReadyStatus) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 152) | func (v *NullableHealthNotReadyStatus) UnmarshalJSON(src []byte) error { function NewNullableHealthNotReadyStatus (line 144) | func NewNullableHealthNotReadyStatus(val *HealthNotReadyStatus) *Nullabl... FILE: pkg/httpclient/model_health_status.go type HealthStatus (line 22) | type HealthStatus struct method GetStatus (line 48) | func (o *HealthStatus) GetStatus() string { method GetStatusOk (line 58) | func (o *HealthStatus) GetStatusOk() (*string, bool) { method HasStatus (line 66) | func (o *HealthStatus) HasStatus() bool { method SetStatus (line 75) | func (o *HealthStatus) SetStatus(v string) { method MarshalJSON (line 79) | func (o HealthStatus) MarshalJSON() ([]byte, error) { method ToMap (line 87) | func (o HealthStatus) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 100) | func (o *HealthStatus) UnmarshalJSON(data []byte) (err error) { type _HealthStatus (line 28) | type _HealthStatus function NewHealthStatus (line 34) | func NewHealthStatus() *HealthStatus { function NewHealthStatusWithDefaults (line 42) | func NewHealthStatusWithDefaults() *HealthStatus { type NullableHealthStatus (line 121) | type NullableHealthStatus struct method Get (line 126) | func (v NullableHealthStatus) Get() *HealthStatus { method Set (line 130) | func (v *NullableHealthStatus) Set(val *HealthStatus) { method IsSet (line 135) | func (v NullableHealthStatus) IsSet() bool { method Unset (line 139) | func (v *NullableHealthStatus) Unset() { method MarshalJSON (line 148) | func (v NullableHealthStatus) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 152) | func (v *NullableHealthStatus) UnmarshalJSON(src []byte) error { function NewNullableHealthStatus (line 144) | func NewNullableHealthStatus(val *HealthStatus) *NullableHealthStatus { FILE: pkg/httpclient/model_identity.go type Identity (line 24) | type Identity struct method GetCreatedAt (line 80) | func (o *Identity) GetCreatedAt() time.Time { method GetCreatedAtOk (line 90) | func (o *Identity) GetCreatedAtOk() (*time.Time, bool) { method HasCreatedAt (line 98) | func (o *Identity) HasCreatedAt() bool { method SetCreatedAt (line 107) | func (o *Identity) SetCreatedAt(v time.Time) { method GetCredentials (line 112) | func (o *Identity) GetCredentials() map[string]IdentityCredentials { method GetCredentialsOk (line 122) | func (o *Identity) GetCredentialsOk() (*map[string]IdentityCredentials... method HasCredentials (line 130) | func (o *Identity) HasCredentials() bool { method SetCredentials (line 139) | func (o *Identity) SetCredentials(v map[string]IdentityCredentials) { method GetExternalId (line 144) | func (o *Identity) GetExternalId() string { method GetExternalIdOk (line 154) | func (o *Identity) GetExternalIdOk() (*string, bool) { method HasExternalId (line 162) | func (o *Identity) HasExternalId() bool { method SetExternalId (line 171) | func (o *Identity) SetExternalId(v string) { method GetId (line 176) | func (o *Identity) GetId() string { method GetIdOk (line 187) | func (o *Identity) GetIdOk() (*string, bool) { method SetId (line 195) | func (o *Identity) SetId(v string) { method GetMetadataAdmin (line 200) | func (o *Identity) GetMetadataAdmin() interface{} { method GetMetadataAdminOk (line 211) | func (o *Identity) GetMetadataAdminOk() (*interface{}, bool) { method HasMetadataAdmin (line 219) | func (o *Identity) HasMetadataAdmin() bool { method SetMetadataAdmin (line 228) | func (o *Identity) SetMetadataAdmin(v interface{}) { method GetMetadataPublic (line 233) | func (o *Identity) GetMetadataPublic() interface{} { method GetMetadataPublicOk (line 244) | func (o *Identity) GetMetadataPublicOk() (*interface{}, bool) { method HasMetadataPublic (line 252) | func (o *Identity) HasMetadataPublic() bool { method SetMetadataPublic (line 261) | func (o *Identity) SetMetadataPublic(v interface{}) { method GetOrganizationId (line 266) | func (o *Identity) GetOrganizationId() string { method GetOrganizationIdOk (line 277) | func (o *Identity) GetOrganizationIdOk() (*string, bool) { method HasOrganizationId (line 285) | func (o *Identity) HasOrganizationId() bool { method SetOrganizationId (line 294) | func (o *Identity) SetOrganizationId(v string) { method SetOrganizationIdNil (line 299) | func (o *Identity) SetOrganizationIdNil() { method UnsetOrganizationId (line 304) | func (o *Identity) UnsetOrganizationId() { method GetRecoveryAddresses (line 309) | func (o *Identity) GetRecoveryAddresses() []RecoveryIdentityAddress { method GetRecoveryAddressesOk (line 319) | func (o *Identity) GetRecoveryAddressesOk() ([]RecoveryIdentityAddress... method HasRecoveryAddresses (line 327) | func (o *Identity) HasRecoveryAddresses() bool { method SetRecoveryAddresses (line 336) | func (o *Identity) SetRecoveryAddresses(v []RecoveryIdentityAddress) { method GetSchemaId (line 341) | func (o *Identity) GetSchemaId() string { method GetSchemaIdOk (line 352) | func (o *Identity) GetSchemaIdOk() (*string, bool) { method SetSchemaId (line 360) | func (o *Identity) SetSchemaId(v string) { method GetSchemaUrl (line 365) | func (o *Identity) GetSchemaUrl() string { method GetSchemaUrlOk (line 376) | func (o *Identity) GetSchemaUrlOk() (*string, bool) { method SetSchemaUrl (line 384) | func (o *Identity) SetSchemaUrl(v string) { method GetState (line 389) | func (o *Identity) GetState() string { method GetStateOk (line 399) | func (o *Identity) GetStateOk() (*string, bool) { method HasState (line 407) | func (o *Identity) HasState() bool { method SetState (line 416) | func (o *Identity) SetState(v string) { method GetStateChangedAt (line 421) | func (o *Identity) GetStateChangedAt() time.Time { method GetStateChangedAtOk (line 431) | func (o *Identity) GetStateChangedAtOk() (*time.Time, bool) { method HasStateChangedAt (line 439) | func (o *Identity) HasStateChangedAt() bool { method SetStateChangedAt (line 448) | func (o *Identity) SetStateChangedAt(v time.Time) { method GetTraits (line 454) | func (o *Identity) GetTraits() interface{} { method GetTraitsOk (line 466) | func (o *Identity) GetTraitsOk() (*interface{}, bool) { method SetTraits (line 474) | func (o *Identity) SetTraits(v interface{}) { method GetUpdatedAt (line 479) | func (o *Identity) GetUpdatedAt() time.Time { method GetUpdatedAtOk (line 489) | func (o *Identity) GetUpdatedAtOk() (*time.Time, bool) { method HasUpdatedAt (line 497) | func (o *Identity) HasUpdatedAt() bool { method SetUpdatedAt (line 506) | func (o *Identity) SetUpdatedAt(v time.Time) { method GetVerifiableAddresses (line 511) | func (o *Identity) GetVerifiableAddresses() []VerifiableIdentityAddress { method GetVerifiableAddressesOk (line 521) | func (o *Identity) GetVerifiableAddressesOk() ([]VerifiableIdentityAdd... method HasVerifiableAddresses (line 529) | func (o *Identity) HasVerifiableAddresses() bool { method SetVerifiableAddresses (line 538) | func (o *Identity) SetVerifiableAddresses(v []VerifiableIdentityAddres... method MarshalJSON (line 542) | func (o Identity) MarshalJSON() ([]byte, error) { method ToMap (line 550) | func (o Identity) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 599) | func (o *Identity) UnmarshalJSON(data []byte) (err error) { type _Identity (line 56) | type _Identity function NewIdentity (line 62) | func NewIdentity(id string, schemaId string, schemaUrl string, traits in... function NewIdentityWithDefaults (line 74) | func NewIdentityWithDefaults() *Identity { type NullableIdentity (line 658) | type NullableIdentity struct method Get (line 663) | func (v NullableIdentity) Get() *Identity { method Set (line 667) | func (v *NullableIdentity) Set(val *Identity) { method IsSet (line 672) | func (v NullableIdentity) IsSet() bool { method Unset (line 676) | func (v *NullableIdentity) Unset() { method MarshalJSON (line 685) | func (v NullableIdentity) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 689) | func (v *NullableIdentity) UnmarshalJSON(src []byte) error { function NewNullableIdentity (line 681) | func NewNullableIdentity(val *Identity) *NullableIdentity { FILE: pkg/httpclient/model_identity_credentials.go type IdentityCredentials (line 23) | type IdentityCredentials struct method GetConfig (line 58) | func (o *IdentityCredentials) GetConfig() map[string]interface{} { method GetConfigOk (line 68) | func (o *IdentityCredentials) GetConfigOk() (map[string]interface{}, b... method HasConfig (line 76) | func (o *IdentityCredentials) HasConfig() bool { method SetConfig (line 85) | func (o *IdentityCredentials) SetConfig(v map[string]interface{}) { method GetCreatedAt (line 90) | func (o *IdentityCredentials) GetCreatedAt() time.Time { method GetCreatedAtOk (line 100) | func (o *IdentityCredentials) GetCreatedAtOk() (*time.Time, bool) { method HasCreatedAt (line 108) | func (o *IdentityCredentials) HasCreatedAt() bool { method SetCreatedAt (line 117) | func (o *IdentityCredentials) SetCreatedAt(v time.Time) { method GetIdentifiers (line 122) | func (o *IdentityCredentials) GetIdentifiers() []string { method GetIdentifiersOk (line 132) | func (o *IdentityCredentials) GetIdentifiersOk() ([]string, bool) { method HasIdentifiers (line 140) | func (o *IdentityCredentials) HasIdentifiers() bool { method SetIdentifiers (line 149) | func (o *IdentityCredentials) SetIdentifiers(v []string) { method GetType (line 154) | func (o *IdentityCredentials) GetType() string { method GetTypeOk (line 164) | func (o *IdentityCredentials) GetTypeOk() (*string, bool) { method HasType (line 172) | func (o *IdentityCredentials) HasType() bool { method SetType (line 181) | func (o *IdentityCredentials) SetType(v string) { method GetUpdatedAt (line 186) | func (o *IdentityCredentials) GetUpdatedAt() time.Time { method GetUpdatedAtOk (line 196) | func (o *IdentityCredentials) GetUpdatedAtOk() (*time.Time, bool) { method HasUpdatedAt (line 204) | func (o *IdentityCredentials) HasUpdatedAt() bool { method SetUpdatedAt (line 213) | func (o *IdentityCredentials) SetUpdatedAt(v time.Time) { method GetVersion (line 218) | func (o *IdentityCredentials) GetVersion() int64 { method GetVersionOk (line 228) | func (o *IdentityCredentials) GetVersionOk() (*int64, bool) { method HasVersion (line 236) | func (o *IdentityCredentials) HasVersion() bool { method SetVersion (line 245) | func (o *IdentityCredentials) SetVersion(v int64) { method MarshalJSON (line 249) | func (o IdentityCredentials) MarshalJSON() ([]byte, error) { method ToMap (line 257) | func (o IdentityCredentials) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 285) | func (o *IdentityCredentials) UnmarshalJSON(data []byte) (err error) { type _IdentityCredentials (line 38) | type _IdentityCredentials function NewIdentityCredentials (line 44) | func NewIdentityCredentials() *IdentityCredentials { function NewIdentityCredentialsWithDefaults (line 52) | func NewIdentityCredentialsWithDefaults() *IdentityCredentials { type NullableIdentityCredentials (line 311) | type NullableIdentityCredentials struct method Get (line 316) | func (v NullableIdentityCredentials) Get() *IdentityCredentials { method Set (line 320) | func (v *NullableIdentityCredentials) Set(val *IdentityCredentials) { method IsSet (line 325) | func (v NullableIdentityCredentials) IsSet() bool { method Unset (line 329) | func (v *NullableIdentityCredentials) Unset() { method MarshalJSON (line 338) | func (v NullableIdentityCredentials) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 342) | func (v *NullableIdentityCredentials) UnmarshalJSON(src []byte) error { function NewNullableIdentityCredentials (line 334) | func NewNullableIdentityCredentials(val *IdentityCredentials) *NullableI... FILE: pkg/httpclient/model_identity_credentials_code.go type IdentityCredentialsCode (line 22) | type IdentityCredentialsCode struct method GetAddresses (line 47) | func (o *IdentityCredentialsCode) GetAddresses() []IdentityCredentials... method GetAddressesOk (line 57) | func (o *IdentityCredentialsCode) GetAddressesOk() ([]IdentityCredenti... method HasAddresses (line 65) | func (o *IdentityCredentialsCode) HasAddresses() bool { method SetAddresses (line 74) | func (o *IdentityCredentialsCode) SetAddresses(v []IdentityCredentials... method MarshalJSON (line 78) | func (o IdentityCredentialsCode) MarshalJSON() ([]byte, error) { method ToMap (line 86) | func (o IdentityCredentialsCode) ToMap() (map[string]interface{}, erro... method UnmarshalJSON (line 99) | func (o *IdentityCredentialsCode) UnmarshalJSON(data []byte) (err erro... type _IdentityCredentialsCode (line 27) | type _IdentityCredentialsCode function NewIdentityCredentialsCode (line 33) | func NewIdentityCredentialsCode() *IdentityCredentialsCode { function NewIdentityCredentialsCodeWithDefaults (line 41) | func NewIdentityCredentialsCodeWithDefaults() *IdentityCredentialsCode { type NullableIdentityCredentialsCode (line 120) | type NullableIdentityCredentialsCode struct method Get (line 125) | func (v NullableIdentityCredentialsCode) Get() *IdentityCredentialsCode { method Set (line 129) | func (v *NullableIdentityCredentialsCode) Set(val *IdentityCredentials... method IsSet (line 134) | func (v NullableIdentityCredentialsCode) IsSet() bool { method Unset (line 138) | func (v *NullableIdentityCredentialsCode) Unset() { method MarshalJSON (line 147) | func (v NullableIdentityCredentialsCode) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 151) | func (v *NullableIdentityCredentialsCode) UnmarshalJSON(src []byte) er... function NewNullableIdentityCredentialsCode (line 143) | func NewNullableIdentityCredentialsCode(val *IdentityCredentialsCode) *N... FILE: pkg/httpclient/model_identity_credentials_code_address.go type IdentityCredentialsCodeAddress (line 22) | type IdentityCredentialsCodeAddress struct method GetAddress (line 49) | func (o *IdentityCredentialsCodeAddress) GetAddress() string { method GetAddressOk (line 59) | func (o *IdentityCredentialsCodeAddress) GetAddressOk() (*string, bool) { method HasAddress (line 67) | func (o *IdentityCredentialsCodeAddress) HasAddress() bool { method SetAddress (line 76) | func (o *IdentityCredentialsCodeAddress) SetAddress(v string) { method GetChannel (line 81) | func (o *IdentityCredentialsCodeAddress) GetChannel() string { method GetChannelOk (line 91) | func (o *IdentityCredentialsCodeAddress) GetChannelOk() (*string, bool) { method HasChannel (line 99) | func (o *IdentityCredentialsCodeAddress) HasChannel() bool { method SetChannel (line 108) | func (o *IdentityCredentialsCodeAddress) SetChannel(v string) { method MarshalJSON (line 112) | func (o IdentityCredentialsCodeAddress) MarshalJSON() ([]byte, error) { method ToMap (line 120) | func (o IdentityCredentialsCodeAddress) ToMap() (map[string]interface{... method UnmarshalJSON (line 136) | func (o *IdentityCredentialsCodeAddress) UnmarshalJSON(data []byte) (e... type _IdentityCredentialsCodeAddress (line 29) | type _IdentityCredentialsCodeAddress function NewIdentityCredentialsCodeAddress (line 35) | func NewIdentityCredentialsCodeAddress() *IdentityCredentialsCodeAddress { function NewIdentityCredentialsCodeAddressWithDefaults (line 43) | func NewIdentityCredentialsCodeAddressWithDefaults() *IdentityCredential... type NullableIdentityCredentialsCodeAddress (line 158) | type NullableIdentityCredentialsCodeAddress struct method Get (line 163) | func (v NullableIdentityCredentialsCodeAddress) Get() *IdentityCredent... method Set (line 167) | func (v *NullableIdentityCredentialsCodeAddress) Set(val *IdentityCred... method IsSet (line 172) | func (v NullableIdentityCredentialsCodeAddress) IsSet() bool { method Unset (line 176) | func (v *NullableIdentityCredentialsCodeAddress) Unset() { method MarshalJSON (line 185) | func (v NullableIdentityCredentialsCodeAddress) MarshalJSON() ([]byte,... method UnmarshalJSON (line 189) | func (v *NullableIdentityCredentialsCodeAddress) UnmarshalJSON(src []b... function NewNullableIdentityCredentialsCodeAddress (line 181) | func NewNullableIdentityCredentialsCodeAddress(val *IdentityCredentialsC... FILE: pkg/httpclient/model_identity_credentials_oidc.go type IdentityCredentialsOidc (line 22) | type IdentityCredentialsOidc struct method GetProviders (line 47) | func (o *IdentityCredentialsOidc) GetProviders() []IdentityCredentials... method GetProvidersOk (line 57) | func (o *IdentityCredentialsOidc) GetProvidersOk() ([]IdentityCredenti... method HasProviders (line 65) | func (o *IdentityCredentialsOidc) HasProviders() bool { method SetProviders (line 74) | func (o *IdentityCredentialsOidc) SetProviders(v []IdentityCredentials... method MarshalJSON (line 78) | func (o IdentityCredentialsOidc) MarshalJSON() ([]byte, error) { method ToMap (line 86) | func (o IdentityCredentialsOidc) ToMap() (map[string]interface{}, erro... method UnmarshalJSON (line 99) | func (o *IdentityCredentialsOidc) UnmarshalJSON(data []byte) (err erro... type _IdentityCredentialsOidc (line 27) | type _IdentityCredentialsOidc function NewIdentityCredentialsOidc (line 33) | func NewIdentityCredentialsOidc() *IdentityCredentialsOidc { function NewIdentityCredentialsOidcWithDefaults (line 41) | func NewIdentityCredentialsOidcWithDefaults() *IdentityCredentialsOidc { type NullableIdentityCredentialsOidc (line 120) | type NullableIdentityCredentialsOidc struct method Get (line 125) | func (v NullableIdentityCredentialsOidc) Get() *IdentityCredentialsOidc { method Set (line 129) | func (v *NullableIdentityCredentialsOidc) Set(val *IdentityCredentials... method IsSet (line 134) | func (v NullableIdentityCredentialsOidc) IsSet() bool { method Unset (line 138) | func (v *NullableIdentityCredentialsOidc) Unset() { method MarshalJSON (line 147) | func (v NullableIdentityCredentialsOidc) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 151) | func (v *NullableIdentityCredentialsOidc) UnmarshalJSON(src []byte) er... function NewNullableIdentityCredentialsOidc (line 143) | func NewNullableIdentityCredentialsOidc(val *IdentityCredentialsOidc) *N... FILE: pkg/httpclient/model_identity_credentials_oidc_provider.go type IdentityCredentialsOidcProvider (line 22) | type IdentityCredentialsOidcProvider struct method GetInitialAccessToken (line 53) | func (o *IdentityCredentialsOidcProvider) GetInitialAccessToken() stri... method GetInitialAccessTokenOk (line 63) | func (o *IdentityCredentialsOidcProvider) GetInitialAccessTokenOk() (*... method HasInitialAccessToken (line 71) | func (o *IdentityCredentialsOidcProvider) HasInitialAccessToken() bool { method SetInitialAccessToken (line 80) | func (o *IdentityCredentialsOidcProvider) SetInitialAccessToken(v stri... method GetInitialIdToken (line 85) | func (o *IdentityCredentialsOidcProvider) GetInitialIdToken() string { method GetInitialIdTokenOk (line 95) | func (o *IdentityCredentialsOidcProvider) GetInitialIdTokenOk() (*stri... method HasInitialIdToken (line 103) | func (o *IdentityCredentialsOidcProvider) HasInitialIdToken() bool { method SetInitialIdToken (line 112) | func (o *IdentityCredentialsOidcProvider) SetInitialIdToken(v string) { method GetInitialRefreshToken (line 117) | func (o *IdentityCredentialsOidcProvider) GetInitialRefreshToken() str... method GetInitialRefreshTokenOk (line 127) | func (o *IdentityCredentialsOidcProvider) GetInitialRefreshTokenOk() (... method HasInitialRefreshToken (line 135) | func (o *IdentityCredentialsOidcProvider) HasInitialRefreshToken() bool { method SetInitialRefreshToken (line 144) | func (o *IdentityCredentialsOidcProvider) SetInitialRefreshToken(v str... method GetOrganization (line 149) | func (o *IdentityCredentialsOidcProvider) GetOrganization() string { method GetOrganizationOk (line 159) | func (o *IdentityCredentialsOidcProvider) GetOrganizationOk() (*string... method HasOrganization (line 167) | func (o *IdentityCredentialsOidcProvider) HasOrganization() bool { method SetOrganization (line 176) | func (o *IdentityCredentialsOidcProvider) SetOrganization(v string) { method GetProvider (line 181) | func (o *IdentityCredentialsOidcProvider) GetProvider() string { method GetProviderOk (line 191) | func (o *IdentityCredentialsOidcProvider) GetProviderOk() (*string, bo... method HasProvider (line 199) | func (o *IdentityCredentialsOidcProvider) HasProvider() bool { method SetProvider (line 208) | func (o *IdentityCredentialsOidcProvider) SetProvider(v string) { method GetSubject (line 213) | func (o *IdentityCredentialsOidcProvider) GetSubject() string { method GetSubjectOk (line 223) | func (o *IdentityCredentialsOidcProvider) GetSubjectOk() (*string, boo... method HasSubject (line 231) | func (o *IdentityCredentialsOidcProvider) HasSubject() bool { method SetSubject (line 240) | func (o *IdentityCredentialsOidcProvider) SetSubject(v string) { method GetUseAutoLink (line 245) | func (o *IdentityCredentialsOidcProvider) GetUseAutoLink() bool { method GetUseAutoLinkOk (line 255) | func (o *IdentityCredentialsOidcProvider) GetUseAutoLinkOk() (*bool, b... method HasUseAutoLink (line 263) | func (o *IdentityCredentialsOidcProvider) HasUseAutoLink() bool { method SetUseAutoLink (line 272) | func (o *IdentityCredentialsOidcProvider) SetUseAutoLink(v bool) { method MarshalJSON (line 276) | func (o IdentityCredentialsOidcProvider) MarshalJSON() ([]byte, error) { method ToMap (line 284) | func (o IdentityCredentialsOidcProvider) ToMap() (map[string]interface... method UnmarshalJSON (line 315) | func (o *IdentityCredentialsOidcProvider) UnmarshalJSON(data []byte) (... type _IdentityCredentialsOidcProvider (line 33) | type _IdentityCredentialsOidcProvider function NewIdentityCredentialsOidcProvider (line 39) | func NewIdentityCredentialsOidcProvider() *IdentityCredentialsOidcProvid... function NewIdentityCredentialsOidcProviderWithDefaults (line 47) | func NewIdentityCredentialsOidcProviderWithDefaults() *IdentityCredentia... type NullableIdentityCredentialsOidcProvider (line 342) | type NullableIdentityCredentialsOidcProvider struct method Get (line 347) | func (v NullableIdentityCredentialsOidcProvider) Get() *IdentityCreden... method Set (line 351) | func (v *NullableIdentityCredentialsOidcProvider) Set(val *IdentityCre... method IsSet (line 356) | func (v NullableIdentityCredentialsOidcProvider) IsSet() bool { method Unset (line 360) | func (v *NullableIdentityCredentialsOidcProvider) Unset() { method MarshalJSON (line 369) | func (v NullableIdentityCredentialsOidcProvider) MarshalJSON() ([]byte... method UnmarshalJSON (line 373) | func (v *NullableIdentityCredentialsOidcProvider) UnmarshalJSON(src []... function NewNullableIdentityCredentialsOidcProvider (line 365) | func NewNullableIdentityCredentialsOidcProvider(val *IdentityCredentials... FILE: pkg/httpclient/model_identity_credentials_password.go type IdentityCredentialsPassword (line 22) | type IdentityCredentialsPassword struct method GetHashedPassword (line 50) | func (o *IdentityCredentialsPassword) GetHashedPassword() string { method GetHashedPasswordOk (line 60) | func (o *IdentityCredentialsPassword) GetHashedPasswordOk() (*string, ... method HasHashedPassword (line 68) | func (o *IdentityCredentialsPassword) HasHashedPassword() bool { method SetHashedPassword (line 77) | func (o *IdentityCredentialsPassword) SetHashedPassword(v string) { method GetUsePasswordMigrationHook (line 82) | func (o *IdentityCredentialsPassword) GetUsePasswordMigrationHook() bo... method GetUsePasswordMigrationHookOk (line 92) | func (o *IdentityCredentialsPassword) GetUsePasswordMigrationHookOk() ... method HasUsePasswordMigrationHook (line 100) | func (o *IdentityCredentialsPassword) HasUsePasswordMigrationHook() bo... method SetUsePasswordMigrationHook (line 109) | func (o *IdentityCredentialsPassword) SetUsePasswordMigrationHook(v bo... method MarshalJSON (line 113) | func (o IdentityCredentialsPassword) MarshalJSON() ([]byte, error) { method ToMap (line 121) | func (o IdentityCredentialsPassword) ToMap() (map[string]interface{}, ... method UnmarshalJSON (line 137) | func (o *IdentityCredentialsPassword) UnmarshalJSON(data []byte) (err ... type _IdentityCredentialsPassword (line 30) | type _IdentityCredentialsPassword function NewIdentityCredentialsPassword (line 36) | func NewIdentityCredentialsPassword() *IdentityCredentialsPassword { function NewIdentityCredentialsPasswordWithDefaults (line 44) | func NewIdentityCredentialsPasswordWithDefaults() *IdentityCredentialsPa... type NullableIdentityCredentialsPassword (line 159) | type NullableIdentityCredentialsPassword struct method Get (line 164) | func (v NullableIdentityCredentialsPassword) Get() *IdentityCredential... method Set (line 168) | func (v *NullableIdentityCredentialsPassword) Set(val *IdentityCredent... method IsSet (line 173) | func (v NullableIdentityCredentialsPassword) IsSet() bool { method Unset (line 177) | func (v *NullableIdentityCredentialsPassword) Unset() { method MarshalJSON (line 186) | func (v NullableIdentityCredentialsPassword) MarshalJSON() ([]byte, er... method UnmarshalJSON (line 190) | func (v *NullableIdentityCredentialsPassword) UnmarshalJSON(src []byte... function NewNullableIdentityCredentialsPassword (line 182) | func NewNullableIdentityCredentialsPassword(val *IdentityCredentialsPass... FILE: pkg/httpclient/model_identity_patch.go type IdentityPatch (line 22) | type IdentityPatch struct method GetCreate (line 49) | func (o *IdentityPatch) GetCreate() CreateIdentityBody { method GetCreateOk (line 59) | func (o *IdentityPatch) GetCreateOk() (*CreateIdentityBody, bool) { method HasCreate (line 67) | func (o *IdentityPatch) HasCreate() bool { method SetCreate (line 76) | func (o *IdentityPatch) SetCreate(v CreateIdentityBody) { method GetPatchId (line 81) | func (o *IdentityPatch) GetPatchId() string { method GetPatchIdOk (line 91) | func (o *IdentityPatch) GetPatchIdOk() (*string, bool) { method HasPatchId (line 99) | func (o *IdentityPatch) HasPatchId() bool { method SetPatchId (line 108) | func (o *IdentityPatch) SetPatchId(v string) { method MarshalJSON (line 112) | func (o IdentityPatch) MarshalJSON() ([]byte, error) { method ToMap (line 120) | func (o IdentityPatch) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 136) | func (o *IdentityPatch) UnmarshalJSON(data []byte) (err error) { type _IdentityPatch (line 29) | type _IdentityPatch function NewIdentityPatch (line 35) | func NewIdentityPatch() *IdentityPatch { function NewIdentityPatchWithDefaults (line 43) | func NewIdentityPatchWithDefaults() *IdentityPatch { type NullableIdentityPatch (line 158) | type NullableIdentityPatch struct method Get (line 163) | func (v NullableIdentityPatch) Get() *IdentityPatch { method Set (line 167) | func (v *NullableIdentityPatch) Set(val *IdentityPatch) { method IsSet (line 172) | func (v NullableIdentityPatch) IsSet() bool { method Unset (line 176) | func (v *NullableIdentityPatch) Unset() { method MarshalJSON (line 185) | func (v NullableIdentityPatch) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 189) | func (v *NullableIdentityPatch) UnmarshalJSON(src []byte) error { function NewNullableIdentityPatch (line 181) | func NewNullableIdentityPatch(val *IdentityPatch) *NullableIdentityPatch { FILE: pkg/httpclient/model_identity_patch_response.go type IdentityPatchResponse (line 22) | type IdentityPatchResponse struct method GetAction (line 53) | func (o *IdentityPatchResponse) GetAction() string { method GetActionOk (line 63) | func (o *IdentityPatchResponse) GetActionOk() (*string, bool) { method HasAction (line 71) | func (o *IdentityPatchResponse) HasAction() bool { method SetAction (line 80) | func (o *IdentityPatchResponse) SetAction(v string) { method GetError (line 85) | func (o *IdentityPatchResponse) GetError() interface{} { method GetErrorOk (line 96) | func (o *IdentityPatchResponse) GetErrorOk() (*interface{}, bool) { method HasError (line 104) | func (o *IdentityPatchResponse) HasError() bool { method SetError (line 113) | func (o *IdentityPatchResponse) SetError(v interface{}) { method GetIdentity (line 118) | func (o *IdentityPatchResponse) GetIdentity() string { method GetIdentityOk (line 128) | func (o *IdentityPatchResponse) GetIdentityOk() (*string, bool) { method HasIdentity (line 136) | func (o *IdentityPatchResponse) HasIdentity() bool { method SetIdentity (line 145) | func (o *IdentityPatchResponse) SetIdentity(v string) { method GetPatchId (line 150) | func (o *IdentityPatchResponse) GetPatchId() string { method GetPatchIdOk (line 160) | func (o *IdentityPatchResponse) GetPatchIdOk() (*string, bool) { method HasPatchId (line 168) | func (o *IdentityPatchResponse) HasPatchId() bool { method SetPatchId (line 177) | func (o *IdentityPatchResponse) SetPatchId(v string) { method MarshalJSON (line 181) | func (o IdentityPatchResponse) MarshalJSON() ([]byte, error) { method ToMap (line 189) | func (o IdentityPatchResponse) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 211) | func (o *IdentityPatchResponse) UnmarshalJSON(data []byte) (err error) { type _IdentityPatchResponse (line 33) | type _IdentityPatchResponse function NewIdentityPatchResponse (line 39) | func NewIdentityPatchResponse() *IdentityPatchResponse { function NewIdentityPatchResponseWithDefaults (line 47) | func NewIdentityPatchResponseWithDefaults() *IdentityPatchResponse { type NullableIdentityPatchResponse (line 235) | type NullableIdentityPatchResponse struct method Get (line 240) | func (v NullableIdentityPatchResponse) Get() *IdentityPatchResponse { method Set (line 244) | func (v *NullableIdentityPatchResponse) Set(val *IdentityPatchResponse) { method IsSet (line 249) | func (v NullableIdentityPatchResponse) IsSet() bool { method Unset (line 253) | func (v *NullableIdentityPatchResponse) Unset() { method MarshalJSON (line 262) | func (v NullableIdentityPatchResponse) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 266) | func (v *NullableIdentityPatchResponse) UnmarshalJSON(src []byte) error { function NewNullableIdentityPatchResponse (line 258) | func NewNullableIdentityPatchResponse(val *IdentityPatchResponse) *Nulla... FILE: pkg/httpclient/model_identity_schema_container.go type IdentitySchemaContainer (line 23) | type IdentitySchemaContainer struct method GetId (line 53) | func (o *IdentitySchemaContainer) GetId() string { method GetIdOk (line 64) | func (o *IdentitySchemaContainer) GetIdOk() (*string, bool) { method SetId (line 72) | func (o *IdentitySchemaContainer) SetId(v string) { method GetSchema (line 77) | func (o *IdentitySchemaContainer) GetSchema() map[string]interface{} { method GetSchemaOk (line 88) | func (o *IdentitySchemaContainer) GetSchemaOk() (map[string]interface{... method SetSchema (line 96) | func (o *IdentitySchemaContainer) SetSchema(v map[string]interface{}) { method MarshalJSON (line 100) | func (o IdentitySchemaContainer) MarshalJSON() ([]byte, error) { method ToMap (line 108) | func (o IdentitySchemaContainer) ToMap() (map[string]interface{}, erro... method UnmarshalJSON (line 120) | func (o *IdentitySchemaContainer) UnmarshalJSON(data []byte) (err erro... type _IdentitySchemaContainer (line 31) | type _IdentitySchemaContainer function NewIdentitySchemaContainer (line 37) | func NewIdentitySchemaContainer(id string, schema map[string]interface{}... function NewIdentitySchemaContainerWithDefaults (line 47) | func NewIdentitySchemaContainerWithDefaults() *IdentitySchemaContainer { type NullableIdentitySchemaContainer (line 164) | type NullableIdentitySchemaContainer struct method Get (line 169) | func (v NullableIdentitySchemaContainer) Get() *IdentitySchemaContainer { method Set (line 173) | func (v *NullableIdentitySchemaContainer) Set(val *IdentitySchemaConta... method IsSet (line 178) | func (v NullableIdentitySchemaContainer) IsSet() bool { method Unset (line 182) | func (v *NullableIdentitySchemaContainer) Unset() { method MarshalJSON (line 191) | func (v NullableIdentitySchemaContainer) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 195) | func (v *NullableIdentitySchemaContainer) UnmarshalJSON(src []byte) er... function NewNullableIdentitySchemaContainer (line 187) | func NewNullableIdentitySchemaContainer(val *IdentitySchemaContainer) *N... FILE: pkg/httpclient/model_identity_with_credentials.go type IdentityWithCredentials (line 22) | type IdentityWithCredentials struct method GetOidc (line 49) | func (o *IdentityWithCredentials) GetOidc() IdentityWithCredentialsOidc { method GetOidcOk (line 59) | func (o *IdentityWithCredentials) GetOidcOk() (*IdentityWithCredential... method HasOidc (line 67) | func (o *IdentityWithCredentials) HasOidc() bool { method SetOidc (line 76) | func (o *IdentityWithCredentials) SetOidc(v IdentityWithCredentialsOid... method GetPassword (line 81) | func (o *IdentityWithCredentials) GetPassword() IdentityWithCredential... method GetPasswordOk (line 91) | func (o *IdentityWithCredentials) GetPasswordOk() (*IdentityWithCreden... method HasPassword (line 99) | func (o *IdentityWithCredentials) HasPassword() bool { method SetPassword (line 108) | func (o *IdentityWithCredentials) SetPassword(v IdentityWithCredential... method GetSaml (line 113) | func (o *IdentityWithCredentials) GetSaml() IdentityWithCredentialsSaml { method GetSamlOk (line 123) | func (o *IdentityWithCredentials) GetSamlOk() (*IdentityWithCredential... method HasSaml (line 131) | func (o *IdentityWithCredentials) HasSaml() bool { method SetSaml (line 140) | func (o *IdentityWithCredentials) SetSaml(v IdentityWithCredentialsSam... method MarshalJSON (line 144) | func (o IdentityWithCredentials) MarshalJSON() ([]byte, error) { method ToMap (line 152) | func (o IdentityWithCredentials) ToMap() (map[string]interface{}, erro... method UnmarshalJSON (line 171) | func (o *IdentityWithCredentials) UnmarshalJSON(data []byte) (err erro... type _IdentityWithCredentials (line 29) | type _IdentityWithCredentials function NewIdentityWithCredentials (line 35) | func NewIdentityWithCredentials() *IdentityWithCredentials { function NewIdentityWithCredentialsWithDefaults (line 43) | func NewIdentityWithCredentialsWithDefaults() *IdentityWithCredentials { type NullableIdentityWithCredentials (line 194) | type NullableIdentityWithCredentials struct method Get (line 199) | func (v NullableIdentityWithCredentials) Get() *IdentityWithCredentials { method Set (line 203) | func (v *NullableIdentityWithCredentials) Set(val *IdentityWithCredent... method IsSet (line 208) | func (v NullableIdentityWithCredentials) IsSet() bool { method Unset (line 212) | func (v *NullableIdentityWithCredentials) Unset() { method MarshalJSON (line 221) | func (v NullableIdentityWithCredentials) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 225) | func (v *NullableIdentityWithCredentials) UnmarshalJSON(src []byte) er... function NewNullableIdentityWithCredentials (line 217) | func NewNullableIdentityWithCredentials(val *IdentityWithCredentials) *N... FILE: pkg/httpclient/model_identity_with_credentials_oidc.go type IdentityWithCredentialsOidc (line 22) | type IdentityWithCredentialsOidc struct method GetConfig (line 47) | func (o *IdentityWithCredentialsOidc) GetConfig() IdentityWithCredenti... method GetConfigOk (line 57) | func (o *IdentityWithCredentialsOidc) GetConfigOk() (*IdentityWithCred... method HasConfig (line 65) | func (o *IdentityWithCredentialsOidc) HasConfig() bool { method SetConfig (line 74) | func (o *IdentityWithCredentialsOidc) SetConfig(v IdentityWithCredenti... method MarshalJSON (line 78) | func (o IdentityWithCredentialsOidc) MarshalJSON() ([]byte, error) { method ToMap (line 86) | func (o IdentityWithCredentialsOidc) ToMap() (map[string]interface{}, ... method UnmarshalJSON (line 99) | func (o *IdentityWithCredentialsOidc) UnmarshalJSON(data []byte) (err ... type _IdentityWithCredentialsOidc (line 27) | type _IdentityWithCredentialsOidc function NewIdentityWithCredentialsOidc (line 33) | func NewIdentityWithCredentialsOidc() *IdentityWithCredentialsOidc { function NewIdentityWithCredentialsOidcWithDefaults (line 41) | func NewIdentityWithCredentialsOidcWithDefaults() *IdentityWithCredentia... type NullableIdentityWithCredentialsOidc (line 120) | type NullableIdentityWithCredentialsOidc struct method Get (line 125) | func (v NullableIdentityWithCredentialsOidc) Get() *IdentityWithCreden... method Set (line 129) | func (v *NullableIdentityWithCredentialsOidc) Set(val *IdentityWithCre... method IsSet (line 134) | func (v NullableIdentityWithCredentialsOidc) IsSet() bool { method Unset (line 138) | func (v *NullableIdentityWithCredentialsOidc) Unset() { method MarshalJSON (line 147) | func (v NullableIdentityWithCredentialsOidc) MarshalJSON() ([]byte, er... method UnmarshalJSON (line 151) | func (v *NullableIdentityWithCredentialsOidc) UnmarshalJSON(src []byte... function NewNullableIdentityWithCredentialsOidc (line 143) | func NewNullableIdentityWithCredentialsOidc(val *IdentityWithCredentials... FILE: pkg/httpclient/model_identity_with_credentials_oidc_config.go type IdentityWithCredentialsOidcConfig (line 22) | type IdentityWithCredentialsOidcConfig struct method GetProviders (line 48) | func (o *IdentityWithCredentialsOidcConfig) GetProviders() []IdentityW... method GetProvidersOk (line 58) | func (o *IdentityWithCredentialsOidcConfig) GetProvidersOk() ([]Identi... method HasProviders (line 66) | func (o *IdentityWithCredentialsOidcConfig) HasProviders() bool { method SetProviders (line 75) | func (o *IdentityWithCredentialsOidcConfig) SetProviders(v []IdentityW... method MarshalJSON (line 79) | func (o IdentityWithCredentialsOidcConfig) MarshalJSON() ([]byte, erro... method ToMap (line 87) | func (o IdentityWithCredentialsOidcConfig) ToMap() (map[string]interfa... method UnmarshalJSON (line 100) | func (o *IdentityWithCredentialsOidcConfig) UnmarshalJSON(data []byte)... type _IdentityWithCredentialsOidcConfig (line 28) | type _IdentityWithCredentialsOidcConfig function NewIdentityWithCredentialsOidcConfig (line 34) | func NewIdentityWithCredentialsOidcConfig() *IdentityWithCredentialsOidc... function NewIdentityWithCredentialsOidcConfigWithDefaults (line 42) | func NewIdentityWithCredentialsOidcConfigWithDefaults() *IdentityWithCre... type NullableIdentityWithCredentialsOidcConfig (line 121) | type NullableIdentityWithCredentialsOidcConfig struct method Get (line 126) | func (v NullableIdentityWithCredentialsOidcConfig) Get() *IdentityWith... method Set (line 130) | func (v *NullableIdentityWithCredentialsOidcConfig) Set(val *IdentityW... method IsSet (line 135) | func (v NullableIdentityWithCredentialsOidcConfig) IsSet() bool { method Unset (line 139) | func (v *NullableIdentityWithCredentialsOidcConfig) Unset() { method MarshalJSON (line 148) | func (v NullableIdentityWithCredentialsOidcConfig) MarshalJSON() ([]by... method UnmarshalJSON (line 152) | func (v *NullableIdentityWithCredentialsOidcConfig) UnmarshalJSON(src ... function NewNullableIdentityWithCredentialsOidcConfig (line 144) | func NewNullableIdentityWithCredentialsOidcConfig(val *IdentityWithCrede... FILE: pkg/httpclient/model_identity_with_credentials_oidc_config_provider.go type IdentityWithCredentialsOidcConfigProvider (line 23) | type IdentityWithCredentialsOidcConfigProvider struct method GetOrganization (line 56) | func (o *IdentityWithCredentialsOidcConfigProvider) GetOrganization() ... method GetOrganizationOk (line 67) | func (o *IdentityWithCredentialsOidcConfigProvider) GetOrganizationOk(... method HasOrganization (line 75) | func (o *IdentityWithCredentialsOidcConfigProvider) HasOrganization() ... method SetOrganization (line 84) | func (o *IdentityWithCredentialsOidcConfigProvider) SetOrganization(v ... method SetOrganizationNil (line 89) | func (o *IdentityWithCredentialsOidcConfigProvider) SetOrganizationNil... method UnsetOrganization (line 94) | func (o *IdentityWithCredentialsOidcConfigProvider) UnsetOrganization() { method GetProvider (line 99) | func (o *IdentityWithCredentialsOidcConfigProvider) GetProvider() stri... method GetProviderOk (line 110) | func (o *IdentityWithCredentialsOidcConfigProvider) GetProviderOk() (*... method SetProvider (line 118) | func (o *IdentityWithCredentialsOidcConfigProvider) SetProvider(v stri... method GetSubject (line 123) | func (o *IdentityWithCredentialsOidcConfigProvider) GetSubject() string { method GetSubjectOk (line 134) | func (o *IdentityWithCredentialsOidcConfigProvider) GetSubjectOk() (*s... method SetSubject (line 142) | func (o *IdentityWithCredentialsOidcConfigProvider) SetSubject(v strin... method GetUseAutoLink (line 147) | func (o *IdentityWithCredentialsOidcConfigProvider) GetUseAutoLink() b... method GetUseAutoLinkOk (line 157) | func (o *IdentityWithCredentialsOidcConfigProvider) GetUseAutoLinkOk()... method HasUseAutoLink (line 165) | func (o *IdentityWithCredentialsOidcConfigProvider) HasUseAutoLink() b... method SetUseAutoLink (line 174) | func (o *IdentityWithCredentialsOidcConfigProvider) SetUseAutoLink(v b... method MarshalJSON (line 178) | func (o IdentityWithCredentialsOidcConfigProvider) MarshalJSON() ([]by... method ToMap (line 186) | func (o IdentityWithCredentialsOidcConfigProvider) ToMap() (map[string... method UnmarshalJSON (line 204) | func (o *IdentityWithCredentialsOidcConfigProvider) UnmarshalJSON(data... type _IdentityWithCredentialsOidcConfigProvider (line 34) | type _IdentityWithCredentialsOidcConfigProvider function NewIdentityWithCredentialsOidcConfigProvider (line 40) | func NewIdentityWithCredentialsOidcConfigProvider(provider string, subje... function NewIdentityWithCredentialsOidcConfigProviderWithDefaults (line 50) | func NewIdentityWithCredentialsOidcConfigProviderWithDefaults() *Identit... type NullableIdentityWithCredentialsOidcConfigProvider (line 250) | type NullableIdentityWithCredentialsOidcConfigProvider struct method Get (line 255) | func (v NullableIdentityWithCredentialsOidcConfigProvider) Get() *Iden... method Set (line 259) | func (v *NullableIdentityWithCredentialsOidcConfigProvider) Set(val *I... method IsSet (line 264) | func (v NullableIdentityWithCredentialsOidcConfigProvider) IsSet() bool { method Unset (line 268) | func (v *NullableIdentityWithCredentialsOidcConfigProvider) Unset() { method MarshalJSON (line 277) | func (v NullableIdentityWithCredentialsOidcConfigProvider) MarshalJSON... method UnmarshalJSON (line 281) | func (v *NullableIdentityWithCredentialsOidcConfigProvider) UnmarshalJ... function NewNullableIdentityWithCredentialsOidcConfigProvider (line 273) | func NewNullableIdentityWithCredentialsOidcConfigProvider(val *IdentityW... FILE: pkg/httpclient/model_identity_with_credentials_password.go type IdentityWithCredentialsPassword (line 22) | type IdentityWithCredentialsPassword struct method GetConfig (line 47) | func (o *IdentityWithCredentialsPassword) GetConfig() IdentityWithCred... method GetConfigOk (line 57) | func (o *IdentityWithCredentialsPassword) GetConfigOk() (*IdentityWith... method HasConfig (line 65) | func (o *IdentityWithCredentialsPassword) HasConfig() bool { method SetConfig (line 74) | func (o *IdentityWithCredentialsPassword) SetConfig(v IdentityWithCred... method MarshalJSON (line 78) | func (o IdentityWithCredentialsPassword) MarshalJSON() ([]byte, error) { method ToMap (line 86) | func (o IdentityWithCredentialsPassword) ToMap() (map[string]interface... method UnmarshalJSON (line 99) | func (o *IdentityWithCredentialsPassword) UnmarshalJSON(data []byte) (... type _IdentityWithCredentialsPassword (line 27) | type _IdentityWithCredentialsPassword function NewIdentityWithCredentialsPassword (line 33) | func NewIdentityWithCredentialsPassword() *IdentityWithCredentialsPasswo... function NewIdentityWithCredentialsPasswordWithDefaults (line 41) | func NewIdentityWithCredentialsPasswordWithDefaults() *IdentityWithCrede... type NullableIdentityWithCredentialsPassword (line 120) | type NullableIdentityWithCredentialsPassword struct method Get (line 125) | func (v NullableIdentityWithCredentialsPassword) Get() *IdentityWithCr... method Set (line 129) | func (v *NullableIdentityWithCredentialsPassword) Set(val *IdentityWit... method IsSet (line 134) | func (v NullableIdentityWithCredentialsPassword) IsSet() bool { method Unset (line 138) | func (v *NullableIdentityWithCredentialsPassword) Unset() { method MarshalJSON (line 147) | func (v NullableIdentityWithCredentialsPassword) MarshalJSON() ([]byte... method UnmarshalJSON (line 151) | func (v *NullableIdentityWithCredentialsPassword) UnmarshalJSON(src []... function NewNullableIdentityWithCredentialsPassword (line 143) | func NewNullableIdentityWithCredentialsPassword(val *IdentityWithCredent... FILE: pkg/httpclient/model_identity_with_credentials_password_config.go type IdentityWithCredentialsPasswordConfig (line 22) | type IdentityWithCredentialsPasswordConfig struct method GetHashedPassword (line 52) | func (o *IdentityWithCredentialsPasswordConfig) GetHashedPassword() st... method GetHashedPasswordOk (line 62) | func (o *IdentityWithCredentialsPasswordConfig) GetHashedPasswordOk() ... method HasHashedPassword (line 70) | func (o *IdentityWithCredentialsPasswordConfig) HasHashedPassword() bo... method SetHashedPassword (line 79) | func (o *IdentityWithCredentialsPasswordConfig) SetHashedPassword(v st... method GetPassword (line 84) | func (o *IdentityWithCredentialsPasswordConfig) GetPassword() string { method GetPasswordOk (line 94) | func (o *IdentityWithCredentialsPasswordConfig) GetPasswordOk() (*stri... method HasPassword (line 102) | func (o *IdentityWithCredentialsPasswordConfig) HasPassword() bool { method SetPassword (line 111) | func (o *IdentityWithCredentialsPasswordConfig) SetPassword(v string) { method GetUsePasswordMigrationHook (line 116) | func (o *IdentityWithCredentialsPasswordConfig) GetUsePasswordMigratio... method GetUsePasswordMigrationHookOk (line 126) | func (o *IdentityWithCredentialsPasswordConfig) GetUsePasswordMigratio... method HasUsePasswordMigrationHook (line 134) | func (o *IdentityWithCredentialsPasswordConfig) HasUsePasswordMigratio... method SetUsePasswordMigrationHook (line 143) | func (o *IdentityWithCredentialsPasswordConfig) SetUsePasswordMigratio... method MarshalJSON (line 147) | func (o IdentityWithCredentialsPasswordConfig) MarshalJSON() ([]byte, ... method ToMap (line 155) | func (o IdentityWithCredentialsPasswordConfig) ToMap() (map[string]int... method UnmarshalJSON (line 174) | func (o *IdentityWithCredentialsPasswordConfig) UnmarshalJSON(data []b... type _IdentityWithCredentialsPasswordConfig (line 32) | type _IdentityWithCredentialsPasswordConfig function NewIdentityWithCredentialsPasswordConfig (line 38) | func NewIdentityWithCredentialsPasswordConfig() *IdentityWithCredentials... function NewIdentityWithCredentialsPasswordConfigWithDefaults (line 46) | func NewIdentityWithCredentialsPasswordConfigWithDefaults() *IdentityWit... type NullableIdentityWithCredentialsPasswordConfig (line 197) | type NullableIdentityWithCredentialsPasswordConfig struct method Get (line 202) | func (v NullableIdentityWithCredentialsPasswordConfig) Get() *Identity... method Set (line 206) | func (v *NullableIdentityWithCredentialsPasswordConfig) Set(val *Ident... method IsSet (line 211) | func (v NullableIdentityWithCredentialsPasswordConfig) IsSet() bool { method Unset (line 215) | func (v *NullableIdentityWithCredentialsPasswordConfig) Unset() { method MarshalJSON (line 224) | func (v NullableIdentityWithCredentialsPasswordConfig) MarshalJSON() (... method UnmarshalJSON (line 228) | func (v *NullableIdentityWithCredentialsPasswordConfig) UnmarshalJSON(... function NewNullableIdentityWithCredentialsPasswordConfig (line 220) | func NewNullableIdentityWithCredentialsPasswordConfig(val *IdentityWithC... FILE: pkg/httpclient/model_identity_with_credentials_saml.go type IdentityWithCredentialsSaml (line 22) | type IdentityWithCredentialsSaml struct method GetConfig (line 47) | func (o *IdentityWithCredentialsSaml) GetConfig() IdentityWithCredenti... method GetConfigOk (line 57) | func (o *IdentityWithCredentialsSaml) GetConfigOk() (*IdentityWithCred... method HasConfig (line 65) | func (o *IdentityWithCredentialsSaml) HasConfig() bool { method SetConfig (line 74) | func (o *IdentityWithCredentialsSaml) SetConfig(v IdentityWithCredenti... method MarshalJSON (line 78) | func (o IdentityWithCredentialsSaml) MarshalJSON() ([]byte, error) { method ToMap (line 86) | func (o IdentityWithCredentialsSaml) ToMap() (map[string]interface{}, ... method UnmarshalJSON (line 99) | func (o *IdentityWithCredentialsSaml) UnmarshalJSON(data []byte) (err ... type _IdentityWithCredentialsSaml (line 27) | type _IdentityWithCredentialsSaml function NewIdentityWithCredentialsSaml (line 33) | func NewIdentityWithCredentialsSaml() *IdentityWithCredentialsSaml { function NewIdentityWithCredentialsSamlWithDefaults (line 41) | func NewIdentityWithCredentialsSamlWithDefaults() *IdentityWithCredentia... type NullableIdentityWithCredentialsSaml (line 120) | type NullableIdentityWithCredentialsSaml struct method Get (line 125) | func (v NullableIdentityWithCredentialsSaml) Get() *IdentityWithCreden... method Set (line 129) | func (v *NullableIdentityWithCredentialsSaml) Set(val *IdentityWithCre... method IsSet (line 134) | func (v NullableIdentityWithCredentialsSaml) IsSet() bool { method Unset (line 138) | func (v *NullableIdentityWithCredentialsSaml) Unset() { method MarshalJSON (line 147) | func (v NullableIdentityWithCredentialsSaml) MarshalJSON() ([]byte, er... method UnmarshalJSON (line 151) | func (v *NullableIdentityWithCredentialsSaml) UnmarshalJSON(src []byte... function NewNullableIdentityWithCredentialsSaml (line 143) | func NewNullableIdentityWithCredentialsSaml(val *IdentityWithCredentials... FILE: pkg/httpclient/model_identity_with_credentials_saml_config.go type IdentityWithCredentialsSamlConfig (line 22) | type IdentityWithCredentialsSamlConfig struct method GetProviders (line 48) | func (o *IdentityWithCredentialsSamlConfig) GetProviders() []IdentityW... method GetProvidersOk (line 58) | func (o *IdentityWithCredentialsSamlConfig) GetProvidersOk() ([]Identi... method HasProviders (line 66) | func (o *IdentityWithCredentialsSamlConfig) HasProviders() bool { method SetProviders (line 75) | func (o *IdentityWithCredentialsSamlConfig) SetProviders(v []IdentityW... method MarshalJSON (line 79) | func (o IdentityWithCredentialsSamlConfig) MarshalJSON() ([]byte, erro... method ToMap (line 87) | func (o IdentityWithCredentialsSamlConfig) ToMap() (map[string]interfa... method UnmarshalJSON (line 100) | func (o *IdentityWithCredentialsSamlConfig) UnmarshalJSON(data []byte)... type _IdentityWithCredentialsSamlConfig (line 28) | type _IdentityWithCredentialsSamlConfig function NewIdentityWithCredentialsSamlConfig (line 34) | func NewIdentityWithCredentialsSamlConfig() *IdentityWithCredentialsSaml... function NewIdentityWithCredentialsSamlConfigWithDefaults (line 42) | func NewIdentityWithCredentialsSamlConfigWithDefaults() *IdentityWithCre... type NullableIdentityWithCredentialsSamlConfig (line 121) | type NullableIdentityWithCredentialsSamlConfig struct method Get (line 126) | func (v NullableIdentityWithCredentialsSamlConfig) Get() *IdentityWith... method Set (line 130) | func (v *NullableIdentityWithCredentialsSamlConfig) Set(val *IdentityW... method IsSet (line 135) | func (v NullableIdentityWithCredentialsSamlConfig) IsSet() bool { method Unset (line 139) | func (v *NullableIdentityWithCredentialsSamlConfig) Unset() { method MarshalJSON (line 148) | func (v NullableIdentityWithCredentialsSamlConfig) MarshalJSON() ([]by... method UnmarshalJSON (line 152) | func (v *NullableIdentityWithCredentialsSamlConfig) UnmarshalJSON(src ... function NewNullableIdentityWithCredentialsSamlConfig (line 144) | func NewNullableIdentityWithCredentialsSamlConfig(val *IdentityWithCrede... FILE: pkg/httpclient/model_identity_with_credentials_saml_config_provider.go type IdentityWithCredentialsSamlConfigProvider (line 23) | type IdentityWithCredentialsSamlConfigProvider struct method GetOrganization (line 54) | func (o *IdentityWithCredentialsSamlConfigProvider) GetOrganization() ... method GetOrganizationOk (line 65) | func (o *IdentityWithCredentialsSamlConfigProvider) GetOrganizationOk(... method HasOrganization (line 73) | func (o *IdentityWithCredentialsSamlConfigProvider) HasOrganization() ... method SetOrganization (line 82) | func (o *IdentityWithCredentialsSamlConfigProvider) SetOrganization(v ... method SetOrganizationNil (line 87) | func (o *IdentityWithCredentialsSamlConfigProvider) SetOrganizationNil... method UnsetOrganization (line 92) | func (o *IdentityWithCredentialsSamlConfigProvider) UnsetOrganization() { method GetProvider (line 97) | func (o *IdentityWithCredentialsSamlConfigProvider) GetProvider() stri... method GetProviderOk (line 108) | func (o *IdentityWithCredentialsSamlConfigProvider) GetProviderOk() (*... method SetProvider (line 116) | func (o *IdentityWithCredentialsSamlConfigProvider) SetProvider(v stri... method GetSubject (line 121) | func (o *IdentityWithCredentialsSamlConfigProvider) GetSubject() string { method GetSubjectOk (line 132) | func (o *IdentityWithCredentialsSamlConfigProvider) GetSubjectOk() (*s... method SetSubject (line 140) | func (o *IdentityWithCredentialsSamlConfigProvider) SetSubject(v strin... method MarshalJSON (line 144) | func (o IdentityWithCredentialsSamlConfigProvider) MarshalJSON() ([]by... method ToMap (line 152) | func (o IdentityWithCredentialsSamlConfigProvider) ToMap() (map[string... method UnmarshalJSON (line 167) | func (o *IdentityWithCredentialsSamlConfigProvider) UnmarshalJSON(data... type _IdentityWithCredentialsSamlConfigProvider (line 32) | type _IdentityWithCredentialsSamlConfigProvider function NewIdentityWithCredentialsSamlConfigProvider (line 38) | func NewIdentityWithCredentialsSamlConfigProvider(provider string, subje... function NewIdentityWithCredentialsSamlConfigProviderWithDefaults (line 48) | func NewIdentityWithCredentialsSamlConfigProviderWithDefaults() *Identit... type NullableIdentityWithCredentialsSamlConfigProvider (line 212) | type NullableIdentityWithCredentialsSamlConfigProvider struct method Get (line 217) | func (v NullableIdentityWithCredentialsSamlConfigProvider) Get() *Iden... method Set (line 221) | func (v *NullableIdentityWithCredentialsSamlConfigProvider) Set(val *I... method IsSet (line 226) | func (v NullableIdentityWithCredentialsSamlConfigProvider) IsSet() bool { method Unset (line 230) | func (v *NullableIdentityWithCredentialsSamlConfigProvider) Unset() { method MarshalJSON (line 239) | func (v NullableIdentityWithCredentialsSamlConfigProvider) MarshalJSON... method UnmarshalJSON (line 243) | func (v *NullableIdentityWithCredentialsSamlConfigProvider) UnmarshalJ... function NewNullableIdentityWithCredentialsSamlConfigProvider (line 235) | func NewNullableIdentityWithCredentialsSamlConfigProvider(val *IdentityW... FILE: pkg/httpclient/model_is_alive_200_response.go type IsAlive200Response (line 23) | type IsAlive200Response struct method GetStatus (line 50) | func (o *IsAlive200Response) GetStatus() string { method GetStatusOk (line 61) | func (o *IsAlive200Response) GetStatusOk() (*string, bool) { method SetStatus (line 69) | func (o *IsAlive200Response) SetStatus(v string) { method MarshalJSON (line 73) | func (o IsAlive200Response) MarshalJSON() ([]byte, error) { method ToMap (line 81) | func (o IsAlive200Response) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 92) | func (o *IsAlive200Response) UnmarshalJSON(data []byte) (err error) { type _IsAlive200Response (line 29) | type _IsAlive200Response function NewIsAlive200Response (line 35) | func NewIsAlive200Response(status string) *IsAlive200Response { function NewIsAlive200ResponseWithDefaults (line 44) | func NewIsAlive200ResponseWithDefaults() *IsAlive200Response { type NullableIsAlive200Response (line 134) | type NullableIsAlive200Response struct method Get (line 139) | func (v NullableIsAlive200Response) Get() *IsAlive200Response { method Set (line 143) | func (v *NullableIsAlive200Response) Set(val *IsAlive200Response) { method IsSet (line 148) | func (v NullableIsAlive200Response) IsSet() bool { method Unset (line 152) | func (v *NullableIsAlive200Response) Unset() { method MarshalJSON (line 161) | func (v NullableIsAlive200Response) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 165) | func (v *NullableIsAlive200Response) UnmarshalJSON(src []byte) error { function NewNullableIsAlive200Response (line 157) | func NewNullableIsAlive200Response(val *IsAlive200Response) *NullableIsA... FILE: pkg/httpclient/model_is_ready_503_response.go type IsReady503Response (line 23) | type IsReady503Response struct method GetErrors (line 50) | func (o *IsReady503Response) GetErrors() map[string]string { method GetErrorsOk (line 61) | func (o *IsReady503Response) GetErrorsOk() (*map[string]string, bool) { method SetErrors (line 69) | func (o *IsReady503Response) SetErrors(v map[string]string) { method MarshalJSON (line 73) | func (o IsReady503Response) MarshalJSON() ([]byte, error) { method ToMap (line 81) | func (o IsReady503Response) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 92) | func (o *IsReady503Response) UnmarshalJSON(data []byte) (err error) { type _IsReady503Response (line 29) | type _IsReady503Response function NewIsReady503Response (line 35) | func NewIsReady503Response(errors map[string]string) *IsReady503Response { function NewIsReady503ResponseWithDefaults (line 44) | func NewIsReady503ResponseWithDefaults() *IsReady503Response { type NullableIsReady503Response (line 134) | type NullableIsReady503Response struct method Get (line 139) | func (v NullableIsReady503Response) Get() *IsReady503Response { method Set (line 143) | func (v *NullableIsReady503Response) Set(val *IsReady503Response) { method IsSet (line 148) | func (v NullableIsReady503Response) IsSet() bool { method Unset (line 152) | func (v *NullableIsReady503Response) Unset() { method MarshalJSON (line 161) | func (v NullableIsReady503Response) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 165) | func (v *NullableIsReady503Response) UnmarshalJSON(src []byte) error { function NewNullableIsReady503Response (line 157) | func NewNullableIsReady503Response(val *IsReady503Response) *NullableIsR... FILE: pkg/httpclient/model_json_patch.go type JsonPatch (line 23) | type JsonPatch struct method GetFrom (line 57) | func (o *JsonPatch) GetFrom() string { method GetFromOk (line 67) | func (o *JsonPatch) GetFromOk() (*string, bool) { method HasFrom (line 75) | func (o *JsonPatch) HasFrom() bool { method SetFrom (line 84) | func (o *JsonPatch) SetFrom(v string) { method GetOp (line 89) | func (o *JsonPatch) GetOp() string { method GetOpOk (line 100) | func (o *JsonPatch) GetOpOk() (*string, bool) { method SetOp (line 108) | func (o *JsonPatch) SetOp(v string) { method GetPath (line 113) | func (o *JsonPatch) GetPath() string { method GetPathOk (line 124) | func (o *JsonPatch) GetPathOk() (*string, bool) { method SetPath (line 132) | func (o *JsonPatch) SetPath(v string) { method GetValue (line 137) | func (o *JsonPatch) GetValue() interface{} { method GetValueOk (line 148) | func (o *JsonPatch) GetValueOk() (*interface{}, bool) { method HasValue (line 156) | func (o *JsonPatch) HasValue() bool { method SetValue (line 165) | func (o *JsonPatch) SetValue(v interface{}) { method MarshalJSON (line 169) | func (o JsonPatch) MarshalJSON() ([]byte, error) { method ToMap (line 177) | func (o JsonPatch) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 195) | func (o *JsonPatch) UnmarshalJSON(data []byte) (err error) { type _JsonPatch (line 35) | type _JsonPatch function NewJsonPatch (line 41) | func NewJsonPatch(op string, path string) *JsonPatch { function NewJsonPatchWithDefaults (line 51) | func NewJsonPatchWithDefaults() *JsonPatch { type NullableJsonPatch (line 241) | type NullableJsonPatch struct method Get (line 246) | func (v NullableJsonPatch) Get() *JsonPatch { method Set (line 250) | func (v *NullableJsonPatch) Set(val *JsonPatch) { method IsSet (line 255) | func (v NullableJsonPatch) IsSet() bool { method Unset (line 259) | func (v *NullableJsonPatch) Unset() { method MarshalJSON (line 268) | func (v NullableJsonPatch) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 272) | func (v *NullableJsonPatch) UnmarshalJSON(src []byte) error { function NewNullableJsonPatch (line 264) | func NewNullableJsonPatch(val *JsonPatch) *NullableJsonPatch { FILE: pkg/httpclient/model_login_flow.go type LoginFlow (line 24) | type LoginFlow struct method GetActive (line 89) | func (o *LoginFlow) GetActive() string { method GetActiveOk (line 99) | func (o *LoginFlow) GetActiveOk() (*string, bool) { method HasActive (line 107) | func (o *LoginFlow) HasActive() bool { method SetActive (line 116) | func (o *LoginFlow) SetActive(v string) { method GetCreatedAt (line 121) | func (o *LoginFlow) GetCreatedAt() time.Time { method GetCreatedAtOk (line 131) | func (o *LoginFlow) GetCreatedAtOk() (*time.Time, bool) { method HasCreatedAt (line 139) | func (o *LoginFlow) HasCreatedAt() bool { method SetCreatedAt (line 148) | func (o *LoginFlow) SetCreatedAt(v time.Time) { method GetExpiresAt (line 153) | func (o *LoginFlow) GetExpiresAt() time.Time { method GetExpiresAtOk (line 164) | func (o *LoginFlow) GetExpiresAtOk() (*time.Time, bool) { method SetExpiresAt (line 172) | func (o *LoginFlow) SetExpiresAt(v time.Time) { method GetId (line 177) | func (o *LoginFlow) GetId() string { method GetIdOk (line 188) | func (o *LoginFlow) GetIdOk() (*string, bool) { method SetId (line 196) | func (o *LoginFlow) SetId(v string) { method GetIdentitySchema (line 201) | func (o *LoginFlow) GetIdentitySchema() string { method GetIdentitySchemaOk (line 211) | func (o *LoginFlow) GetIdentitySchemaOk() (*string, bool) { method HasIdentitySchema (line 219) | func (o *LoginFlow) HasIdentitySchema() bool { method SetIdentitySchema (line 228) | func (o *LoginFlow) SetIdentitySchema(v string) { method GetIssuedAt (line 233) | func (o *LoginFlow) GetIssuedAt() time.Time { method GetIssuedAtOk (line 244) | func (o *LoginFlow) GetIssuedAtOk() (*time.Time, bool) { method SetIssuedAt (line 252) | func (o *LoginFlow) SetIssuedAt(v time.Time) { method GetOauth2LoginChallenge (line 257) | func (o *LoginFlow) GetOauth2LoginChallenge() string { method GetOauth2LoginChallengeOk (line 267) | func (o *LoginFlow) GetOauth2LoginChallengeOk() (*string, bool) { method HasOauth2LoginChallenge (line 275) | func (o *LoginFlow) HasOauth2LoginChallenge() bool { method SetOauth2LoginChallenge (line 284) | func (o *LoginFlow) SetOauth2LoginChallenge(v string) { method GetOauth2LoginRequest (line 289) | func (o *LoginFlow) GetOauth2LoginRequest() OAuth2LoginRequest { method GetOauth2LoginRequestOk (line 299) | func (o *LoginFlow) GetOauth2LoginRequestOk() (*OAuth2LoginRequest, bo... method HasOauth2LoginRequest (line 307) | func (o *LoginFlow) HasOauth2LoginRequest() bool { method SetOauth2LoginRequest (line 316) | func (o *LoginFlow) SetOauth2LoginRequest(v OAuth2LoginRequest) { method GetOrganizationId (line 321) | func (o *LoginFlow) GetOrganizationId() string { method GetOrganizationIdOk (line 332) | func (o *LoginFlow) GetOrganizationIdOk() (*string, bool) { method HasOrganizationId (line 340) | func (o *LoginFlow) HasOrganizationId() bool { method SetOrganizationId (line 349) | func (o *LoginFlow) SetOrganizationId(v string) { method SetOrganizationIdNil (line 354) | func (o *LoginFlow) SetOrganizationIdNil() { method UnsetOrganizationId (line 359) | func (o *LoginFlow) UnsetOrganizationId() { method GetRefresh (line 364) | func (o *LoginFlow) GetRefresh() bool { method GetRefreshOk (line 374) | func (o *LoginFlow) GetRefreshOk() (*bool, bool) { method HasRefresh (line 382) | func (o *LoginFlow) HasRefresh() bool { method SetRefresh (line 391) | func (o *LoginFlow) SetRefresh(v bool) { method GetRequestUrl (line 396) | func (o *LoginFlow) GetRequestUrl() string { method GetRequestUrlOk (line 407) | func (o *LoginFlow) GetRequestUrlOk() (*string, bool) { method SetRequestUrl (line 415) | func (o *LoginFlow) SetRequestUrl(v string) { method GetRequestedAal (line 420) | func (o *LoginFlow) GetRequestedAal() AuthenticatorAssuranceLevel { method GetRequestedAalOk (line 430) | func (o *LoginFlow) GetRequestedAalOk() (*AuthenticatorAssuranceLevel,... method HasRequestedAal (line 438) | func (o *LoginFlow) HasRequestedAal() bool { method SetRequestedAal (line 447) | func (o *LoginFlow) SetRequestedAal(v AuthenticatorAssuranceLevel) { method GetReturnTo (line 452) | func (o *LoginFlow) GetReturnTo() string { method GetReturnToOk (line 462) | func (o *LoginFlow) GetReturnToOk() (*string, bool) { method HasReturnTo (line 470) | func (o *LoginFlow) HasReturnTo() bool { method SetReturnTo (line 479) | func (o *LoginFlow) SetReturnTo(v string) { method GetSessionTokenExchangeCode (line 484) | func (o *LoginFlow) GetSessionTokenExchangeCode() string { method GetSessionTokenExchangeCodeOk (line 494) | func (o *LoginFlow) GetSessionTokenExchangeCodeOk() (*string, bool) { method HasSessionTokenExchangeCode (line 502) | func (o *LoginFlow) HasSessionTokenExchangeCode() bool { method SetSessionTokenExchangeCode (line 511) | func (o *LoginFlow) SetSessionTokenExchangeCode(v string) { method GetState (line 517) | func (o *LoginFlow) GetState() interface{} { method GetStateOk (line 529) | func (o *LoginFlow) GetStateOk() (*interface{}, bool) { method SetState (line 537) | func (o *LoginFlow) SetState(v interface{}) { method GetTransientPayload (line 542) | func (o *LoginFlow) GetTransientPayload() map[string]interface{} { method GetTransientPayloadOk (line 552) | func (o *LoginFlow) GetTransientPayloadOk() (map[string]interface{}, b... method HasTransientPayload (line 560) | func (o *LoginFlow) HasTransientPayload() bool { method SetTransientPayload (line 569) | func (o *LoginFlow) SetTransientPayload(v map[string]interface{}) { method GetType (line 574) | func (o *LoginFlow) GetType() string { method GetTypeOk (line 585) | func (o *LoginFlow) GetTypeOk() (*string, bool) { method SetType (line 593) | func (o *LoginFlow) SetType(v string) { method GetUi (line 598) | func (o *LoginFlow) GetUi() UiContainer { method GetUiOk (line 609) | func (o *LoginFlow) GetUiOk() (*UiContainer, bool) { method SetUi (line 617) | func (o *LoginFlow) SetUi(v UiContainer) { method GetUpdatedAt (line 622) | func (o *LoginFlow) GetUpdatedAt() time.Time { method GetUpdatedAtOk (line 632) | func (o *LoginFlow) GetUpdatedAtOk() (*time.Time, bool) { method HasUpdatedAt (line 640) | func (o *LoginFlow) HasUpdatedAt() bool { method SetUpdatedAt (line 649) | func (o *LoginFlow) SetUpdatedAt(v time.Time) { method MarshalJSON (line 653) | func (o LoginFlow) MarshalJSON() ([]byte, error) { method ToMap (line 661) | func (o LoginFlow) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 716) | func (o *LoginFlow) UnmarshalJSON(data []byte) (err error) { type _LoginFlow (line 62) | type _LoginFlow function NewLoginFlow (line 68) | func NewLoginFlow(expiresAt time.Time, id string, issuedAt time.Time, re... function NewLoginFlowWithDefaults (line 83) | func NewLoginFlowWithDefaults() *LoginFlow { type NullableLoginFlow (line 782) | type NullableLoginFlow struct method Get (line 787) | func (v NullableLoginFlow) Get() *LoginFlow { method Set (line 791) | func (v *NullableLoginFlow) Set(val *LoginFlow) { method IsSet (line 796) | func (v NullableLoginFlow) IsSet() bool { method Unset (line 800) | func (v *NullableLoginFlow) Unset() { method MarshalJSON (line 809) | func (v NullableLoginFlow) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 813) | func (v *NullableLoginFlow) UnmarshalJSON(src []byte) error { function NewNullableLoginFlow (line 805) | func NewNullableLoginFlow(val *LoginFlow) *NullableLoginFlow { FILE: pkg/httpclient/model_login_flow_state.go type LoginFlowState (line 20) | type LoginFlowState method UnmarshalJSON (line 36) | func (v *LoginFlowState) UnmarshalJSON(src []byte) error { method IsValid (line 65) | func (v LoginFlowState) IsValid() bool { method Ptr (line 75) | func (v LoginFlowState) Ptr() *LoginFlowState { constant LOGINFLOWSTATE_CHOOSE_METHOD (line 24) | LOGINFLOWSTATE_CHOOSE_METHOD LoginFlowState = "choose_method" constant LOGINFLOWSTATE_SENT_EMAIL (line 25) | LOGINFLOWSTATE_SENT_EMAIL LoginFlowState = "sent_email" constant LOGINFLOWSTATE_PASSED_CHALLENGE (line 26) | LOGINFLOWSTATE_PASSED_CHALLENGE LoginFlowState = "passed_challenge" function NewLoginFlowStateFromValue (line 55) | func NewLoginFlowStateFromValue(v string) (*LoginFlowState, error) { type NullableLoginFlowState (line 79) | type NullableLoginFlowState struct method Get (line 84) | func (v NullableLoginFlowState) Get() *LoginFlowState { method Set (line 88) | func (v *NullableLoginFlowState) Set(val *LoginFlowState) { method IsSet (line 93) | func (v NullableLoginFlowState) IsSet() bool { method Unset (line 97) | func (v *NullableLoginFlowState) Unset() { method MarshalJSON (line 106) | func (v NullableLoginFlowState) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 110) | func (v *NullableLoginFlowState) UnmarshalJSON(src []byte) error { function NewNullableLoginFlowState (line 102) | func NewNullableLoginFlowState(val *LoginFlowState) *NullableLoginFlowSt... FILE: pkg/httpclient/model_logout_flow.go type LogoutFlow (line 23) | type LogoutFlow struct method GetLogoutToken (line 53) | func (o *LogoutFlow) GetLogoutToken() string { method GetLogoutTokenOk (line 64) | func (o *LogoutFlow) GetLogoutTokenOk() (*string, bool) { method SetLogoutToken (line 72) | func (o *LogoutFlow) SetLogoutToken(v string) { method GetLogoutUrl (line 77) | func (o *LogoutFlow) GetLogoutUrl() string { method GetLogoutUrlOk (line 88) | func (o *LogoutFlow) GetLogoutUrlOk() (*string, bool) { method SetLogoutUrl (line 96) | func (o *LogoutFlow) SetLogoutUrl(v string) { method MarshalJSON (line 100) | func (o LogoutFlow) MarshalJSON() ([]byte, error) { method ToMap (line 108) | func (o LogoutFlow) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 120) | func (o *LogoutFlow) UnmarshalJSON(data []byte) (err error) { type _LogoutFlow (line 31) | type _LogoutFlow function NewLogoutFlow (line 37) | func NewLogoutFlow(logoutToken string, logoutUrl string) *LogoutFlow { function NewLogoutFlowWithDefaults (line 47) | func NewLogoutFlowWithDefaults() *LogoutFlow { type NullableLogoutFlow (line 164) | type NullableLogoutFlow struct method Get (line 169) | func (v NullableLogoutFlow) Get() *LogoutFlow { method Set (line 173) | func (v *NullableLogoutFlow) Set(val *LogoutFlow) { method IsSet (line 178) | func (v NullableLogoutFlow) IsSet() bool { method Unset (line 182) | func (v *NullableLogoutFlow) Unset() { method MarshalJSON (line 191) | func (v NullableLogoutFlow) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 195) | func (v *NullableLogoutFlow) UnmarshalJSON(src []byte) error { function NewNullableLogoutFlow (line 187) | func NewNullableLogoutFlow(val *LogoutFlow) *NullableLogoutFlow { FILE: pkg/httpclient/model_message.go type Message (line 24) | type Message struct method GetBody (line 74) | func (o *Message) GetBody() string { method GetBodyOk (line 85) | func (o *Message) GetBodyOk() (*string, bool) { method SetBody (line 93) | func (o *Message) SetBody(v string) { method GetChannel (line 98) | func (o *Message) GetChannel() string { method GetChannelOk (line 108) | func (o *Message) GetChannelOk() (*string, bool) { method HasChannel (line 116) | func (o *Message) HasChannel() bool { method SetChannel (line 125) | func (o *Message) SetChannel(v string) { method GetCreatedAt (line 130) | func (o *Message) GetCreatedAt() time.Time { method GetCreatedAtOk (line 141) | func (o *Message) GetCreatedAtOk() (*time.Time, bool) { method SetCreatedAt (line 149) | func (o *Message) SetCreatedAt(v time.Time) { method GetDispatches (line 154) | func (o *Message) GetDispatches() []MessageDispatch { method GetDispatchesOk (line 164) | func (o *Message) GetDispatchesOk() ([]MessageDispatch, bool) { method HasDispatches (line 172) | func (o *Message) HasDispatches() bool { method SetDispatches (line 181) | func (o *Message) SetDispatches(v []MessageDispatch) { method GetId (line 186) | func (o *Message) GetId() string { method GetIdOk (line 197) | func (o *Message) GetIdOk() (*string, bool) { method SetId (line 205) | func (o *Message) SetId(v string) { method GetRecipient (line 210) | func (o *Message) GetRecipient() string { method GetRecipientOk (line 221) | func (o *Message) GetRecipientOk() (*string, bool) { method SetRecipient (line 229) | func (o *Message) SetRecipient(v string) { method GetSendCount (line 234) | func (o *Message) GetSendCount() int64 { method GetSendCountOk (line 245) | func (o *Message) GetSendCountOk() (*int64, bool) { method SetSendCount (line 253) | func (o *Message) SetSendCount(v int64) { method GetStatus (line 258) | func (o *Message) GetStatus() CourierMessageStatus { method GetStatusOk (line 269) | func (o *Message) GetStatusOk() (*CourierMessageStatus, bool) { method SetStatus (line 277) | func (o *Message) SetStatus(v CourierMessageStatus) { method GetSubject (line 282) | func (o *Message) GetSubject() string { method GetSubjectOk (line 293) | func (o *Message) GetSubjectOk() (*string, bool) { method SetSubject (line 301) | func (o *Message) SetSubject(v string) { method GetTemplateType (line 306) | func (o *Message) GetTemplateType() string { method GetTemplateTypeOk (line 317) | func (o *Message) GetTemplateTypeOk() (*string, bool) { method SetTemplateType (line 325) | func (o *Message) SetTemplateType(v string) { method GetType (line 330) | func (o *Message) GetType() CourierMessageType { method GetTypeOk (line 341) | func (o *Message) GetTypeOk() (*CourierMessageType, bool) { method SetType (line 349) | func (o *Message) SetType(v CourierMessageType) { method GetUpdatedAt (line 354) | func (o *Message) GetUpdatedAt() time.Time { method GetUpdatedAtOk (line 365) | func (o *Message) GetUpdatedAtOk() (*time.Time, bool) { method SetUpdatedAt (line 373) | func (o *Message) SetUpdatedAt(v time.Time) { method MarshalJSON (line 377) | func (o Message) MarshalJSON() ([]byte, error) { method ToMap (line 385) | func (o Message) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 411) | func (o *Message) UnmarshalJSON(data []byte) (err error) { type _Message (line 44) | type _Message function NewMessage (line 50) | func NewMessage(body string, createdAt time.Time, id string, recipient s... function NewMessageWithDefaults (line 68) | func NewMessageWithDefaults() *Message { type NullableMessage (line 473) | type NullableMessage struct method Get (line 478) | func (v NullableMessage) Get() *Message { method Set (line 482) | func (v *NullableMessage) Set(val *Message) { method IsSet (line 487) | func (v NullableMessage) IsSet() bool { method Unset (line 491) | func (v *NullableMessage) Unset() { method MarshalJSON (line 500) | func (v NullableMessage) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 504) | func (v *NullableMessage) UnmarshalJSON(src []byte) error { function NewNullableMessage (line 496) | func NewNullableMessage(val *Message) *NullableMessage { FILE: pkg/httpclient/model_message_dispatch.go type MessageDispatch (line 24) | type MessageDispatch struct method GetCreatedAt (line 64) | func (o *MessageDispatch) GetCreatedAt() time.Time { method GetCreatedAtOk (line 75) | func (o *MessageDispatch) GetCreatedAtOk() (*time.Time, bool) { method SetCreatedAt (line 83) | func (o *MessageDispatch) SetCreatedAt(v time.Time) { method GetError (line 88) | func (o *MessageDispatch) GetError() map[string]interface{} { method GetErrorOk (line 98) | func (o *MessageDispatch) GetErrorOk() (map[string]interface{}, bool) { method HasError (line 106) | func (o *MessageDispatch) HasError() bool { method SetError (line 115) | func (o *MessageDispatch) SetError(v map[string]interface{}) { method GetId (line 120) | func (o *MessageDispatch) GetId() string { method GetIdOk (line 131) | func (o *MessageDispatch) GetIdOk() (*string, bool) { method SetId (line 139) | func (o *MessageDispatch) SetId(v string) { method GetMessageId (line 144) | func (o *MessageDispatch) GetMessageId() string { method GetMessageIdOk (line 155) | func (o *MessageDispatch) GetMessageIdOk() (*string, bool) { method SetMessageId (line 163) | func (o *MessageDispatch) SetMessageId(v string) { method GetStatus (line 168) | func (o *MessageDispatch) GetStatus() string { method GetStatusOk (line 179) | func (o *MessageDispatch) GetStatusOk() (*string, bool) { method SetStatus (line 187) | func (o *MessageDispatch) SetStatus(v string) { method GetUpdatedAt (line 192) | func (o *MessageDispatch) GetUpdatedAt() time.Time { method GetUpdatedAtOk (line 203) | func (o *MessageDispatch) GetUpdatedAtOk() (*time.Time, bool) { method SetUpdatedAt (line 211) | func (o *MessageDispatch) SetUpdatedAt(v time.Time) { method MarshalJSON (line 215) | func (o MessageDispatch) MarshalJSON() ([]byte, error) { method ToMap (line 223) | func (o MessageDispatch) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 241) | func (o *MessageDispatch) UnmarshalJSON(data []byte) (err error) { type _MessageDispatch (line 39) | type _MessageDispatch function NewMessageDispatch (line 45) | func NewMessageDispatch(createdAt time.Time, id string, messageId string... function NewMessageDispatchWithDefaults (line 58) | func NewMessageDispatchWithDefaults() *MessageDispatch { type NullableMessageDispatch (line 292) | type NullableMessageDispatch struct method Get (line 297) | func (v NullableMessageDispatch) Get() *MessageDispatch { method Set (line 301) | func (v *NullableMessageDispatch) Set(val *MessageDispatch) { method IsSet (line 306) | func (v NullableMessageDispatch) IsSet() bool { method Unset (line 310) | func (v *NullableMessageDispatch) Unset() { method MarshalJSON (line 319) | func (v NullableMessageDispatch) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 323) | func (v *NullableMessageDispatch) UnmarshalJSON(src []byte) error { function NewNullableMessageDispatch (line 315) | func NewNullableMessageDispatch(val *MessageDispatch) *NullableMessageDi... FILE: pkg/httpclient/model_needs_privileged_session_error.go type NeedsPrivilegedSessionError (line 23) | type NeedsPrivilegedSessionError struct method GetError (line 51) | func (o *NeedsPrivilegedSessionError) GetError() GenericError { method GetErrorOk (line 61) | func (o *NeedsPrivilegedSessionError) GetErrorOk() (*GenericError, boo... method HasError (line 69) | func (o *NeedsPrivilegedSessionError) HasError() bool { method SetError (line 78) | func (o *NeedsPrivilegedSessionError) SetError(v GenericError) { method GetRedirectBrowserTo (line 83) | func (o *NeedsPrivilegedSessionError) GetRedirectBrowserTo() string { method GetRedirectBrowserToOk (line 94) | func (o *NeedsPrivilegedSessionError) GetRedirectBrowserToOk() (*strin... method SetRedirectBrowserTo (line 102) | func (o *NeedsPrivilegedSessionError) SetRedirectBrowserTo(v string) { method MarshalJSON (line 106) | func (o NeedsPrivilegedSessionError) MarshalJSON() ([]byte, error) { method ToMap (line 114) | func (o NeedsPrivilegedSessionError) ToMap() (map[string]interface{}, ... method UnmarshalJSON (line 128) | func (o *NeedsPrivilegedSessionError) UnmarshalJSON(data []byte) (err ... type _NeedsPrivilegedSessionError (line 30) | type _NeedsPrivilegedSessionError function NewNeedsPrivilegedSessionError (line 36) | func NewNeedsPrivilegedSessionError(redirectBrowserTo string) *NeedsPriv... function NewNeedsPrivilegedSessionErrorWithDefaults (line 45) | func NewNeedsPrivilegedSessionErrorWithDefaults() *NeedsPrivilegedSessio... type NullableNeedsPrivilegedSessionError (line 171) | type NullableNeedsPrivilegedSessionError struct method Get (line 176) | func (v NullableNeedsPrivilegedSessionError) Get() *NeedsPrivilegedSes... method Set (line 180) | func (v *NullableNeedsPrivilegedSessionError) Set(val *NeedsPrivileged... method IsSet (line 185) | func (v NullableNeedsPrivilegedSessionError) IsSet() bool { method Unset (line 189) | func (v *NullableNeedsPrivilegedSessionError) Unset() { method MarshalJSON (line 198) | func (v NullableNeedsPrivilegedSessionError) MarshalJSON() ([]byte, er... method UnmarshalJSON (line 202) | func (v *NullableNeedsPrivilegedSessionError) UnmarshalJSON(src []byte... function NewNullableNeedsPrivilegedSessionError (line 194) | func NewNullableNeedsPrivilegedSessionError(val *NeedsPrivilegedSessionE... FILE: pkg/httpclient/model_o_auth2_client.go type OAuth2Client (line 23) | type OAuth2Client struct method GetAccessTokenStrategy (line 134) | func (o *OAuth2Client) GetAccessTokenStrategy() string { method GetAccessTokenStrategyOk (line 144) | func (o *OAuth2Client) GetAccessTokenStrategyOk() (*string, bool) { method HasAccessTokenStrategy (line 152) | func (o *OAuth2Client) HasAccessTokenStrategy() bool { method SetAccessTokenStrategy (line 161) | func (o *OAuth2Client) SetAccessTokenStrategy(v string) { method GetAllowedCorsOrigins (line 166) | func (o *OAuth2Client) GetAllowedCorsOrigins() []string { method GetAllowedCorsOriginsOk (line 176) | func (o *OAuth2Client) GetAllowedCorsOriginsOk() ([]string, bool) { method HasAllowedCorsOrigins (line 184) | func (o *OAuth2Client) HasAllowedCorsOrigins() bool { method SetAllowedCorsOrigins (line 193) | func (o *OAuth2Client) SetAllowedCorsOrigins(v []string) { method GetAudience (line 198) | func (o *OAuth2Client) GetAudience() []string { method GetAudienceOk (line 208) | func (o *OAuth2Client) GetAudienceOk() ([]string, bool) { method HasAudience (line 216) | func (o *OAuth2Client) HasAudience() bool { method SetAudience (line 225) | func (o *OAuth2Client) SetAudience(v []string) { method GetAuthorizationCodeGrantAccessTokenLifespan (line 230) | func (o *OAuth2Client) GetAuthorizationCodeGrantAccessTokenLifespan() ... method GetAuthorizationCodeGrantAccessTokenLifespanOk (line 240) | func (o *OAuth2Client) GetAuthorizationCodeGrantAccessTokenLifespanOk(... method HasAuthorizationCodeGrantAccessTokenLifespan (line 248) | func (o *OAuth2Client) HasAuthorizationCodeGrantAccessTokenLifespan() ... method SetAuthorizationCodeGrantAccessTokenLifespan (line 257) | func (o *OAuth2Client) SetAuthorizationCodeGrantAccessTokenLifespan(v ... method GetAuthorizationCodeGrantIdTokenLifespan (line 262) | func (o *OAuth2Client) GetAuthorizationCodeGrantIdTokenLifespan() stri... method GetAuthorizationCodeGrantIdTokenLifespanOk (line 272) | func (o *OAuth2Client) GetAuthorizationCodeGrantIdTokenLifespanOk() (*... method HasAuthorizationCodeGrantIdTokenLifespan (line 280) | func (o *OAuth2Client) HasAuthorizationCodeGrantIdTokenLifespan() bool { method SetAuthorizationCodeGrantIdTokenLifespan (line 289) | func (o *OAuth2Client) SetAuthorizationCodeGrantIdTokenLifespan(v stri... method GetAuthorizationCodeGrantRefreshTokenLifespan (line 294) | func (o *OAuth2Client) GetAuthorizationCodeGrantRefreshTokenLifespan()... method GetAuthorizationCodeGrantRefreshTokenLifespanOk (line 304) | func (o *OAuth2Client) GetAuthorizationCodeGrantRefreshTokenLifespanOk... method HasAuthorizationCodeGrantRefreshTokenLifespan (line 312) | func (o *OAuth2Client) HasAuthorizationCodeGrantRefreshTokenLifespan()... method SetAuthorizationCodeGrantRefreshTokenLifespan (line 321) | func (o *OAuth2Client) SetAuthorizationCodeGrantRefreshTokenLifespan(v... method GetBackchannelLogoutSessionRequired (line 326) | func (o *OAuth2Client) GetBackchannelLogoutSessionRequired() bool { method GetBackchannelLogoutSessionRequiredOk (line 336) | func (o *OAuth2Client) GetBackchannelLogoutSessionRequiredOk() (*bool,... method HasBackchannelLogoutSessionRequired (line 344) | func (o *OAuth2Client) HasBackchannelLogoutSessionRequired() bool { method SetBackchannelLogoutSessionRequired (line 353) | func (o *OAuth2Client) SetBackchannelLogoutSessionRequired(v bool) { method GetBackchannelLogoutUri (line 358) | func (o *OAuth2Client) GetBackchannelLogoutUri() string { method GetBackchannelLogoutUriOk (line 368) | func (o *OAuth2Client) GetBackchannelLogoutUriOk() (*string, bool) { method HasBackchannelLogoutUri (line 376) | func (o *OAuth2Client) HasBackchannelLogoutUri() bool { method SetBackchannelLogoutUri (line 385) | func (o *OAuth2Client) SetBackchannelLogoutUri(v string) { method GetClientCredentialsGrantAccessTokenLifespan (line 390) | func (o *OAuth2Client) GetClientCredentialsGrantAccessTokenLifespan() ... method GetClientCredentialsGrantAccessTokenLifespanOk (line 400) | func (o *OAuth2Client) GetClientCredentialsGrantAccessTokenLifespanOk(... method HasClientCredentialsGrantAccessTokenLifespan (line 408) | func (o *OAuth2Client) HasClientCredentialsGrantAccessTokenLifespan() ... method SetClientCredentialsGrantAccessTokenLifespan (line 417) | func (o *OAuth2Client) SetClientCredentialsGrantAccessTokenLifespan(v ... method GetClientId (line 422) | func (o *OAuth2Client) GetClientId() string { method GetClientIdOk (line 432) | func (o *OAuth2Client) GetClientIdOk() (*string, bool) { method HasClientId (line 440) | func (o *OAuth2Client) HasClientId() bool { method SetClientId (line 449) | func (o *OAuth2Client) SetClientId(v string) { method GetClientName (line 454) | func (o *OAuth2Client) GetClientName() string { method GetClientNameOk (line 464) | func (o *OAuth2Client) GetClientNameOk() (*string, bool) { method HasClientName (line 472) | func (o *OAuth2Client) HasClientName() bool { method SetClientName (line 481) | func (o *OAuth2Client) SetClientName(v string) { method GetClientSecret (line 486) | func (o *OAuth2Client) GetClientSecret() string { method GetClientSecretOk (line 496) | func (o *OAuth2Client) GetClientSecretOk() (*string, bool) { method HasClientSecret (line 504) | func (o *OAuth2Client) HasClientSecret() bool { method SetClientSecret (line 513) | func (o *OAuth2Client) SetClientSecret(v string) { method GetClientSecretExpiresAt (line 518) | func (o *OAuth2Client) GetClientSecretExpiresAt() int64 { method GetClientSecretExpiresAtOk (line 528) | func (o *OAuth2Client) GetClientSecretExpiresAtOk() (*int64, bool) { method HasClientSecretExpiresAt (line 536) | func (o *OAuth2Client) HasClientSecretExpiresAt() bool { method SetClientSecretExpiresAt (line 545) | func (o *OAuth2Client) SetClientSecretExpiresAt(v int64) { method GetClientUri (line 550) | func (o *OAuth2Client) GetClientUri() string { method GetClientUriOk (line 560) | func (o *OAuth2Client) GetClientUriOk() (*string, bool) { method HasClientUri (line 568) | func (o *OAuth2Client) HasClientUri() bool { method SetClientUri (line 577) | func (o *OAuth2Client) SetClientUri(v string) { method GetContacts (line 582) | func (o *OAuth2Client) GetContacts() []string { method GetContactsOk (line 592) | func (o *OAuth2Client) GetContactsOk() ([]string, bool) { method HasContacts (line 600) | func (o *OAuth2Client) HasContacts() bool { method SetContacts (line 609) | func (o *OAuth2Client) SetContacts(v []string) { method GetCreatedAt (line 614) | func (o *OAuth2Client) GetCreatedAt() time.Time { method GetCreatedAtOk (line 624) | func (o *OAuth2Client) GetCreatedAtOk() (*time.Time, bool) { method HasCreatedAt (line 632) | func (o *OAuth2Client) HasCreatedAt() bool { method SetCreatedAt (line 641) | func (o *OAuth2Client) SetCreatedAt(v time.Time) { method GetFrontchannelLogoutSessionRequired (line 646) | func (o *OAuth2Client) GetFrontchannelLogoutSessionRequired() bool { method GetFrontchannelLogoutSessionRequiredOk (line 656) | func (o *OAuth2Client) GetFrontchannelLogoutSessionRequiredOk() (*bool... method HasFrontchannelLogoutSessionRequired (line 664) | func (o *OAuth2Client) HasFrontchannelLogoutSessionRequired() bool { method SetFrontchannelLogoutSessionRequired (line 673) | func (o *OAuth2Client) SetFrontchannelLogoutSessionRequired(v bool) { method GetFrontchannelLogoutUri (line 678) | func (o *OAuth2Client) GetFrontchannelLogoutUri() string { method GetFrontchannelLogoutUriOk (line 688) | func (o *OAuth2Client) GetFrontchannelLogoutUriOk() (*string, bool) { method HasFrontchannelLogoutUri (line 696) | func (o *OAuth2Client) HasFrontchannelLogoutUri() bool { method SetFrontchannelLogoutUri (line 705) | func (o *OAuth2Client) SetFrontchannelLogoutUri(v string) { method GetGrantTypes (line 710) | func (o *OAuth2Client) GetGrantTypes() []string { method GetGrantTypesOk (line 720) | func (o *OAuth2Client) GetGrantTypesOk() ([]string, bool) { method HasGrantTypes (line 728) | func (o *OAuth2Client) HasGrantTypes() bool { method SetGrantTypes (line 737) | func (o *OAuth2Client) SetGrantTypes(v []string) { method GetImplicitGrantAccessTokenLifespan (line 742) | func (o *OAuth2Client) GetImplicitGrantAccessTokenLifespan() string { method GetImplicitGrantAccessTokenLifespanOk (line 752) | func (o *OAuth2Client) GetImplicitGrantAccessTokenLifespanOk() (*strin... method HasImplicitGrantAccessTokenLifespan (line 760) | func (o *OAuth2Client) HasImplicitGrantAccessTokenLifespan() bool { method SetImplicitGrantAccessTokenLifespan (line 769) | func (o *OAuth2Client) SetImplicitGrantAccessTokenLifespan(v string) { method GetImplicitGrantIdTokenLifespan (line 774) | func (o *OAuth2Client) GetImplicitGrantIdTokenLifespan() string { method GetImplicitGrantIdTokenLifespanOk (line 784) | func (o *OAuth2Client) GetImplicitGrantIdTokenLifespanOk() (*string, b... method HasImplicitGrantIdTokenLifespan (line 792) | func (o *OAuth2Client) HasImplicitGrantIdTokenLifespan() bool { method SetImplicitGrantIdTokenLifespan (line 801) | func (o *OAuth2Client) SetImplicitGrantIdTokenLifespan(v string) { method GetJwks (line 806) | func (o *OAuth2Client) GetJwks() interface{} { method GetJwksOk (line 817) | func (o *OAuth2Client) GetJwksOk() (*interface{}, bool) { method HasJwks (line 825) | func (o *OAuth2Client) HasJwks() bool { method SetJwks (line 834) | func (o *OAuth2Client) SetJwks(v interface{}) { method GetJwksUri (line 839) | func (o *OAuth2Client) GetJwksUri() string { method GetJwksUriOk (line 849) | func (o *OAuth2Client) GetJwksUriOk() (*string, bool) { method HasJwksUri (line 857) | func (o *OAuth2Client) HasJwksUri() bool { method SetJwksUri (line 866) | func (o *OAuth2Client) SetJwksUri(v string) { method GetJwtBearerGrantAccessTokenLifespan (line 871) | func (o *OAuth2Client) GetJwtBearerGrantAccessTokenLifespan() string { method GetJwtBearerGrantAccessTokenLifespanOk (line 881) | func (o *OAuth2Client) GetJwtBearerGrantAccessTokenLifespanOk() (*stri... method HasJwtBearerGrantAccessTokenLifespan (line 889) | func (o *OAuth2Client) HasJwtBearerGrantAccessTokenLifespan() bool { method SetJwtBearerGrantAccessTokenLifespan (line 898) | func (o *OAuth2Client) SetJwtBearerGrantAccessTokenLifespan(v string) { method GetLogoUri (line 903) | func (o *OAuth2Client) GetLogoUri() string { method GetLogoUriOk (line 913) | func (o *OAuth2Client) GetLogoUriOk() (*string, bool) { method HasLogoUri (line 921) | func (o *OAuth2Client) HasLogoUri() bool { method SetLogoUri (line 930) | func (o *OAuth2Client) SetLogoUri(v string) { method GetMetadata (line 935) | func (o *OAuth2Client) GetMetadata() interface{} { method GetMetadataOk (line 946) | func (o *OAuth2Client) GetMetadataOk() (*interface{}, bool) { method HasMetadata (line 954) | func (o *OAuth2Client) HasMetadata() bool { method SetMetadata (line 963) | func (o *OAuth2Client) SetMetadata(v interface{}) { method GetOwner (line 968) | func (o *OAuth2Client) GetOwner() string { method GetOwnerOk (line 978) | func (o *OAuth2Client) GetOwnerOk() (*string, bool) { method HasOwner (line 986) | func (o *OAuth2Client) HasOwner() bool { method SetOwner (line 995) | func (o *OAuth2Client) SetOwner(v string) { method GetPolicyUri (line 1000) | func (o *OAuth2Client) GetPolicyUri() string { method GetPolicyUriOk (line 1010) | func (o *OAuth2Client) GetPolicyUriOk() (*string, bool) { method HasPolicyUri (line 1018) | func (o *OAuth2Client) HasPolicyUri() bool { method SetPolicyUri (line 1027) | func (o *OAuth2Client) SetPolicyUri(v string) { method GetPostLogoutRedirectUris (line 1032) | func (o *OAuth2Client) GetPostLogoutRedirectUris() []string { method GetPostLogoutRedirectUrisOk (line 1042) | func (o *OAuth2Client) GetPostLogoutRedirectUrisOk() ([]string, bool) { method HasPostLogoutRedirectUris (line 1050) | func (o *OAuth2Client) HasPostLogoutRedirectUris() bool { method SetPostLogoutRedirectUris (line 1059) | func (o *OAuth2Client) SetPostLogoutRedirectUris(v []string) { method GetRedirectUris (line 1064) | func (o *OAuth2Client) GetRedirectUris() []string { method GetRedirectUrisOk (line 1074) | func (o *OAuth2Client) GetRedirectUrisOk() ([]string, bool) { method HasRedirectUris (line 1082) | func (o *OAuth2Client) HasRedirectUris() bool { method SetRedirectUris (line 1091) | func (o *OAuth2Client) SetRedirectUris(v []string) { method GetRefreshTokenGrantAccessTokenLifespan (line 1096) | func (o *OAuth2Client) GetRefreshTokenGrantAccessTokenLifespan() string { method GetRefreshTokenGrantAccessTokenLifespanOk (line 1106) | func (o *OAuth2Client) GetRefreshTokenGrantAccessTokenLifespanOk() (*s... method HasRefreshTokenGrantAccessTokenLifespan (line 1114) | func (o *OAuth2Client) HasRefreshTokenGrantAccessTokenLifespan() bool { method SetRefreshTokenGrantAccessTokenLifespan (line 1123) | func (o *OAuth2Client) SetRefreshTokenGrantAccessTokenLifespan(v strin... method GetRefreshTokenGrantIdTokenLifespan (line 1128) | func (o *OAuth2Client) GetRefreshTokenGrantIdTokenLifespan() string { method GetRefreshTokenGrantIdTokenLifespanOk (line 1138) | func (o *OAuth2Client) GetRefreshTokenGrantIdTokenLifespanOk() (*strin... method HasRefreshTokenGrantIdTokenLifespan (line 1146) | func (o *OAuth2Client) HasRefreshTokenGrantIdTokenLifespan() bool { method SetRefreshTokenGrantIdTokenLifespan (line 1155) | func (o *OAuth2Client) SetRefreshTokenGrantIdTokenLifespan(v string) { method GetRefreshTokenGrantRefreshTokenLifespan (line 1160) | func (o *OAuth2Client) GetRefreshTokenGrantRefreshTokenLifespan() stri... method GetRefreshTokenGrantRefreshTokenLifespanOk (line 1170) | func (o *OAuth2Client) GetRefreshTokenGrantRefreshTokenLifespanOk() (*... method HasRefreshTokenGrantRefreshTokenLifespan (line 1178) | func (o *OAuth2Client) HasRefreshTokenGrantRefreshTokenLifespan() bool { method SetRefreshTokenGrantRefreshTokenLifespan (line 1187) | func (o *OAuth2Client) SetRefreshTokenGrantRefreshTokenLifespan(v stri... method GetRegistrationAccessToken (line 1192) | func (o *OAuth2Client) GetRegistrationAccessToken() string { method GetRegistrationAccessTokenOk (line 1202) | func (o *OAuth2Client) GetRegistrationAccessTokenOk() (*string, bool) { method HasRegistrationAccessToken (line 1210) | func (o *OAuth2Client) HasRegistrationAccessToken() bool { method SetRegistrationAccessToken (line 1219) | func (o *OAuth2Client) SetRegistrationAccessToken(v string) { method GetRegistrationClientUri (line 1224) | func (o *OAuth2Client) GetRegistrationClientUri() string { method GetRegistrationClientUriOk (line 1234) | func (o *OAuth2Client) GetRegistrationClientUriOk() (*string, bool) { method HasRegistrationClientUri (line 1242) | func (o *OAuth2Client) HasRegistrationClientUri() bool { method SetRegistrationClientUri (line 1251) | func (o *OAuth2Client) SetRegistrationClientUri(v string) { method GetRequestObjectSigningAlg (line 1256) | func (o *OAuth2Client) GetRequestObjectSigningAlg() string { method GetRequestObjectSigningAlgOk (line 1266) | func (o *OAuth2Client) GetRequestObjectSigningAlgOk() (*string, bool) { method HasRequestObjectSigningAlg (line 1274) | func (o *OAuth2Client) HasRequestObjectSigningAlg() bool { method SetRequestObjectSigningAlg (line 1283) | func (o *OAuth2Client) SetRequestObjectSigningAlg(v string) { method GetRequestUris (line 1288) | func (o *OAuth2Client) GetRequestUris() []string { method GetRequestUrisOk (line 1298) | func (o *OAuth2Client) GetRequestUrisOk() ([]string, bool) { method HasRequestUris (line 1306) | func (o *OAuth2Client) HasRequestUris() bool { method SetRequestUris (line 1315) | func (o *OAuth2Client) SetRequestUris(v []string) { method GetResponseTypes (line 1320) | func (o *OAuth2Client) GetResponseTypes() []string { method GetResponseTypesOk (line 1330) | func (o *OAuth2Client) GetResponseTypesOk() ([]string, bool) { method HasResponseTypes (line 1338) | func (o *OAuth2Client) HasResponseTypes() bool { method SetResponseTypes (line 1347) | func (o *OAuth2Client) SetResponseTypes(v []string) { method GetScope (line 1352) | func (o *OAuth2Client) GetScope() string { method GetScopeOk (line 1362) | func (o *OAuth2Client) GetScopeOk() (*string, bool) { method HasScope (line 1370) | func (o *OAuth2Client) HasScope() bool { method SetScope (line 1379) | func (o *OAuth2Client) SetScope(v string) { method GetSectorIdentifierUri (line 1384) | func (o *OAuth2Client) GetSectorIdentifierUri() string { method GetSectorIdentifierUriOk (line 1394) | func (o *OAuth2Client) GetSectorIdentifierUriOk() (*string, bool) { method HasSectorIdentifierUri (line 1402) | func (o *OAuth2Client) HasSectorIdentifierUri() bool { method SetSectorIdentifierUri (line 1411) | func (o *OAuth2Client) SetSectorIdentifierUri(v string) { method GetSkipConsent (line 1416) | func (o *OAuth2Client) GetSkipConsent() bool { method GetSkipConsentOk (line 1426) | func (o *OAuth2Client) GetSkipConsentOk() (*bool, bool) { method HasSkipConsent (line 1434) | func (o *OAuth2Client) HasSkipConsent() bool { method SetSkipConsent (line 1443) | func (o *OAuth2Client) SetSkipConsent(v bool) { method GetSkipLogoutConsent (line 1448) | func (o *OAuth2Client) GetSkipLogoutConsent() bool { method GetSkipLogoutConsentOk (line 1458) | func (o *OAuth2Client) GetSkipLogoutConsentOk() (*bool, bool) { method HasSkipLogoutConsent (line 1466) | func (o *OAuth2Client) HasSkipLogoutConsent() bool { method SetSkipLogoutConsent (line 1475) | func (o *OAuth2Client) SetSkipLogoutConsent(v bool) { method GetSubjectType (line 1480) | func (o *OAuth2Client) GetSubjectType() string { method GetSubjectTypeOk (line 1490) | func (o *OAuth2Client) GetSubjectTypeOk() (*string, bool) { method HasSubjectType (line 1498) | func (o *OAuth2Client) HasSubjectType() bool { method SetSubjectType (line 1507) | func (o *OAuth2Client) SetSubjectType(v string) { method GetTokenEndpointAuthMethod (line 1512) | func (o *OAuth2Client) GetTokenEndpointAuthMethod() string { method GetTokenEndpointAuthMethodOk (line 1522) | func (o *OAuth2Client) GetTokenEndpointAuthMethodOk() (*string, bool) { method HasTokenEndpointAuthMethod (line 1530) | func (o *OAuth2Client) HasTokenEndpointAuthMethod() bool { method SetTokenEndpointAuthMethod (line 1539) | func (o *OAuth2Client) SetTokenEndpointAuthMethod(v string) { method GetTokenEndpointAuthSigningAlg (line 1544) | func (o *OAuth2Client) GetTokenEndpointAuthSigningAlg() string { method GetTokenEndpointAuthSigningAlgOk (line 1554) | func (o *OAuth2Client) GetTokenEndpointAuthSigningAlgOk() (*string, bo... method HasTokenEndpointAuthSigningAlg (line 1562) | func (o *OAuth2Client) HasTokenEndpointAuthSigningAlg() bool { method SetTokenEndpointAuthSigningAlg (line 1571) | func (o *OAuth2Client) SetTokenEndpointAuthSigningAlg(v string) { method GetTosUri (line 1576) | func (o *OAuth2Client) GetTosUri() string { method GetTosUriOk (line 1586) | func (o *OAuth2Client) GetTosUriOk() (*string, bool) { method HasTosUri (line 1594) | func (o *OAuth2Client) HasTosUri() bool { method SetTosUri (line 1603) | func (o *OAuth2Client) SetTosUri(v string) { method GetUpdatedAt (line 1608) | func (o *OAuth2Client) GetUpdatedAt() time.Time { method GetUpdatedAtOk (line 1618) | func (o *OAuth2Client) GetUpdatedAtOk() (*time.Time, bool) { method HasUpdatedAt (line 1626) | func (o *OAuth2Client) HasUpdatedAt() bool { method SetUpdatedAt (line 1635) | func (o *OAuth2Client) SetUpdatedAt(v time.Time) { method GetUserinfoSignedResponseAlg (line 1640) | func (o *OAuth2Client) GetUserinfoSignedResponseAlg() string { method GetUserinfoSignedResponseAlgOk (line 1650) | func (o *OAuth2Client) GetUserinfoSignedResponseAlgOk() (*string, bool) { method HasUserinfoSignedResponseAlg (line 1658) | func (o *OAuth2Client) HasUserinfoSignedResponseAlg() bool { method SetUserinfoSignedResponseAlg (line 1667) | func (o *OAuth2Client) SetUserinfoSignedResponseAlg(v string) { method MarshalJSON (line 1671) | func (o OAuth2Client) MarshalJSON() ([]byte, error) { method ToMap (line 1679) | func (o OAuth2Client) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 1833) | func (o *OAuth2Client) UnmarshalJSON(data []byte) (err error) { type _OAuth2Client (line 114) | type _OAuth2Client function NewOAuth2Client (line 120) | func NewOAuth2Client() *OAuth2Client { function NewOAuth2ClientWithDefaults (line 128) | func NewOAuth2ClientWithDefaults() *OAuth2Client { type NullableOAuth2Client (line 1901) | type NullableOAuth2Client struct method Get (line 1906) | func (v NullableOAuth2Client) Get() *OAuth2Client { method Set (line 1910) | func (v *NullableOAuth2Client) Set(val *OAuth2Client) { method IsSet (line 1915) | func (v NullableOAuth2Client) IsSet() bool { method Unset (line 1919) | func (v *NullableOAuth2Client) Unset() { method MarshalJSON (line 1928) | func (v NullableOAuth2Client) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 1932) | func (v *NullableOAuth2Client) UnmarshalJSON(src []byte) error { function NewNullableOAuth2Client (line 1924) | func NewNullableOAuth2Client(val *OAuth2Client) *NullableOAuth2Client { FILE: pkg/httpclient/model_o_auth2_consent_request_open_id_connect_context.go type OAuth2ConsentRequestOpenIDConnectContext (line 22) | type OAuth2ConsentRequestOpenIDConnectContext struct method GetAcrValues (line 56) | func (o *OAuth2ConsentRequestOpenIDConnectContext) GetAcrValues() []st... method GetAcrValuesOk (line 66) | func (o *OAuth2ConsentRequestOpenIDConnectContext) GetAcrValuesOk() ([... method HasAcrValues (line 74) | func (o *OAuth2ConsentRequestOpenIDConnectContext) HasAcrValues() bool { method SetAcrValues (line 83) | func (o *OAuth2ConsentRequestOpenIDConnectContext) SetAcrValues(v []st... method GetDisplay (line 88) | func (o *OAuth2ConsentRequestOpenIDConnectContext) GetDisplay() string { method GetDisplayOk (line 98) | func (o *OAuth2ConsentRequestOpenIDConnectContext) GetDisplayOk() (*st... method HasDisplay (line 106) | func (o *OAuth2ConsentRequestOpenIDConnectContext) HasDisplay() bool { method SetDisplay (line 115) | func (o *OAuth2ConsentRequestOpenIDConnectContext) SetDisplay(v string) { method GetIdTokenHintClaims (line 120) | func (o *OAuth2ConsentRequestOpenIDConnectContext) GetIdTokenHintClaim... method GetIdTokenHintClaimsOk (line 130) | func (o *OAuth2ConsentRequestOpenIDConnectContext) GetIdTokenHintClaim... method HasIdTokenHintClaims (line 138) | func (o *OAuth2ConsentRequestOpenIDConnectContext) HasIdTokenHintClaim... method SetIdTokenHintClaims (line 147) | func (o *OAuth2ConsentRequestOpenIDConnectContext) SetIdTokenHintClaim... method GetLoginHint (line 152) | func (o *OAuth2ConsentRequestOpenIDConnectContext) GetLoginHint() stri... method GetLoginHintOk (line 162) | func (o *OAuth2ConsentRequestOpenIDConnectContext) GetLoginHintOk() (*... method HasLoginHint (line 170) | func (o *OAuth2ConsentRequestOpenIDConnectContext) HasLoginHint() bool { method SetLoginHint (line 179) | func (o *OAuth2ConsentRequestOpenIDConnectContext) SetLoginHint(v stri... method GetUiLocales (line 184) | func (o *OAuth2ConsentRequestOpenIDConnectContext) GetUiLocales() []st... method GetUiLocalesOk (line 194) | func (o *OAuth2ConsentRequestOpenIDConnectContext) GetUiLocalesOk() ([... method HasUiLocales (line 202) | func (o *OAuth2ConsentRequestOpenIDConnectContext) HasUiLocales() bool { method SetUiLocales (line 211) | func (o *OAuth2ConsentRequestOpenIDConnectContext) SetUiLocales(v []st... method MarshalJSON (line 215) | func (o OAuth2ConsentRequestOpenIDConnectContext) MarshalJSON() ([]byt... method ToMap (line 223) | func (o OAuth2ConsentRequestOpenIDConnectContext) ToMap() (map[string]... method UnmarshalJSON (line 248) | func (o *OAuth2ConsentRequestOpenIDConnectContext) UnmarshalJSON(data ... type _OAuth2ConsentRequestOpenIDConnectContext (line 36) | type _OAuth2ConsentRequestOpenIDConnectContext function NewOAuth2ConsentRequestOpenIDConnectContext (line 42) | func NewOAuth2ConsentRequestOpenIDConnectContext() *OAuth2ConsentRequest... function NewOAuth2ConsentRequestOpenIDConnectContextWithDefaults (line 50) | func NewOAuth2ConsentRequestOpenIDConnectContextWithDefaults() *OAuth2Co... type NullableOAuth2ConsentRequestOpenIDConnectContext (line 273) | type NullableOAuth2ConsentRequestOpenIDConnectContext struct method Get (line 278) | func (v NullableOAuth2ConsentRequestOpenIDConnectContext) Get() *OAuth... method Set (line 282) | func (v *NullableOAuth2ConsentRequestOpenIDConnectContext) Set(val *OA... method IsSet (line 287) | func (v NullableOAuth2ConsentRequestOpenIDConnectContext) IsSet() bool { method Unset (line 291) | func (v *NullableOAuth2ConsentRequestOpenIDConnectContext) Unset() { method MarshalJSON (line 300) | func (v NullableOAuth2ConsentRequestOpenIDConnectContext) MarshalJSON(... method UnmarshalJSON (line 304) | func (v *NullableOAuth2ConsentRequestOpenIDConnectContext) UnmarshalJS... function NewNullableOAuth2ConsentRequestOpenIDConnectContext (line 296) | func NewNullableOAuth2ConsentRequestOpenIDConnectContext(val *OAuth2Cons... FILE: pkg/httpclient/model_o_auth2_login_request.go type OAuth2LoginRequest (line 22) | type OAuth2LoginRequest struct method GetChallenge (line 60) | func (o *OAuth2LoginRequest) GetChallenge() string { method GetChallengeOk (line 70) | func (o *OAuth2LoginRequest) GetChallengeOk() (*string, bool) { method HasChallenge (line 78) | func (o *OAuth2LoginRequest) HasChallenge() bool { method SetChallenge (line 87) | func (o *OAuth2LoginRequest) SetChallenge(v string) { method GetClient (line 92) | func (o *OAuth2LoginRequest) GetClient() OAuth2Client { method GetClientOk (line 102) | func (o *OAuth2LoginRequest) GetClientOk() (*OAuth2Client, bool) { method HasClient (line 110) | func (o *OAuth2LoginRequest) HasClient() bool { method SetClient (line 119) | func (o *OAuth2LoginRequest) SetClient(v OAuth2Client) { method GetOidcContext (line 124) | func (o *OAuth2LoginRequest) GetOidcContext() OAuth2ConsentRequestOpen... method GetOidcContextOk (line 134) | func (o *OAuth2LoginRequest) GetOidcContextOk() (*OAuth2ConsentRequest... method HasOidcContext (line 142) | func (o *OAuth2LoginRequest) HasOidcContext() bool { method SetOidcContext (line 151) | func (o *OAuth2LoginRequest) SetOidcContext(v OAuth2ConsentRequestOpen... method GetRequestUrl (line 156) | func (o *OAuth2LoginRequest) GetRequestUrl() string { method GetRequestUrlOk (line 166) | func (o *OAuth2LoginRequest) GetRequestUrlOk() (*string, bool) { method HasRequestUrl (line 174) | func (o *OAuth2LoginRequest) HasRequestUrl() bool { method SetRequestUrl (line 183) | func (o *OAuth2LoginRequest) SetRequestUrl(v string) { method GetRequestedAccessTokenAudience (line 188) | func (o *OAuth2LoginRequest) GetRequestedAccessTokenAudience() []string { method GetRequestedAccessTokenAudienceOk (line 198) | func (o *OAuth2LoginRequest) GetRequestedAccessTokenAudienceOk() ([]st... method HasRequestedAccessTokenAudience (line 206) | func (o *OAuth2LoginRequest) HasRequestedAccessTokenAudience() bool { method SetRequestedAccessTokenAudience (line 215) | func (o *OAuth2LoginRequest) SetRequestedAccessTokenAudience(v []strin... method GetRequestedScope (line 220) | func (o *OAuth2LoginRequest) GetRequestedScope() []string { method GetRequestedScopeOk (line 230) | func (o *OAuth2LoginRequest) GetRequestedScopeOk() ([]string, bool) { method HasRequestedScope (line 238) | func (o *OAuth2LoginRequest) HasRequestedScope() bool { method SetRequestedScope (line 247) | func (o *OAuth2LoginRequest) SetRequestedScope(v []string) { method GetSessionId (line 252) | func (o *OAuth2LoginRequest) GetSessionId() string { method GetSessionIdOk (line 262) | func (o *OAuth2LoginRequest) GetSessionIdOk() (*string, bool) { method HasSessionId (line 270) | func (o *OAuth2LoginRequest) HasSessionId() bool { method SetSessionId (line 279) | func (o *OAuth2LoginRequest) SetSessionId(v string) { method GetSkip (line 284) | func (o *OAuth2LoginRequest) GetSkip() bool { method GetSkipOk (line 294) | func (o *OAuth2LoginRequest) GetSkipOk() (*bool, bool) { method HasSkip (line 302) | func (o *OAuth2LoginRequest) HasSkip() bool { method SetSkip (line 311) | func (o *OAuth2LoginRequest) SetSkip(v bool) { method GetSubject (line 316) | func (o *OAuth2LoginRequest) GetSubject() string { method GetSubjectOk (line 326) | func (o *OAuth2LoginRequest) GetSubjectOk() (*string, bool) { method HasSubject (line 334) | func (o *OAuth2LoginRequest) HasSubject() bool { method SetSubject (line 343) | func (o *OAuth2LoginRequest) SetSubject(v string) { method MarshalJSON (line 347) | func (o OAuth2LoginRequest) MarshalJSON() ([]byte, error) { method ToMap (line 355) | func (o OAuth2LoginRequest) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 392) | func (o *OAuth2LoginRequest) UnmarshalJSON(data []byte) (err error) { type _OAuth2LoginRequest (line 40) | type _OAuth2LoginRequest function NewOAuth2LoginRequest (line 46) | func NewOAuth2LoginRequest() *OAuth2LoginRequest { function NewOAuth2LoginRequestWithDefaults (line 54) | func NewOAuth2LoginRequestWithDefaults() *OAuth2LoginRequest { type NullableOAuth2LoginRequest (line 421) | type NullableOAuth2LoginRequest struct method Get (line 426) | func (v NullableOAuth2LoginRequest) Get() *OAuth2LoginRequest { method Set (line 430) | func (v *NullableOAuth2LoginRequest) Set(val *OAuth2LoginRequest) { method IsSet (line 435) | func (v NullableOAuth2LoginRequest) IsSet() bool { method Unset (line 439) | func (v *NullableOAuth2LoginRequest) Unset() { method MarshalJSON (line 448) | func (v NullableOAuth2LoginRequest) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 452) | func (v *NullableOAuth2LoginRequest) UnmarshalJSON(src []byte) error { function NewNullableOAuth2LoginRequest (line 444) | func NewNullableOAuth2LoginRequest(val *OAuth2LoginRequest) *NullableOAu... FILE: pkg/httpclient/model_patch_identities_body.go type PatchIdentitiesBody (line 22) | type PatchIdentitiesBody struct method GetIdentities (line 48) | func (o *PatchIdentitiesBody) GetIdentities() []IdentityPatch { method GetIdentitiesOk (line 58) | func (o *PatchIdentitiesBody) GetIdentitiesOk() ([]IdentityPatch, bool) { method HasIdentities (line 66) | func (o *PatchIdentitiesBody) HasIdentities() bool { method SetIdentities (line 75) | func (o *PatchIdentitiesBody) SetIdentities(v []IdentityPatch) { method MarshalJSON (line 79) | func (o PatchIdentitiesBody) MarshalJSON() ([]byte, error) { method ToMap (line 87) | func (o PatchIdentitiesBody) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 100) | func (o *PatchIdentitiesBody) UnmarshalJSON(data []byte) (err error) { type _PatchIdentitiesBody (line 28) | type _PatchIdentitiesBody function NewPatchIdentitiesBody (line 34) | func NewPatchIdentitiesBody() *PatchIdentitiesBody { function NewPatchIdentitiesBodyWithDefaults (line 42) | func NewPatchIdentitiesBodyWithDefaults() *PatchIdentitiesBody { type NullablePatchIdentitiesBody (line 121) | type NullablePatchIdentitiesBody struct method Get (line 126) | func (v NullablePatchIdentitiesBody) Get() *PatchIdentitiesBody { method Set (line 130) | func (v *NullablePatchIdentitiesBody) Set(val *PatchIdentitiesBody) { method IsSet (line 135) | func (v NullablePatchIdentitiesBody) IsSet() bool { method Unset (line 139) | func (v *NullablePatchIdentitiesBody) Unset() { method MarshalJSON (line 148) | func (v NullablePatchIdentitiesBody) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 152) | func (v *NullablePatchIdentitiesBody) UnmarshalJSON(src []byte) error { function NewNullablePatchIdentitiesBody (line 144) | func NewNullablePatchIdentitiesBody(val *PatchIdentitiesBody) *NullableP... FILE: pkg/httpclient/model_perform_native_logout_body.go type PerformNativeLogoutBody (line 23) | type PerformNativeLogoutBody struct method GetSessionToken (line 50) | func (o *PerformNativeLogoutBody) GetSessionToken() string { method GetSessionTokenOk (line 61) | func (o *PerformNativeLogoutBody) GetSessionTokenOk() (*string, bool) { method SetSessionToken (line 69) | func (o *PerformNativeLogoutBody) SetSessionToken(v string) { method MarshalJSON (line 73) | func (o PerformNativeLogoutBody) MarshalJSON() ([]byte, error) { method ToMap (line 81) | func (o PerformNativeLogoutBody) ToMap() (map[string]interface{}, erro... method UnmarshalJSON (line 92) | func (o *PerformNativeLogoutBody) UnmarshalJSON(data []byte) (err erro... type _PerformNativeLogoutBody (line 29) | type _PerformNativeLogoutBody function NewPerformNativeLogoutBody (line 35) | func NewPerformNativeLogoutBody(sessionToken string) *PerformNativeLogou... function NewPerformNativeLogoutBodyWithDefaults (line 44) | func NewPerformNativeLogoutBodyWithDefaults() *PerformNativeLogoutBody { type NullablePerformNativeLogoutBody (line 134) | type NullablePerformNativeLogoutBody struct method Get (line 139) | func (v NullablePerformNativeLogoutBody) Get() *PerformNativeLogoutBody { method Set (line 143) | func (v *NullablePerformNativeLogoutBody) Set(val *PerformNativeLogout... method IsSet (line 148) | func (v NullablePerformNativeLogoutBody) IsSet() bool { method Unset (line 152) | func (v *NullablePerformNativeLogoutBody) Unset() { method MarshalJSON (line 161) | func (v NullablePerformNativeLogoutBody) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 165) | func (v *NullablePerformNativeLogoutBody) UnmarshalJSON(src []byte) er... function NewNullablePerformNativeLogoutBody (line 157) | func NewNullablePerformNativeLogoutBody(val *PerformNativeLogoutBody) *N... FILE: pkg/httpclient/model_provider.go type Provider (line 22) | type Provider struct method GetClientId (line 60) | func (o *Provider) GetClientId() string { method GetClientIdOk (line 70) | func (o *Provider) GetClientIdOk() (*string, bool) { method HasClientId (line 78) | func (o *Provider) HasClientId() bool { method SetClientId (line 87) | func (o *Provider) SetClientId(v string) { method GetConfigUrl (line 92) | func (o *Provider) GetConfigUrl() string { method GetConfigUrlOk (line 102) | func (o *Provider) GetConfigUrlOk() (*string, bool) { method HasConfigUrl (line 110) | func (o *Provider) HasConfigUrl() bool { method SetConfigUrl (line 119) | func (o *Provider) SetConfigUrl(v string) { method GetDomainHint (line 124) | func (o *Provider) GetDomainHint() string { method GetDomainHintOk (line 134) | func (o *Provider) GetDomainHintOk() (*string, bool) { method HasDomainHint (line 142) | func (o *Provider) HasDomainHint() bool { method SetDomainHint (line 151) | func (o *Provider) SetDomainHint(v string) { method GetFields (line 156) | func (o *Provider) GetFields() []string { method GetFieldsOk (line 166) | func (o *Provider) GetFieldsOk() ([]string, bool) { method HasFields (line 174) | func (o *Provider) HasFields() bool { method SetFields (line 183) | func (o *Provider) SetFields(v []string) { method GetLoginHint (line 188) | func (o *Provider) GetLoginHint() string { method GetLoginHintOk (line 198) | func (o *Provider) GetLoginHintOk() (*string, bool) { method HasLoginHint (line 206) | func (o *Provider) HasLoginHint() bool { method SetLoginHint (line 215) | func (o *Provider) SetLoginHint(v string) { method GetNonce (line 220) | func (o *Provider) GetNonce() string { method GetNonceOk (line 230) | func (o *Provider) GetNonceOk() (*string, bool) { method HasNonce (line 238) | func (o *Provider) HasNonce() bool { method SetNonce (line 247) | func (o *Provider) SetNonce(v string) { method GetParameters (line 252) | func (o *Provider) GetParameters() map[string]string { method GetParametersOk (line 262) | func (o *Provider) GetParametersOk() (*map[string]string, bool) { method HasParameters (line 270) | func (o *Provider) HasParameters() bool { method SetParameters (line 279) | func (o *Provider) SetParameters(v map[string]string) { method MarshalJSON (line 283) | func (o Provider) MarshalJSON() ([]byte, error) { method ToMap (line 291) | func (o Provider) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 322) | func (o *Provider) UnmarshalJSON(data []byte) (err error) { type _Provider (line 40) | type _Provider function NewProvider (line 46) | func NewProvider() *Provider { function NewProviderWithDefaults (line 54) | func NewProviderWithDefaults() *Provider { type NullableProvider (line 349) | type NullableProvider struct method Get (line 354) | func (v NullableProvider) Get() *Provider { method Set (line 358) | func (v *NullableProvider) Set(val *Provider) { method IsSet (line 363) | func (v NullableProvider) IsSet() bool { method Unset (line 367) | func (v *NullableProvider) Unset() { method MarshalJSON (line 376) | func (v NullableProvider) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 380) | func (v *NullableProvider) UnmarshalJSON(src []byte) error { function NewNullableProvider (line 372) | func NewNullableProvider(val *Provider) *NullableProvider { FILE: pkg/httpclient/model_recovery_code_for_identity.go type RecoveryCodeForIdentity (line 24) | type RecoveryCodeForIdentity struct method GetExpiresAt (line 56) | func (o *RecoveryCodeForIdentity) GetExpiresAt() time.Time { method GetExpiresAtOk (line 66) | func (o *RecoveryCodeForIdentity) GetExpiresAtOk() (*time.Time, bool) { method HasExpiresAt (line 74) | func (o *RecoveryCodeForIdentity) HasExpiresAt() bool { method SetExpiresAt (line 83) | func (o *RecoveryCodeForIdentity) SetExpiresAt(v time.Time) { method GetRecoveryCode (line 88) | func (o *RecoveryCodeForIdentity) GetRecoveryCode() string { method GetRecoveryCodeOk (line 99) | func (o *RecoveryCodeForIdentity) GetRecoveryCodeOk() (*string, bool) { method SetRecoveryCode (line 107) | func (o *RecoveryCodeForIdentity) SetRecoveryCode(v string) { method GetRecoveryLink (line 112) | func (o *RecoveryCodeForIdentity) GetRecoveryLink() string { method GetRecoveryLinkOk (line 123) | func (o *RecoveryCodeForIdentity) GetRecoveryLinkOk() (*string, bool) { method SetRecoveryLink (line 131) | func (o *RecoveryCodeForIdentity) SetRecoveryLink(v string) { method MarshalJSON (line 135) | func (o RecoveryCodeForIdentity) MarshalJSON() ([]byte, error) { method ToMap (line 143) | func (o RecoveryCodeForIdentity) ToMap() (map[string]interface{}, erro... method UnmarshalJSON (line 158) | func (o *RecoveryCodeForIdentity) UnmarshalJSON(data []byte) (err erro... type _RecoveryCodeForIdentity (line 34) | type _RecoveryCodeForIdentity function NewRecoveryCodeForIdentity (line 40) | func NewRecoveryCodeForIdentity(recoveryCode string, recoveryLink string... function NewRecoveryCodeForIdentityWithDefaults (line 50) | func NewRecoveryCodeForIdentityWithDefaults() *RecoveryCodeForIdentity { type NullableRecoveryCodeForIdentity (line 203) | type NullableRecoveryCodeForIdentity struct method Get (line 208) | func (v NullableRecoveryCodeForIdentity) Get() *RecoveryCodeForIdentity { method Set (line 212) | func (v *NullableRecoveryCodeForIdentity) Set(val *RecoveryCodeForIden... method IsSet (line 217) | func (v NullableRecoveryCodeForIdentity) IsSet() bool { method Unset (line 221) | func (v *NullableRecoveryCodeForIdentity) Unset() { method MarshalJSON (line 230) | func (v NullableRecoveryCodeForIdentity) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 234) | func (v *NullableRecoveryCodeForIdentity) UnmarshalJSON(src []byte) er... function NewNullableRecoveryCodeForIdentity (line 226) | func NewNullableRecoveryCodeForIdentity(val *RecoveryCodeForIdentity) *N... FILE: pkg/httpclient/model_recovery_flow.go type RecoveryFlow (line 24) | type RecoveryFlow struct method GetActive (line 76) | func (o *RecoveryFlow) GetActive() string { method GetActiveOk (line 86) | func (o *RecoveryFlow) GetActiveOk() (*string, bool) { method HasActive (line 94) | func (o *RecoveryFlow) HasActive() bool { method SetActive (line 103) | func (o *RecoveryFlow) SetActive(v string) { method GetContinueWith (line 108) | func (o *RecoveryFlow) GetContinueWith() []ContinueWith { method GetContinueWithOk (line 118) | func (o *RecoveryFlow) GetContinueWithOk() ([]ContinueWith, bool) { method HasContinueWith (line 126) | func (o *RecoveryFlow) HasContinueWith() bool { method SetContinueWith (line 135) | func (o *RecoveryFlow) SetContinueWith(v []ContinueWith) { method GetExpiresAt (line 140) | func (o *RecoveryFlow) GetExpiresAt() time.Time { method GetExpiresAtOk (line 151) | func (o *RecoveryFlow) GetExpiresAtOk() (*time.Time, bool) { method SetExpiresAt (line 159) | func (o *RecoveryFlow) SetExpiresAt(v time.Time) { method GetId (line 164) | func (o *RecoveryFlow) GetId() string { method GetIdOk (line 175) | func (o *RecoveryFlow) GetIdOk() (*string, bool) { method SetId (line 183) | func (o *RecoveryFlow) SetId(v string) { method GetIssuedAt (line 188) | func (o *RecoveryFlow) GetIssuedAt() time.Time { method GetIssuedAtOk (line 199) | func (o *RecoveryFlow) GetIssuedAtOk() (*time.Time, bool) { method SetIssuedAt (line 207) | func (o *RecoveryFlow) SetIssuedAt(v time.Time) { method GetRequestUrl (line 212) | func (o *RecoveryFlow) GetRequestUrl() string { method GetRequestUrlOk (line 223) | func (o *RecoveryFlow) GetRequestUrlOk() (*string, bool) { method SetRequestUrl (line 231) | func (o *RecoveryFlow) SetRequestUrl(v string) { method GetReturnTo (line 236) | func (o *RecoveryFlow) GetReturnTo() string { method GetReturnToOk (line 246) | func (o *RecoveryFlow) GetReturnToOk() (*string, bool) { method HasReturnTo (line 254) | func (o *RecoveryFlow) HasReturnTo() bool { method SetReturnTo (line 263) | func (o *RecoveryFlow) SetReturnTo(v string) { method GetState (line 269) | func (o *RecoveryFlow) GetState() interface{} { method GetStateOk (line 281) | func (o *RecoveryFlow) GetStateOk() (*interface{}, bool) { method SetState (line 289) | func (o *RecoveryFlow) SetState(v interface{}) { method GetTransientPayload (line 294) | func (o *RecoveryFlow) GetTransientPayload() map[string]interface{} { method GetTransientPayloadOk (line 304) | func (o *RecoveryFlow) GetTransientPayloadOk() (map[string]interface{}... method HasTransientPayload (line 312) | func (o *RecoveryFlow) HasTransientPayload() bool { method SetTransientPayload (line 321) | func (o *RecoveryFlow) SetTransientPayload(v map[string]interface{}) { method GetType (line 326) | func (o *RecoveryFlow) GetType() string { method GetTypeOk (line 337) | func (o *RecoveryFlow) GetTypeOk() (*string, bool) { method SetType (line 345) | func (o *RecoveryFlow) SetType(v string) { method GetUi (line 350) | func (o *RecoveryFlow) GetUi() UiContainer { method GetUiOk (line 361) | func (o *RecoveryFlow) GetUiOk() (*UiContainer, bool) { method SetUi (line 369) | func (o *RecoveryFlow) SetUi(v UiContainer) { method MarshalJSON (line 373) | func (o RecoveryFlow) MarshalJSON() ([]byte, error) { method ToMap (line 381) | func (o RecoveryFlow) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 412) | func (o *RecoveryFlow) UnmarshalJSON(data []byte) (err error) { type _RecoveryFlow (line 49) | type _RecoveryFlow function NewRecoveryFlow (line 55) | func NewRecoveryFlow(expiresAt time.Time, id string, issuedAt time.Time,... function NewRecoveryFlowWithDefaults (line 70) | func NewRecoveryFlowWithDefaults() *RecoveryFlow { type NullableRecoveryFlow (line 470) | type NullableRecoveryFlow struct method Get (line 475) | func (v NullableRecoveryFlow) Get() *RecoveryFlow { method Set (line 479) | func (v *NullableRecoveryFlow) Set(val *RecoveryFlow) { method IsSet (line 484) | func (v NullableRecoveryFlow) IsSet() bool { method Unset (line 488) | func (v *NullableRecoveryFlow) Unset() { method MarshalJSON (line 497) | func (v NullableRecoveryFlow) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 501) | func (v *NullableRecoveryFlow) UnmarshalJSON(src []byte) error { function NewNullableRecoveryFlow (line 493) | func NewNullableRecoveryFlow(val *RecoveryFlow) *NullableRecoveryFlow { FILE: pkg/httpclient/model_recovery_flow_state.go type RecoveryFlowState (line 20) | type RecoveryFlowState method UnmarshalJSON (line 36) | func (v *RecoveryFlowState) UnmarshalJSON(src []byte) error { method IsValid (line 65) | func (v RecoveryFlowState) IsValid() bool { method Ptr (line 75) | func (v RecoveryFlowState) Ptr() *RecoveryFlowState { constant RECOVERYFLOWSTATE_CHOOSE_METHOD (line 24) | RECOVERYFLOWSTATE_CHOOSE_METHOD RecoveryFlowState = "choose_method" constant RECOVERYFLOWSTATE_SENT_EMAIL (line 25) | RECOVERYFLOWSTATE_SENT_EMAIL RecoveryFlowState = "sent_email" constant RECOVERYFLOWSTATE_PASSED_CHALLENGE (line 26) | RECOVERYFLOWSTATE_PASSED_CHALLENGE RecoveryFlowState = "passed_challenge" function NewRecoveryFlowStateFromValue (line 55) | func NewRecoveryFlowStateFromValue(v string) (*RecoveryFlowState, error) { type NullableRecoveryFlowState (line 79) | type NullableRecoveryFlowState struct method Get (line 84) | func (v NullableRecoveryFlowState) Get() *RecoveryFlowState { method Set (line 88) | func (v *NullableRecoveryFlowState) Set(val *RecoveryFlowState) { method IsSet (line 93) | func (v NullableRecoveryFlowState) IsSet() bool { method Unset (line 97) | func (v *NullableRecoveryFlowState) Unset() { method MarshalJSON (line 106) | func (v NullableRecoveryFlowState) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 110) | func (v *NullableRecoveryFlowState) UnmarshalJSON(src []byte) error { function NewNullableRecoveryFlowState (line 102) | func NewNullableRecoveryFlowState(val *RecoveryFlowState) *NullableRecov... FILE: pkg/httpclient/model_recovery_identity_address.go type RecoveryIdentityAddress (line 24) | type RecoveryIdentityAddress struct method GetCreatedAt (line 57) | func (o *RecoveryIdentityAddress) GetCreatedAt() time.Time { method GetCreatedAtOk (line 67) | func (o *RecoveryIdentityAddress) GetCreatedAtOk() (*time.Time, bool) { method HasCreatedAt (line 75) | func (o *RecoveryIdentityAddress) HasCreatedAt() bool { method SetCreatedAt (line 84) | func (o *RecoveryIdentityAddress) SetCreatedAt(v time.Time) { method GetId (line 89) | func (o *RecoveryIdentityAddress) GetId() string { method GetIdOk (line 99) | func (o *RecoveryIdentityAddress) GetIdOk() (*string, bool) { method HasId (line 107) | func (o *RecoveryIdentityAddress) HasId() bool { method SetId (line 116) | func (o *RecoveryIdentityAddress) SetId(v string) { method GetUpdatedAt (line 121) | func (o *RecoveryIdentityAddress) GetUpdatedAt() time.Time { method GetUpdatedAtOk (line 131) | func (o *RecoveryIdentityAddress) GetUpdatedAtOk() (*time.Time, bool) { method HasUpdatedAt (line 139) | func (o *RecoveryIdentityAddress) HasUpdatedAt() bool { method SetUpdatedAt (line 148) | func (o *RecoveryIdentityAddress) SetUpdatedAt(v time.Time) { method GetValue (line 153) | func (o *RecoveryIdentityAddress) GetValue() string { method GetValueOk (line 164) | func (o *RecoveryIdentityAddress) GetValueOk() (*string, bool) { method SetValue (line 172) | func (o *RecoveryIdentityAddress) SetValue(v string) { method GetVia (line 177) | func (o *RecoveryIdentityAddress) GetVia() string { method GetViaOk (line 188) | func (o *RecoveryIdentityAddress) GetViaOk() (*string, bool) { method SetVia (line 196) | func (o *RecoveryIdentityAddress) SetVia(v string) { method MarshalJSON (line 200) | func (o RecoveryIdentityAddress) MarshalJSON() ([]byte, error) { method ToMap (line 208) | func (o RecoveryIdentityAddress) ToMap() (map[string]interface{}, erro... method UnmarshalJSON (line 229) | func (o *RecoveryIdentityAddress) UnmarshalJSON(data []byte) (err erro... type _RecoveryIdentityAddress (line 35) | type _RecoveryIdentityAddress function NewRecoveryIdentityAddress (line 41) | func NewRecoveryIdentityAddress(value string, via string) *RecoveryIdent... function NewRecoveryIdentityAddressWithDefaults (line 51) | func NewRecoveryIdentityAddressWithDefaults() *RecoveryIdentityAddress { type NullableRecoveryIdentityAddress (line 276) | type NullableRecoveryIdentityAddress struct method Get (line 281) | func (v NullableRecoveryIdentityAddress) Get() *RecoveryIdentityAddress { method Set (line 285) | func (v *NullableRecoveryIdentityAddress) Set(val *RecoveryIdentityAdd... method IsSet (line 290) | func (v NullableRecoveryIdentityAddress) IsSet() bool { method Unset (line 294) | func (v *NullableRecoveryIdentityAddress) Unset() { method MarshalJSON (line 303) | func (v NullableRecoveryIdentityAddress) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 307) | func (v *NullableRecoveryIdentityAddress) UnmarshalJSON(src []byte) er... function NewNullableRecoveryIdentityAddress (line 299) | func NewNullableRecoveryIdentityAddress(val *RecoveryIdentityAddress) *N... FILE: pkg/httpclient/model_recovery_link_for_identity.go type RecoveryLinkForIdentity (line 24) | type RecoveryLinkForIdentity struct method GetExpiresAt (line 53) | func (o *RecoveryLinkForIdentity) GetExpiresAt() time.Time { method GetExpiresAtOk (line 63) | func (o *RecoveryLinkForIdentity) GetExpiresAtOk() (*time.Time, bool) { method HasExpiresAt (line 71) | func (o *RecoveryLinkForIdentity) HasExpiresAt() bool { method SetExpiresAt (line 80) | func (o *RecoveryLinkForIdentity) SetExpiresAt(v time.Time) { method GetRecoveryLink (line 85) | func (o *RecoveryLinkForIdentity) GetRecoveryLink() string { method GetRecoveryLinkOk (line 96) | func (o *RecoveryLinkForIdentity) GetRecoveryLinkOk() (*string, bool) { method SetRecoveryLink (line 104) | func (o *RecoveryLinkForIdentity) SetRecoveryLink(v string) { method MarshalJSON (line 108) | func (o RecoveryLinkForIdentity) MarshalJSON() ([]byte, error) { method ToMap (line 116) | func (o RecoveryLinkForIdentity) ToMap() (map[string]interface{}, erro... method UnmarshalJSON (line 130) | func (o *RecoveryLinkForIdentity) UnmarshalJSON(data []byte) (err erro... type _RecoveryLinkForIdentity (line 32) | type _RecoveryLinkForIdentity function NewRecoveryLinkForIdentity (line 38) | func NewRecoveryLinkForIdentity(recoveryLink string) *RecoveryLinkForIde... function NewRecoveryLinkForIdentityWithDefaults (line 47) | func NewRecoveryLinkForIdentityWithDefaults() *RecoveryLinkForIdentity { type NullableRecoveryLinkForIdentity (line 173) | type NullableRecoveryLinkForIdentity struct method Get (line 178) | func (v NullableRecoveryLinkForIdentity) Get() *RecoveryLinkForIdentity { method Set (line 182) | func (v *NullableRecoveryLinkForIdentity) Set(val *RecoveryLinkForIden... method IsSet (line 187) | func (v NullableRecoveryLinkForIdentity) IsSet() bool { method Unset (line 191) | func (v *NullableRecoveryLinkForIdentity) Unset() { method MarshalJSON (line 200) | func (v NullableRecoveryLinkForIdentity) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 204) | func (v *NullableRecoveryLinkForIdentity) UnmarshalJSON(src []byte) er... function NewNullableRecoveryLinkForIdentity (line 196) | func NewNullableRecoveryLinkForIdentity(val *RecoveryLinkForIdentity) *N... FILE: pkg/httpclient/model_registration_flow.go type RegistrationFlow (line 24) | type RegistrationFlow struct method GetActive (line 82) | func (o *RegistrationFlow) GetActive() string { method GetActiveOk (line 92) | func (o *RegistrationFlow) GetActiveOk() (*string, bool) { method HasActive (line 100) | func (o *RegistrationFlow) HasActive() bool { method SetActive (line 109) | func (o *RegistrationFlow) SetActive(v string) { method GetExpiresAt (line 114) | func (o *RegistrationFlow) GetExpiresAt() time.Time { method GetExpiresAtOk (line 125) | func (o *RegistrationFlow) GetExpiresAtOk() (*time.Time, bool) { method SetExpiresAt (line 133) | func (o *RegistrationFlow) SetExpiresAt(v time.Time) { method GetId (line 138) | func (o *RegistrationFlow) GetId() string { method GetIdOk (line 149) | func (o *RegistrationFlow) GetIdOk() (*string, bool) { method SetId (line 157) | func (o *RegistrationFlow) SetId(v string) { method GetIdentitySchema (line 162) | func (o *RegistrationFlow) GetIdentitySchema() string { method GetIdentitySchemaOk (line 172) | func (o *RegistrationFlow) GetIdentitySchemaOk() (*string, bool) { method HasIdentitySchema (line 180) | func (o *RegistrationFlow) HasIdentitySchema() bool { method SetIdentitySchema (line 189) | func (o *RegistrationFlow) SetIdentitySchema(v string) { method GetIssuedAt (line 194) | func (o *RegistrationFlow) GetIssuedAt() time.Time { method GetIssuedAtOk (line 205) | func (o *RegistrationFlow) GetIssuedAtOk() (*time.Time, bool) { method SetIssuedAt (line 213) | func (o *RegistrationFlow) SetIssuedAt(v time.Time) { method GetOauth2LoginChallenge (line 218) | func (o *RegistrationFlow) GetOauth2LoginChallenge() string { method GetOauth2LoginChallengeOk (line 228) | func (o *RegistrationFlow) GetOauth2LoginChallengeOk() (*string, bool) { method HasOauth2LoginChallenge (line 236) | func (o *RegistrationFlow) HasOauth2LoginChallenge() bool { method SetOauth2LoginChallenge (line 245) | func (o *RegistrationFlow) SetOauth2LoginChallenge(v string) { method GetOauth2LoginRequest (line 250) | func (o *RegistrationFlow) GetOauth2LoginRequest() OAuth2LoginRequest { method GetOauth2LoginRequestOk (line 260) | func (o *RegistrationFlow) GetOauth2LoginRequestOk() (*OAuth2LoginRequ... method HasOauth2LoginRequest (line 268) | func (o *RegistrationFlow) HasOauth2LoginRequest() bool { method SetOauth2LoginRequest (line 277) | func (o *RegistrationFlow) SetOauth2LoginRequest(v OAuth2LoginRequest) { method GetOrganizationId (line 282) | func (o *RegistrationFlow) GetOrganizationId() string { method GetOrganizationIdOk (line 293) | func (o *RegistrationFlow) GetOrganizationIdOk() (*string, bool) { method HasOrganizationId (line 301) | func (o *RegistrationFlow) HasOrganizationId() bool { method SetOrganizationId (line 310) | func (o *RegistrationFlow) SetOrganizationId(v string) { method SetOrganizationIdNil (line 315) | func (o *RegistrationFlow) SetOrganizationIdNil() { method UnsetOrganizationId (line 320) | func (o *RegistrationFlow) UnsetOrganizationId() { method GetRequestUrl (line 325) | func (o *RegistrationFlow) GetRequestUrl() string { method GetRequestUrlOk (line 336) | func (o *RegistrationFlow) GetRequestUrlOk() (*string, bool) { method SetRequestUrl (line 344) | func (o *RegistrationFlow) SetRequestUrl(v string) { method GetReturnTo (line 349) | func (o *RegistrationFlow) GetReturnTo() string { method GetReturnToOk (line 359) | func (o *RegistrationFlow) GetReturnToOk() (*string, bool) { method HasReturnTo (line 367) | func (o *RegistrationFlow) HasReturnTo() bool { method SetReturnTo (line 376) | func (o *RegistrationFlow) SetReturnTo(v string) { method GetSessionTokenExchangeCode (line 381) | func (o *RegistrationFlow) GetSessionTokenExchangeCode() string { method GetSessionTokenExchangeCodeOk (line 391) | func (o *RegistrationFlow) GetSessionTokenExchangeCodeOk() (*string, b... method HasSessionTokenExchangeCode (line 399) | func (o *RegistrationFlow) HasSessionTokenExchangeCode() bool { method SetSessionTokenExchangeCode (line 408) | func (o *RegistrationFlow) SetSessionTokenExchangeCode(v string) { method GetState (line 414) | func (o *RegistrationFlow) GetState() interface{} { method GetStateOk (line 426) | func (o *RegistrationFlow) GetStateOk() (*interface{}, bool) { method SetState (line 434) | func (o *RegistrationFlow) SetState(v interface{}) { method GetTransientPayload (line 439) | func (o *RegistrationFlow) GetTransientPayload() map[string]interface{} { method GetTransientPayloadOk (line 449) | func (o *RegistrationFlow) GetTransientPayloadOk() (map[string]interfa... method HasTransientPayload (line 457) | func (o *RegistrationFlow) HasTransientPayload() bool { method SetTransientPayload (line 466) | func (o *RegistrationFlow) SetTransientPayload(v map[string]interface{... method GetType (line 471) | func (o *RegistrationFlow) GetType() string { method GetTypeOk (line 482) | func (o *RegistrationFlow) GetTypeOk() (*string, bool) { method SetType (line 490) | func (o *RegistrationFlow) SetType(v string) { method GetUi (line 495) | func (o *RegistrationFlow) GetUi() UiContainer { method GetUiOk (line 506) | func (o *RegistrationFlow) GetUiOk() (*UiContainer, bool) { method SetUi (line 514) | func (o *RegistrationFlow) SetUi(v UiContainer) { method MarshalJSON (line 518) | func (o RegistrationFlow) MarshalJSON() ([]byte, error) { method ToMap (line 526) | func (o RegistrationFlow) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 569) | func (o *RegistrationFlow) UnmarshalJSON(data []byte) (err error) { type _RegistrationFlow (line 55) | type _RegistrationFlow function NewRegistrationFlow (line 61) | func NewRegistrationFlow(expiresAt time.Time, id string, issuedAt time.T... function NewRegistrationFlowWithDefaults (line 76) | func NewRegistrationFlowWithDefaults() *RegistrationFlow { type NullableRegistrationFlow (line 631) | type NullableRegistrationFlow struct method Get (line 636) | func (v NullableRegistrationFlow) Get() *RegistrationFlow { method Set (line 640) | func (v *NullableRegistrationFlow) Set(val *RegistrationFlow) { method IsSet (line 645) | func (v NullableRegistrationFlow) IsSet() bool { method Unset (line 649) | func (v *NullableRegistrationFlow) Unset() { method MarshalJSON (line 658) | func (v NullableRegistrationFlow) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 662) | func (v *NullableRegistrationFlow) UnmarshalJSON(src []byte) error { function NewNullableRegistrationFlow (line 654) | func NewNullableRegistrationFlow(val *RegistrationFlow) *NullableRegistr... FILE: pkg/httpclient/model_registration_flow_state.go type RegistrationFlowState (line 20) | type RegistrationFlowState method UnmarshalJSON (line 36) | func (v *RegistrationFlowState) UnmarshalJSON(src []byte) error { method IsValid (line 65) | func (v RegistrationFlowState) IsValid() bool { method Ptr (line 75) | func (v RegistrationFlowState) Ptr() *RegistrationFlowState { constant REGISTRATIONFLOWSTATE_CHOOSE_METHOD (line 24) | REGISTRATIONFLOWSTATE_CHOOSE_METHOD RegistrationFlowState = "choose_m... constant REGISTRATIONFLOWSTATE_SENT_EMAIL (line 25) | REGISTRATIONFLOWSTATE_SENT_EMAIL RegistrationFlowState = "sent_email" constant REGISTRATIONFLOWSTATE_PASSED_CHALLENGE (line 26) | REGISTRATIONFLOWSTATE_PASSED_CHALLENGE RegistrationFlowState = "passed_c... function NewRegistrationFlowStateFromValue (line 55) | func NewRegistrationFlowStateFromValue(v string) (*RegistrationFlowState... type NullableRegistrationFlowState (line 79) | type NullableRegistrationFlowState struct method Get (line 84) | func (v NullableRegistrationFlowState) Get() *RegistrationFlowState { method Set (line 88) | func (v *NullableRegistrationFlowState) Set(val *RegistrationFlowState) { method IsSet (line 93) | func (v NullableRegistrationFlowState) IsSet() bool { method Unset (line 97) | func (v *NullableRegistrationFlowState) Unset() { method MarshalJSON (line 106) | func (v NullableRegistrationFlowState) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 110) | func (v *NullableRegistrationFlowState) UnmarshalJSON(src []byte) error { function NewNullableRegistrationFlowState (line 102) | func NewNullableRegistrationFlowState(val *RegistrationFlowState) *Nulla... FILE: pkg/httpclient/model_self_service_flow_expired_error.go type SelfServiceFlowExpiredError (line 23) | type SelfServiceFlowExpiredError struct method GetError (line 54) | func (o *SelfServiceFlowExpiredError) GetError() GenericError { method GetErrorOk (line 64) | func (o *SelfServiceFlowExpiredError) GetErrorOk() (*GenericError, boo... method HasError (line 72) | func (o *SelfServiceFlowExpiredError) HasError() bool { method SetError (line 81) | func (o *SelfServiceFlowExpiredError) SetError(v GenericError) { method GetExpiredAt (line 86) | func (o *SelfServiceFlowExpiredError) GetExpiredAt() time.Time { method GetExpiredAtOk (line 96) | func (o *SelfServiceFlowExpiredError) GetExpiredAtOk() (*time.Time, bo... method HasExpiredAt (line 104) | func (o *SelfServiceFlowExpiredError) HasExpiredAt() bool { method SetExpiredAt (line 113) | func (o *SelfServiceFlowExpiredError) SetExpiredAt(v time.Time) { method GetSince (line 118) | func (o *SelfServiceFlowExpiredError) GetSince() int64 { method GetSinceOk (line 128) | func (o *SelfServiceFlowExpiredError) GetSinceOk() (*int64, bool) { method HasSince (line 136) | func (o *SelfServiceFlowExpiredError) HasSince() bool { method SetSince (line 145) | func (o *SelfServiceFlowExpiredError) SetSince(v int64) { method GetUseFlowId (line 150) | func (o *SelfServiceFlowExpiredError) GetUseFlowId() string { method GetUseFlowIdOk (line 160) | func (o *SelfServiceFlowExpiredError) GetUseFlowIdOk() (*string, bool) { method HasUseFlowId (line 168) | func (o *SelfServiceFlowExpiredError) HasUseFlowId() bool { method SetUseFlowId (line 177) | func (o *SelfServiceFlowExpiredError) SetUseFlowId(v string) { method MarshalJSON (line 181) | func (o SelfServiceFlowExpiredError) MarshalJSON() ([]byte, error) { method ToMap (line 189) | func (o SelfServiceFlowExpiredError) ToMap() (map[string]interface{}, ... method UnmarshalJSON (line 211) | func (o *SelfServiceFlowExpiredError) UnmarshalJSON(data []byte) (err ... type _SelfServiceFlowExpiredError (line 34) | type _SelfServiceFlowExpiredError function NewSelfServiceFlowExpiredError (line 40) | func NewSelfServiceFlowExpiredError() *SelfServiceFlowExpiredError { function NewSelfServiceFlowExpiredErrorWithDefaults (line 48) | func NewSelfServiceFlowExpiredErrorWithDefaults() *SelfServiceFlowExpire... type NullableSelfServiceFlowExpiredError (line 235) | type NullableSelfServiceFlowExpiredError struct method Get (line 240) | func (v NullableSelfServiceFlowExpiredError) Get() *SelfServiceFlowExp... method Set (line 244) | func (v *NullableSelfServiceFlowExpiredError) Set(val *SelfServiceFlow... method IsSet (line 249) | func (v NullableSelfServiceFlowExpiredError) IsSet() bool { method Unset (line 253) | func (v *NullableSelfServiceFlowExpiredError) Unset() { method MarshalJSON (line 262) | func (v NullableSelfServiceFlowExpiredError) MarshalJSON() ([]byte, er... method UnmarshalJSON (line 266) | func (v *NullableSelfServiceFlowExpiredError) UnmarshalJSON(src []byte... function NewNullableSelfServiceFlowExpiredError (line 258) | func NewNullableSelfServiceFlowExpiredError(val *SelfServiceFlowExpiredE... FILE: pkg/httpclient/model_session.go type Session (line 24) | type Session struct method GetActive (line 67) | func (o *Session) GetActive() bool { method GetActiveOk (line 77) | func (o *Session) GetActiveOk() (*bool, bool) { method HasActive (line 85) | func (o *Session) HasActive() bool { method SetActive (line 94) | func (o *Session) SetActive(v bool) { method GetAuthenticatedAt (line 99) | func (o *Session) GetAuthenticatedAt() time.Time { method GetAuthenticatedAtOk (line 109) | func (o *Session) GetAuthenticatedAtOk() (*time.Time, bool) { method HasAuthenticatedAt (line 117) | func (o *Session) HasAuthenticatedAt() bool { method SetAuthenticatedAt (line 126) | func (o *Session) SetAuthenticatedAt(v time.Time) { method GetAuthenticationMethods (line 131) | func (o *Session) GetAuthenticationMethods() []SessionAuthenticationMe... method GetAuthenticationMethodsOk (line 141) | func (o *Session) GetAuthenticationMethodsOk() ([]SessionAuthenticatio... method HasAuthenticationMethods (line 149) | func (o *Session) HasAuthenticationMethods() bool { method SetAuthenticationMethods (line 158) | func (o *Session) SetAuthenticationMethods(v []SessionAuthenticationMe... method GetAuthenticatorAssuranceLevel (line 163) | func (o *Session) GetAuthenticatorAssuranceLevel() AuthenticatorAssura... method GetAuthenticatorAssuranceLevelOk (line 173) | func (o *Session) GetAuthenticatorAssuranceLevelOk() (*AuthenticatorAs... method HasAuthenticatorAssuranceLevel (line 181) | func (o *Session) HasAuthenticatorAssuranceLevel() bool { method SetAuthenticatorAssuranceLevel (line 190) | func (o *Session) SetAuthenticatorAssuranceLevel(v AuthenticatorAssura... method GetDevices (line 195) | func (o *Session) GetDevices() []SessionDevice { method GetDevicesOk (line 205) | func (o *Session) GetDevicesOk() ([]SessionDevice, bool) { method HasDevices (line 213) | func (o *Session) HasDevices() bool { method SetDevices (line 222) | func (o *Session) SetDevices(v []SessionDevice) { method GetExpiresAt (line 227) | func (o *Session) GetExpiresAt() time.Time { method GetExpiresAtOk (line 237) | func (o *Session) GetExpiresAtOk() (*time.Time, bool) { method HasExpiresAt (line 245) | func (o *Session) HasExpiresAt() bool { method SetExpiresAt (line 254) | func (o *Session) SetExpiresAt(v time.Time) { method GetId (line 259) | func (o *Session) GetId() string { method GetIdOk (line 270) | func (o *Session) GetIdOk() (*string, bool) { method SetId (line 278) | func (o *Session) SetId(v string) { method GetIdentity (line 283) | func (o *Session) GetIdentity() Identity { method GetIdentityOk (line 293) | func (o *Session) GetIdentityOk() (*Identity, bool) { method HasIdentity (line 301) | func (o *Session) HasIdentity() bool { method SetIdentity (line 310) | func (o *Session) SetIdentity(v Identity) { method GetIssuedAt (line 315) | func (o *Session) GetIssuedAt() time.Time { method GetIssuedAtOk (line 325) | func (o *Session) GetIssuedAtOk() (*time.Time, bool) { method HasIssuedAt (line 333) | func (o *Session) HasIssuedAt() bool { method SetIssuedAt (line 342) | func (o *Session) SetIssuedAt(v time.Time) { method GetTokenized (line 347) | func (o *Session) GetTokenized() string { method GetTokenizedOk (line 357) | func (o *Session) GetTokenizedOk() (*string, bool) { method HasTokenized (line 365) | func (o *Session) HasTokenized() bool { method SetTokenized (line 374) | func (o *Session) SetTokenized(v string) { method MarshalJSON (line 378) | func (o Session) MarshalJSON() ([]byte, error) { method ToMap (line 386) | func (o Session) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 424) | func (o *Session) UnmarshalJSON(data []byte) (err error) { type _Session (line 46) | type _Session function NewSession (line 52) | func NewSession(id string) *Session { function NewSessionWithDefaults (line 61) | func NewSessionWithDefaults() *Session { type NullableSession (line 475) | type NullableSession struct method Get (line 480) | func (v NullableSession) Get() *Session { method Set (line 484) | func (v *NullableSession) Set(val *Session) { method IsSet (line 489) | func (v NullableSession) IsSet() bool { method Unset (line 493) | func (v *NullableSession) Unset() { method MarshalJSON (line 502) | func (v NullableSession) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 506) | func (v *NullableSession) UnmarshalJSON(src []byte) error { function NewNullableSession (line 498) | func NewNullableSession(val *Session) *NullableSession { FILE: pkg/httpclient/model_session_authentication_method.go type SessionAuthenticationMethod (line 23) | type SessionAuthenticationMethod struct method GetAal (line 56) | func (o *SessionAuthenticationMethod) GetAal() AuthenticatorAssuranceL... method GetAalOk (line 66) | func (o *SessionAuthenticationMethod) GetAalOk() (*AuthenticatorAssura... method HasAal (line 74) | func (o *SessionAuthenticationMethod) HasAal() bool { method SetAal (line 83) | func (o *SessionAuthenticationMethod) SetAal(v AuthenticatorAssuranceL... method GetCompletedAt (line 88) | func (o *SessionAuthenticationMethod) GetCompletedAt() time.Time { method GetCompletedAtOk (line 98) | func (o *SessionAuthenticationMethod) GetCompletedAtOk() (*time.Time, ... method HasCompletedAt (line 106) | func (o *SessionAuthenticationMethod) HasCompletedAt() bool { method SetCompletedAt (line 115) | func (o *SessionAuthenticationMethod) SetCompletedAt(v time.Time) { method GetMethod (line 120) | func (o *SessionAuthenticationMethod) GetMethod() string { method GetMethodOk (line 130) | func (o *SessionAuthenticationMethod) GetMethodOk() (*string, bool) { method HasMethod (line 138) | func (o *SessionAuthenticationMethod) HasMethod() bool { method SetMethod (line 147) | func (o *SessionAuthenticationMethod) SetMethod(v string) { method GetOrganization (line 152) | func (o *SessionAuthenticationMethod) GetOrganization() string { method GetOrganizationOk (line 162) | func (o *SessionAuthenticationMethod) GetOrganizationOk() (*string, bo... method HasOrganization (line 170) | func (o *SessionAuthenticationMethod) HasOrganization() bool { method SetOrganization (line 179) | func (o *SessionAuthenticationMethod) SetOrganization(v string) { method GetProvider (line 184) | func (o *SessionAuthenticationMethod) GetProvider() string { method GetProviderOk (line 194) | func (o *SessionAuthenticationMethod) GetProviderOk() (*string, bool) { method HasProvider (line 202) | func (o *SessionAuthenticationMethod) HasProvider() bool { method SetProvider (line 211) | func (o *SessionAuthenticationMethod) SetProvider(v string) { method MarshalJSON (line 215) | func (o SessionAuthenticationMethod) MarshalJSON() ([]byte, error) { method ToMap (line 223) | func (o SessionAuthenticationMethod) ToMap() (map[string]interface{}, ... method UnmarshalJSON (line 248) | func (o *SessionAuthenticationMethod) UnmarshalJSON(data []byte) (err ... type _SessionAuthenticationMethod (line 36) | type _SessionAuthenticationMethod function NewSessionAuthenticationMethod (line 42) | func NewSessionAuthenticationMethod() *SessionAuthenticationMethod { function NewSessionAuthenticationMethodWithDefaults (line 50) | func NewSessionAuthenticationMethodWithDefaults() *SessionAuthentication... type NullableSessionAuthenticationMethod (line 273) | type NullableSessionAuthenticationMethod struct method Get (line 278) | func (v NullableSessionAuthenticationMethod) Get() *SessionAuthenticat... method Set (line 282) | func (v *NullableSessionAuthenticationMethod) Set(val *SessionAuthenti... method IsSet (line 287) | func (v NullableSessionAuthenticationMethod) IsSet() bool { method Unset (line 291) | func (v *NullableSessionAuthenticationMethod) Unset() { method MarshalJSON (line 300) | func (v NullableSessionAuthenticationMethod) MarshalJSON() ([]byte, er... method UnmarshalJSON (line 304) | func (v *NullableSessionAuthenticationMethod) UnmarshalJSON(src []byte... function NewNullableSessionAuthenticationMethod (line 296) | func NewNullableSessionAuthenticationMethod(val *SessionAuthenticationMe... FILE: pkg/httpclient/model_session_device.go type SessionDevice (line 23) | type SessionDevice struct method GetId (line 56) | func (o *SessionDevice) GetId() string { method GetIdOk (line 67) | func (o *SessionDevice) GetIdOk() (*string, bool) { method SetId (line 75) | func (o *SessionDevice) SetId(v string) { method GetIpAddress (line 80) | func (o *SessionDevice) GetIpAddress() string { method GetIpAddressOk (line 90) | func (o *SessionDevice) GetIpAddressOk() (*string, bool) { method HasIpAddress (line 98) | func (o *SessionDevice) HasIpAddress() bool { method SetIpAddress (line 107) | func (o *SessionDevice) SetIpAddress(v string) { method GetLocation (line 112) | func (o *SessionDevice) GetLocation() string { method GetLocationOk (line 122) | func (o *SessionDevice) GetLocationOk() (*string, bool) { method HasLocation (line 130) | func (o *SessionDevice) HasLocation() bool { method SetLocation (line 139) | func (o *SessionDevice) SetLocation(v string) { method GetUserAgent (line 144) | func (o *SessionDevice) GetUserAgent() string { method GetUserAgentOk (line 154) | func (o *SessionDevice) GetUserAgentOk() (*string, bool) { method HasUserAgent (line 162) | func (o *SessionDevice) HasUserAgent() bool { method SetUserAgent (line 171) | func (o *SessionDevice) SetUserAgent(v string) { method MarshalJSON (line 175) | func (o SessionDevice) MarshalJSON() ([]byte, error) { method ToMap (line 183) | func (o SessionDevice) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 203) | func (o *SessionDevice) UnmarshalJSON(data []byte) (err error) { type _SessionDevice (line 35) | type _SessionDevice function NewSessionDevice (line 41) | func NewSessionDevice(id string) *SessionDevice { function NewSessionDeviceWithDefaults (line 50) | func NewSessionDeviceWithDefaults() *SessionDevice { type NullableSessionDevice (line 248) | type NullableSessionDevice struct method Get (line 253) | func (v NullableSessionDevice) Get() *SessionDevice { method Set (line 257) | func (v *NullableSessionDevice) Set(val *SessionDevice) { method IsSet (line 262) | func (v NullableSessionDevice) IsSet() bool { method Unset (line 266) | func (v *NullableSessionDevice) Unset() { method MarshalJSON (line 275) | func (v NullableSessionDevice) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 279) | func (v *NullableSessionDevice) UnmarshalJSON(src []byte) error { function NewNullableSessionDevice (line 271) | func NewNullableSessionDevice(val *SessionDevice) *NullableSessionDevice { FILE: pkg/httpclient/model_settings_flow.go type SettingsFlow (line 24) | type SettingsFlow struct method GetActive (line 78) | func (o *SettingsFlow) GetActive() string { method GetActiveOk (line 88) | func (o *SettingsFlow) GetActiveOk() (*string, bool) { method HasActive (line 96) | func (o *SettingsFlow) HasActive() bool { method SetActive (line 105) | func (o *SettingsFlow) SetActive(v string) { method GetContinueWith (line 110) | func (o *SettingsFlow) GetContinueWith() []ContinueWith { method GetContinueWithOk (line 120) | func (o *SettingsFlow) GetContinueWithOk() ([]ContinueWith, bool) { method HasContinueWith (line 128) | func (o *SettingsFlow) HasContinueWith() bool { method SetContinueWith (line 137) | func (o *SettingsFlow) SetContinueWith(v []ContinueWith) { method GetExpiresAt (line 142) | func (o *SettingsFlow) GetExpiresAt() time.Time { method GetExpiresAtOk (line 153) | func (o *SettingsFlow) GetExpiresAtOk() (*time.Time, bool) { method SetExpiresAt (line 161) | func (o *SettingsFlow) SetExpiresAt(v time.Time) { method GetId (line 166) | func (o *SettingsFlow) GetId() string { method GetIdOk (line 177) | func (o *SettingsFlow) GetIdOk() (*string, bool) { method SetId (line 185) | func (o *SettingsFlow) SetId(v string) { method GetIdentity (line 190) | func (o *SettingsFlow) GetIdentity() Identity { method GetIdentityOk (line 201) | func (o *SettingsFlow) GetIdentityOk() (*Identity, bool) { method SetIdentity (line 209) | func (o *SettingsFlow) SetIdentity(v Identity) { method GetIssuedAt (line 214) | func (o *SettingsFlow) GetIssuedAt() time.Time { method GetIssuedAtOk (line 225) | func (o *SettingsFlow) GetIssuedAtOk() (*time.Time, bool) { method SetIssuedAt (line 233) | func (o *SettingsFlow) SetIssuedAt(v time.Time) { method GetRequestUrl (line 238) | func (o *SettingsFlow) GetRequestUrl() string { method GetRequestUrlOk (line 249) | func (o *SettingsFlow) GetRequestUrlOk() (*string, bool) { method SetRequestUrl (line 257) | func (o *SettingsFlow) SetRequestUrl(v string) { method GetReturnTo (line 262) | func (o *SettingsFlow) GetReturnTo() string { method GetReturnToOk (line 272) | func (o *SettingsFlow) GetReturnToOk() (*string, bool) { method HasReturnTo (line 280) | func (o *SettingsFlow) HasReturnTo() bool { method SetReturnTo (line 289) | func (o *SettingsFlow) SetReturnTo(v string) { method GetState (line 295) | func (o *SettingsFlow) GetState() interface{} { method GetStateOk (line 307) | func (o *SettingsFlow) GetStateOk() (*interface{}, bool) { method SetState (line 315) | func (o *SettingsFlow) SetState(v interface{}) { method GetTransientPayload (line 320) | func (o *SettingsFlow) GetTransientPayload() map[string]interface{} { method GetTransientPayloadOk (line 330) | func (o *SettingsFlow) GetTransientPayloadOk() (map[string]interface{}... method HasTransientPayload (line 338) | func (o *SettingsFlow) HasTransientPayload() bool { method SetTransientPayload (line 347) | func (o *SettingsFlow) SetTransientPayload(v map[string]interface{}) { method GetType (line 352) | func (o *SettingsFlow) GetType() string { method GetTypeOk (line 363) | func (o *SettingsFlow) GetTypeOk() (*string, bool) { method SetType (line 371) | func (o *SettingsFlow) SetType(v string) { method GetUi (line 376) | func (o *SettingsFlow) GetUi() UiContainer { method GetUiOk (line 387) | func (o *SettingsFlow) GetUiOk() (*UiContainer, bool) { method SetUi (line 395) | func (o *SettingsFlow) SetUi(v UiContainer) { method MarshalJSON (line 399) | func (o SettingsFlow) MarshalJSON() ([]byte, error) { method ToMap (line 407) | func (o SettingsFlow) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 439) | func (o *SettingsFlow) UnmarshalJSON(data []byte) (err error) { type _SettingsFlow (line 50) | type _SettingsFlow function NewSettingsFlow (line 56) | func NewSettingsFlow(expiresAt time.Time, id string, identity Identity, ... function NewSettingsFlowWithDefaults (line 72) | func NewSettingsFlowWithDefaults() *SettingsFlow { type NullableSettingsFlow (line 499) | type NullableSettingsFlow struct method Get (line 504) | func (v NullableSettingsFlow) Get() *SettingsFlow { method Set (line 508) | func (v *NullableSettingsFlow) Set(val *SettingsFlow) { method IsSet (line 513) | func (v NullableSettingsFlow) IsSet() bool { method Unset (line 517) | func (v *NullableSettingsFlow) Unset() { method MarshalJSON (line 526) | func (v NullableSettingsFlow) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 530) | func (v *NullableSettingsFlow) UnmarshalJSON(src []byte) error { function NewNullableSettingsFlow (line 522) | func NewNullableSettingsFlow(val *SettingsFlow) *NullableSettingsFlow { FILE: pkg/httpclient/model_settings_flow_state.go type SettingsFlowState (line 20) | type SettingsFlowState method UnmarshalJSON (line 34) | func (v *SettingsFlowState) UnmarshalJSON(src []byte) error { method IsValid (line 63) | func (v SettingsFlowState) IsValid() bool { method Ptr (line 73) | func (v SettingsFlowState) Ptr() *SettingsFlowState { constant SETTINGSFLOWSTATE_SHOW_FORM (line 24) | SETTINGSFLOWSTATE_SHOW_FORM SettingsFlowState = "show_form" constant SETTINGSFLOWSTATE_SUCCESS (line 25) | SETTINGSFLOWSTATE_SUCCESS SettingsFlowState = "success" function NewSettingsFlowStateFromValue (line 53) | func NewSettingsFlowStateFromValue(v string) (*SettingsFlowState, error) { type NullableSettingsFlowState (line 77) | type NullableSettingsFlowState struct method Get (line 82) | func (v NullableSettingsFlowState) Get() *SettingsFlowState { method Set (line 86) | func (v *NullableSettingsFlowState) Set(val *SettingsFlowState) { method IsSet (line 91) | func (v NullableSettingsFlowState) IsSet() bool { method Unset (line 95) | func (v *NullableSettingsFlowState) Unset() { method MarshalJSON (line 104) | func (v NullableSettingsFlowState) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 108) | func (v *NullableSettingsFlowState) UnmarshalJSON(src []byte) error { function NewNullableSettingsFlowState (line 100) | func NewNullableSettingsFlowState(val *SettingsFlowState) *NullableSetti... FILE: pkg/httpclient/model_successful_code_exchange_response.go type SuccessfulCodeExchangeResponse (line 23) | type SuccessfulCodeExchangeResponse struct method GetSession (line 51) | func (o *SuccessfulCodeExchangeResponse) GetSession() Session { method GetSessionOk (line 62) | func (o *SuccessfulCodeExchangeResponse) GetSessionOk() (*Session, boo... method SetSession (line 70) | func (o *SuccessfulCodeExchangeResponse) SetSession(v Session) { method GetSessionToken (line 75) | func (o *SuccessfulCodeExchangeResponse) GetSessionToken() string { method GetSessionTokenOk (line 85) | func (o *SuccessfulCodeExchangeResponse) GetSessionTokenOk() (*string,... method HasSessionToken (line 93) | func (o *SuccessfulCodeExchangeResponse) HasSessionToken() bool { method SetSessionToken (line 102) | func (o *SuccessfulCodeExchangeResponse) SetSessionToken(v string) { method MarshalJSON (line 106) | func (o SuccessfulCodeExchangeResponse) MarshalJSON() ([]byte, error) { method ToMap (line 114) | func (o SuccessfulCodeExchangeResponse) ToMap() (map[string]interface{... method UnmarshalJSON (line 128) | func (o *SuccessfulCodeExchangeResponse) UnmarshalJSON(data []byte) (e... type _SuccessfulCodeExchangeResponse (line 30) | type _SuccessfulCodeExchangeResponse function NewSuccessfulCodeExchangeResponse (line 36) | func NewSuccessfulCodeExchangeResponse(session Session) *SuccessfulCodeE... function NewSuccessfulCodeExchangeResponseWithDefaults (line 45) | func NewSuccessfulCodeExchangeResponseWithDefaults() *SuccessfulCodeExch... type NullableSuccessfulCodeExchangeResponse (line 171) | type NullableSuccessfulCodeExchangeResponse struct method Get (line 176) | func (v NullableSuccessfulCodeExchangeResponse) Get() *SuccessfulCodeE... method Set (line 180) | func (v *NullableSuccessfulCodeExchangeResponse) Set(val *SuccessfulCo... method IsSet (line 185) | func (v NullableSuccessfulCodeExchangeResponse) IsSet() bool { method Unset (line 189) | func (v *NullableSuccessfulCodeExchangeResponse) Unset() { method MarshalJSON (line 198) | func (v NullableSuccessfulCodeExchangeResponse) MarshalJSON() ([]byte,... method UnmarshalJSON (line 202) | func (v *NullableSuccessfulCodeExchangeResponse) UnmarshalJSON(src []b... function NewNullableSuccessfulCodeExchangeResponse (line 194) | func NewNullableSuccessfulCodeExchangeResponse(val *SuccessfulCodeExchan... FILE: pkg/httpclient/model_successful_native_login.go type SuccessfulNativeLogin (line 23) | type SuccessfulNativeLogin struct method GetContinueWith (line 53) | func (o *SuccessfulNativeLogin) GetContinueWith() []ContinueWith { method GetContinueWithOk (line 63) | func (o *SuccessfulNativeLogin) GetContinueWithOk() ([]ContinueWith, b... method HasContinueWith (line 71) | func (o *SuccessfulNativeLogin) HasContinueWith() bool { method SetContinueWith (line 80) | func (o *SuccessfulNativeLogin) SetContinueWith(v []ContinueWith) { method GetSession (line 85) | func (o *SuccessfulNativeLogin) GetSession() Session { method GetSessionOk (line 96) | func (o *SuccessfulNativeLogin) GetSessionOk() (*Session, bool) { method SetSession (line 104) | func (o *SuccessfulNativeLogin) SetSession(v Session) { method GetSessionToken (line 109) | func (o *SuccessfulNativeLogin) GetSessionToken() string { method GetSessionTokenOk (line 119) | func (o *SuccessfulNativeLogin) GetSessionTokenOk() (*string, bool) { method HasSessionToken (line 127) | func (o *SuccessfulNativeLogin) HasSessionToken() bool { method SetSessionToken (line 136) | func (o *SuccessfulNativeLogin) SetSessionToken(v string) { method MarshalJSON (line 140) | func (o SuccessfulNativeLogin) MarshalJSON() ([]byte, error) { method ToMap (line 148) | func (o SuccessfulNativeLogin) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 165) | func (o *SuccessfulNativeLogin) UnmarshalJSON(data []byte) (err error) { type _SuccessfulNativeLogin (line 32) | type _SuccessfulNativeLogin function NewSuccessfulNativeLogin (line 38) | func NewSuccessfulNativeLogin(session Session) *SuccessfulNativeLogin { function NewSuccessfulNativeLoginWithDefaults (line 47) | func NewSuccessfulNativeLoginWithDefaults() *SuccessfulNativeLogin { type NullableSuccessfulNativeLogin (line 209) | type NullableSuccessfulNativeLogin struct method Get (line 214) | func (v NullableSuccessfulNativeLogin) Get() *SuccessfulNativeLogin { method Set (line 218) | func (v *NullableSuccessfulNativeLogin) Set(val *SuccessfulNativeLogin) { method IsSet (line 223) | func (v NullableSuccessfulNativeLogin) IsSet() bool { method Unset (line 227) | func (v *NullableSuccessfulNativeLogin) Unset() { method MarshalJSON (line 236) | func (v NullableSuccessfulNativeLogin) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 240) | func (v *NullableSuccessfulNativeLogin) UnmarshalJSON(src []byte) error { function NewNullableSuccessfulNativeLogin (line 232) | func NewNullableSuccessfulNativeLogin(val *SuccessfulNativeLogin) *Nulla... FILE: pkg/httpclient/model_successful_native_registration.go type SuccessfulNativeRegistration (line 23) | type SuccessfulNativeRegistration struct method GetContinueWith (line 54) | func (o *SuccessfulNativeRegistration) GetContinueWith() []ContinueWith { method GetContinueWithOk (line 64) | func (o *SuccessfulNativeRegistration) GetContinueWithOk() ([]Continue... method HasContinueWith (line 72) | func (o *SuccessfulNativeRegistration) HasContinueWith() bool { method SetContinueWith (line 81) | func (o *SuccessfulNativeRegistration) SetContinueWith(v []ContinueWit... method GetIdentity (line 86) | func (o *SuccessfulNativeRegistration) GetIdentity() Identity { method GetIdentityOk (line 97) | func (o *SuccessfulNativeRegistration) GetIdentityOk() (*Identity, boo... method SetIdentity (line 105) | func (o *SuccessfulNativeRegistration) SetIdentity(v Identity) { method GetSession (line 110) | func (o *SuccessfulNativeRegistration) GetSession() Session { method GetSessionOk (line 120) | func (o *SuccessfulNativeRegistration) GetSessionOk() (*Session, bool) { method HasSession (line 128) | func (o *SuccessfulNativeRegistration) HasSession() bool { method SetSession (line 137) | func (o *SuccessfulNativeRegistration) SetSession(v Session) { method GetSessionToken (line 142) | func (o *SuccessfulNativeRegistration) GetSessionToken() string { method GetSessionTokenOk (line 152) | func (o *SuccessfulNativeRegistration) GetSessionTokenOk() (*string, b... method HasSessionToken (line 160) | func (o *SuccessfulNativeRegistration) HasSessionToken() bool { method SetSessionToken (line 169) | func (o *SuccessfulNativeRegistration) SetSessionToken(v string) { method MarshalJSON (line 173) | func (o SuccessfulNativeRegistration) MarshalJSON() ([]byte, error) { method ToMap (line 181) | func (o SuccessfulNativeRegistration) ToMap() (map[string]interface{},... method UnmarshalJSON (line 201) | func (o *SuccessfulNativeRegistration) UnmarshalJSON(data []byte) (err... type _SuccessfulNativeRegistration (line 33) | type _SuccessfulNativeRegistration function NewSuccessfulNativeRegistration (line 39) | func NewSuccessfulNativeRegistration(identity Identity) *SuccessfulNativ... function NewSuccessfulNativeRegistrationWithDefaults (line 48) | func NewSuccessfulNativeRegistrationWithDefaults() *SuccessfulNativeRegi... type NullableSuccessfulNativeRegistration (line 246) | type NullableSuccessfulNativeRegistration struct method Get (line 251) | func (v NullableSuccessfulNativeRegistration) Get() *SuccessfulNativeR... method Set (line 255) | func (v *NullableSuccessfulNativeRegistration) Set(val *SuccessfulNati... method IsSet (line 260) | func (v NullableSuccessfulNativeRegistration) IsSet() bool { method Unset (line 264) | func (v *NullableSuccessfulNativeRegistration) Unset() { method MarshalJSON (line 273) | func (v NullableSuccessfulNativeRegistration) MarshalJSON() ([]byte, e... method UnmarshalJSON (line 277) | func (v *NullableSuccessfulNativeRegistration) UnmarshalJSON(src []byt... function NewNullableSuccessfulNativeRegistration (line 269) | func NewNullableSuccessfulNativeRegistration(val *SuccessfulNativeRegist... FILE: pkg/httpclient/model_token_pagination.go type TokenPagination (line 22) | type TokenPagination struct method GetPageSize (line 54) | func (o *TokenPagination) GetPageSize() int64 { method GetPageSizeOk (line 64) | func (o *TokenPagination) GetPageSizeOk() (*int64, bool) { method HasPageSize (line 72) | func (o *TokenPagination) HasPageSize() bool { method SetPageSize (line 81) | func (o *TokenPagination) SetPageSize(v int64) { method GetPageToken (line 86) | func (o *TokenPagination) GetPageToken() string { method GetPageTokenOk (line 96) | func (o *TokenPagination) GetPageTokenOk() (*string, bool) { method HasPageToken (line 104) | func (o *TokenPagination) HasPageToken() bool { method SetPageToken (line 113) | func (o *TokenPagination) SetPageToken(v string) { method MarshalJSON (line 117) | func (o TokenPagination) MarshalJSON() ([]byte, error) { method ToMap (line 125) | func (o TokenPagination) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 141) | func (o *TokenPagination) UnmarshalJSON(data []byte) (err error) { type _TokenPagination (line 30) | type _TokenPagination function NewTokenPagination (line 36) | func NewTokenPagination() *TokenPagination { function NewTokenPaginationWithDefaults (line 46) | func NewTokenPaginationWithDefaults() *TokenPagination { type NullableTokenPagination (line 163) | type NullableTokenPagination struct method Get (line 168) | func (v NullableTokenPagination) Get() *TokenPagination { method Set (line 172) | func (v *NullableTokenPagination) Set(val *TokenPagination) { method IsSet (line 177) | func (v NullableTokenPagination) IsSet() bool { method Unset (line 181) | func (v *NullableTokenPagination) Unset() { method MarshalJSON (line 190) | func (v NullableTokenPagination) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 194) | func (v *NullableTokenPagination) UnmarshalJSON(src []byte) error { function NewNullableTokenPagination (line 186) | func NewNullableTokenPagination(val *TokenPagination) *NullableTokenPagi... FILE: pkg/httpclient/model_token_pagination_headers.go type TokenPaginationHeaders (line 22) | type TokenPaginationHeaders struct method GetLink (line 50) | func (o *TokenPaginationHeaders) GetLink() string { method GetLinkOk (line 60) | func (o *TokenPaginationHeaders) GetLinkOk() (*string, bool) { method HasLink (line 68) | func (o *TokenPaginationHeaders) HasLink() bool { method SetLink (line 77) | func (o *TokenPaginationHeaders) SetLink(v string) { method GetXTotalCount (line 82) | func (o *TokenPaginationHeaders) GetXTotalCount() string { method GetXTotalCountOk (line 92) | func (o *TokenPaginationHeaders) GetXTotalCountOk() (*string, bool) { method HasXTotalCount (line 100) | func (o *TokenPaginationHeaders) HasXTotalCount() bool { method SetXTotalCount (line 109) | func (o *TokenPaginationHeaders) SetXTotalCount(v string) { method MarshalJSON (line 113) | func (o TokenPaginationHeaders) MarshalJSON() ([]byte, error) { method ToMap (line 121) | func (o TokenPaginationHeaders) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 137) | func (o *TokenPaginationHeaders) UnmarshalJSON(data []byte) (err error) { type _TokenPaginationHeaders (line 30) | type _TokenPaginationHeaders function NewTokenPaginationHeaders (line 36) | func NewTokenPaginationHeaders() *TokenPaginationHeaders { function NewTokenPaginationHeadersWithDefaults (line 44) | func NewTokenPaginationHeadersWithDefaults() *TokenPaginationHeaders { type NullableTokenPaginationHeaders (line 159) | type NullableTokenPaginationHeaders struct method Get (line 164) | func (v NullableTokenPaginationHeaders) Get() *TokenPaginationHeaders { method Set (line 168) | func (v *NullableTokenPaginationHeaders) Set(val *TokenPaginationHeade... method IsSet (line 173) | func (v NullableTokenPaginationHeaders) IsSet() bool { method Unset (line 177) | func (v *NullableTokenPaginationHeaders) Unset() { method MarshalJSON (line 186) | func (v NullableTokenPaginationHeaders) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 190) | func (v *NullableTokenPaginationHeaders) UnmarshalJSON(src []byte) err... function NewNullableTokenPaginationHeaders (line 182) | func NewNullableTokenPaginationHeaders(val *TokenPaginationHeaders) *Nul... FILE: pkg/httpclient/model_ui_container.go type UiContainer (line 23) | type UiContainer struct method GetAction (line 56) | func (o *UiContainer) GetAction() string { method GetActionOk (line 67) | func (o *UiContainer) GetActionOk() (*string, bool) { method SetAction (line 75) | func (o *UiContainer) SetAction(v string) { method GetMessages (line 80) | func (o *UiContainer) GetMessages() []UiText { method GetMessagesOk (line 90) | func (o *UiContainer) GetMessagesOk() ([]UiText, bool) { method HasMessages (line 98) | func (o *UiContainer) HasMessages() bool { method SetMessages (line 107) | func (o *UiContainer) SetMessages(v []UiText) { method GetMethod (line 112) | func (o *UiContainer) GetMethod() string { method GetMethodOk (line 123) | func (o *UiContainer) GetMethodOk() (*string, bool) { method SetMethod (line 131) | func (o *UiContainer) SetMethod(v string) { method GetNodes (line 136) | func (o *UiContainer) GetNodes() []UiNode { method GetNodesOk (line 147) | func (o *UiContainer) GetNodesOk() ([]UiNode, bool) { method SetNodes (line 155) | func (o *UiContainer) SetNodes(v []UiNode) { method MarshalJSON (line 159) | func (o UiContainer) MarshalJSON() ([]byte, error) { method ToMap (line 167) | func (o UiContainer) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 183) | func (o *UiContainer) UnmarshalJSON(data []byte) (err error) { type _UiContainer (line 33) | type _UiContainer function NewUiContainer (line 39) | func NewUiContainer(action string, method string, nodes []UiNode) *UiCon... function NewUiContainerWithDefaults (line 50) | func NewUiContainerWithDefaults() *UiContainer { type NullableUiContainer (line 230) | type NullableUiContainer struct method Get (line 235) | func (v NullableUiContainer) Get() *UiContainer { method Set (line 239) | func (v *NullableUiContainer) Set(val *UiContainer) { method IsSet (line 244) | func (v NullableUiContainer) IsSet() bool { method Unset (line 248) | func (v *NullableUiContainer) Unset() { method MarshalJSON (line 257) | func (v NullableUiContainer) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 261) | func (v *NullableUiContainer) UnmarshalJSON(src []byte) error { function NewNullableUiContainer (line 253) | func NewNullableUiContainer(val *UiContainer) *NullableUiContainer { FILE: pkg/httpclient/model_ui_node.go type UiNode (line 23) | type UiNode struct method GetAttributes (line 59) | func (o *UiNode) GetAttributes() UiNodeAttributes { method GetAttributesOk (line 70) | func (o *UiNode) GetAttributesOk() (*UiNodeAttributes, bool) { method SetAttributes (line 78) | func (o *UiNode) SetAttributes(v UiNodeAttributes) { method GetGroup (line 83) | func (o *UiNode) GetGroup() string { method GetGroupOk (line 94) | func (o *UiNode) GetGroupOk() (*string, bool) { method SetGroup (line 102) | func (o *UiNode) SetGroup(v string) { method GetMessages (line 107) | func (o *UiNode) GetMessages() []UiText { method GetMessagesOk (line 118) | func (o *UiNode) GetMessagesOk() ([]UiText, bool) { method SetMessages (line 126) | func (o *UiNode) SetMessages(v []UiText) { method GetMeta (line 131) | func (o *UiNode) GetMeta() UiNodeMeta { method GetMetaOk (line 142) | func (o *UiNode) GetMetaOk() (*UiNodeMeta, bool) { method SetMeta (line 150) | func (o *UiNode) SetMeta(v UiNodeMeta) { method GetType (line 155) | func (o *UiNode) GetType() string { method GetTypeOk (line 166) | func (o *UiNode) GetTypeOk() (*string, bool) { method SetType (line 174) | func (o *UiNode) SetType(v string) { method MarshalJSON (line 178) | func (o UiNode) MarshalJSON() ([]byte, error) { method ToMap (line 186) | func (o UiNode) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 201) | func (o *UiNode) UnmarshalJSON(data []byte) (err error) { type _UiNode (line 34) | type _UiNode function NewUiNode (line 40) | func NewUiNode(attributes UiNodeAttributes, group string, messages []UiT... function NewUiNodeWithDefaults (line 53) | func NewUiNodeWithDefaults() *UiNode { type NullableUiNode (line 251) | type NullableUiNode struct method Get (line 256) | func (v NullableUiNode) Get() *UiNode { method Set (line 260) | func (v *NullableUiNode) Set(val *UiNode) { method IsSet (line 265) | func (v NullableUiNode) IsSet() bool { method Unset (line 269) | func (v *NullableUiNode) Unset() { method MarshalJSON (line 278) | func (v NullableUiNode) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 282) | func (v *NullableUiNode) UnmarshalJSON(src []byte) error { function NewNullableUiNode (line 274) | func NewNullableUiNode(val *UiNode) *NullableUiNode { FILE: pkg/httpclient/model_ui_node_anchor_attributes.go type UiNodeAnchorAttributes (line 23) | type UiNodeAnchorAttributes struct method GetHref (line 58) | func (o *UiNodeAnchorAttributes) GetHref() string { method GetHrefOk (line 69) | func (o *UiNodeAnchorAttributes) GetHrefOk() (*string, bool) { method SetHref (line 77) | func (o *UiNodeAnchorAttributes) SetHref(v string) { method GetId (line 82) | func (o *UiNodeAnchorAttributes) GetId() string { method GetIdOk (line 93) | func (o *UiNodeAnchorAttributes) GetIdOk() (*string, bool) { method SetId (line 101) | func (o *UiNodeAnchorAttributes) SetId(v string) { method GetNodeType (line 106) | func (o *UiNodeAnchorAttributes) GetNodeType() string { method GetNodeTypeOk (line 117) | func (o *UiNodeAnchorAttributes) GetNodeTypeOk() (*string, bool) { method SetNodeType (line 125) | func (o *UiNodeAnchorAttributes) SetNodeType(v string) { method GetTitle (line 130) | func (o *UiNodeAnchorAttributes) GetTitle() UiText { method GetTitleOk (line 141) | func (o *UiNodeAnchorAttributes) GetTitleOk() (*UiText, bool) { method SetTitle (line 149) | func (o *UiNodeAnchorAttributes) SetTitle(v UiText) { method MarshalJSON (line 153) | func (o UiNodeAnchorAttributes) MarshalJSON() ([]byte, error) { method ToMap (line 161) | func (o UiNodeAnchorAttributes) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 175) | func (o *UiNodeAnchorAttributes) UnmarshalJSON(data []byte) (err error) { type _UiNodeAnchorAttributes (line 34) | type _UiNodeAnchorAttributes function NewUiNodeAnchorAttributes (line 40) | func NewUiNodeAnchorAttributes(href string, id string, nodeType string, ... function NewUiNodeAnchorAttributesWithDefaults (line 52) | func NewUiNodeAnchorAttributesWithDefaults() *UiNodeAnchorAttributes { type NullableUiNodeAnchorAttributes (line 223) | type NullableUiNodeAnchorAttributes struct method Get (line 228) | func (v NullableUiNodeAnchorAttributes) Get() *UiNodeAnchorAttributes { method Set (line 232) | func (v *NullableUiNodeAnchorAttributes) Set(val *UiNodeAnchorAttribut... method IsSet (line 237) | func (v NullableUiNodeAnchorAttributes) IsSet() bool { method Unset (line 241) | func (v *NullableUiNodeAnchorAttributes) Unset() { method MarshalJSON (line 250) | func (v NullableUiNodeAnchorAttributes) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 254) | func (v *NullableUiNodeAnchorAttributes) UnmarshalJSON(src []byte) err... function NewNullableUiNodeAnchorAttributes (line 246) | func NewNullableUiNodeAnchorAttributes(val *UiNodeAnchorAttributes) *Nul... FILE: pkg/httpclient/model_ui_node_attributes.go type UiNodeAttributes (line 20) | type UiNodeAttributes struct method UnmarshalJSON (line 72) | func (dst *UiNodeAttributes) UnmarshalJSON(data []byte) error { method MarshalJSON (line 229) | func (src UiNodeAttributes) MarshalJSON() ([]byte, error) { method GetActualInstance (line 258) | func (obj *UiNodeAttributes) GetActualInstance() interface{} { method GetActualInstanceValue (line 291) | func (obj UiNodeAttributes) GetActualInstanceValue() interface{} { function UiNodeAnchorAttributesAsUiNodeAttributes (line 30) | func UiNodeAnchorAttributesAsUiNodeAttributes(v *UiNodeAnchorAttributes)... function UiNodeDivisionAttributesAsUiNodeAttributes (line 37) | func UiNodeDivisionAttributesAsUiNodeAttributes(v *UiNodeDivisionAttribu... function UiNodeImageAttributesAsUiNodeAttributes (line 44) | func UiNodeImageAttributesAsUiNodeAttributes(v *UiNodeImageAttributes) U... function UiNodeInputAttributesAsUiNodeAttributes (line 51) | func UiNodeInputAttributesAsUiNodeAttributes(v *UiNodeInputAttributes) U... function UiNodeScriptAttributesAsUiNodeAttributes (line 58) | func UiNodeScriptAttributesAsUiNodeAttributes(v *UiNodeScriptAttributes)... function UiNodeTextAttributesAsUiNodeAttributes (line 65) | func UiNodeTextAttributesAsUiNodeAttributes(v *UiNodeTextAttributes) UiN... type NullableUiNodeAttributes (line 320) | type NullableUiNodeAttributes struct method Get (line 325) | func (v NullableUiNodeAttributes) Get() *UiNodeAttributes { method Set (line 329) | func (v *NullableUiNodeAttributes) Set(val *UiNodeAttributes) { method IsSet (line 334) | func (v NullableUiNodeAttributes) IsSet() bool { method Unset (line 338) | func (v *NullableUiNodeAttributes) Unset() { method MarshalJSON (line 347) | func (v NullableUiNodeAttributes) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 351) | func (v *NullableUiNodeAttributes) UnmarshalJSON(src []byte) error { function NewNullableUiNodeAttributes (line 343) | func NewNullableUiNodeAttributes(val *UiNodeAttributes) *NullableUiNodeA... FILE: pkg/httpclient/model_ui_node_division_attributes.go type UiNodeDivisionAttributes (line 23) | type UiNodeDivisionAttributes struct method GetClass (line 57) | func (o *UiNodeDivisionAttributes) GetClass() string { method GetClassOk (line 67) | func (o *UiNodeDivisionAttributes) GetClassOk() (*string, bool) { method HasClass (line 75) | func (o *UiNodeDivisionAttributes) HasClass() bool { method SetClass (line 84) | func (o *UiNodeDivisionAttributes) SetClass(v string) { method GetData (line 89) | func (o *UiNodeDivisionAttributes) GetData() map[string]string { method GetDataOk (line 99) | func (o *UiNodeDivisionAttributes) GetDataOk() (*map[string]string, bo... method HasData (line 107) | func (o *UiNodeDivisionAttributes) HasData() bool { method SetData (line 116) | func (o *UiNodeDivisionAttributes) SetData(v map[string]string) { method GetId (line 121) | func (o *UiNodeDivisionAttributes) GetId() string { method GetIdOk (line 132) | func (o *UiNodeDivisionAttributes) GetIdOk() (*string, bool) { method SetId (line 140) | func (o *UiNodeDivisionAttributes) SetId(v string) { method GetNodeType (line 145) | func (o *UiNodeDivisionAttributes) GetNodeType() string { method GetNodeTypeOk (line 156) | func (o *UiNodeDivisionAttributes) GetNodeTypeOk() (*string, bool) { method SetNodeType (line 164) | func (o *UiNodeDivisionAttributes) SetNodeType(v string) { method MarshalJSON (line 168) | func (o UiNodeDivisionAttributes) MarshalJSON() ([]byte, error) { method ToMap (line 176) | func (o UiNodeDivisionAttributes) ToMap() (map[string]interface{}, err... method UnmarshalJSON (line 194) | func (o *UiNodeDivisionAttributes) UnmarshalJSON(data []byte) (err err... type _UiNodeDivisionAttributes (line 35) | type _UiNodeDivisionAttributes function NewUiNodeDivisionAttributes (line 41) | func NewUiNodeDivisionAttributes(id string, nodeType string) *UiNodeDivi... function NewUiNodeDivisionAttributesWithDefaults (line 51) | func NewUiNodeDivisionAttributesWithDefaults() *UiNodeDivisionAttributes { type NullableUiNodeDivisionAttributes (line 240) | type NullableUiNodeDivisionAttributes struct method Get (line 245) | func (v NullableUiNodeDivisionAttributes) Get() *UiNodeDivisionAttribu... method Set (line 249) | func (v *NullableUiNodeDivisionAttributes) Set(val *UiNodeDivisionAttr... method IsSet (line 254) | func (v NullableUiNodeDivisionAttributes) IsSet() bool { method Unset (line 258) | func (v *NullableUiNodeDivisionAttributes) Unset() { method MarshalJSON (line 267) | func (v NullableUiNodeDivisionAttributes) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 271) | func (v *NullableUiNodeDivisionAttributes) UnmarshalJSON(src []byte) e... function NewNullableUiNodeDivisionAttributes (line 263) | func NewNullableUiNodeDivisionAttributes(val *UiNodeDivisionAttributes) ... FILE: pkg/httpclient/model_ui_node_image_attributes.go type UiNodeImageAttributes (line 23) | type UiNodeImageAttributes struct method GetHeight (line 62) | func (o *UiNodeImageAttributes) GetHeight() int64 { method GetHeightOk (line 73) | func (o *UiNodeImageAttributes) GetHeightOk() (*int64, bool) { method SetHeight (line 81) | func (o *UiNodeImageAttributes) SetHeight(v int64) { method GetId (line 86) | func (o *UiNodeImageAttributes) GetId() string { method GetIdOk (line 97) | func (o *UiNodeImageAttributes) GetIdOk() (*string, bool) { method SetId (line 105) | func (o *UiNodeImageAttributes) SetId(v string) { method GetNodeType (line 110) | func (o *UiNodeImageAttributes) GetNodeType() string { method GetNodeTypeOk (line 121) | func (o *UiNodeImageAttributes) GetNodeTypeOk() (*string, bool) { method SetNodeType (line 129) | func (o *UiNodeImageAttributes) SetNodeType(v string) { method GetSrc (line 134) | func (o *UiNodeImageAttributes) GetSrc() string { method GetSrcOk (line 145) | func (o *UiNodeImageAttributes) GetSrcOk() (*string, bool) { method SetSrc (line 153) | func (o *UiNodeImageAttributes) SetSrc(v string) { method GetWidth (line 158) | func (o *UiNodeImageAttributes) GetWidth() int64 { method GetWidthOk (line 169) | func (o *UiNodeImageAttributes) GetWidthOk() (*int64, bool) { method SetWidth (line 177) | func (o *UiNodeImageAttributes) SetWidth(v int64) { method MarshalJSON (line 181) | func (o UiNodeImageAttributes) MarshalJSON() ([]byte, error) { method ToMap (line 189) | func (o UiNodeImageAttributes) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 204) | func (o *UiNodeImageAttributes) UnmarshalJSON(data []byte) (err error) { type _UiNodeImageAttributes (line 37) | type _UiNodeImageAttributes function NewUiNodeImageAttributes (line 43) | func NewUiNodeImageAttributes(height int64, id string, nodeType string, ... function NewUiNodeImageAttributesWithDefaults (line 56) | func NewUiNodeImageAttributesWithDefaults() *UiNodeImageAttributes { type NullableUiNodeImageAttributes (line 254) | type NullableUiNodeImageAttributes struct method Get (line 259) | func (v NullableUiNodeImageAttributes) Get() *UiNodeImageAttributes { method Set (line 263) | func (v *NullableUiNodeImageAttributes) Set(val *UiNodeImageAttributes) { method IsSet (line 268) | func (v NullableUiNodeImageAttributes) IsSet() bool { method Unset (line 272) | func (v *NullableUiNodeImageAttributes) Unset() { method MarshalJSON (line 281) | func (v NullableUiNodeImageAttributes) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 285) | func (v *NullableUiNodeImageAttributes) UnmarshalJSON(src []byte) error { function NewNullableUiNodeImageAttributes (line 277) | func NewNullableUiNodeImageAttributes(val *UiNodeImageAttributes) *Nulla... FILE: pkg/httpclient/model_ui_node_input_attributes.go type UiNodeInputAttributes (line 23) | type UiNodeInputAttributes struct method GetAutocomplete (line 78) | func (o *UiNodeInputAttributes) GetAutocomplete() string { method GetAutocompleteOk (line 88) | func (o *UiNodeInputAttributes) GetAutocompleteOk() (*string, bool) { method HasAutocomplete (line 96) | func (o *UiNodeInputAttributes) HasAutocomplete() bool { method SetAutocomplete (line 105) | func (o *UiNodeInputAttributes) SetAutocomplete(v string) { method GetDisabled (line 110) | func (o *UiNodeInputAttributes) GetDisabled() bool { method GetDisabledOk (line 121) | func (o *UiNodeInputAttributes) GetDisabledOk() (*bool, bool) { method SetDisabled (line 129) | func (o *UiNodeInputAttributes) SetDisabled(v bool) { method GetLabel (line 134) | func (o *UiNodeInputAttributes) GetLabel() UiText { method GetLabelOk (line 144) | func (o *UiNodeInputAttributes) GetLabelOk() (*UiText, bool) { method HasLabel (line 152) | func (o *UiNodeInputAttributes) HasLabel() bool { method SetLabel (line 161) | func (o *UiNodeInputAttributes) SetLabel(v UiText) { method GetMaxlength (line 166) | func (o *UiNodeInputAttributes) GetMaxlength() int64 { method GetMaxlengthOk (line 176) | func (o *UiNodeInputAttributes) GetMaxlengthOk() (*int64, bool) { method HasMaxlength (line 184) | func (o *UiNodeInputAttributes) HasMaxlength() bool { method SetMaxlength (line 193) | func (o *UiNodeInputAttributes) SetMaxlength(v int64) { method GetName (line 198) | func (o *UiNodeInputAttributes) GetName() string { method GetNameOk (line 209) | func (o *UiNodeInputAttributes) GetNameOk() (*string, bool) { method SetName (line 217) | func (o *UiNodeInputAttributes) SetName(v string) { method GetNodeType (line 222) | func (o *UiNodeInputAttributes) GetNodeType() string { method GetNodeTypeOk (line 233) | func (o *UiNodeInputAttributes) GetNodeTypeOk() (*string, bool) { method SetNodeType (line 241) | func (o *UiNodeInputAttributes) SetNodeType(v string) { method GetOnclick (line 246) | func (o *UiNodeInputAttributes) GetOnclick() string { method GetOnclickOk (line 256) | func (o *UiNodeInputAttributes) GetOnclickOk() (*string, bool) { method HasOnclick (line 264) | func (o *UiNodeInputAttributes) HasOnclick() bool { method SetOnclick (line 273) | func (o *UiNodeInputAttributes) SetOnclick(v string) { method GetOnclickTrigger (line 278) | func (o *UiNodeInputAttributes) GetOnclickTrigger() string { method GetOnclickTriggerOk (line 288) | func (o *UiNodeInputAttributes) GetOnclickTriggerOk() (*string, bool) { method HasOnclickTrigger (line 296) | func (o *UiNodeInputAttributes) HasOnclickTrigger() bool { method SetOnclickTrigger (line 305) | func (o *UiNodeInputAttributes) SetOnclickTrigger(v string) { method GetOnload (line 310) | func (o *UiNodeInputAttributes) GetOnload() string { method GetOnloadOk (line 320) | func (o *UiNodeInputAttributes) GetOnloadOk() (*string, bool) { method HasOnload (line 328) | func (o *UiNodeInputAttributes) HasOnload() bool { method SetOnload (line 337) | func (o *UiNodeInputAttributes) SetOnload(v string) { method GetOnloadTrigger (line 342) | func (o *UiNodeInputAttributes) GetOnloadTrigger() string { method GetOnloadTriggerOk (line 352) | func (o *UiNodeInputAttributes) GetOnloadTriggerOk() (*string, bool) { method HasOnloadTrigger (line 360) | func (o *UiNodeInputAttributes) HasOnloadTrigger() bool { method SetOnloadTrigger (line 369) | func (o *UiNodeInputAttributes) SetOnloadTrigger(v string) { method GetPattern (line 374) | func (o *UiNodeInputAttributes) GetPattern() string { method GetPatternOk (line 384) | func (o *UiNodeInputAttributes) GetPatternOk() (*string, bool) { method HasPattern (line 392) | func (o *UiNodeInputAttributes) HasPattern() bool { method SetPattern (line 401) | func (o *UiNodeInputAttributes) SetPattern(v string) { method GetRequired (line 406) | func (o *UiNodeInputAttributes) GetRequired() bool { method GetRequiredOk (line 416) | func (o *UiNodeInputAttributes) GetRequiredOk() (*bool, bool) { method HasRequired (line 424) | func (o *UiNodeInputAttributes) HasRequired() bool { method SetRequired (line 433) | func (o *UiNodeInputAttributes) SetRequired(v bool) { method GetType (line 438) | func (o *UiNodeInputAttributes) GetType() string { method GetTypeOk (line 449) | func (o *UiNodeInputAttributes) GetTypeOk() (*string, bool) { method SetType (line 457) | func (o *UiNodeInputAttributes) SetType(v string) { method GetValue (line 462) | func (o *UiNodeInputAttributes) GetValue() interface{} { method GetValueOk (line 473) | func (o *UiNodeInputAttributes) GetValueOk() (*interface{}, bool) { method HasValue (line 481) | func (o *UiNodeInputAttributes) HasValue() bool { method SetValue (line 490) | func (o *UiNodeInputAttributes) SetValue(v interface{}) { method MarshalJSON (line 494) | func (o UiNodeInputAttributes) MarshalJSON() ([]byte, error) { method ToMap (line 502) | func (o UiNodeInputAttributes) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 546) | func (o *UiNodeInputAttributes) UnmarshalJSON(data []byte) (err error) { type _UiNodeInputAttributes (line 54) | type _UiNodeInputAttributes function NewUiNodeInputAttributes (line 60) | func NewUiNodeInputAttributes(disabled bool, name string, nodeType strin... function NewUiNodeInputAttributesWithDefaults (line 72) | func NewUiNodeInputAttributesWithDefaults() *UiNodeInputAttributes { type NullableUiNodeInputAttributes (line 604) | type NullableUiNodeInputAttributes struct method Get (line 609) | func (v NullableUiNodeInputAttributes) Get() *UiNodeInputAttributes { method Set (line 613) | func (v *NullableUiNodeInputAttributes) Set(val *UiNodeInputAttributes) { method IsSet (line 618) | func (v NullableUiNodeInputAttributes) IsSet() bool { method Unset (line 622) | func (v *NullableUiNodeInputAttributes) Unset() { method MarshalJSON (line 631) | func (v NullableUiNodeInputAttributes) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 635) | func (v *NullableUiNodeInputAttributes) UnmarshalJSON(src []byte) error { function NewNullableUiNodeInputAttributes (line 627) | func NewNullableUiNodeInputAttributes(val *UiNodeInputAttributes) *Nulla... FILE: pkg/httpclient/model_ui_node_meta.go type UiNodeMeta (line 22) | type UiNodeMeta struct method GetLabel (line 47) | func (o *UiNodeMeta) GetLabel() UiText { method GetLabelOk (line 57) | func (o *UiNodeMeta) GetLabelOk() (*UiText, bool) { method HasLabel (line 65) | func (o *UiNodeMeta) HasLabel() bool { method SetLabel (line 74) | func (o *UiNodeMeta) SetLabel(v UiText) { method MarshalJSON (line 78) | func (o UiNodeMeta) MarshalJSON() ([]byte, error) { method ToMap (line 86) | func (o UiNodeMeta) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 99) | func (o *UiNodeMeta) UnmarshalJSON(data []byte) (err error) { type _UiNodeMeta (line 27) | type _UiNodeMeta function NewUiNodeMeta (line 33) | func NewUiNodeMeta() *UiNodeMeta { function NewUiNodeMetaWithDefaults (line 41) | func NewUiNodeMetaWithDefaults() *UiNodeMeta { type NullableUiNodeMeta (line 120) | type NullableUiNodeMeta struct method Get (line 125) | func (v NullableUiNodeMeta) Get() *UiNodeMeta { method Set (line 129) | func (v *NullableUiNodeMeta) Set(val *UiNodeMeta) { method IsSet (line 134) | func (v NullableUiNodeMeta) IsSet() bool { method Unset (line 138) | func (v *NullableUiNodeMeta) Unset() { method MarshalJSON (line 147) | func (v NullableUiNodeMeta) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 151) | func (v *NullableUiNodeMeta) UnmarshalJSON(src []byte) error { function NewNullableUiNodeMeta (line 143) | func NewNullableUiNodeMeta(val *UiNodeMeta) *NullableUiNodeMeta { FILE: pkg/httpclient/model_ui_node_script_attributes.go type UiNodeScriptAttributes (line 23) | type UiNodeScriptAttributes struct method GetAsync (line 74) | func (o *UiNodeScriptAttributes) GetAsync() bool { method GetAsyncOk (line 85) | func (o *UiNodeScriptAttributes) GetAsyncOk() (*bool, bool) { method SetAsync (line 93) | func (o *UiNodeScriptAttributes) SetAsync(v bool) { method GetCrossorigin (line 98) | func (o *UiNodeScriptAttributes) GetCrossorigin() string { method GetCrossoriginOk (line 109) | func (o *UiNodeScriptAttributes) GetCrossoriginOk() (*string, bool) { method SetCrossorigin (line 117) | func (o *UiNodeScriptAttributes) SetCrossorigin(v string) { method GetId (line 122) | func (o *UiNodeScriptAttributes) GetId() string { method GetIdOk (line 133) | func (o *UiNodeScriptAttributes) GetIdOk() (*string, bool) { method SetId (line 141) | func (o *UiNodeScriptAttributes) SetId(v string) { method GetIntegrity (line 146) | func (o *UiNodeScriptAttributes) GetIntegrity() string { method GetIntegrityOk (line 157) | func (o *UiNodeScriptAttributes) GetIntegrityOk() (*string, bool) { method SetIntegrity (line 165) | func (o *UiNodeScriptAttributes) SetIntegrity(v string) { method GetNodeType (line 170) | func (o *UiNodeScriptAttributes) GetNodeType() string { method GetNodeTypeOk (line 181) | func (o *UiNodeScriptAttributes) GetNodeTypeOk() (*string, bool) { method SetNodeType (line 189) | func (o *UiNodeScriptAttributes) SetNodeType(v string) { method GetNonce (line 194) | func (o *UiNodeScriptAttributes) GetNonce() string { method GetNonceOk (line 205) | func (o *UiNodeScriptAttributes) GetNonceOk() (*string, bool) { method SetNonce (line 213) | func (o *UiNodeScriptAttributes) SetNonce(v string) { method GetReferrerpolicy (line 218) | func (o *UiNodeScriptAttributes) GetReferrerpolicy() string { method GetReferrerpolicyOk (line 229) | func (o *UiNodeScriptAttributes) GetReferrerpolicyOk() (*string, bool) { method SetReferrerpolicy (line 237) | func (o *UiNodeScriptAttributes) SetReferrerpolicy(v string) { method GetSrc (line 242) | func (o *UiNodeScriptAttributes) GetSrc() string { method GetSrcOk (line 253) | func (o *UiNodeScriptAttributes) GetSrcOk() (*string, bool) { method SetSrc (line 261) | func (o *UiNodeScriptAttributes) SetSrc(v string) { method GetType (line 266) | func (o *UiNodeScriptAttributes) GetType() string { method GetTypeOk (line 277) | func (o *UiNodeScriptAttributes) GetTypeOk() (*string, bool) { method SetType (line 285) | func (o *UiNodeScriptAttributes) SetType(v string) { method MarshalJSON (line 289) | func (o UiNodeScriptAttributes) MarshalJSON() ([]byte, error) { method ToMap (line 297) | func (o UiNodeScriptAttributes) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 316) | func (o *UiNodeScriptAttributes) UnmarshalJSON(data []byte) (err error) { type _UiNodeScriptAttributes (line 45) | type _UiNodeScriptAttributes function NewUiNodeScriptAttributes (line 51) | func NewUiNodeScriptAttributes(async bool, crossorigin string, id string... function NewUiNodeScriptAttributesWithDefaults (line 68) | func NewUiNodeScriptAttributesWithDefaults() *UiNodeScriptAttributes { type NullableUiNodeScriptAttributes (line 374) | type NullableUiNodeScriptAttributes struct method Get (line 379) | func (v NullableUiNodeScriptAttributes) Get() *UiNodeScriptAttributes { method Set (line 383) | func (v *NullableUiNodeScriptAttributes) Set(val *UiNodeScriptAttribut... method IsSet (line 388) | func (v NullableUiNodeScriptAttributes) IsSet() bool { method Unset (line 392) | func (v *NullableUiNodeScriptAttributes) Unset() { method MarshalJSON (line 401) | func (v NullableUiNodeScriptAttributes) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 405) | func (v *NullableUiNodeScriptAttributes) UnmarshalJSON(src []byte) err... function NewNullableUiNodeScriptAttributes (line 397) | func NewNullableUiNodeScriptAttributes(val *UiNodeScriptAttributes) *Nul... FILE: pkg/httpclient/model_ui_node_text_attributes.go type UiNodeTextAttributes (line 23) | type UiNodeTextAttributes struct method GetId (line 55) | func (o *UiNodeTextAttributes) GetId() string { method GetIdOk (line 66) | func (o *UiNodeTextAttributes) GetIdOk() (*string, bool) { method SetId (line 74) | func (o *UiNodeTextAttributes) SetId(v string) { method GetNodeType (line 79) | func (o *UiNodeTextAttributes) GetNodeType() string { method GetNodeTypeOk (line 90) | func (o *UiNodeTextAttributes) GetNodeTypeOk() (*string, bool) { method SetNodeType (line 98) | func (o *UiNodeTextAttributes) SetNodeType(v string) { method GetText (line 103) | func (o *UiNodeTextAttributes) GetText() UiText { method GetTextOk (line 114) | func (o *UiNodeTextAttributes) GetTextOk() (*UiText, bool) { method SetText (line 122) | func (o *UiNodeTextAttributes) SetText(v UiText) { method MarshalJSON (line 126) | func (o UiNodeTextAttributes) MarshalJSON() ([]byte, error) { method ToMap (line 134) | func (o UiNodeTextAttributes) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 147) | func (o *UiNodeTextAttributes) UnmarshalJSON(data []byte) (err error) { type _UiNodeTextAttributes (line 32) | type _UiNodeTextAttributes function NewUiNodeTextAttributes (line 38) | func NewUiNodeTextAttributes(id string, nodeType string, text UiText) *U... function NewUiNodeTextAttributesWithDefaults (line 49) | func NewUiNodeTextAttributesWithDefaults() *UiNodeTextAttributes { type NullableUiNodeTextAttributes (line 193) | type NullableUiNodeTextAttributes struct method Get (line 198) | func (v NullableUiNodeTextAttributes) Get() *UiNodeTextAttributes { method Set (line 202) | func (v *NullableUiNodeTextAttributes) Set(val *UiNodeTextAttributes) { method IsSet (line 207) | func (v NullableUiNodeTextAttributes) IsSet() bool { method Unset (line 211) | func (v *NullableUiNodeTextAttributes) Unset() { method MarshalJSON (line 220) | func (v NullableUiNodeTextAttributes) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 224) | func (v *NullableUiNodeTextAttributes) UnmarshalJSON(src []byte) error { function NewNullableUiNodeTextAttributes (line 216) | func NewNullableUiNodeTextAttributes(val *UiNodeTextAttributes) *Nullabl... FILE: pkg/httpclient/model_ui_text.go type UiText (line 23) | type UiText struct method GetContext (line 57) | func (o *UiText) GetContext() map[string]interface{} { method GetContextOk (line 67) | func (o *UiText) GetContextOk() (map[string]interface{}, bool) { method HasContext (line 75) | func (o *UiText) HasContext() bool { method SetContext (line 84) | func (o *UiText) SetContext(v map[string]interface{}) { method GetId (line 89) | func (o *UiText) GetId() int64 { method GetIdOk (line 100) | func (o *UiText) GetIdOk() (*int64, bool) { method SetId (line 108) | func (o *UiText) SetId(v int64) { method GetText (line 113) | func (o *UiText) GetText() string { method GetTextOk (line 124) | func (o *UiText) GetTextOk() (*string, bool) { method SetText (line 132) | func (o *UiText) SetText(v string) { method GetType (line 137) | func (o *UiText) GetType() string { method GetTypeOk (line 148) | func (o *UiText) GetTypeOk() (*string, bool) { method SetType (line 156) | func (o *UiText) SetType(v string) { method MarshalJSON (line 160) | func (o UiText) MarshalJSON() ([]byte, error) { method ToMap (line 168) | func (o UiText) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 184) | func (o *UiText) UnmarshalJSON(data []byte) (err error) { type _UiText (line 34) | type _UiText function NewUiText (line 40) | func NewUiText(id int64, text string, type_ string) *UiText { function NewUiTextWithDefaults (line 51) | func NewUiTextWithDefaults() *UiText { type NullableUiText (line 231) | type NullableUiText struct method Get (line 236) | func (v NullableUiText) Get() *UiText { method Set (line 240) | func (v *NullableUiText) Set(val *UiText) { method IsSet (line 245) | func (v NullableUiText) IsSet() bool { method Unset (line 249) | func (v *NullableUiText) Unset() { method MarshalJSON (line 258) | func (v NullableUiText) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 262) | func (v *NullableUiText) UnmarshalJSON(src []byte) error { function NewNullableUiText (line 254) | func NewNullableUiText(val *UiText) *NullableUiText { FILE: pkg/httpclient/model_update_fedcm_flow_body.go type UpdateFedcmFlowBody (line 23) | type UpdateFedcmFlowBody struct method GetCsrfToken (line 57) | func (o *UpdateFedcmFlowBody) GetCsrfToken() string { method GetCsrfTokenOk (line 68) | func (o *UpdateFedcmFlowBody) GetCsrfTokenOk() (*string, bool) { method SetCsrfToken (line 76) | func (o *UpdateFedcmFlowBody) SetCsrfToken(v string) { method GetNonce (line 81) | func (o *UpdateFedcmFlowBody) GetNonce() string { method GetNonceOk (line 91) | func (o *UpdateFedcmFlowBody) GetNonceOk() (*string, bool) { method HasNonce (line 99) | func (o *UpdateFedcmFlowBody) HasNonce() bool { method SetNonce (line 108) | func (o *UpdateFedcmFlowBody) SetNonce(v string) { method GetToken (line 113) | func (o *UpdateFedcmFlowBody) GetToken() string { method GetTokenOk (line 124) | func (o *UpdateFedcmFlowBody) GetTokenOk() (*string, bool) { method SetToken (line 132) | func (o *UpdateFedcmFlowBody) SetToken(v string) { method GetTransientPayload (line 137) | func (o *UpdateFedcmFlowBody) GetTransientPayload() map[string]interfa... method GetTransientPayloadOk (line 147) | func (o *UpdateFedcmFlowBody) GetTransientPayloadOk() (map[string]inte... method HasTransientPayload (line 155) | func (o *UpdateFedcmFlowBody) HasTransientPayload() bool { method SetTransientPayload (line 164) | func (o *UpdateFedcmFlowBody) SetTransientPayload(v map[string]interfa... method MarshalJSON (line 168) | func (o UpdateFedcmFlowBody) MarshalJSON() ([]byte, error) { method ToMap (line 176) | func (o UpdateFedcmFlowBody) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 194) | func (o *UpdateFedcmFlowBody) UnmarshalJSON(data []byte) (err error) { type _UpdateFedcmFlowBody (line 35) | type _UpdateFedcmFlowBody function NewUpdateFedcmFlowBody (line 41) | func NewUpdateFedcmFlowBody(csrfToken string, token string) *UpdateFedcm... function NewUpdateFedcmFlowBodyWithDefaults (line 51) | func NewUpdateFedcmFlowBodyWithDefaults() *UpdateFedcmFlowBody { type NullableUpdateFedcmFlowBody (line 240) | type NullableUpdateFedcmFlowBody struct method Get (line 245) | func (v NullableUpdateFedcmFlowBody) Get() *UpdateFedcmFlowBody { method Set (line 249) | func (v *NullableUpdateFedcmFlowBody) Set(val *UpdateFedcmFlowBody) { method IsSet (line 254) | func (v NullableUpdateFedcmFlowBody) IsSet() bool { method Unset (line 258) | func (v *NullableUpdateFedcmFlowBody) Unset() { method MarshalJSON (line 267) | func (v NullableUpdateFedcmFlowBody) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 271) | func (v *NullableUpdateFedcmFlowBody) UnmarshalJSON(src []byte) error { function NewNullableUpdateFedcmFlowBody (line 263) | func NewNullableUpdateFedcmFlowBody(val *UpdateFedcmFlowBody) *NullableU... FILE: pkg/httpclient/model_update_identity_body.go type UpdateIdentityBody (line 23) | type UpdateIdentityBody struct method GetCredentials (line 63) | func (o *UpdateIdentityBody) GetCredentials() IdentityWithCredentials { method GetCredentialsOk (line 73) | func (o *UpdateIdentityBody) GetCredentialsOk() (*IdentityWithCredenti... method HasCredentials (line 81) | func (o *UpdateIdentityBody) HasCredentials() bool { method SetCredentials (line 90) | func (o *UpdateIdentityBody) SetCredentials(v IdentityWithCredentials) { method GetExternalId (line 95) | func (o *UpdateIdentityBody) GetExternalId() string { method GetExternalIdOk (line 105) | func (o *UpdateIdentityBody) GetExternalIdOk() (*string, bool) { method HasExternalId (line 113) | func (o *UpdateIdentityBody) HasExternalId() bool { method SetExternalId (line 122) | func (o *UpdateIdentityBody) SetExternalId(v string) { method GetMetadataAdmin (line 127) | func (o *UpdateIdentityBody) GetMetadataAdmin() interface{} { method GetMetadataAdminOk (line 138) | func (o *UpdateIdentityBody) GetMetadataAdminOk() (*interface{}, bool) { method HasMetadataAdmin (line 146) | func (o *UpdateIdentityBody) HasMetadataAdmin() bool { method SetMetadataAdmin (line 155) | func (o *UpdateIdentityBody) SetMetadataAdmin(v interface{}) { method GetMetadataPublic (line 160) | func (o *UpdateIdentityBody) GetMetadataPublic() interface{} { method GetMetadataPublicOk (line 171) | func (o *UpdateIdentityBody) GetMetadataPublicOk() (*interface{}, bool) { method HasMetadataPublic (line 179) | func (o *UpdateIdentityBody) HasMetadataPublic() bool { method SetMetadataPublic (line 188) | func (o *UpdateIdentityBody) SetMetadataPublic(v interface{}) { method GetSchemaId (line 193) | func (o *UpdateIdentityBody) GetSchemaId() string { method GetSchemaIdOk (line 204) | func (o *UpdateIdentityBody) GetSchemaIdOk() (*string, bool) { method SetSchemaId (line 212) | func (o *UpdateIdentityBody) SetSchemaId(v string) { method GetState (line 217) | func (o *UpdateIdentityBody) GetState() string { method GetStateOk (line 228) | func (o *UpdateIdentityBody) GetStateOk() (*string, bool) { method SetState (line 236) | func (o *UpdateIdentityBody) SetState(v string) { method GetTraits (line 241) | func (o *UpdateIdentityBody) GetTraits() map[string]interface{} { method GetTraitsOk (line 252) | func (o *UpdateIdentityBody) GetTraitsOk() (map[string]interface{}, bo... method SetTraits (line 260) | func (o *UpdateIdentityBody) SetTraits(v map[string]interface{}) { method MarshalJSON (line 264) | func (o UpdateIdentityBody) MarshalJSON() ([]byte, error) { method ToMap (line 272) | func (o UpdateIdentityBody) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 297) | func (o *UpdateIdentityBody) UnmarshalJSON(data []byte) (err error) { type _UpdateIdentityBody (line 40) | type _UpdateIdentityBody function NewUpdateIdentityBody (line 46) | func NewUpdateIdentityBody(schemaId string, state string, traits map[str... function NewUpdateIdentityBodyWithDefaults (line 57) | func NewUpdateIdentityBodyWithDefaults() *UpdateIdentityBody { type NullableUpdateIdentityBody (line 347) | type NullableUpdateIdentityBody struct method Get (line 352) | func (v NullableUpdateIdentityBody) Get() *UpdateIdentityBody { method Set (line 356) | func (v *NullableUpdateIdentityBody) Set(val *UpdateIdentityBody) { method IsSet (line 361) | func (v NullableUpdateIdentityBody) IsSet() bool { method Unset (line 365) | func (v *NullableUpdateIdentityBody) Unset() { method MarshalJSON (line 374) | func (v NullableUpdateIdentityBody) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 378) | func (v *NullableUpdateIdentityBody) UnmarshalJSON(src []byte) error { function NewNullableUpdateIdentityBody (line 370) | func NewNullableUpdateIdentityBody(val *UpdateIdentityBody) *NullableUpd... FILE: pkg/httpclient/model_update_login_flow_body.go type UpdateLoginFlowBody (line 20) | type UpdateLoginFlowBody struct method UnmarshalJSON (line 96) | func (dst *UpdateLoginFlowBody) UnmarshalJSON(data []byte) error { method MarshalJSON (line 325) | func (src UpdateLoginFlowBody) MarshalJSON() ([]byte, error) { method GetActualInstance (line 366) | func (obj *UpdateLoginFlowBody) GetActualInstance() interface{} { method GetActualInstanceValue (line 411) | func (obj UpdateLoginFlowBody) GetActualInstanceValue() interface{} { function UpdateLoginFlowWithCodeMethodAsUpdateLoginFlowBody (line 33) | func UpdateLoginFlowWithCodeMethodAsUpdateLoginFlowBody(v *UpdateLoginFl... function UpdateLoginFlowWithIdentifierFirstMethodAsUpdateLoginFlowBody (line 40) | func UpdateLoginFlowWithIdentifierFirstMethodAsUpdateLoginFlowBody(v *Up... function UpdateLoginFlowWithLookupSecretMethodAsUpdateLoginFlowBody (line 47) | func UpdateLoginFlowWithLookupSecretMethodAsUpdateLoginFlowBody(v *Updat... function UpdateLoginFlowWithOidcMethodAsUpdateLoginFlowBody (line 54) | func UpdateLoginFlowWithOidcMethodAsUpdateLoginFlowBody(v *UpdateLoginFl... function UpdateLoginFlowWithPasskeyMethodAsUpdateLoginFlowBody (line 61) | func UpdateLoginFlowWithPasskeyMethodAsUpdateLoginFlowBody(v *UpdateLogi... function UpdateLoginFlowWithPasswordMethodAsUpdateLoginFlowBody (line 68) | func UpdateLoginFlowWithPasswordMethodAsUpdateLoginFlowBody(v *UpdateLog... function UpdateLoginFlowWithSamlMethodAsUpdateLoginFlowBody (line 75) | func UpdateLoginFlowWithSamlMethodAsUpdateLoginFlowBody(v *UpdateLoginFl... function UpdateLoginFlowWithTotpMethodAsUpdateLoginFlowBody (line 82) | func UpdateLoginFlowWithTotpMethodAsUpdateLoginFlowBody(v *UpdateLoginFl... function UpdateLoginFlowWithWebAuthnMethodAsUpdateLoginFlowBody (line 89) | func UpdateLoginFlowWithWebAuthnMethodAsUpdateLoginFlowBody(v *UpdateLog... type NullableUpdateLoginFlowBody (line 452) | type NullableUpdateLoginFlowBody struct method Get (line 457) | func (v NullableUpdateLoginFlowBody) Get() *UpdateLoginFlowBody { method Set (line 461) | func (v *NullableUpdateLoginFlowBody) Set(val *UpdateLoginFlowBody) { method IsSet (line 466) | func (v NullableUpdateLoginFlowBody) IsSet() bool { method Unset (line 470) | func (v *NullableUpdateLoginFlowBody) Unset() { method MarshalJSON (line 479) | func (v NullableUpdateLoginFlowBody) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 483) | func (v *NullableUpdateLoginFlowBody) UnmarshalJSON(src []byte) error { function NewNullableUpdateLoginFlowBody (line 475) | func NewNullableUpdateLoginFlowBody(val *UpdateLoginFlowBody) *NullableU... FILE: pkg/httpclient/model_update_login_flow_with_code_method.go type UpdateLoginFlowWithCodeMethod (line 23) | type UpdateLoginFlowWithCodeMethod struct method GetAddress (line 63) | func (o *UpdateLoginFlowWithCodeMethod) GetAddress() string { method GetAddressOk (line 73) | func (o *UpdateLoginFlowWithCodeMethod) GetAddressOk() (*string, bool) { method HasAddress (line 81) | func (o *UpdateLoginFlowWithCodeMethod) HasAddress() bool { method SetAddress (line 90) | func (o *UpdateLoginFlowWithCodeMethod) SetAddress(v string) { method GetCode (line 95) | func (o *UpdateLoginFlowWithCodeMethod) GetCode() string { method GetCodeOk (line 105) | func (o *UpdateLoginFlowWithCodeMethod) GetCodeOk() (*string, bool) { method HasCode (line 113) | func (o *UpdateLoginFlowWithCodeMethod) HasCode() bool { method SetCode (line 122) | func (o *UpdateLoginFlowWithCodeMethod) SetCode(v string) { method GetCsrfToken (line 127) | func (o *UpdateLoginFlowWithCodeMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 138) | func (o *UpdateLoginFlowWithCodeMethod) GetCsrfTokenOk() (*string, boo... method SetCsrfToken (line 146) | func (o *UpdateLoginFlowWithCodeMethod) SetCsrfToken(v string) { method GetIdentifier (line 151) | func (o *UpdateLoginFlowWithCodeMethod) GetIdentifier() string { method GetIdentifierOk (line 161) | func (o *UpdateLoginFlowWithCodeMethod) GetIdentifierOk() (*string, bo... method HasIdentifier (line 169) | func (o *UpdateLoginFlowWithCodeMethod) HasIdentifier() bool { method SetIdentifier (line 178) | func (o *UpdateLoginFlowWithCodeMethod) SetIdentifier(v string) { method GetMethod (line 183) | func (o *UpdateLoginFlowWithCodeMethod) GetMethod() string { method GetMethodOk (line 194) | func (o *UpdateLoginFlowWithCodeMethod) GetMethodOk() (*string, bool) { method SetMethod (line 202) | func (o *UpdateLoginFlowWithCodeMethod) SetMethod(v string) { method GetResend (line 207) | func (o *UpdateLoginFlowWithCodeMethod) GetResend() string { method GetResendOk (line 217) | func (o *UpdateLoginFlowWithCodeMethod) GetResendOk() (*string, bool) { method HasResend (line 225) | func (o *UpdateLoginFlowWithCodeMethod) HasResend() bool { method SetResend (line 234) | func (o *UpdateLoginFlowWithCodeMethod) SetResend(v string) { method GetTransientPayload (line 239) | func (o *UpdateLoginFlowWithCodeMethod) GetTransientPayload() map[stri... method GetTransientPayloadOk (line 249) | func (o *UpdateLoginFlowWithCodeMethod) GetTransientPayloadOk() (map[s... method HasTransientPayload (line 257) | func (o *UpdateLoginFlowWithCodeMethod) HasTransientPayload() bool { method SetTransientPayload (line 266) | func (o *UpdateLoginFlowWithCodeMethod) SetTransientPayload(v map[stri... method MarshalJSON (line 270) | func (o UpdateLoginFlowWithCodeMethod) MarshalJSON() ([]byte, error) { method ToMap (line 278) | func (o UpdateLoginFlowWithCodeMethod) ToMap() (map[string]interface{}... method UnmarshalJSON (line 305) | func (o *UpdateLoginFlowWithCodeMethod) UnmarshalJSON(data []byte) (er... type _UpdateLoginFlowWithCodeMethod (line 41) | type _UpdateLoginFlowWithCodeMethod function NewUpdateLoginFlowWithCodeMethod (line 47) | func NewUpdateLoginFlowWithCodeMethod(csrfToken string, method string) *... function NewUpdateLoginFlowWithCodeMethodWithDefaults (line 57) | func NewUpdateLoginFlowWithCodeMethodWithDefaults() *UpdateLoginFlowWith... type NullableUpdateLoginFlowWithCodeMethod (line 354) | type NullableUpdateLoginFlowWithCodeMethod struct method Get (line 359) | func (v NullableUpdateLoginFlowWithCodeMethod) Get() *UpdateLoginFlowW... method Set (line 363) | func (v *NullableUpdateLoginFlowWithCodeMethod) Set(val *UpdateLoginFl... method IsSet (line 368) | func (v NullableUpdateLoginFlowWithCodeMethod) IsSet() bool { method Unset (line 372) | func (v *NullableUpdateLoginFlowWithCodeMethod) Unset() { method MarshalJSON (line 381) | func (v NullableUpdateLoginFlowWithCodeMethod) MarshalJSON() ([]byte, ... method UnmarshalJSON (line 385) | func (v *NullableUpdateLoginFlowWithCodeMethod) UnmarshalJSON(src []by... function NewNullableUpdateLoginFlowWithCodeMethod (line 377) | func NewNullableUpdateLoginFlowWithCodeMethod(val *UpdateLoginFlowWithCo... FILE: pkg/httpclient/model_update_login_flow_with_identifier_first_method.go type UpdateLoginFlowWithIdentifierFirstMethod (line 23) | type UpdateLoginFlowWithIdentifierFirstMethod struct method GetCsrfToken (line 57) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) GetCsrfToken() stri... method GetCsrfTokenOk (line 67) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) GetCsrfTokenOk() (*... method HasCsrfToken (line 75) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) HasCsrfToken() bool { method SetCsrfToken (line 84) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) SetCsrfToken(v stri... method GetIdentifier (line 89) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) GetIdentifier() str... method GetIdentifierOk (line 100) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) GetIdentifierOk() (... method SetIdentifier (line 108) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) SetIdentifier(v str... method GetMethod (line 113) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) GetMethod() string { method GetMethodOk (line 124) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) GetMethodOk() (*str... method SetMethod (line 132) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) SetMethod(v string) { method GetTransientPayload (line 137) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) GetTransientPayload... method GetTransientPayloadOk (line 147) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) GetTransientPayload... method HasTransientPayload (line 155) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) HasTransientPayload... method SetTransientPayload (line 164) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) SetTransientPayload... method MarshalJSON (line 168) | func (o UpdateLoginFlowWithIdentifierFirstMethod) MarshalJSON() ([]byt... method ToMap (line 176) | func (o UpdateLoginFlowWithIdentifierFirstMethod) ToMap() (map[string]... method UnmarshalJSON (line 194) | func (o *UpdateLoginFlowWithIdentifierFirstMethod) UnmarshalJSON(data ... type _UpdateLoginFlowWithIdentifierFirstMethod (line 35) | type _UpdateLoginFlowWithIdentifierFirstMethod function NewUpdateLoginFlowWithIdentifierFirstMethod (line 41) | func NewUpdateLoginFlowWithIdentifierFirstMethod(identifier string, meth... function NewUpdateLoginFlowWithIdentifierFirstMethodWithDefaults (line 51) | func NewUpdateLoginFlowWithIdentifierFirstMethodWithDefaults() *UpdateLo... type NullableUpdateLoginFlowWithIdentifierFirstMethod (line 240) | type NullableUpdateLoginFlowWithIdentifierFirstMethod struct method Get (line 245) | func (v NullableUpdateLoginFlowWithIdentifierFirstMethod) Get() *Updat... method Set (line 249) | func (v *NullableUpdateLoginFlowWithIdentifierFirstMethod) Set(val *Up... method IsSet (line 254) | func (v NullableUpdateLoginFlowWithIdentifierFirstMethod) IsSet() bool { method Unset (line 258) | func (v *NullableUpdateLoginFlowWithIdentifierFirstMethod) Unset() { method MarshalJSON (line 267) | func (v NullableUpdateLoginFlowWithIdentifierFirstMethod) MarshalJSON(... method UnmarshalJSON (line 271) | func (v *NullableUpdateLoginFlowWithIdentifierFirstMethod) UnmarshalJS... function NewNullableUpdateLoginFlowWithIdentifierFirstMethod (line 263) | func NewNullableUpdateLoginFlowWithIdentifierFirstMethod(val *UpdateLogi... FILE: pkg/httpclient/model_update_login_flow_with_lookup_secret_method.go type UpdateLoginFlowWithLookupSecretMethod (line 23) | type UpdateLoginFlowWithLookupSecretMethod struct method GetCsrfToken (line 55) | func (o *UpdateLoginFlowWithLookupSecretMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 65) | func (o *UpdateLoginFlowWithLookupSecretMethod) GetCsrfTokenOk() (*str... method HasCsrfToken (line 73) | func (o *UpdateLoginFlowWithLookupSecretMethod) HasCsrfToken() bool { method SetCsrfToken (line 82) | func (o *UpdateLoginFlowWithLookupSecretMethod) SetCsrfToken(v string) { method GetLookupSecret (line 87) | func (o *UpdateLoginFlowWithLookupSecretMethod) GetLookupSecret() stri... method GetLookupSecretOk (line 98) | func (o *UpdateLoginFlowWithLookupSecretMethod) GetLookupSecretOk() (*... method SetLookupSecret (line 106) | func (o *UpdateLoginFlowWithLookupSecretMethod) SetLookupSecret(v stri... method GetMethod (line 111) | func (o *UpdateLoginFlowWithLookupSecretMethod) GetMethod() string { method GetMethodOk (line 122) | func (o *UpdateLoginFlowWithLookupSecretMethod) GetMethodOk() (*string... method SetMethod (line 130) | func (o *UpdateLoginFlowWithLookupSecretMethod) SetMethod(v string) { method MarshalJSON (line 134) | func (o UpdateLoginFlowWithLookupSecretMethod) MarshalJSON() ([]byte, ... method ToMap (line 142) | func (o UpdateLoginFlowWithLookupSecretMethod) ToMap() (map[string]int... method UnmarshalJSON (line 157) | func (o *UpdateLoginFlowWithLookupSecretMethod) UnmarshalJSON(data []b... type _UpdateLoginFlowWithLookupSecretMethod (line 33) | type _UpdateLoginFlowWithLookupSecretMethod function NewUpdateLoginFlowWithLookupSecretMethod (line 39) | func NewUpdateLoginFlowWithLookupSecretMethod(lookupSecret string, metho... function NewUpdateLoginFlowWithLookupSecretMethodWithDefaults (line 49) | func NewUpdateLoginFlowWithLookupSecretMethodWithDefaults() *UpdateLogin... type NullableUpdateLoginFlowWithLookupSecretMethod (line 202) | type NullableUpdateLoginFlowWithLookupSecretMethod struct method Get (line 207) | func (v NullableUpdateLoginFlowWithLookupSecretMethod) Get() *UpdateLo... method Set (line 211) | func (v *NullableUpdateLoginFlowWithLookupSecretMethod) Set(val *Updat... method IsSet (line 216) | func (v NullableUpdateLoginFlowWithLookupSecretMethod) IsSet() bool { method Unset (line 220) | func (v *NullableUpdateLoginFlowWithLookupSecretMethod) Unset() { method MarshalJSON (line 229) | func (v NullableUpdateLoginFlowWithLookupSecretMethod) MarshalJSON() (... method UnmarshalJSON (line 233) | func (v *NullableUpdateLoginFlowWithLookupSecretMethod) UnmarshalJSON(... function NewNullableUpdateLoginFlowWithLookupSecretMethod (line 225) | func NewNullableUpdateLoginFlowWithLookupSecretMethod(val *UpdateLoginFl... FILE: pkg/httpclient/model_update_login_flow_with_oidc_method.go type UpdateLoginFlowWithOidcMethod (line 23) | type UpdateLoginFlowWithOidcMethod struct method GetCsrfToken (line 65) | func (o *UpdateLoginFlowWithOidcMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 75) | func (o *UpdateLoginFlowWithOidcMethod) GetCsrfTokenOk() (*string, boo... method HasCsrfToken (line 83) | func (o *UpdateLoginFlowWithOidcMethod) HasCsrfToken() bool { method SetCsrfToken (line 92) | func (o *UpdateLoginFlowWithOidcMethod) SetCsrfToken(v string) { method GetIdToken (line 97) | func (o *UpdateLoginFlowWithOidcMethod) GetIdToken() string { method GetIdTokenOk (line 107) | func (o *UpdateLoginFlowWithOidcMethod) GetIdTokenOk() (*string, bool) { method HasIdToken (line 115) | func (o *UpdateLoginFlowWithOidcMethod) HasIdToken() bool { method SetIdToken (line 124) | func (o *UpdateLoginFlowWithOidcMethod) SetIdToken(v string) { method GetIdTokenNonce (line 129) | func (o *UpdateLoginFlowWithOidcMethod) GetIdTokenNonce() string { method GetIdTokenNonceOk (line 139) | func (o *UpdateLoginFlowWithOidcMethod) GetIdTokenNonceOk() (*string, ... method HasIdTokenNonce (line 147) | func (o *UpdateLoginFlowWithOidcMethod) HasIdTokenNonce() bool { method SetIdTokenNonce (line 156) | func (o *UpdateLoginFlowWithOidcMethod) SetIdTokenNonce(v string) { method GetMethod (line 161) | func (o *UpdateLoginFlowWithOidcMethod) GetMethod() string { method GetMethodOk (line 172) | func (o *UpdateLoginFlowWithOidcMethod) GetMethodOk() (*string, bool) { method SetMethod (line 180) | func (o *UpdateLoginFlowWithOidcMethod) SetMethod(v string) { method GetProvider (line 185) | func (o *UpdateLoginFlowWithOidcMethod) GetProvider() string { method GetProviderOk (line 196) | func (o *UpdateLoginFlowWithOidcMethod) GetProviderOk() (*string, bool) { method SetProvider (line 204) | func (o *UpdateLoginFlowWithOidcMethod) SetProvider(v string) { method GetTraits (line 209) | func (o *UpdateLoginFlowWithOidcMethod) GetTraits() map[string]interfa... method GetTraitsOk (line 219) | func (o *UpdateLoginFlowWithOidcMethod) GetTraitsOk() (map[string]inte... method HasTraits (line 227) | func (o *UpdateLoginFlowWithOidcMethod) HasTraits() bool { method SetTraits (line 236) | func (o *UpdateLoginFlowWithOidcMethod) SetTraits(v map[string]interfa... method GetTransientPayload (line 241) | func (o *UpdateLoginFlowWithOidcMethod) GetTransientPayload() map[stri... method GetTransientPayloadOk (line 251) | func (o *UpdateLoginFlowWithOidcMethod) GetTransientPayloadOk() (map[s... method HasTransientPayload (line 259) | func (o *UpdateLoginFlowWithOidcMethod) HasTransientPayload() bool { method SetTransientPayload (line 268) | func (o *UpdateLoginFlowWithOidcMethod) SetTransientPayload(v map[stri... method GetUpstreamParameters (line 273) | func (o *UpdateLoginFlowWithOidcMethod) GetUpstreamParameters() map[st... method GetUpstreamParametersOk (line 283) | func (o *UpdateLoginFlowWithOidcMethod) GetUpstreamParametersOk() (map... method HasUpstreamParameters (line 291) | func (o *UpdateLoginFlowWithOidcMethod) HasUpstreamParameters() bool { method SetUpstreamParameters (line 300) | func (o *UpdateLoginFlowWithOidcMethod) SetUpstreamParameters(v map[st... method MarshalJSON (line 304) | func (o UpdateLoginFlowWithOidcMethod) MarshalJSON() ([]byte, error) { method ToMap (line 312) | func (o UpdateLoginFlowWithOidcMethod) ToMap() (map[string]interface{}... method UnmarshalJSON (line 342) | func (o *UpdateLoginFlowWithOidcMethod) UnmarshalJSON(data []byte) (er... type _UpdateLoginFlowWithOidcMethod (line 43) | type _UpdateLoginFlowWithOidcMethod function NewUpdateLoginFlowWithOidcMethod (line 49) | func NewUpdateLoginFlowWithOidcMethod(method string, provider string) *U... function NewUpdateLoginFlowWithOidcMethodWithDefaults (line 59) | func NewUpdateLoginFlowWithOidcMethodWithDefaults() *UpdateLoginFlowWith... type NullableUpdateLoginFlowWithOidcMethod (line 392) | type NullableUpdateLoginFlowWithOidcMethod struct method Get (line 397) | func (v NullableUpdateLoginFlowWithOidcMethod) Get() *UpdateLoginFlowW... method Set (line 401) | func (v *NullableUpdateLoginFlowWithOidcMethod) Set(val *UpdateLoginFl... method IsSet (line 406) | func (v NullableUpdateLoginFlowWithOidcMethod) IsSet() bool { method Unset (line 410) | func (v *NullableUpdateLoginFlowWithOidcMethod) Unset() { method MarshalJSON (line 419) | func (v NullableUpdateLoginFlowWithOidcMethod) MarshalJSON() ([]byte, ... method UnmarshalJSON (line 423) | func (v *NullableUpdateLoginFlowWithOidcMethod) UnmarshalJSON(src []by... function NewNullableUpdateLoginFlowWithOidcMethod (line 415) | func NewNullableUpdateLoginFlowWithOidcMethod(val *UpdateLoginFlowWithOi... FILE: pkg/httpclient/model_update_login_flow_with_passkey_method.go type UpdateLoginFlowWithPasskeyMethod (line 23) | type UpdateLoginFlowWithPasskeyMethod struct method GetCsrfToken (line 54) | func (o *UpdateLoginFlowWithPasskeyMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 64) | func (o *UpdateLoginFlowWithPasskeyMethod) GetCsrfTokenOk() (*string, ... method HasCsrfToken (line 72) | func (o *UpdateLoginFlowWithPasskeyMethod) HasCsrfToken() bool { method SetCsrfToken (line 81) | func (o *UpdateLoginFlowWithPasskeyMethod) SetCsrfToken(v string) { method GetMethod (line 86) | func (o *UpdateLoginFlowWithPasskeyMethod) GetMethod() string { method GetMethodOk (line 97) | func (o *UpdateLoginFlowWithPasskeyMethod) GetMethodOk() (*string, boo... method SetMethod (line 105) | func (o *UpdateLoginFlowWithPasskeyMethod) SetMethod(v string) { method GetPasskeyLogin (line 110) | func (o *UpdateLoginFlowWithPasskeyMethod) GetPasskeyLogin() string { method GetPasskeyLoginOk (line 120) | func (o *UpdateLoginFlowWithPasskeyMethod) GetPasskeyLoginOk() (*strin... method HasPasskeyLogin (line 128) | func (o *UpdateLoginFlowWithPasskeyMethod) HasPasskeyLogin() bool { method SetPasskeyLogin (line 137) | func (o *UpdateLoginFlowWithPasskeyMethod) SetPasskeyLogin(v string) { method MarshalJSON (line 141) | func (o UpdateLoginFlowWithPasskeyMethod) MarshalJSON() ([]byte, error) { method ToMap (line 149) | func (o UpdateLoginFlowWithPasskeyMethod) ToMap() (map[string]interfac... method UnmarshalJSON (line 166) | func (o *UpdateLoginFlowWithPasskeyMethod) UnmarshalJSON(data []byte) ... type _UpdateLoginFlowWithPasskeyMethod (line 33) | type _UpdateLoginFlowWithPasskeyMethod function NewUpdateLoginFlowWithPasskeyMethod (line 39) | func NewUpdateLoginFlowWithPasskeyMethod(method string) *UpdateLoginFlow... function NewUpdateLoginFlowWithPasskeyMethodWithDefaults (line 48) | func NewUpdateLoginFlowWithPasskeyMethodWithDefaults() *UpdateLoginFlowW... type NullableUpdateLoginFlowWithPasskeyMethod (line 210) | type NullableUpdateLoginFlowWithPasskeyMethod struct method Get (line 215) | func (v NullableUpdateLoginFlowWithPasskeyMethod) Get() *UpdateLoginFl... method Set (line 219) | func (v *NullableUpdateLoginFlowWithPasskeyMethod) Set(val *UpdateLogi... method IsSet (line 224) | func (v NullableUpdateLoginFlowWithPasskeyMethod) IsSet() bool { method Unset (line 228) | func (v *NullableUpdateLoginFlowWithPasskeyMethod) Unset() { method MarshalJSON (line 237) | func (v NullableUpdateLoginFlowWithPasskeyMethod) MarshalJSON() ([]byt... method UnmarshalJSON (line 241) | func (v *NullableUpdateLoginFlowWithPasskeyMethod) UnmarshalJSON(src [... function NewNullableUpdateLoginFlowWithPasskeyMethod (line 233) | func NewNullableUpdateLoginFlowWithPasskeyMethod(val *UpdateLoginFlowWit... FILE: pkg/httpclient/model_update_login_flow_with_password_method.go type UpdateLoginFlowWithPasswordMethod (line 23) | type UpdateLoginFlowWithPasswordMethod struct method GetCsrfToken (line 62) | func (o *UpdateLoginFlowWithPasswordMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 72) | func (o *UpdateLoginFlowWithPasswordMethod) GetCsrfTokenOk() (*string,... method HasCsrfToken (line 80) | func (o *UpdateLoginFlowWithPasswordMethod) HasCsrfToken() bool { method SetCsrfToken (line 89) | func (o *UpdateLoginFlowWithPasswordMethod) SetCsrfToken(v string) { method GetIdentifier (line 94) | func (o *UpdateLoginFlowWithPasswordMethod) GetIdentifier() string { method GetIdentifierOk (line 105) | func (o *UpdateLoginFlowWithPasswordMethod) GetIdentifierOk() (*string... method SetIdentifier (line 113) | func (o *UpdateLoginFlowWithPasswordMethod) SetIdentifier(v string) { method GetMethod (line 118) | func (o *UpdateLoginFlowWithPasswordMethod) GetMethod() string { method GetMethodOk (line 129) | func (o *UpdateLoginFlowWithPasswordMethod) GetMethodOk() (*string, bo... method SetMethod (line 137) | func (o *UpdateLoginFlowWithPasswordMethod) SetMethod(v string) { method GetPassword (line 142) | func (o *UpdateLoginFlowWithPasswordMethod) GetPassword() string { method GetPasswordOk (line 153) | func (o *UpdateLoginFlowWithPasswordMethod) GetPasswordOk() (*string, ... method SetPassword (line 161) | func (o *UpdateLoginFlowWithPasswordMethod) SetPassword(v string) { method GetPasswordIdentifier (line 166) | func (o *UpdateLoginFlowWithPasswordMethod) GetPasswordIdentifier() st... method GetPasswordIdentifierOk (line 176) | func (o *UpdateLoginFlowWithPasswordMethod) GetPasswordIdentifierOk() ... method HasPasswordIdentifier (line 184) | func (o *UpdateLoginFlowWithPasswordMethod) HasPasswordIdentifier() bo... method SetPasswordIdentifier (line 193) | func (o *UpdateLoginFlowWithPasswordMethod) SetPasswordIdentifier(v st... method GetTransientPayload (line 198) | func (o *UpdateLoginFlowWithPasswordMethod) GetTransientPayload() map[... method GetTransientPayloadOk (line 208) | func (o *UpdateLoginFlowWithPasswordMethod) GetTransientPayloadOk() (m... method HasTransientPayload (line 216) | func (o *UpdateLoginFlowWithPasswordMethod) HasTransientPayload() bool { method SetTransientPayload (line 225) | func (o *UpdateLoginFlowWithPasswordMethod) SetTransientPayload(v map[... method MarshalJSON (line 229) | func (o UpdateLoginFlowWithPasswordMethod) MarshalJSON() ([]byte, erro... method ToMap (line 237) | func (o UpdateLoginFlowWithPasswordMethod) ToMap() (map[string]interfa... method UnmarshalJSON (line 259) | func (o *UpdateLoginFlowWithPasswordMethod) UnmarshalJSON(data []byte)... type _UpdateLoginFlowWithPasswordMethod (line 39) | type _UpdateLoginFlowWithPasswordMethod function NewUpdateLoginFlowWithPasswordMethod (line 45) | func NewUpdateLoginFlowWithPasswordMethod(identifier string, method stri... function NewUpdateLoginFlowWithPasswordMethodWithDefaults (line 56) | func NewUpdateLoginFlowWithPasswordMethodWithDefaults() *UpdateLoginFlow... type NullableUpdateLoginFlowWithPasswordMethod (line 308) | type NullableUpdateLoginFlowWithPasswordMethod struct method Get (line 313) | func (v NullableUpdateLoginFlowWithPasswordMethod) Get() *UpdateLoginF... method Set (line 317) | func (v *NullableUpdateLoginFlowWithPasswordMethod) Set(val *UpdateLog... method IsSet (line 322) | func (v NullableUpdateLoginFlowWithPasswordMethod) IsSet() bool { method Unset (line 326) | func (v *NullableUpdateLoginFlowWithPasswordMethod) Unset() { method MarshalJSON (line 335) | func (v NullableUpdateLoginFlowWithPasswordMethod) MarshalJSON() ([]by... method UnmarshalJSON (line 339) | func (v *NullableUpdateLoginFlowWithPasswordMethod) UnmarshalJSON(src ... function NewNullableUpdateLoginFlowWithPasswordMethod (line 331) | func NewNullableUpdateLoginFlowWithPasswordMethod(val *UpdateLoginFlowWi... FILE: pkg/httpclient/model_update_login_flow_with_saml_method.go type UpdateLoginFlowWithSamlMethod (line 23) | type UpdateLoginFlowWithSamlMethod struct method GetCsrfToken (line 57) | func (o *UpdateLoginFlowWithSamlMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 67) | func (o *UpdateLoginFlowWithSamlMethod) GetCsrfTokenOk() (*string, boo... method HasCsrfToken (line 75) | func (o *UpdateLoginFlowWithSamlMethod) HasCsrfToken() bool { method SetCsrfToken (line 84) | func (o *UpdateLoginFlowWithSamlMethod) SetCsrfToken(v string) { method GetMethod (line 89) | func (o *UpdateLoginFlowWithSamlMethod) GetMethod() string { method GetMethodOk (line 100) | func (o *UpdateLoginFlowWithSamlMethod) GetMethodOk() (*string, bool) { method SetMethod (line 108) | func (o *UpdateLoginFlowWithSamlMethod) SetMethod(v string) { method GetProvider (line 113) | func (o *UpdateLoginFlowWithSamlMethod) GetProvider() string { method GetProviderOk (line 124) | func (o *UpdateLoginFlowWithSamlMethod) GetProviderOk() (*string, bool) { method SetProvider (line 132) | func (o *UpdateLoginFlowWithSamlMethod) SetProvider(v string) { method GetTransientPayload (line 137) | func (o *UpdateLoginFlowWithSamlMethod) GetTransientPayload() map[stri... method GetTransientPayloadOk (line 147) | func (o *UpdateLoginFlowWithSamlMethod) GetTransientPayloadOk() (map[s... method HasTransientPayload (line 155) | func (o *UpdateLoginFlowWithSamlMethod) HasTransientPayload() bool { method SetTransientPayload (line 164) | func (o *UpdateLoginFlowWithSamlMethod) SetTransientPayload(v map[stri... method MarshalJSON (line 168) | func (o UpdateLoginFlowWithSamlMethod) MarshalJSON() ([]byte, error) { method ToMap (line 176) | func (o UpdateLoginFlowWithSamlMethod) ToMap() (map[string]interface{}... method UnmarshalJSON (line 194) | func (o *UpdateLoginFlowWithSamlMethod) UnmarshalJSON(data []byte) (er... type _UpdateLoginFlowWithSamlMethod (line 35) | type _UpdateLoginFlowWithSamlMethod function NewUpdateLoginFlowWithSamlMethod (line 41) | func NewUpdateLoginFlowWithSamlMethod(method string, provider string) *U... function NewUpdateLoginFlowWithSamlMethodWithDefaults (line 51) | func NewUpdateLoginFlowWithSamlMethodWithDefaults() *UpdateLoginFlowWith... type NullableUpdateLoginFlowWithSamlMethod (line 240) | type NullableUpdateLoginFlowWithSamlMethod struct method Get (line 245) | func (v NullableUpdateLoginFlowWithSamlMethod) Get() *UpdateLoginFlowW... method Set (line 249) | func (v *NullableUpdateLoginFlowWithSamlMethod) Set(val *UpdateLoginFl... method IsSet (line 254) | func (v NullableUpdateLoginFlowWithSamlMethod) IsSet() bool { method Unset (line 258) | func (v *NullableUpdateLoginFlowWithSamlMethod) Unset() { method MarshalJSON (line 267) | func (v NullableUpdateLoginFlowWithSamlMethod) MarshalJSON() ([]byte, ... method UnmarshalJSON (line 271) | func (v *NullableUpdateLoginFlowWithSamlMethod) UnmarshalJSON(src []by... function NewNullableUpdateLoginFlowWithSamlMethod (line 263) | func NewNullableUpdateLoginFlowWithSamlMethod(val *UpdateLoginFlowWithSa... FILE: pkg/httpclient/model_update_login_flow_with_totp_method.go type UpdateLoginFlowWithTotpMethod (line 23) | type UpdateLoginFlowWithTotpMethod struct method GetCsrfToken (line 57) | func (o *UpdateLoginFlowWithTotpMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 67) | func (o *UpdateLoginFlowWithTotpMethod) GetCsrfTokenOk() (*string, boo... method HasCsrfToken (line 75) | func (o *UpdateLoginFlowWithTotpMethod) HasCsrfToken() bool { method SetCsrfToken (line 84) | func (o *UpdateLoginFlowWithTotpMethod) SetCsrfToken(v string) { method GetMethod (line 89) | func (o *UpdateLoginFlowWithTotpMethod) GetMethod() string { method GetMethodOk (line 100) | func (o *UpdateLoginFlowWithTotpMethod) GetMethodOk() (*string, bool) { method SetMethod (line 108) | func (o *UpdateLoginFlowWithTotpMethod) SetMethod(v string) { method GetTotpCode (line 113) | func (o *UpdateLoginFlowWithTotpMethod) GetTotpCode() string { method GetTotpCodeOk (line 124) | func (o *UpdateLoginFlowWithTotpMethod) GetTotpCodeOk() (*string, bool) { method SetTotpCode (line 132) | func (o *UpdateLoginFlowWithTotpMethod) SetTotpCode(v string) { method GetTransientPayload (line 137) | func (o *UpdateLoginFlowWithTotpMethod) GetTransientPayload() map[stri... method GetTransientPayloadOk (line 147) | func (o *UpdateLoginFlowWithTotpMethod) GetTransientPayloadOk() (map[s... method HasTransientPayload (line 155) | func (o *UpdateLoginFlowWithTotpMethod) HasTransientPayload() bool { method SetTransientPayload (line 164) | func (o *UpdateLoginFlowWithTotpMethod) SetTransientPayload(v map[stri... method MarshalJSON (line 168) | func (o UpdateLoginFlowWithTotpMethod) MarshalJSON() ([]byte, error) { method ToMap (line 176) | func (o UpdateLoginFlowWithTotpMethod) ToMap() (map[string]interface{}... method UnmarshalJSON (line 194) | func (o *UpdateLoginFlowWithTotpMethod) UnmarshalJSON(data []byte) (er... type _UpdateLoginFlowWithTotpMethod (line 35) | type _UpdateLoginFlowWithTotpMethod function NewUpdateLoginFlowWithTotpMethod (line 41) | func NewUpdateLoginFlowWithTotpMethod(method string, totpCode string) *U... function NewUpdateLoginFlowWithTotpMethodWithDefaults (line 51) | func NewUpdateLoginFlowWithTotpMethodWithDefaults() *UpdateLoginFlowWith... type NullableUpdateLoginFlowWithTotpMethod (line 240) | type NullableUpdateLoginFlowWithTotpMethod struct method Get (line 245) | func (v NullableUpdateLoginFlowWithTotpMethod) Get() *UpdateLoginFlowW... method Set (line 249) | func (v *NullableUpdateLoginFlowWithTotpMethod) Set(val *UpdateLoginFl... method IsSet (line 254) | func (v NullableUpdateLoginFlowWithTotpMethod) IsSet() bool { method Unset (line 258) | func (v *NullableUpdateLoginFlowWithTotpMethod) Unset() { method MarshalJSON (line 267) | func (v NullableUpdateLoginFlowWithTotpMethod) MarshalJSON() ([]byte, ... method UnmarshalJSON (line 271) | func (v *NullableUpdateLoginFlowWithTotpMethod) UnmarshalJSON(src []by... function NewNullableUpdateLoginFlowWithTotpMethod (line 263) | func NewNullableUpdateLoginFlowWithTotpMethod(val *UpdateLoginFlowWithTo... FILE: pkg/httpclient/model_update_login_flow_with_web_authn_method.go type UpdateLoginFlowWithWebAuthnMethod (line 23) | type UpdateLoginFlowWithWebAuthnMethod struct method GetCsrfToken (line 59) | func (o *UpdateLoginFlowWithWebAuthnMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 69) | func (o *UpdateLoginFlowWithWebAuthnMethod) GetCsrfTokenOk() (*string,... method HasCsrfToken (line 77) | func (o *UpdateLoginFlowWithWebAuthnMethod) HasCsrfToken() bool { method SetCsrfToken (line 86) | func (o *UpdateLoginFlowWithWebAuthnMethod) SetCsrfToken(v string) { method GetIdentifier (line 91) | func (o *UpdateLoginFlowWithWebAuthnMethod) GetIdentifier() string { method GetIdentifierOk (line 102) | func (o *UpdateLoginFlowWithWebAuthnMethod) GetIdentifierOk() (*string... method SetIdentifier (line 110) | func (o *UpdateLoginFlowWithWebAuthnMethod) SetIdentifier(v string) { method GetMethod (line 115) | func (o *UpdateLoginFlowWithWebAuthnMethod) GetMethod() string { method GetMethodOk (line 126) | func (o *UpdateLoginFlowWithWebAuthnMethod) GetMethodOk() (*string, bo... method SetMethod (line 134) | func (o *UpdateLoginFlowWithWebAuthnMethod) SetMethod(v string) { method GetTransientPayload (line 139) | func (o *UpdateLoginFlowWithWebAuthnMethod) GetTransientPayload() map[... method GetTransientPayloadOk (line 149) | func (o *UpdateLoginFlowWithWebAuthnMethod) GetTransientPayloadOk() (m... method HasTransientPayload (line 157) | func (o *UpdateLoginFlowWithWebAuthnMethod) HasTransientPayload() bool { method SetTransientPayload (line 166) | func (o *UpdateLoginFlowWithWebAuthnMethod) SetTransientPayload(v map[... method GetWebauthnLogin (line 171) | func (o *UpdateLoginFlowWithWebAuthnMethod) GetWebauthnLogin() string { method GetWebauthnLoginOk (line 181) | func (o *UpdateLoginFlowWithWebAuthnMethod) GetWebauthnLoginOk() (*str... method HasWebauthnLogin (line 189) | func (o *UpdateLoginFlowWithWebAuthnMethod) HasWebauthnLogin() bool { method SetWebauthnLogin (line 198) | func (o *UpdateLoginFlowWithWebAuthnMethod) SetWebauthnLogin(v string) { method MarshalJSON (line 202) | func (o UpdateLoginFlowWithWebAuthnMethod) MarshalJSON() ([]byte, erro... method ToMap (line 210) | func (o UpdateLoginFlowWithWebAuthnMethod) ToMap() (map[string]interfa... method UnmarshalJSON (line 231) | func (o *UpdateLoginFlowWithWebAuthnMethod) UnmarshalJSON(data []byte)... type _UpdateLoginFlowWithWebAuthnMethod (line 37) | type _UpdateLoginFlowWithWebAuthnMethod function NewUpdateLoginFlowWithWebAuthnMethod (line 43) | func NewUpdateLoginFlowWithWebAuthnMethod(identifier string, method stri... function NewUpdateLoginFlowWithWebAuthnMethodWithDefaults (line 53) | func NewUpdateLoginFlowWithWebAuthnMethodWithDefaults() *UpdateLoginFlow... type NullableUpdateLoginFlowWithWebAuthnMethod (line 278) | type NullableUpdateLoginFlowWithWebAuthnMethod struct method Get (line 283) | func (v NullableUpdateLoginFlowWithWebAuthnMethod) Get() *UpdateLoginF... method Set (line 287) | func (v *NullableUpdateLoginFlowWithWebAuthnMethod) Set(val *UpdateLog... method IsSet (line 292) | func (v NullableUpdateLoginFlowWithWebAuthnMethod) IsSet() bool { method Unset (line 296) | func (v *NullableUpdateLoginFlowWithWebAuthnMethod) Unset() { method MarshalJSON (line 305) | func (v NullableUpdateLoginFlowWithWebAuthnMethod) MarshalJSON() ([]by... method UnmarshalJSON (line 309) | func (v *NullableUpdateLoginFlowWithWebAuthnMethod) UnmarshalJSON(src ... function NewNullableUpdateLoginFlowWithWebAuthnMethod (line 301) | func NewNullableUpdateLoginFlowWithWebAuthnMethod(val *UpdateLoginFlowWi... FILE: pkg/httpclient/model_update_recovery_flow_body.go type UpdateRecoveryFlowBody (line 20) | type UpdateRecoveryFlowBody struct method UnmarshalJSON (line 40) | func (dst *UpdateRecoveryFlowBody) UnmarshalJSON(data []byte) error { method MarshalJSON (line 101) | func (src UpdateRecoveryFlowBody) MarshalJSON() ([]byte, error) { method GetActualInstance (line 114) | func (obj *UpdateRecoveryFlowBody) GetActualInstance() interface{} { method GetActualInstanceValue (line 131) | func (obj UpdateRecoveryFlowBody) GetActualInstanceValue() interface{} { function UpdateRecoveryFlowWithCodeMethodAsUpdateRecoveryFlowBody (line 26) | func UpdateRecoveryFlowWithCodeMethodAsUpdateRecoveryFlowBody(v *UpdateR... function UpdateRecoveryFlowWithLinkMethodAsUpdateRecoveryFlowBody (line 33) | func UpdateRecoveryFlowWithLinkMethodAsUpdateRecoveryFlowBody(v *UpdateR... type NullableUpdateRecoveryFlowBody (line 144) | type NullableUpdateRecoveryFlowBody struct method Get (line 149) | func (v NullableUpdateRecoveryFlowBody) Get() *UpdateRecoveryFlowBody { method Set (line 153) | func (v *NullableUpdateRecoveryFlowBody) Set(val *UpdateRecoveryFlowBo... method IsSet (line 158) | func (v NullableUpdateRecoveryFlowBody) IsSet() bool { method Unset (line 162) | func (v *NullableUpdateRecoveryFlowBody) Unset() { method MarshalJSON (line 171) | func (v NullableUpdateRecoveryFlowBody) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 175) | func (v *NullableUpdateRecoveryFlowBody) UnmarshalJSON(src []byte) err... function NewNullableUpdateRecoveryFlowBody (line 167) | func NewNullableUpdateRecoveryFlowBody(val *UpdateRecoveryFlowBody) *Nul... FILE: pkg/httpclient/model_update_recovery_flow_with_code_method.go type UpdateRecoveryFlowWithCodeMethod (line 23) | type UpdateRecoveryFlowWithCodeMethod struct method GetCode (line 66) | func (o *UpdateRecoveryFlowWithCodeMethod) GetCode() string { method GetCodeOk (line 76) | func (o *UpdateRecoveryFlowWithCodeMethod) GetCodeOk() (*string, bool) { method HasCode (line 84) | func (o *UpdateRecoveryFlowWithCodeMethod) HasCode() bool { method SetCode (line 93) | func (o *UpdateRecoveryFlowWithCodeMethod) SetCode(v string) { method GetCsrfToken (line 98) | func (o *UpdateRecoveryFlowWithCodeMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 108) | func (o *UpdateRecoveryFlowWithCodeMethod) GetCsrfTokenOk() (*string, ... method HasCsrfToken (line 116) | func (o *UpdateRecoveryFlowWithCodeMethod) HasCsrfToken() bool { method SetCsrfToken (line 125) | func (o *UpdateRecoveryFlowWithCodeMethod) SetCsrfToken(v string) { method GetEmail (line 130) | func (o *UpdateRecoveryFlowWithCodeMethod) GetEmail() string { method GetEmailOk (line 140) | func (o *UpdateRecoveryFlowWithCodeMethod) GetEmailOk() (*string, bool) { method HasEmail (line 148) | func (o *UpdateRecoveryFlowWithCodeMethod) HasEmail() bool { method SetEmail (line 157) | func (o *UpdateRecoveryFlowWithCodeMethod) SetEmail(v string) { method GetMethod (line 162) | func (o *UpdateRecoveryFlowWithCodeMethod) GetMethod() string { method GetMethodOk (line 173) | func (o *UpdateRecoveryFlowWithCodeMethod) GetMethodOk() (*string, boo... method SetMethod (line 181) | func (o *UpdateRecoveryFlowWithCodeMethod) SetMethod(v string) { method GetRecoveryAddress (line 186) | func (o *UpdateRecoveryFlowWithCodeMethod) GetRecoveryAddress() string { method GetRecoveryAddressOk (line 196) | func (o *UpdateRecoveryFlowWithCodeMethod) GetRecoveryAddressOk() (*st... method HasRecoveryAddress (line 204) | func (o *UpdateRecoveryFlowWithCodeMethod) HasRecoveryAddress() bool { method SetRecoveryAddress (line 213) | func (o *UpdateRecoveryFlowWithCodeMethod) SetRecoveryAddress(v string) { method GetRecoveryConfirmAddress (line 218) | func (o *UpdateRecoveryFlowWithCodeMethod) GetRecoveryConfirmAddress()... method GetRecoveryConfirmAddressOk (line 228) | func (o *UpdateRecoveryFlowWithCodeMethod) GetRecoveryConfirmAddressOk... method HasRecoveryConfirmAddress (line 236) | func (o *UpdateRecoveryFlowWithCodeMethod) HasRecoveryConfirmAddress()... method SetRecoveryConfirmAddress (line 245) | func (o *UpdateRecoveryFlowWithCodeMethod) SetRecoveryConfirmAddress(v... method GetRecoverySelectAddress (line 250) | func (o *UpdateRecoveryFlowWithCodeMethod) GetRecoverySelectAddress() ... method GetRecoverySelectAddressOk (line 260) | func (o *UpdateRecoveryFlowWithCodeMethod) GetRecoverySelectAddressOk(... method HasRecoverySelectAddress (line 268) | func (o *UpdateRecoveryFlowWithCodeMethod) HasRecoverySelectAddress() ... method SetRecoverySelectAddress (line 277) | func (o *UpdateRecoveryFlowWithCodeMethod) SetRecoverySelectAddress(v ... method GetScreen (line 282) | func (o *UpdateRecoveryFlowWithCodeMethod) GetScreen() string { method GetScreenOk (line 292) | func (o *UpdateRecoveryFlowWithCodeMethod) GetScreenOk() (*string, boo... method HasScreen (line 300) | func (o *UpdateRecoveryFlowWithCodeMethod) HasScreen() bool { method SetScreen (line 309) | func (o *UpdateRecoveryFlowWithCodeMethod) SetScreen(v string) { method GetTransientPayload (line 314) | func (o *UpdateRecoveryFlowWithCodeMethod) GetTransientPayload() map[s... method GetTransientPayloadOk (line 324) | func (o *UpdateRecoveryFlowWithCodeMethod) GetTransientPayloadOk() (ma... method HasTransientPayload (line 332) | func (o *UpdateRecoveryFlowWithCodeMethod) HasTransientPayload() bool { method SetTransientPayload (line 341) | func (o *UpdateRecoveryFlowWithCodeMethod) SetTransientPayload(v map[s... method MarshalJSON (line 345) | func (o UpdateRecoveryFlowWithCodeMethod) MarshalJSON() ([]byte, error) { method ToMap (line 353) | func (o UpdateRecoveryFlowWithCodeMethod) ToMap() (map[string]interfac... method UnmarshalJSON (line 388) | func (o *UpdateRecoveryFlowWithCodeMethod) UnmarshalJSON(data []byte) ... type _UpdateRecoveryFlowWithCodeMethod (line 45) | type _UpdateRecoveryFlowWithCodeMethod function NewUpdateRecoveryFlowWithCodeMethod (line 51) | func NewUpdateRecoveryFlowWithCodeMethod(method string) *UpdateRecoveryF... function NewUpdateRecoveryFlowWithCodeMethodWithDefaults (line 60) | func NewUpdateRecoveryFlowWithCodeMethodWithDefaults() *UpdateRecoveryFl... type NullableUpdateRecoveryFlowWithCodeMethod (line 438) | type NullableUpdateRecoveryFlowWithCodeMethod struct method Get (line 443) | func (v NullableUpdateRecoveryFlowWithCodeMethod) Get() *UpdateRecover... method Set (line 447) | func (v *NullableUpdateRecoveryFlowWithCodeMethod) Set(val *UpdateReco... method IsSet (line 452) | func (v NullableUpdateRecoveryFlowWithCodeMethod) IsSet() bool { method Unset (line 456) | func (v *NullableUpdateRecoveryFlowWithCodeMethod) Unset() { method MarshalJSON (line 465) | func (v NullableUpdateRecoveryFlowWithCodeMethod) MarshalJSON() ([]byt... method UnmarshalJSON (line 469) | func (v *NullableUpdateRecoveryFlowWithCodeMethod) UnmarshalJSON(src [... function NewNullableUpdateRecoveryFlowWithCodeMethod (line 461) | func NewNullableUpdateRecoveryFlowWithCodeMethod(val *UpdateRecoveryFlow... FILE: pkg/httpclient/model_update_recovery_flow_with_link_method.go type UpdateRecoveryFlowWithLinkMethod (line 23) | type UpdateRecoveryFlowWithLinkMethod struct method GetCsrfToken (line 57) | func (o *UpdateRecoveryFlowWithLinkMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 67) | func (o *UpdateRecoveryFlowWithLinkMethod) GetCsrfTokenOk() (*string, ... method HasCsrfToken (line 75) | func (o *UpdateRecoveryFlowWithLinkMethod) HasCsrfToken() bool { method SetCsrfToken (line 84) | func (o *UpdateRecoveryFlowWithLinkMethod) SetCsrfToken(v string) { method GetEmail (line 89) | func (o *UpdateRecoveryFlowWithLinkMethod) GetEmail() string { method GetEmailOk (line 100) | func (o *UpdateRecoveryFlowWithLinkMethod) GetEmailOk() (*string, bool) { method SetEmail (line 108) | func (o *UpdateRecoveryFlowWithLinkMethod) SetEmail(v string) { method GetMethod (line 113) | func (o *UpdateRecoveryFlowWithLinkMethod) GetMethod() string { method GetMethodOk (line 124) | func (o *UpdateRecoveryFlowWithLinkMethod) GetMethodOk() (*string, boo... method SetMethod (line 132) | func (o *UpdateRecoveryFlowWithLinkMethod) SetMethod(v string) { method GetTransientPayload (line 137) | func (o *UpdateRecoveryFlowWithLinkMethod) GetTransientPayload() map[s... method GetTransientPayloadOk (line 147) | func (o *UpdateRecoveryFlowWithLinkMethod) GetTransientPayloadOk() (ma... method HasTransientPayload (line 155) | func (o *UpdateRecoveryFlowWithLinkMethod) HasTransientPayload() bool { method SetTransientPayload (line 164) | func (o *UpdateRecoveryFlowWithLinkMethod) SetTransientPayload(v map[s... method MarshalJSON (line 168) | func (o UpdateRecoveryFlowWithLinkMethod) MarshalJSON() ([]byte, error) { method ToMap (line 176) | func (o UpdateRecoveryFlowWithLinkMethod) ToMap() (map[string]interfac... method UnmarshalJSON (line 194) | func (o *UpdateRecoveryFlowWithLinkMethod) UnmarshalJSON(data []byte) ... type _UpdateRecoveryFlowWithLinkMethod (line 35) | type _UpdateRecoveryFlowWithLinkMethod function NewUpdateRecoveryFlowWithLinkMethod (line 41) | func NewUpdateRecoveryFlowWithLinkMethod(email string, method string) *U... function NewUpdateRecoveryFlowWithLinkMethodWithDefaults (line 51) | func NewUpdateRecoveryFlowWithLinkMethodWithDefaults() *UpdateRecoveryFl... type NullableUpdateRecoveryFlowWithLinkMethod (line 240) | type NullableUpdateRecoveryFlowWithLinkMethod struct method Get (line 245) | func (v NullableUpdateRecoveryFlowWithLinkMethod) Get() *UpdateRecover... method Set (line 249) | func (v *NullableUpdateRecoveryFlowWithLinkMethod) Set(val *UpdateReco... method IsSet (line 254) | func (v NullableUpdateRecoveryFlowWithLinkMethod) IsSet() bool { method Unset (line 258) | func (v *NullableUpdateRecoveryFlowWithLinkMethod) Unset() { method MarshalJSON (line 267) | func (v NullableUpdateRecoveryFlowWithLinkMethod) MarshalJSON() ([]byt... method UnmarshalJSON (line 271) | func (v *NullableUpdateRecoveryFlowWithLinkMethod) UnmarshalJSON(src [... function NewNullableUpdateRecoveryFlowWithLinkMethod (line 263) | func NewNullableUpdateRecoveryFlowWithLinkMethod(val *UpdateRecoveryFlow... FILE: pkg/httpclient/model_update_registration_flow_body.go type UpdateRegistrationFlowBody (line 20) | type UpdateRegistrationFlowBody struct method UnmarshalJSON (line 80) | func (dst *UpdateRegistrationFlowBody) UnmarshalJSON(data []byte) error { method MarshalJSON (line 261) | func (src UpdateRegistrationFlowBody) MarshalJSON() ([]byte, error) { method GetActualInstance (line 294) | func (obj *UpdateRegistrationFlowBody) GetActualInstance() interface{} { method GetActualInstanceValue (line 331) | func (obj UpdateRegistrationFlowBody) GetActualInstanceValue() interfa... function UpdateRegistrationFlowWithCodeMethodAsUpdateRegistrationFlowBody (line 31) | func UpdateRegistrationFlowWithCodeMethodAsUpdateRegistrationFlowBody(v ... function UpdateRegistrationFlowWithOidcMethodAsUpdateRegistrationFlowBody (line 38) | func UpdateRegistrationFlowWithOidcMethodAsUpdateRegistrationFlowBody(v ... function UpdateRegistrationFlowWithPasskeyMethodAsUpdateRegistrationFlowBody (line 45) | func UpdateRegistrationFlowWithPasskeyMethodAsUpdateRegistrationFlowBody... function UpdateRegistrationFlowWithPasswordMethodAsUpdateRegistrationFlowBody (line 52) | func UpdateRegistrationFlowWithPasswordMethodAsUpdateRegistrationFlowBod... function UpdateRegistrationFlowWithProfileMethodAsUpdateRegistrationFlowBody (line 59) | func UpdateRegistrationFlowWithProfileMethodAsUpdateRegistrationFlowBody... function UpdateRegistrationFlowWithSamlMethodAsUpdateRegistrationFlowBody (line 66) | func UpdateRegistrationFlowWithSamlMethodAsUpdateRegistrationFlowBody(v ... function UpdateRegistrationFlowWithWebAuthnMethodAsUpdateRegistrationFlowBody (line 73) | func UpdateRegistrationFlowWithWebAuthnMethodAsUpdateRegistrationFlowBod... type NullableUpdateRegistrationFlowBody (line 364) | type NullableUpdateRegistrationFlowBody struct method Get (line 369) | func (v NullableUpdateRegistrationFlowBody) Get() *UpdateRegistrationF... method Set (line 373) | func (v *NullableUpdateRegistrationFlowBody) Set(val *UpdateRegistrati... method IsSet (line 378) | func (v NullableUpdateRegistrationFlowBody) IsSet() bool { method Unset (line 382) | func (v *NullableUpdateRegistrationFlowBody) Unset() { method MarshalJSON (line 391) | func (v NullableUpdateRegistrationFlowBody) MarshalJSON() ([]byte, err... method UnmarshalJSON (line 395) | func (v *NullableUpdateRegistrationFlowBody) UnmarshalJSON(src []byte)... function NewNullableUpdateRegistrationFlowBody (line 387) | func NewNullableUpdateRegistrationFlowBody(val *UpdateRegistrationFlowBo... FILE: pkg/httpclient/model_update_registration_flow_with_code_method.go type UpdateRegistrationFlowWithCodeMethod (line 23) | type UpdateRegistrationFlowWithCodeMethod struct method GetCode (line 61) | func (o *UpdateRegistrationFlowWithCodeMethod) GetCode() string { method GetCodeOk (line 71) | func (o *UpdateRegistrationFlowWithCodeMethod) GetCodeOk() (*string, b... method HasCode (line 79) | func (o *UpdateRegistrationFlowWithCodeMethod) HasCode() bool { method SetCode (line 88) | func (o *UpdateRegistrationFlowWithCodeMethod) SetCode(v string) { method GetCsrfToken (line 93) | func (o *UpdateRegistrationFlowWithCodeMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 103) | func (o *UpdateRegistrationFlowWithCodeMethod) GetCsrfTokenOk() (*stri... method HasCsrfToken (line 111) | func (o *UpdateRegistrationFlowWithCodeMethod) HasCsrfToken() bool { method SetCsrfToken (line 120) | func (o *UpdateRegistrationFlowWithCodeMethod) SetCsrfToken(v string) { method GetMethod (line 125) | func (o *UpdateRegistrationFlowWithCodeMethod) GetMethod() string { method GetMethodOk (line 136) | func (o *UpdateRegistrationFlowWithCodeMethod) GetMethodOk() (*string,... method SetMethod (line 144) | func (o *UpdateRegistrationFlowWithCodeMethod) SetMethod(v string) { method GetResend (line 149) | func (o *UpdateRegistrationFlowWithCodeMethod) GetResend() string { method GetResendOk (line 159) | func (o *UpdateRegistrationFlowWithCodeMethod) GetResendOk() (*string,... method HasResend (line 167) | func (o *UpdateRegistrationFlowWithCodeMethod) HasResend() bool { method SetResend (line 176) | func (o *UpdateRegistrationFlowWithCodeMethod) SetResend(v string) { method GetTraits (line 181) | func (o *UpdateRegistrationFlowWithCodeMethod) GetTraits() map[string]... method GetTraitsOk (line 192) | func (o *UpdateRegistrationFlowWithCodeMethod) GetTraitsOk() (map[stri... method SetTraits (line 200) | func (o *UpdateRegistrationFlowWithCodeMethod) SetTraits(v map[string]... method GetTransientPayload (line 205) | func (o *UpdateRegistrationFlowWithCodeMethod) GetTransientPayload() m... method GetTransientPayloadOk (line 215) | func (o *UpdateRegistrationFlowWithCodeMethod) GetTransientPayloadOk()... method HasTransientPayload (line 223) | func (o *UpdateRegistrationFlowWithCodeMethod) HasTransientPayload() b... method SetTransientPayload (line 232) | func (o *UpdateRegistrationFlowWithCodeMethod) SetTransientPayload(v m... method MarshalJSON (line 236) | func (o UpdateRegistrationFlowWithCodeMethod) MarshalJSON() ([]byte, e... method ToMap (line 244) | func (o UpdateRegistrationFlowWithCodeMethod) ToMap() (map[string]inte... method UnmarshalJSON (line 268) | func (o *UpdateRegistrationFlowWithCodeMethod) UnmarshalJSON(data []by... type _UpdateRegistrationFlowWithCodeMethod (line 39) | type _UpdateRegistrationFlowWithCodeMethod function NewUpdateRegistrationFlowWithCodeMethod (line 45) | func NewUpdateRegistrationFlowWithCodeMethod(method string, traits map[s... function NewUpdateRegistrationFlowWithCodeMethodWithDefaults (line 55) | func NewUpdateRegistrationFlowWithCodeMethodWithDefaults() *UpdateRegist... type NullableUpdateRegistrationFlowWithCodeMethod (line 316) | type NullableUpdateRegistrationFlowWithCodeMethod struct method Get (line 321) | func (v NullableUpdateRegistrationFlowWithCodeMethod) Get() *UpdateReg... method Set (line 325) | func (v *NullableUpdateRegistrationFlowWithCodeMethod) Set(val *Update... method IsSet (line 330) | func (v NullableUpdateRegistrationFlowWithCodeMethod) IsSet() bool { method Unset (line 334) | func (v *NullableUpdateRegistrationFlowWithCodeMethod) Unset() { method MarshalJSON (line 343) | func (v NullableUpdateRegistrationFlowWithCodeMethod) MarshalJSON() ([... method UnmarshalJSON (line 347) | func (v *NullableUpdateRegistrationFlowWithCodeMethod) UnmarshalJSON(s... function NewNullableUpdateRegistrationFlowWithCodeMethod (line 339) | func NewNullableUpdateRegistrationFlowWithCodeMethod(val *UpdateRegistra... FILE: pkg/httpclient/model_update_registration_flow_with_oidc_method.go type UpdateRegistrationFlowWithOidcMethod (line 23) | type UpdateRegistrationFlowWithOidcMethod struct method GetCsrfToken (line 65) | func (o *UpdateRegistrationFlowWithOidcMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 75) | func (o *UpdateRegistrationFlowWithOidcMethod) GetCsrfTokenOk() (*stri... method HasCsrfToken (line 83) | func (o *UpdateRegistrationFlowWithOidcMethod) HasCsrfToken() bool { method SetCsrfToken (line 92) | func (o *UpdateRegistrationFlowWithOidcMethod) SetCsrfToken(v string) { method GetIdToken (line 97) | func (o *UpdateRegistrationFlowWithOidcMethod) GetIdToken() string { method GetIdTokenOk (line 107) | func (o *UpdateRegistrationFlowWithOidcMethod) GetIdTokenOk() (*string... method HasIdToken (line 115) | func (o *UpdateRegistrationFlowWithOidcMethod) HasIdToken() bool { method SetIdToken (line 124) | func (o *UpdateRegistrationFlowWithOidcMethod) SetIdToken(v string) { method GetIdTokenNonce (line 129) | func (o *UpdateRegistrationFlowWithOidcMethod) GetIdTokenNonce() string { method GetIdTokenNonceOk (line 139) | func (o *UpdateRegistrationFlowWithOidcMethod) GetIdTokenNonceOk() (*s... method HasIdTokenNonce (line 147) | func (o *UpdateRegistrationFlowWithOidcMethod) HasIdTokenNonce() bool { method SetIdTokenNonce (line 156) | func (o *UpdateRegistrationFlowWithOidcMethod) SetIdTokenNonce(v strin... method GetMethod (line 161) | func (o *UpdateRegistrationFlowWithOidcMethod) GetMethod() string { method GetMethodOk (line 172) | func (o *UpdateRegistrationFlowWithOidcMethod) GetMethodOk() (*string,... method SetMethod (line 180) | func (o *UpdateRegistrationFlowWithOidcMethod) SetMethod(v string) { method GetProvider (line 185) | func (o *UpdateRegistrationFlowWithOidcMethod) GetProvider() string { method GetProviderOk (line 196) | func (o *UpdateRegistrationFlowWithOidcMethod) GetProviderOk() (*strin... method SetProvider (line 204) | func (o *UpdateRegistrationFlowWithOidcMethod) SetProvider(v string) { method GetTraits (line 209) | func (o *UpdateRegistrationFlowWithOidcMethod) GetTraits() map[string]... method GetTraitsOk (line 219) | func (o *UpdateRegistrationFlowWithOidcMethod) GetTraitsOk() (map[stri... method HasTraits (line 227) | func (o *UpdateRegistrationFlowWithOidcMethod) HasTraits() bool { method SetTraits (line 236) | func (o *UpdateRegistrationFlowWithOidcMethod) SetTraits(v map[string]... method GetTransientPayload (line 241) | func (o *UpdateRegistrationFlowWithOidcMethod) GetTransientPayload() m... method GetTransientPayloadOk (line 251) | func (o *UpdateRegistrationFlowWithOidcMethod) GetTransientPayloadOk()... method HasTransientPayload (line 259) | func (o *UpdateRegistrationFlowWithOidcMethod) HasTransientPayload() b... method SetTransientPayload (line 268) | func (o *UpdateRegistrationFlowWithOidcMethod) SetTransientPayload(v m... method GetUpstreamParameters (line 273) | func (o *UpdateRegistrationFlowWithOidcMethod) GetUpstreamParameters()... method GetUpstreamParametersOk (line 283) | func (o *UpdateRegistrationFlowWithOidcMethod) GetUpstreamParametersOk... method HasUpstreamParameters (line 291) | func (o *UpdateRegistrationFlowWithOidcMethod) HasUpstreamParameters()... method SetUpstreamParameters (line 300) | func (o *UpdateRegistrationFlowWithOidcMethod) SetUpstreamParameters(v... method MarshalJSON (line 304) | func (o UpdateRegistrationFlowWithOidcMethod) MarshalJSON() ([]byte, e... method ToMap (line 312) | func (o UpdateRegistrationFlowWithOidcMethod) ToMap() (map[string]inte... method UnmarshalJSON (line 342) | func (o *UpdateRegistrationFlowWithOidcMethod) UnmarshalJSON(data []by... type _UpdateRegistrationFlowWithOidcMethod (line 43) | type _UpdateRegistrationFlowWithOidcMethod function NewUpdateRegistrationFlowWithOidcMethod (line 49) | func NewUpdateRegistrationFlowWithOidcMethod(method string, provider str... function NewUpdateRegistrationFlowWithOidcMethodWithDefaults (line 59) | func NewUpdateRegistrationFlowWithOidcMethodWithDefaults() *UpdateRegist... type NullableUpdateRegistrationFlowWithOidcMethod (line 392) | type NullableUpdateRegistrationFlowWithOidcMethod struct method Get (line 397) | func (v NullableUpdateRegistrationFlowWithOidcMethod) Get() *UpdateReg... method Set (line 401) | func (v *NullableUpdateRegistrationFlowWithOidcMethod) Set(val *Update... method IsSet (line 406) | func (v NullableUpdateRegistrationFlowWithOidcMethod) IsSet() bool { method Unset (line 410) | func (v *NullableUpdateRegistrationFlowWithOidcMethod) Unset() { method MarshalJSON (line 419) | func (v NullableUpdateRegistrationFlowWithOidcMethod) MarshalJSON() ([... method UnmarshalJSON (line 423) | func (v *NullableUpdateRegistrationFlowWithOidcMethod) UnmarshalJSON(s... function NewNullableUpdateRegistrationFlowWithOidcMethod (line 415) | func NewNullableUpdateRegistrationFlowWithOidcMethod(val *UpdateRegistra... FILE: pkg/httpclient/model_update_registration_flow_with_passkey_method.go type UpdateRegistrationFlowWithPasskeyMethod (line 23) | type UpdateRegistrationFlowWithPasskeyMethod struct method GetCsrfToken (line 59) | func (o *UpdateRegistrationFlowWithPasskeyMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 69) | func (o *UpdateRegistrationFlowWithPasskeyMethod) GetCsrfTokenOk() (*s... method HasCsrfToken (line 77) | func (o *UpdateRegistrationFlowWithPasskeyMethod) HasCsrfToken() bool { method SetCsrfToken (line 86) | func (o *UpdateRegistrationFlowWithPasskeyMethod) SetCsrfToken(v strin... method GetMethod (line 91) | func (o *UpdateRegistrationFlowWithPasskeyMethod) GetMethod() string { method GetMethodOk (line 102) | func (o *UpdateRegistrationFlowWithPasskeyMethod) GetMethodOk() (*stri... method SetMethod (line 110) | func (o *UpdateRegistrationFlowWithPasskeyMethod) SetMethod(v string) { method GetPasskeyRegister (line 115) | func (o *UpdateRegistrationFlowWithPasskeyMethod) GetPasskeyRegister()... method GetPasskeyRegisterOk (line 125) | func (o *UpdateRegistrationFlowWithPasskeyMethod) GetPasskeyRegisterOk... method HasPasskeyRegister (line 133) | func (o *UpdateRegistrationFlowWithPasskeyMethod) HasPasskeyRegister()... method SetPasskeyRegister (line 142) | func (o *UpdateRegistrationFlowWithPasskeyMethod) SetPasskeyRegister(v... method GetTraits (line 147) | func (o *UpdateRegistrationFlowWithPasskeyMethod) GetTraits() map[stri... method GetTraitsOk (line 158) | func (o *UpdateRegistrationFlowWithPasskeyMethod) GetTraitsOk() (map[s... method SetTraits (line 166) | func (o *UpdateRegistrationFlowWithPasskeyMethod) SetTraits(v map[stri... method GetTransientPayload (line 171) | func (o *UpdateRegistrationFlowWithPasskeyMethod) GetTransientPayload(... method GetTransientPayloadOk (line 181) | func (o *UpdateRegistrationFlowWithPasskeyMethod) GetTransientPayloadO... method HasTransientPayload (line 189) | func (o *UpdateRegistrationFlowWithPasskeyMethod) HasTransientPayload(... method SetTransientPayload (line 198) | func (o *UpdateRegistrationFlowWithPasskeyMethod) SetTransientPayload(... method MarshalJSON (line 202) | func (o UpdateRegistrationFlowWithPasskeyMethod) MarshalJSON() ([]byte... method ToMap (line 210) | func (o UpdateRegistrationFlowWithPasskeyMethod) ToMap() (map[string]i... method UnmarshalJSON (line 231) | func (o *UpdateRegistrationFlowWithPasskeyMethod) UnmarshalJSON(data [... type _UpdateRegistrationFlowWithPasskeyMethod (line 37) | type _UpdateRegistrationFlowWithPasskeyMethod function NewUpdateRegistrationFlowWithPasskeyMethod (line 43) | func NewUpdateRegistrationFlowWithPasskeyMethod(method string, traits ma... function NewUpdateRegistrationFlowWithPasskeyMethodWithDefaults (line 53) | func NewUpdateRegistrationFlowWithPasskeyMethodWithDefaults() *UpdateReg... type NullableUpdateRegistrationFlowWithPasskeyMethod (line 278) | type NullableUpdateRegistrationFlowWithPasskeyMethod struct method Get (line 283) | func (v NullableUpdateRegistrationFlowWithPasskeyMethod) Get() *Update... method Set (line 287) | func (v *NullableUpdateRegistrationFlowWithPasskeyMethod) Set(val *Upd... method IsSet (line 292) | func (v NullableUpdateRegistrationFlowWithPasskeyMethod) IsSet() bool { method Unset (line 296) | func (v *NullableUpdateRegistrationFlowWithPasskeyMethod) Unset() { method MarshalJSON (line 305) | func (v NullableUpdateRegistrationFlowWithPasskeyMethod) MarshalJSON()... method UnmarshalJSON (line 309) | func (v *NullableUpdateRegistrationFlowWithPasskeyMethod) UnmarshalJSO... function NewNullableUpdateRegistrationFlowWithPasskeyMethod (line 301) | func NewNullableUpdateRegistrationFlowWithPasskeyMethod(val *UpdateRegis... FILE: pkg/httpclient/model_update_registration_flow_with_password_method.go type UpdateRegistrationFlowWithPasswordMethod (line 23) | type UpdateRegistrationFlowWithPasswordMethod struct method GetCsrfToken (line 60) | func (o *UpdateRegistrationFlowWithPasswordMethod) GetCsrfToken() stri... method GetCsrfTokenOk (line 70) | func (o *UpdateRegistrationFlowWithPasswordMethod) GetCsrfTokenOk() (*... method HasCsrfToken (line 78) | func (o *UpdateRegistrationFlowWithPasswordMethod) HasCsrfToken() bool { method SetCsrfToken (line 87) | func (o *UpdateRegistrationFlowWithPasswordMethod) SetCsrfToken(v stri... method GetMethod (line 92) | func (o *UpdateRegistrationFlowWithPasswordMethod) GetMethod() string { method GetMethodOk (line 103) | func (o *UpdateRegistrationFlowWithPasswordMethod) GetMethodOk() (*str... method SetMethod (line 111) | func (o *UpdateRegistrationFlowWithPasswordMethod) SetMethod(v string) { method GetPassword (line 116) | func (o *UpdateRegistrationFlowWithPasswordMethod) GetPassword() string { method GetPasswordOk (line 127) | func (o *UpdateRegistrationFlowWithPasswordMethod) GetPasswordOk() (*s... method SetPassword (line 135) | func (o *UpdateRegistrationFlowWithPasswordMethod) SetPassword(v strin... method GetTraits (line 140) | func (o *UpdateRegistrationFlowWithPasswordMethod) GetTraits() map[str... method GetTraitsOk (line 151) | func (o *UpdateRegistrationFlowWithPasswordMethod) GetTraitsOk() (map[... method SetTraits (line 159) | func (o *UpdateRegistrationFlowWithPasswordMethod) SetTraits(v map[str... method GetTransientPayload (line 164) | func (o *UpdateRegistrationFlowWithPasswordMethod) GetTransientPayload... method GetTransientPayloadOk (line 174) | func (o *UpdateRegistrationFlowWithPasswordMethod) GetTransientPayload... method HasTransientPayload (line 182) | func (o *UpdateRegistrationFlowWithPasswordMethod) HasTransientPayload... method SetTransientPayload (line 191) | func (o *UpdateRegistrationFlowWithPasswordMethod) SetTransientPayload... method MarshalJSON (line 195) | func (o UpdateRegistrationFlowWithPasswordMethod) MarshalJSON() ([]byt... method ToMap (line 203) | func (o UpdateRegistrationFlowWithPasswordMethod) ToMap() (map[string]... method UnmarshalJSON (line 222) | func (o *UpdateRegistrationFlowWithPasswordMethod) UnmarshalJSON(data ... type _UpdateRegistrationFlowWithPasswordMethod (line 37) | type _UpdateRegistrationFlowWithPasswordMethod function NewUpdateRegistrationFlowWithPasswordMethod (line 43) | func NewUpdateRegistrationFlowWithPasswordMethod(method string, password... function NewUpdateRegistrationFlowWithPasswordMethodWithDefaults (line 54) | func NewUpdateRegistrationFlowWithPasswordMethodWithDefaults() *UpdateRe... type NullableUpdateRegistrationFlowWithPasswordMethod (line 270) | type NullableUpdateRegistrationFlowWithPasswordMethod struct method Get (line 275) | func (v NullableUpdateRegistrationFlowWithPasswordMethod) Get() *Updat... method Set (line 279) | func (v *NullableUpdateRegistrationFlowWithPasswordMethod) Set(val *Up... method IsSet (line 284) | func (v NullableUpdateRegistrationFlowWithPasswordMethod) IsSet() bool { method Unset (line 288) | func (v *NullableUpdateRegistrationFlowWithPasswordMethod) Unset() { method MarshalJSON (line 297) | func (v NullableUpdateRegistrationFlowWithPasswordMethod) MarshalJSON(... method UnmarshalJSON (line 301) | func (v *NullableUpdateRegistrationFlowWithPasswordMethod) UnmarshalJS... function NewNullableUpdateRegistrationFlowWithPasswordMethod (line 293) | func NewNullableUpdateRegistrationFlowWithPasswordMethod(val *UpdateRegi... FILE: pkg/httpclient/model_update_registration_flow_with_profile_method.go type UpdateRegistrationFlowWithProfileMethod (line 23) | type UpdateRegistrationFlowWithProfileMethod struct method GetCsrfToken (line 59) | func (o *UpdateRegistrationFlowWithProfileMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 69) | func (o *UpdateRegistrationFlowWithProfileMethod) GetCsrfTokenOk() (*s... method HasCsrfToken (line 77) | func (o *UpdateRegistrationFlowWithProfileMethod) HasCsrfToken() bool { method SetCsrfToken (line 86) | func (o *UpdateRegistrationFlowWithProfileMethod) SetCsrfToken(v strin... method GetMethod (line 91) | func (o *UpdateRegistrationFlowWithProfileMethod) GetMethod() string { method GetMethodOk (line 102) | func (o *UpdateRegistrationFlowWithProfileMethod) GetMethodOk() (*stri... method SetMethod (line 110) | func (o *UpdateRegistrationFlowWithProfileMethod) SetMethod(v string) { method GetScreen (line 115) | func (o *UpdateRegistrationFlowWithProfileMethod) GetScreen() string { method GetScreenOk (line 125) | func (o *UpdateRegistrationFlowWithProfileMethod) GetScreenOk() (*stri... method HasScreen (line 133) | func (o *UpdateRegistrationFlowWithProfileMethod) HasScreen() bool { method SetScreen (line 142) | func (o *UpdateRegistrationFlowWithProfileMethod) SetScreen(v string) { method GetTraits (line 147) | func (o *UpdateRegistrationFlowWithProfileMethod) GetTraits() map[stri... method GetTraitsOk (line 158) | func (o *UpdateRegistrationFlowWithProfileMethod) GetTraitsOk() (map[s... method SetTraits (line 166) | func (o *UpdateRegistrationFlowWithProfileMethod) SetTraits(v map[stri... method GetTransientPayload (line 171) | func (o *UpdateRegistrationFlowWithProfileMethod) GetTransientPayload(... method GetTransientPayloadOk (line 181) | func (o *UpdateRegistrationFlowWithProfileMethod) GetTransientPayloadO... method HasTransientPayload (line 189) | func (o *UpdateRegistrationFlowWithProfileMethod) HasTransientPayload(... method SetTransientPayload (line 198) | func (o *UpdateRegistrationFlowWithProfileMethod) SetTransientPayload(... method MarshalJSON (line 202) | func (o UpdateRegistrationFlowWithProfileMethod) MarshalJSON() ([]byte... method ToMap (line 210) | func (o UpdateRegistrationFlowWithProfileMethod) ToMap() (map[string]i... method UnmarshalJSON (line 231) | func (o *UpdateRegistrationFlowWithProfileMethod) UnmarshalJSON(data [... type _UpdateRegistrationFlowWithProfileMethod (line 37) | type _UpdateRegistrationFlowWithProfileMethod function NewUpdateRegistrationFlowWithProfileMethod (line 43) | func NewUpdateRegistrationFlowWithProfileMethod(method string, traits ma... function NewUpdateRegistrationFlowWithProfileMethodWithDefaults (line 53) | func NewUpdateRegistrationFlowWithProfileMethodWithDefaults() *UpdateReg... type NullableUpdateRegistrationFlowWithProfileMethod (line 278) | type NullableUpdateRegistrationFlowWithProfileMethod struct method Get (line 283) | func (v NullableUpdateRegistrationFlowWithProfileMethod) Get() *Update... method Set (line 287) | func (v *NullableUpdateRegistrationFlowWithProfileMethod) Set(val *Upd... method IsSet (line 292) | func (v NullableUpdateRegistrationFlowWithProfileMethod) IsSet() bool { method Unset (line 296) | func (v *NullableUpdateRegistrationFlowWithProfileMethod) Unset() { method MarshalJSON (line 305) | func (v NullableUpdateRegistrationFlowWithProfileMethod) MarshalJSON()... method UnmarshalJSON (line 309) | func (v *NullableUpdateRegistrationFlowWithProfileMethod) UnmarshalJSO... function NewNullableUpdateRegistrationFlowWithProfileMethod (line 301) | func NewNullableUpdateRegistrationFlowWithProfileMethod(val *UpdateRegis... FILE: pkg/httpclient/model_update_registration_flow_with_saml_method.go type UpdateRegistrationFlowWithSamlMethod (line 23) | type UpdateRegistrationFlowWithSamlMethod struct method GetCsrfToken (line 59) | func (o *UpdateRegistrationFlowWithSamlMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 69) | func (o *UpdateRegistrationFlowWithSamlMethod) GetCsrfTokenOk() (*stri... method HasCsrfToken (line 77) | func (o *UpdateRegistrationFlowWithSamlMethod) HasCsrfToken() bool { method SetCsrfToken (line 86) | func (o *UpdateRegistrationFlowWithSamlMethod) SetCsrfToken(v string) { method GetMethod (line 91) | func (o *UpdateRegistrationFlowWithSamlMethod) GetMethod() string { method GetMethodOk (line 102) | func (o *UpdateRegistrationFlowWithSamlMethod) GetMethodOk() (*string,... method SetMethod (line 110) | func (o *UpdateRegistrationFlowWithSamlMethod) SetMethod(v string) { method GetProvider (line 115) | func (o *UpdateRegistrationFlowWithSamlMethod) GetProvider() string { method GetProviderOk (line 126) | func (o *UpdateRegistrationFlowWithSamlMethod) GetProviderOk() (*strin... method SetProvider (line 134) | func (o *UpdateRegistrationFlowWithSamlMethod) SetProvider(v string) { method GetTraits (line 139) | func (o *UpdateRegistrationFlowWithSamlMethod) GetTraits() map[string]... method GetTraitsOk (line 149) | func (o *UpdateRegistrationFlowWithSamlMethod) GetTraitsOk() (map[stri... method HasTraits (line 157) | func (o *UpdateRegistrationFlowWithSamlMethod) HasTraits() bool { method SetTraits (line 166) | func (o *UpdateRegistrationFlowWithSamlMethod) SetTraits(v map[string]... method GetTransientPayload (line 171) | func (o *UpdateRegistrationFlowWithSamlMethod) GetTransientPayload() m... method GetTransientPayloadOk (line 181) | func (o *UpdateRegistrationFlowWithSamlMethod) GetTransientPayloadOk()... method HasTransientPayload (line 189) | func (o *UpdateRegistrationFlowWithSamlMethod) HasTransientPayload() b... method SetTransientPayload (line 198) | func (o *UpdateRegistrationFlowWithSamlMethod) SetTransientPayload(v m... method MarshalJSON (line 202) | func (o UpdateRegistrationFlowWithSamlMethod) MarshalJSON() ([]byte, e... method ToMap (line 210) | func (o UpdateRegistrationFlowWithSamlMethod) ToMap() (map[string]inte... method UnmarshalJSON (line 231) | func (o *UpdateRegistrationFlowWithSamlMethod) UnmarshalJSON(data []by... type _UpdateRegistrationFlowWithSamlMethod (line 37) | type _UpdateRegistrationFlowWithSamlMethod function NewUpdateRegistrationFlowWithSamlMethod (line 43) | func NewUpdateRegistrationFlowWithSamlMethod(method string, provider str... function NewUpdateRegistrationFlowWithSamlMethodWithDefaults (line 53) | func NewUpdateRegistrationFlowWithSamlMethodWithDefaults() *UpdateRegist... type NullableUpdateRegistrationFlowWithSamlMethod (line 278) | type NullableUpdateRegistrationFlowWithSamlMethod struct method Get (line 283) | func (v NullableUpdateRegistrationFlowWithSamlMethod) Get() *UpdateReg... method Set (line 287) | func (v *NullableUpdateRegistrationFlowWithSamlMethod) Set(val *Update... method IsSet (line 292) | func (v NullableUpdateRegistrationFlowWithSamlMethod) IsSet() bool { method Unset (line 296) | func (v *NullableUpdateRegistrationFlowWithSamlMethod) Unset() { method MarshalJSON (line 305) | func (v NullableUpdateRegistrationFlowWithSamlMethod) MarshalJSON() ([... method UnmarshalJSON (line 309) | func (v *NullableUpdateRegistrationFlowWithSamlMethod) UnmarshalJSON(s... function NewNullableUpdateRegistrationFlowWithSamlMethod (line 301) | func NewNullableUpdateRegistrationFlowWithSamlMethod(val *UpdateRegistra... FILE: pkg/httpclient/model_update_registration_flow_with_web_authn_method.go type UpdateRegistrationFlowWithWebAuthnMethod (line 23) | type UpdateRegistrationFlowWithWebAuthnMethod struct method GetCsrfToken (line 61) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetCsrfToken() stri... method GetCsrfTokenOk (line 71) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetCsrfTokenOk() (*... method HasCsrfToken (line 79) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) HasCsrfToken() bool { method SetCsrfToken (line 88) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) SetCsrfToken(v stri... method GetMethod (line 93) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetMethod() string { method GetMethodOk (line 104) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetMethodOk() (*str... method SetMethod (line 112) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) SetMethod(v string) { method GetTraits (line 117) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetTraits() map[str... method GetTraitsOk (line 128) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetTraitsOk() (map[... method SetTraits (line 136) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) SetTraits(v map[str... method GetTransientPayload (line 141) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetTransientPayload... method GetTransientPayloadOk (line 151) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetTransientPayload... method HasTransientPayload (line 159) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) HasTransientPayload... method SetTransientPayload (line 168) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) SetTransientPayload... method GetWebauthnRegister (line 173) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetWebauthnRegister... method GetWebauthnRegisterOk (line 183) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetWebauthnRegister... method HasWebauthnRegister (line 191) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) HasWebauthnRegister... method SetWebauthnRegister (line 200) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) SetWebauthnRegister... method GetWebauthnRegisterDisplayname (line 205) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetWebauthnRegister... method GetWebauthnRegisterDisplaynameOk (line 215) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) GetWebauthnRegister... method HasWebauthnRegisterDisplayname (line 223) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) HasWebauthnRegister... method SetWebauthnRegisterDisplayname (line 232) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) SetWebauthnRegister... method MarshalJSON (line 236) | func (o UpdateRegistrationFlowWithWebAuthnMethod) MarshalJSON() ([]byt... method ToMap (line 244) | func (o UpdateRegistrationFlowWithWebAuthnMethod) ToMap() (map[string]... method UnmarshalJSON (line 268) | func (o *UpdateRegistrationFlowWithWebAuthnMethod) UnmarshalJSON(data ... type _UpdateRegistrationFlowWithWebAuthnMethod (line 39) | type _UpdateRegistrationFlowWithWebAuthnMethod function NewUpdateRegistrationFlowWithWebAuthnMethod (line 45) | func NewUpdateRegistrationFlowWithWebAuthnMethod(method string, traits m... function NewUpdateRegistrationFlowWithWebAuthnMethodWithDefaults (line 55) | func NewUpdateRegistrationFlowWithWebAuthnMethodWithDefaults() *UpdateRe... type NullableUpdateRegistrationFlowWithWebAuthnMethod (line 316) | type NullableUpdateRegistrationFlowWithWebAuthnMethod struct method Get (line 321) | func (v NullableUpdateRegistrationFlowWithWebAuthnMethod) Get() *Updat... method Set (line 325) | func (v *NullableUpdateRegistrationFlowWithWebAuthnMethod) Set(val *Up... method IsSet (line 330) | func (v NullableUpdateRegistrationFlowWithWebAuthnMethod) IsSet() bool { method Unset (line 334) | func (v *NullableUpdateRegistrationFlowWithWebAuthnMethod) Unset() { method MarshalJSON (line 343) | func (v NullableUpdateRegistrationFlowWithWebAuthnMethod) MarshalJSON(... method UnmarshalJSON (line 347) | func (v *NullableUpdateRegistrationFlowWithWebAuthnMethod) UnmarshalJS... function NewNullableUpdateRegistrationFlowWithWebAuthnMethod (line 339) | func NewNullableUpdateRegistrationFlowWithWebAuthnMethod(val *UpdateRegi... FILE: pkg/httpclient/model_update_settings_flow_body.go type UpdateSettingsFlowBody (line 20) | type UpdateSettingsFlowBody struct method UnmarshalJSON (line 88) | func (dst *UpdateSettingsFlowBody) UnmarshalJSON(data []byte) error { method MarshalJSON (line 293) | func (src UpdateSettingsFlowBody) MarshalJSON() ([]byte, error) { method GetActualInstance (line 330) | func (obj *UpdateSettingsFlowBody) GetActualInstance() interface{} { method GetActualInstanceValue (line 371) | func (obj UpdateSettingsFlowBody) GetActualInstanceValue() interface{} { function UpdateSettingsFlowWithLookupMethodAsUpdateSettingsFlowBody (line 32) | func UpdateSettingsFlowWithLookupMethodAsUpdateSettingsFlowBody(v *Updat... function UpdateSettingsFlowWithOidcMethodAsUpdateSettingsFlowBody (line 39) | func UpdateSettingsFlowWithOidcMethodAsUpdateSettingsFlowBody(v *UpdateS... function UpdateSettingsFlowWithPasskeyMethodAsUpdateSettingsFlowBody (line 46) | func UpdateSettingsFlowWithPasskeyMethodAsUpdateSettingsFlowBody(v *Upda... function UpdateSettingsFlowWithPasswordMethodAsUpdateSettingsFlowBody (line 53) | func UpdateSettingsFlowWithPasswordMethodAsUpdateSettingsFlowBody(v *Upd... function UpdateSettingsFlowWithProfileMethodAsUpdateSettingsFlowBody (line 60) | func UpdateSettingsFlowWithProfileMethodAsUpdateSettingsFlowBody(v *Upda... function UpdateSettingsFlowWithSamlMethodAsUpdateSettingsFlowBody (line 67) | func UpdateSettingsFlowWithSamlMethodAsUpdateSettingsFlowBody(v *UpdateS... function UpdateSettingsFlowWithTotpMethodAsUpdateSettingsFlowBody (line 74) | func UpdateSettingsFlowWithTotpMethodAsUpdateSettingsFlowBody(v *UpdateS... function UpdateSettingsFlowWithWebAuthnMethodAsUpdateSettingsFlowBody (line 81) | func UpdateSettingsFlowWithWebAuthnMethodAsUpdateSettingsFlowBody(v *Upd... type NullableUpdateSettingsFlowBody (line 408) | type NullableUpdateSettingsFlowBody struct method Get (line 413) | func (v NullableUpdateSettingsFlowBody) Get() *UpdateSettingsFlowBody { method Set (line 417) | func (v *NullableUpdateSettingsFlowBody) Set(val *UpdateSettingsFlowBo... method IsSet (line 422) | func (v NullableUpdateSettingsFlowBody) IsSet() bool { method Unset (line 426) | func (v *NullableUpdateSettingsFlowBody) Unset() { method MarshalJSON (line 435) | func (v NullableUpdateSettingsFlowBody) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 439) | func (v *NullableUpdateSettingsFlowBody) UnmarshalJSON(src []byte) err... function NewNullableUpdateSettingsFlowBody (line 431) | func NewNullableUpdateSettingsFlowBody(val *UpdateSettingsFlowBody) *Nul... FILE: pkg/httpclient/model_update_settings_flow_with_lookup_method.go type UpdateSettingsFlowWithLookupMethod (line 23) | type UpdateSettingsFlowWithLookupMethod struct method GetCsrfToken (line 62) | func (o *UpdateSettingsFlowWithLookupMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 72) | func (o *UpdateSettingsFlowWithLookupMethod) GetCsrfTokenOk() (*string... method HasCsrfToken (line 80) | func (o *UpdateSettingsFlowWithLookupMethod) HasCsrfToken() bool { method SetCsrfToken (line 89) | func (o *UpdateSettingsFlowWithLookupMethod) SetCsrfToken(v string) { method GetLookupSecretConfirm (line 94) | func (o *UpdateSettingsFlowWithLookupMethod) GetLookupSecretConfirm() ... method GetLookupSecretConfirmOk (line 104) | func (o *UpdateSettingsFlowWithLookupMethod) GetLookupSecretConfirmOk(... method HasLookupSecretConfirm (line 112) | func (o *UpdateSettingsFlowWithLookupMethod) HasLookupSecretConfirm() ... method SetLookupSecretConfirm (line 121) | func (o *UpdateSettingsFlowWithLookupMethod) SetLookupSecretConfirm(v ... method GetLookupSecretDisable (line 126) | func (o *UpdateSettingsFlowWithLookupMethod) GetLookupSecretDisable() ... method GetLookupSecretDisableOk (line 136) | func (o *UpdateSettingsFlowWithLookupMethod) GetLookupSecretDisableOk(... method HasLookupSecretDisable (line 144) | func (o *UpdateSettingsFlowWithLookupMethod) HasLookupSecretDisable() ... method SetLookupSecretDisable (line 153) | func (o *UpdateSettingsFlowWithLookupMethod) SetLookupSecretDisable(v ... method GetLookupSecretRegenerate (line 158) | func (o *UpdateSettingsFlowWithLookupMethod) GetLookupSecretRegenerate... method GetLookupSecretRegenerateOk (line 168) | func (o *UpdateSettingsFlowWithLookupMethod) GetLookupSecretRegenerate... method HasLookupSecretRegenerate (line 176) | func (o *UpdateSettingsFlowWithLookupMethod) HasLookupSecretRegenerate... method SetLookupSecretRegenerate (line 185) | func (o *UpdateSettingsFlowWithLookupMethod) SetLookupSecretRegenerate... method GetLookupSecretReveal (line 190) | func (o *UpdateSettingsFlowWithLookupMethod) GetLookupSecretReveal() b... method GetLookupSecretRevealOk (line 200) | func (o *UpdateSettingsFlowWithLookupMethod) GetLookupSecretRevealOk()... method HasLookupSecretReveal (line 208) | func (o *UpdateSettingsFlowWithLookupMethod) HasLookupSecretReveal() b... method SetLookupSecretReveal (line 217) | func (o *UpdateSettingsFlowWithLookupMethod) SetLookupSecretReveal(v b... method GetMethod (line 222) | func (o *UpdateSettingsFlowWithLookupMethod) GetMethod() string { method GetMethodOk (line 233) | func (o *UpdateSettingsFlowWithLookupMethod) GetMethodOk() (*string, b... method SetMethod (line 241) | func (o *UpdateSettingsFlowWithLookupMethod) SetMethod(v string) { method GetTransientPayload (line 246) | func (o *UpdateSettingsFlowWithLookupMethod) GetTransientPayload() map... method GetTransientPayloadOk (line 256) | func (o *UpdateSettingsFlowWithLookupMethod) GetTransientPayloadOk() (... method HasTransientPayload (line 264) | func (o *UpdateSettingsFlowWithLookupMethod) HasTransientPayload() bool { method SetTransientPayload (line 273) | func (o *UpdateSettingsFlowWithLookupMethod) SetTransientPayload(v map... method MarshalJSON (line 277) | func (o UpdateSettingsFlowWithLookupMethod) MarshalJSON() ([]byte, err... method ToMap (line 285) | func (o UpdateSettingsFlowWithLookupMethod) ToMap() (map[string]interf... method UnmarshalJSON (line 314) | func (o *UpdateSettingsFlowWithLookupMethod) UnmarshalJSON(data []byte... type _UpdateSettingsFlowWithLookupMethod (line 41) | type _UpdateSettingsFlowWithLookupMethod function NewUpdateSettingsFlowWithLookupMethod (line 47) | func NewUpdateSettingsFlowWithLookupMethod(method string) *UpdateSetting... function NewUpdateSettingsFlowWithLookupMethodWithDefaults (line 56) | func NewUpdateSettingsFlowWithLookupMethodWithDefaults() *UpdateSettings... type NullableUpdateSettingsFlowWithLookupMethod (line 362) | type NullableUpdateSettingsFlowWithLookupMethod struct method Get (line 367) | func (v NullableUpdateSettingsFlowWithLookupMethod) Get() *UpdateSetti... method Set (line 371) | func (v *NullableUpdateSettingsFlowWithLookupMethod) Set(val *UpdateSe... method IsSet (line 376) | func (v NullableUpdateSettingsFlowWithLookupMethod) IsSet() bool { method Unset (line 380) | func (v *NullableUpdateSettingsFlowWithLookupMethod) Unset() { method MarshalJSON (line 389) | func (v NullableUpdateSettingsFlowWithLookupMethod) MarshalJSON() ([]b... method UnmarshalJSON (line 393) | func (v *NullableUpdateSettingsFlowWithLookupMethod) UnmarshalJSON(src... function NewNullableUpdateSettingsFlowWithLookupMethod (line 385) | func NewNullableUpdateSettingsFlowWithLookupMethod(val *UpdateSettingsFl... FILE: pkg/httpclient/model_update_settings_flow_with_oidc_method.go type UpdateSettingsFlowWithOidcMethod (line 23) | type UpdateSettingsFlowWithOidcMethod struct method GetFlow (line 62) | func (o *UpdateSettingsFlowWithOidcMethod) GetFlow() string { method GetFlowOk (line 72) | func (o *UpdateSettingsFlowWithOidcMethod) GetFlowOk() (*string, bool) { method HasFlow (line 80) | func (o *UpdateSettingsFlowWithOidcMethod) HasFlow() bool { method SetFlow (line 89) | func (o *UpdateSettingsFlowWithOidcMethod) SetFlow(v string) { method GetLink (line 94) | func (o *UpdateSettingsFlowWithOidcMethod) GetLink() string { method GetLinkOk (line 104) | func (o *UpdateSettingsFlowWithOidcMethod) GetLinkOk() (*string, bool) { method HasLink (line 112) | func (o *UpdateSettingsFlowWithOidcMethod) HasLink() bool { method SetLink (line 121) | func (o *UpdateSettingsFlowWithOidcMethod) SetLink(v string) { method GetMethod (line 126) | func (o *UpdateSettingsFlowWithOidcMethod) GetMethod() string { method GetMethodOk (line 137) | func (o *UpdateSettingsFlowWithOidcMethod) GetMethodOk() (*string, boo... method SetMethod (line 145) | func (o *UpdateSettingsFlowWithOidcMethod) SetMethod(v string) { method GetTraits (line 150) | func (o *UpdateSettingsFlowWithOidcMethod) GetTraits() map[string]inte... method GetTraitsOk (line 160) | func (o *UpdateSettingsFlowWithOidcMethod) GetTraitsOk() (map[string]i... method HasTraits (line 168) | func (o *UpdateSettingsFlowWithOidcMethod) HasTraits() bool { method SetTraits (line 177) | func (o *UpdateSettingsFlowWithOidcMethod) SetTraits(v map[string]inte... method GetTransientPayload (line 182) | func (o *UpdateSettingsFlowWithOidcMethod) GetTransientPayload() map[s... method GetTransientPayloadOk (line 192) | func (o *UpdateSettingsFlowWithOidcMethod) GetTransientPayloadOk() (ma... method HasTransientPayload (line 200) | func (o *UpdateSettingsFlowWithOidcMethod) HasTransientPayload() bool { method SetTransientPayload (line 209) | func (o *UpdateSettingsFlowWithOidcMethod) SetTransientPayload(v map[s... method GetUnlink (line 214) | func (o *UpdateSettingsFlowWithOidcMethod) GetUnlink() string { method GetUnlinkOk (line 224) | func (o *UpdateSettingsFlowWithOidcMethod) GetUnlinkOk() (*string, boo... method HasUnlink (line 232) | func (o *UpdateSettingsFlowWithOidcMethod) HasUnlink() bool { method SetUnlink (line 241) | func (o *UpdateSettingsFlowWithOidcMethod) SetUnlink(v string) { method GetUpstreamParameters (line 246) | func (o *UpdateSettingsFlowWithOidcMethod) GetUpstreamParameters() map... method GetUpstreamParametersOk (line 256) | func (o *UpdateSettingsFlowWithOidcMethod) GetUpstreamParametersOk() (... method HasUpstreamParameters (line 264) | func (o *UpdateSettingsFlowWithOidcMethod) HasUpstreamParameters() bool { method SetUpstreamParameters (line 273) | func (o *UpdateSettingsFlowWithOidcMethod) SetUpstreamParameters(v map... method MarshalJSON (line 277) | func (o UpdateSettingsFlowWithOidcMethod) MarshalJSON() ([]byte, error) { method ToMap (line 285) | func (o UpdateSettingsFlowWithOidcMethod) ToMap() (map[string]interfac... method UnmarshalJSON (line 314) | func (o *UpdateSettingsFlowWithOidcMethod) UnmarshalJSON(data []byte) ... type _UpdateSettingsFlowWithOidcMethod (line 41) | type _UpdateSettingsFlowWithOidcMethod function NewUpdateSettingsFlowWithOidcMethod (line 47) | func NewUpdateSettingsFlowWithOidcMethod(method string) *UpdateSettingsF... function NewUpdateSettingsFlowWithOidcMethodWithDefaults (line 56) | func NewUpdateSettingsFlowWithOidcMethodWithDefaults() *UpdateSettingsFl... type NullableUpdateSettingsFlowWithOidcMethod (line 362) | type NullableUpdateSettingsFlowWithOidcMethod struct method Get (line 367) | func (v NullableUpdateSettingsFlowWithOidcMethod) Get() *UpdateSetting... method Set (line 371) | func (v *NullableUpdateSettingsFlowWithOidcMethod) Set(val *UpdateSett... method IsSet (line 376) | func (v NullableUpdateSettingsFlowWithOidcMethod) IsSet() bool { method Unset (line 380) | func (v *NullableUpdateSettingsFlowWithOidcMethod) Unset() { method MarshalJSON (line 389) | func (v NullableUpdateSettingsFlowWithOidcMethod) MarshalJSON() ([]byt... method UnmarshalJSON (line 393) | func (v *NullableUpdateSettingsFlowWithOidcMethod) UnmarshalJSON(src [... function NewNullableUpdateSettingsFlowWithOidcMethod (line 385) | func NewNullableUpdateSettingsFlowWithOidcMethod(val *UpdateSettingsFlow... FILE: pkg/httpclient/model_update_settings_flow_with_passkey_method.go type UpdateSettingsFlowWithPasskeyMethod (line 23) | type UpdateSettingsFlowWithPasskeyMethod struct method GetCsrfToken (line 56) | func (o *UpdateSettingsFlowWithPasskeyMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 66) | func (o *UpdateSettingsFlowWithPasskeyMethod) GetCsrfTokenOk() (*strin... method HasCsrfToken (line 74) | func (o *UpdateSettingsFlowWithPasskeyMethod) HasCsrfToken() bool { method SetCsrfToken (line 83) | func (o *UpdateSettingsFlowWithPasskeyMethod) SetCsrfToken(v string) { method GetMethod (line 88) | func (o *UpdateSettingsFlowWithPasskeyMethod) GetMethod() string { method GetMethodOk (line 99) | func (o *UpdateSettingsFlowWithPasskeyMethod) GetMethodOk() (*string, ... method SetMethod (line 107) | func (o *UpdateSettingsFlowWithPasskeyMethod) SetMethod(v string) { method GetPasskeyRemove (line 112) | func (o *UpdateSettingsFlowWithPasskeyMethod) GetPasskeyRemove() string { method GetPasskeyRemoveOk (line 122) | func (o *UpdateSettingsFlowWithPasskeyMethod) GetPasskeyRemoveOk() (*s... method HasPasskeyRemove (line 130) | func (o *UpdateSettingsFlowWithPasskeyMethod) HasPasskeyRemove() bool { method SetPasskeyRemove (line 139) | func (o *UpdateSettingsFlowWithPasskeyMethod) SetPasskeyRemove(v strin... method GetPasskeySettingsRegister (line 144) | func (o *UpdateSettingsFlowWithPasskeyMethod) GetPasskeySettingsRegist... method GetPasskeySettingsRegisterOk (line 154) | func (o *UpdateSettingsFlowWithPasskeyMethod) GetPasskeySettingsRegist... method HasPasskeySettingsRegister (line 162) | func (o *UpdateSettingsFlowWithPasskeyMethod) HasPasskeySettingsRegist... method SetPasskeySettingsRegister (line 171) | func (o *UpdateSettingsFlowWithPasskeyMethod) SetPasskeySettingsRegist... method MarshalJSON (line 175) | func (o UpdateSettingsFlowWithPasskeyMethod) MarshalJSON() ([]byte, er... method ToMap (line 183) | func (o UpdateSettingsFlowWithPasskeyMethod) ToMap() (map[string]inter... method UnmarshalJSON (line 203) | func (o *UpdateSettingsFlowWithPasskeyMethod) UnmarshalJSON(data []byt... type _UpdateSettingsFlowWithPasskeyMethod (line 35) | type _UpdateSettingsFlowWithPasskeyMethod function NewUpdateSettingsFlowWithPasskeyMethod (line 41) | func NewUpdateSettingsFlowWithPasskeyMethod(method string) *UpdateSettin... function NewUpdateSettingsFlowWithPasskeyMethodWithDefaults (line 50) | func NewUpdateSettingsFlowWithPasskeyMethodWithDefaults() *UpdateSetting... type NullableUpdateSettingsFlowWithPasskeyMethod (line 248) | type NullableUpdateSettingsFlowWithPasskeyMethod struct method Get (line 253) | func (v NullableUpdateSettingsFlowWithPasskeyMethod) Get() *UpdateSett... method Set (line 257) | func (v *NullableUpdateSettingsFlowWithPasskeyMethod) Set(val *UpdateS... method IsSet (line 262) | func (v NullableUpdateSettingsFlowWithPasskeyMethod) IsSet() bool { method Unset (line 266) | func (v *NullableUpdateSettingsFlowWithPasskeyMethod) Unset() { method MarshalJSON (line 275) | func (v NullableUpdateSettingsFlowWithPasskeyMethod) MarshalJSON() ([]... method UnmarshalJSON (line 279) | func (v *NullableUpdateSettingsFlowWithPasskeyMethod) UnmarshalJSON(sr... function NewNullableUpdateSettingsFlowWithPasskeyMethod (line 271) | func NewNullableUpdateSettingsFlowWithPasskeyMethod(val *UpdateSettingsF... FILE: pkg/httpclient/model_update_settings_flow_with_password_method.go type UpdateSettingsFlowWithPasswordMethod (line 23) | type UpdateSettingsFlowWithPasswordMethod struct method GetCsrfToken (line 57) | func (o *UpdateSettingsFlowWithPasswordMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 67) | func (o *UpdateSettingsFlowWithPasswordMethod) GetCsrfTokenOk() (*stri... method HasCsrfToken (line 75) | func (o *UpdateSettingsFlowWithPasswordMethod) HasCsrfToken() bool { method SetCsrfToken (line 84) | func (o *UpdateSettingsFlowWithPasswordMethod) SetCsrfToken(v string) { method GetMethod (line 89) | func (o *UpdateSettingsFlowWithPasswordMethod) GetMethod() string { method GetMethodOk (line 100) | func (o *UpdateSettingsFlowWithPasswordMethod) GetMethodOk() (*string,... method SetMethod (line 108) | func (o *UpdateSettingsFlowWithPasswordMethod) SetMethod(v string) { method GetPassword (line 113) | func (o *UpdateSettingsFlowWithPasswordMethod) GetPassword() string { method GetPasswordOk (line 124) | func (o *UpdateSettingsFlowWithPasswordMethod) GetPasswordOk() (*strin... method SetPassword (line 132) | func (o *UpdateSettingsFlowWithPasswordMethod) SetPassword(v string) { method GetTransientPayload (line 137) | func (o *UpdateSettingsFlowWithPasswordMethod) GetTransientPayload() m... method GetTransientPayloadOk (line 147) | func (o *UpdateSettingsFlowWithPasswordMethod) GetTransientPayloadOk()... method HasTransientPayload (line 155) | func (o *UpdateSettingsFlowWithPasswordMethod) HasTransientPayload() b... method SetTransientPayload (line 164) | func (o *UpdateSettingsFlowWithPasswordMethod) SetTransientPayload(v m... method MarshalJSON (line 168) | func (o UpdateSettingsFlowWithPasswordMethod) MarshalJSON() ([]byte, e... method ToMap (line 176) | func (o UpdateSettingsFlowWithPasswordMethod) ToMap() (map[string]inte... method UnmarshalJSON (line 194) | func (o *UpdateSettingsFlowWithPasswordMethod) UnmarshalJSON(data []by... type _UpdateSettingsFlowWithPasswordMethod (line 35) | type _UpdateSettingsFlowWithPasswordMethod function NewUpdateSettingsFlowWithPasswordMethod (line 41) | func NewUpdateSettingsFlowWithPasswordMethod(method string, password str... function NewUpdateSettingsFlowWithPasswordMethodWithDefaults (line 51) | func NewUpdateSettingsFlowWithPasswordMethodWithDefaults() *UpdateSettin... type NullableUpdateSettingsFlowWithPasswordMethod (line 240) | type NullableUpdateSettingsFlowWithPasswordMethod struct method Get (line 245) | func (v NullableUpdateSettingsFlowWithPasswordMethod) Get() *UpdateSet... method Set (line 249) | func (v *NullableUpdateSettingsFlowWithPasswordMethod) Set(val *Update... method IsSet (line 254) | func (v NullableUpdateSettingsFlowWithPasswordMethod) IsSet() bool { method Unset (line 258) | func (v *NullableUpdateSettingsFlowWithPasswordMethod) Unset() { method MarshalJSON (line 267) | func (v NullableUpdateSettingsFlowWithPasswordMethod) MarshalJSON() ([... method UnmarshalJSON (line 271) | func (v *NullableUpdateSettingsFlowWithPasswordMethod) UnmarshalJSON(s... function NewNullableUpdateSettingsFlowWithPasswordMethod (line 263) | func NewNullableUpdateSettingsFlowWithPasswordMethod(val *UpdateSettings... FILE: pkg/httpclient/model_update_settings_flow_with_profile_method.go type UpdateSettingsFlowWithProfileMethod (line 23) | type UpdateSettingsFlowWithProfileMethod struct method GetCsrfToken (line 57) | func (o *UpdateSettingsFlowWithProfileMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 67) | func (o *UpdateSettingsFlowWithProfileMethod) GetCsrfTokenOk() (*strin... method HasCsrfToken (line 75) | func (o *UpdateSettingsFlowWithProfileMethod) HasCsrfToken() bool { method SetCsrfToken (line 84) | func (o *UpdateSettingsFlowWithProfileMethod) SetCsrfToken(v string) { method GetMethod (line 89) | func (o *UpdateSettingsFlowWithProfileMethod) GetMethod() string { method GetMethodOk (line 100) | func (o *UpdateSettingsFlowWithProfileMethod) GetMethodOk() (*string, ... method SetMethod (line 108) | func (o *UpdateSettingsFlowWithProfileMethod) SetMethod(v string) { method GetTraits (line 113) | func (o *UpdateSettingsFlowWithProfileMethod) GetTraits() map[string]i... method GetTraitsOk (line 124) | func (o *UpdateSettingsFlowWithProfileMethod) GetTraitsOk() (map[strin... method SetTraits (line 132) | func (o *UpdateSettingsFlowWithProfileMethod) SetTraits(v map[string]i... method GetTransientPayload (line 137) | func (o *UpdateSettingsFlowWithProfileMethod) GetTransientPayload() ma... method GetTransientPayloadOk (line 147) | func (o *UpdateSettingsFlowWithProfileMethod) GetTransientPayloadOk() ... method HasTransientPayload (line 155) | func (o *UpdateSettingsFlowWithProfileMethod) HasTransientPayload() bo... method SetTransientPayload (line 164) | func (o *UpdateSettingsFlowWithProfileMethod) SetTransientPayload(v ma... method MarshalJSON (line 168) | func (o UpdateSettingsFlowWithProfileMethod) MarshalJSON() ([]byte, er... method ToMap (line 176) | func (o UpdateSettingsFlowWithProfileMethod) ToMap() (map[string]inter... method UnmarshalJSON (line 194) | func (o *UpdateSettingsFlowWithProfileMethod) UnmarshalJSON(data []byt... type _UpdateSettingsFlowWithProfileMethod (line 35) | type _UpdateSettingsFlowWithProfileMethod function NewUpdateSettingsFlowWithProfileMethod (line 41) | func NewUpdateSettingsFlowWithProfileMethod(method string, traits map[st... function NewUpdateSettingsFlowWithProfileMethodWithDefaults (line 51) | func NewUpdateSettingsFlowWithProfileMethodWithDefaults() *UpdateSetting... type NullableUpdateSettingsFlowWithProfileMethod (line 240) | type NullableUpdateSettingsFlowWithProfileMethod struct method Get (line 245) | func (v NullableUpdateSettingsFlowWithProfileMethod) Get() *UpdateSett... method Set (line 249) | func (v *NullableUpdateSettingsFlowWithProfileMethod) Set(val *UpdateS... method IsSet (line 254) | func (v NullableUpdateSettingsFlowWithProfileMethod) IsSet() bool { method Unset (line 258) | func (v *NullableUpdateSettingsFlowWithProfileMethod) Unset() { method MarshalJSON (line 267) | func (v NullableUpdateSettingsFlowWithProfileMethod) MarshalJSON() ([]... method UnmarshalJSON (line 271) | func (v *NullableUpdateSettingsFlowWithProfileMethod) UnmarshalJSON(sr... function NewNullableUpdateSettingsFlowWithProfileMethod (line 263) | func NewNullableUpdateSettingsFlowWithProfileMethod(val *UpdateSettingsF... FILE: pkg/httpclient/model_update_settings_flow_with_saml_method.go type UpdateSettingsFlowWithSamlMethod (line 23) | type UpdateSettingsFlowWithSamlMethod struct method GetCsrfToken (line 62) | func (o *UpdateSettingsFlowWithSamlMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 72) | func (o *UpdateSettingsFlowWithSamlMethod) GetCsrfTokenOk() (*string, ... method HasCsrfToken (line 80) | func (o *UpdateSettingsFlowWithSamlMethod) HasCsrfToken() bool { method SetCsrfToken (line 89) | func (o *UpdateSettingsFlowWithSamlMethod) SetCsrfToken(v string) { method GetFlow (line 94) | func (o *UpdateSettingsFlowWithSamlMethod) GetFlow() string { method GetFlowOk (line 104) | func (o *UpdateSettingsFlowWithSamlMethod) GetFlowOk() (*string, bool) { method HasFlow (line 112) | func (o *UpdateSettingsFlowWithSamlMethod) HasFlow() bool { method SetFlow (line 121) | func (o *UpdateSettingsFlowWithSamlMethod) SetFlow(v string) { method GetLink (line 126) | func (o *UpdateSettingsFlowWithSamlMethod) GetLink() string { method GetLinkOk (line 136) | func (o *UpdateSettingsFlowWithSamlMethod) GetLinkOk() (*string, bool) { method HasLink (line 144) | func (o *UpdateSettingsFlowWithSamlMethod) HasLink() bool { method SetLink (line 153) | func (o *UpdateSettingsFlowWithSamlMethod) SetLink(v string) { method GetMethod (line 158) | func (o *UpdateSettingsFlowWithSamlMethod) GetMethod() string { method GetMethodOk (line 169) | func (o *UpdateSettingsFlowWithSamlMethod) GetMethodOk() (*string, boo... method SetMethod (line 177) | func (o *UpdateSettingsFlowWithSamlMethod) SetMethod(v string) { method GetTraits (line 182) | func (o *UpdateSettingsFlowWithSamlMethod) GetTraits() map[string]inte... method GetTraitsOk (line 192) | func (o *UpdateSettingsFlowWithSamlMethod) GetTraitsOk() (map[string]i... method HasTraits (line 200) | func (o *UpdateSettingsFlowWithSamlMethod) HasTraits() bool { method SetTraits (line 209) | func (o *UpdateSettingsFlowWithSamlMethod) SetTraits(v map[string]inte... method GetTransientPayload (line 214) | func (o *UpdateSettingsFlowWithSamlMethod) GetTransientPayload() map[s... method GetTransientPayloadOk (line 224) | func (o *UpdateSettingsFlowWithSamlMethod) GetTransientPayloadOk() (ma... method HasTransientPayload (line 232) | func (o *UpdateSettingsFlowWithSamlMethod) HasTransientPayload() bool { method SetTransientPayload (line 241) | func (o *UpdateSettingsFlowWithSamlMethod) SetTransientPayload(v map[s... method GetUnlink (line 246) | func (o *UpdateSettingsFlowWithSamlMethod) GetUnlink() string { method GetUnlinkOk (line 256) | func (o *UpdateSettingsFlowWithSamlMethod) GetUnlinkOk() (*string, boo... method HasUnlink (line 264) | func (o *UpdateSettingsFlowWithSamlMethod) HasUnlink() bool { method SetUnlink (line 273) | func (o *UpdateSettingsFlowWithSamlMethod) SetUnlink(v string) { method MarshalJSON (line 277) | func (o UpdateSettingsFlowWithSamlMethod) MarshalJSON() ([]byte, error) { method ToMap (line 285) | func (o UpdateSettingsFlowWithSamlMethod) ToMap() (map[string]interfac... method UnmarshalJSON (line 314) | func (o *UpdateSettingsFlowWithSamlMethod) UnmarshalJSON(data []byte) ... type _UpdateSettingsFlowWithSamlMethod (line 41) | type _UpdateSettingsFlowWithSamlMethod function NewUpdateSettingsFlowWithSamlMethod (line 47) | func NewUpdateSettingsFlowWithSamlMethod(method string) *UpdateSettingsF... function NewUpdateSettingsFlowWithSamlMethodWithDefaults (line 56) | func NewUpdateSettingsFlowWithSamlMethodWithDefaults() *UpdateSettingsFl... type NullableUpdateSettingsFlowWithSamlMethod (line 362) | type NullableUpdateSettingsFlowWithSamlMethod struct method Get (line 367) | func (v NullableUpdateSettingsFlowWithSamlMethod) Get() *UpdateSetting... method Set (line 371) | func (v *NullableUpdateSettingsFlowWithSamlMethod) Set(val *UpdateSett... method IsSet (line 376) | func (v NullableUpdateSettingsFlowWithSamlMethod) IsSet() bool { method Unset (line 380) | func (v *NullableUpdateSettingsFlowWithSamlMethod) Unset() { method MarshalJSON (line 389) | func (v NullableUpdateSettingsFlowWithSamlMethod) MarshalJSON() ([]byt... method UnmarshalJSON (line 393) | func (v *NullableUpdateSettingsFlowWithSamlMethod) UnmarshalJSON(src [... function NewNullableUpdateSettingsFlowWithSamlMethod (line 385) | func NewNullableUpdateSettingsFlowWithSamlMethod(val *UpdateSettingsFlow... FILE: pkg/httpclient/model_update_settings_flow_with_totp_method.go type UpdateSettingsFlowWithTotpMethod (line 23) | type UpdateSettingsFlowWithTotpMethod struct method GetCsrfToken (line 58) | func (o *UpdateSettingsFlowWithTotpMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 68) | func (o *UpdateSettingsFlowWithTotpMethod) GetCsrfTokenOk() (*string, ... method HasCsrfToken (line 76) | func (o *UpdateSettingsFlowWithTotpMethod) HasCsrfToken() bool { method SetCsrfToken (line 85) | func (o *UpdateSettingsFlowWithTotpMethod) SetCsrfToken(v string) { method GetMethod (line 90) | func (o *UpdateSettingsFlowWithTotpMethod) GetMethod() string { method GetMethodOk (line 101) | func (o *UpdateSettingsFlowWithTotpMethod) GetMethodOk() (*string, boo... method SetMethod (line 109) | func (o *UpdateSettingsFlowWithTotpMethod) SetMethod(v string) { method GetTotpCode (line 114) | func (o *UpdateSettingsFlowWithTotpMethod) GetTotpCode() string { method GetTotpCodeOk (line 124) | func (o *UpdateSettingsFlowWithTotpMethod) GetTotpCodeOk() (*string, b... method HasTotpCode (line 132) | func (o *UpdateSettingsFlowWithTotpMethod) HasTotpCode() bool { method SetTotpCode (line 141) | func (o *UpdateSettingsFlowWithTotpMethod) SetTotpCode(v string) { method GetTotpUnlink (line 146) | func (o *UpdateSettingsFlowWithTotpMethod) GetTotpUnlink() bool { method GetTotpUnlinkOk (line 156) | func (o *UpdateSettingsFlowWithTotpMethod) GetTotpUnlinkOk() (*bool, b... method HasTotpUnlink (line 164) | func (o *UpdateSettingsFlowWithTotpMethod) HasTotpUnlink() bool { method SetTotpUnlink (line 173) | func (o *UpdateSettingsFlowWithTotpMethod) SetTotpUnlink(v bool) { method GetTransientPayload (line 178) | func (o *UpdateSettingsFlowWithTotpMethod) GetTransientPayload() map[s... method GetTransientPayloadOk (line 188) | func (o *UpdateSettingsFlowWithTotpMethod) GetTransientPayloadOk() (ma... method HasTransientPayload (line 196) | func (o *UpdateSettingsFlowWithTotpMethod) HasTransientPayload() bool { method SetTransientPayload (line 205) | func (o *UpdateSettingsFlowWithTotpMethod) SetTransientPayload(v map[s... method MarshalJSON (line 209) | func (o UpdateSettingsFlowWithTotpMethod) MarshalJSON() ([]byte, error) { method ToMap (line 217) | func (o UpdateSettingsFlowWithTotpMethod) ToMap() (map[string]interfac... method UnmarshalJSON (line 240) | func (o *UpdateSettingsFlowWithTotpMethod) UnmarshalJSON(data []byte) ... type _UpdateSettingsFlowWithTotpMethod (line 37) | type _UpdateSettingsFlowWithTotpMethod function NewUpdateSettingsFlowWithTotpMethod (line 43) | func NewUpdateSettingsFlowWithTotpMethod(method string) *UpdateSettingsF... function NewUpdateSettingsFlowWithTotpMethodWithDefaults (line 52) | func NewUpdateSettingsFlowWithTotpMethodWithDefaults() *UpdateSettingsFl... type NullableUpdateSettingsFlowWithTotpMethod (line 286) | type NullableUpdateSettingsFlowWithTotpMethod struct method Get (line 291) | func (v NullableUpdateSettingsFlowWithTotpMethod) Get() *UpdateSetting... method Set (line 295) | func (v *NullableUpdateSettingsFlowWithTotpMethod) Set(val *UpdateSett... method IsSet (line 300) | func (v NullableUpdateSettingsFlowWithTotpMethod) IsSet() bool { method Unset (line 304) | func (v *NullableUpdateSettingsFlowWithTotpMethod) Unset() { method MarshalJSON (line 313) | func (v NullableUpdateSettingsFlowWithTotpMethod) MarshalJSON() ([]byt... method UnmarshalJSON (line 317) | func (v *NullableUpdateSettingsFlowWithTotpMethod) UnmarshalJSON(src [... function NewNullableUpdateSettingsFlowWithTotpMethod (line 309) | func NewNullableUpdateSettingsFlowWithTotpMethod(val *UpdateSettingsFlow... FILE: pkg/httpclient/model_update_settings_flow_with_web_authn_method.go type UpdateSettingsFlowWithWebAuthnMethod (line 23) | type UpdateSettingsFlowWithWebAuthnMethod struct method GetCsrfToken (line 60) | func (o *UpdateSettingsFlowWithWebAuthnMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 70) | func (o *UpdateSettingsFlowWithWebAuthnMethod) GetCsrfTokenOk() (*stri... method HasCsrfToken (line 78) | func (o *UpdateSettingsFlowWithWebAuthnMethod) HasCsrfToken() bool { method SetCsrfToken (line 87) | func (o *UpdateSettingsFlowWithWebAuthnMethod) SetCsrfToken(v string) { method GetMethod (line 92) | func (o *UpdateSettingsFlowWithWebAuthnMethod) GetMethod() string { method GetMethodOk (line 103) | func (o *UpdateSettingsFlowWithWebAuthnMethod) GetMethodOk() (*string,... method SetMethod (line 111) | func (o *UpdateSettingsFlowWithWebAuthnMethod) SetMethod(v string) { method GetTransientPayload (line 116) | func (o *UpdateSettingsFlowWithWebAuthnMethod) GetTransientPayload() m... method GetTransientPayloadOk (line 126) | func (o *UpdateSettingsFlowWithWebAuthnMethod) GetTransientPayloadOk()... method HasTransientPayload (line 134) | func (o *UpdateSettingsFlowWithWebAuthnMethod) HasTransientPayload() b... method SetTransientPayload (line 143) | func (o *UpdateSettingsFlowWithWebAuthnMethod) SetTransientPayload(v m... method GetWebauthnRegister (line 148) | func (o *UpdateSettingsFlowWithWebAuthnMethod) GetWebauthnRegister() s... method GetWebauthnRegisterOk (line 158) | func (o *UpdateSettingsFlowWithWebAuthnMethod) GetWebauthnRegisterOk()... method HasWebauthnRegister (line 166) | func (o *UpdateSettingsFlowWithWebAuthnMethod) HasWebauthnRegister() b... method SetWebauthnRegister (line 175) | func (o *UpdateSettingsFlowWithWebAuthnMethod) SetWebauthnRegister(v s... method GetWebauthnRegisterDisplayname (line 180) | func (o *UpdateSettingsFlowWithWebAuthnMethod) GetWebauthnRegisterDisp... method GetWebauthnRegisterDisplaynameOk (line 190) | func (o *UpdateSettingsFlowWithWebAuthnMethod) GetWebauthnRegisterDisp... method HasWebauthnRegisterDisplayname (line 198) | func (o *UpdateSettingsFlowWithWebAuthnMethod) HasWebauthnRegisterDisp... method SetWebauthnRegisterDisplayname (line 207) | func (o *UpdateSettingsFlowWithWebAuthnMethod) SetWebauthnRegisterDisp... method GetWebauthnRemove (line 212) | func (o *UpdateSettingsFlowWithWebAuthnMethod) GetWebauthnRemove() str... method GetWebauthnRemoveOk (line 222) | func (o *UpdateSettingsFlowWithWebAuthnMethod) GetWebauthnRemoveOk() (... method HasWebauthnRemove (line 230) | func (o *UpdateSettingsFlowWithWebAuthnMethod) HasWebauthnRemove() bool { method SetWebauthnRemove (line 239) | func (o *UpdateSettingsFlowWithWebAuthnMethod) SetWebauthnRemove(v str... method MarshalJSON (line 243) | func (o UpdateSettingsFlowWithWebAuthnMethod) MarshalJSON() ([]byte, e... method ToMap (line 251) | func (o UpdateSettingsFlowWithWebAuthnMethod) ToMap() (map[string]inte... method UnmarshalJSON (line 277) | func (o *UpdateSettingsFlowWithWebAuthnMethod) UnmarshalJSON(data []by... type _UpdateSettingsFlowWithWebAuthnMethod (line 39) | type _UpdateSettingsFlowWithWebAuthnMethod function NewUpdateSettingsFlowWithWebAuthnMethod (line 45) | func NewUpdateSettingsFlowWithWebAuthnMethod(method string) *UpdateSetti... function NewUpdateSettingsFlowWithWebAuthnMethodWithDefaults (line 54) | func NewUpdateSettingsFlowWithWebAuthnMethodWithDefaults() *UpdateSettin... type NullableUpdateSettingsFlowWithWebAuthnMethod (line 324) | type NullableUpdateSettingsFlowWithWebAuthnMethod struct method Get (line 329) | func (v NullableUpdateSettingsFlowWithWebAuthnMethod) Get() *UpdateSet... method Set (line 333) | func (v *NullableUpdateSettingsFlowWithWebAuthnMethod) Set(val *Update... method IsSet (line 338) | func (v NullableUpdateSettingsFlowWithWebAuthnMethod) IsSet() bool { method Unset (line 342) | func (v *NullableUpdateSettingsFlowWithWebAuthnMethod) Unset() { method MarshalJSON (line 351) | func (v NullableUpdateSettingsFlowWithWebAuthnMethod) MarshalJSON() ([... method UnmarshalJSON (line 355) | func (v *NullableUpdateSettingsFlowWithWebAuthnMethod) UnmarshalJSON(s... function NewNullableUpdateSettingsFlowWithWebAuthnMethod (line 347) | func NewNullableUpdateSettingsFlowWithWebAuthnMethod(val *UpdateSettings... FILE: pkg/httpclient/model_update_verification_flow_body.go type UpdateVerificationFlowBody (line 20) | type UpdateVerificationFlowBody struct method UnmarshalJSON (line 40) | func (dst *UpdateVerificationFlowBody) UnmarshalJSON(data []byte) error { method MarshalJSON (line 101) | func (src UpdateVerificationFlowBody) MarshalJSON() ([]byte, error) { method GetActualInstance (line 114) | func (obj *UpdateVerificationFlowBody) GetActualInstance() interface{} { method GetActualInstanceValue (line 131) | func (obj UpdateVerificationFlowBody) GetActualInstanceValue() interfa... function UpdateVerificationFlowWithCodeMethodAsUpdateVerificationFlowBody (line 26) | func UpdateVerificationFlowWithCodeMethodAsUpdateVerificationFlowBody(v ... function UpdateVerificationFlowWithLinkMethodAsUpdateVerificationFlowBody (line 33) | func UpdateVerificationFlowWithLinkMethodAsUpdateVerificationFlowBody(v ... type NullableUpdateVerificationFlowBody (line 144) | type NullableUpdateVerificationFlowBody struct method Get (line 149) | func (v NullableUpdateVerificationFlowBody) Get() *UpdateVerificationF... method Set (line 153) | func (v *NullableUpdateVerificationFlowBody) Set(val *UpdateVerificati... method IsSet (line 158) | func (v NullableUpdateVerificationFlowBody) IsSet() bool { method Unset (line 162) | func (v *NullableUpdateVerificationFlowBody) Unset() { method MarshalJSON (line 171) | func (v NullableUpdateVerificationFlowBody) MarshalJSON() ([]byte, err... method UnmarshalJSON (line 175) | func (v *NullableUpdateVerificationFlowBody) UnmarshalJSON(src []byte)... function NewNullableUpdateVerificationFlowBody (line 167) | func NewNullableUpdateVerificationFlowBody(val *UpdateVerificationFlowBo... FILE: pkg/httpclient/model_update_verification_flow_with_code_method.go type UpdateVerificationFlowWithCodeMethod (line 23) | type UpdateVerificationFlowWithCodeMethod struct method GetCode (line 58) | func (o *UpdateVerificationFlowWithCodeMethod) GetCode() string { method GetCodeOk (line 68) | func (o *UpdateVerificationFlowWithCodeMethod) GetCodeOk() (*string, b... method HasCode (line 76) | func (o *UpdateVerificationFlowWithCodeMethod) HasCode() bool { method SetCode (line 85) | func (o *UpdateVerificationFlowWithCodeMethod) SetCode(v string) { method GetCsrfToken (line 90) | func (o *UpdateVerificationFlowWithCodeMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 100) | func (o *UpdateVerificationFlowWithCodeMethod) GetCsrfTokenOk() (*stri... method HasCsrfToken (line 108) | func (o *UpdateVerificationFlowWithCodeMethod) HasCsrfToken() bool { method SetCsrfToken (line 117) | func (o *UpdateVerificationFlowWithCodeMethod) SetCsrfToken(v string) { method GetEmail (line 122) | func (o *UpdateVerificationFlowWithCodeMethod) GetEmail() string { method GetEmailOk (line 132) | func (o *UpdateVerificationFlowWithCodeMethod) GetEmailOk() (*string, ... method HasEmail (line 140) | func (o *UpdateVerificationFlowWithCodeMethod) HasEmail() bool { method SetEmail (line 149) | func (o *UpdateVerificationFlowWithCodeMethod) SetEmail(v string) { method GetMethod (line 154) | func (o *UpdateVerificationFlowWithCodeMethod) GetMethod() string { method GetMethodOk (line 165) | func (o *UpdateVerificationFlowWithCodeMethod) GetMethodOk() (*string,... method SetMethod (line 173) | func (o *UpdateVerificationFlowWithCodeMethod) SetMethod(v string) { method GetTransientPayload (line 178) | func (o *UpdateVerificationFlowWithCodeMethod) GetTransientPayload() m... method GetTransientPayloadOk (line 188) | func (o *UpdateVerificationFlowWithCodeMethod) GetTransientPayloadOk()... method HasTransientPayload (line 196) | func (o *UpdateVerificationFlowWithCodeMethod) HasTransientPayload() b... method SetTransientPayload (line 205) | func (o *UpdateVerificationFlowWithCodeMethod) SetTransientPayload(v m... method MarshalJSON (line 209) | func (o UpdateVerificationFlowWithCodeMethod) MarshalJSON() ([]byte, e... method ToMap (line 217) | func (o UpdateVerificationFlowWithCodeMethod) ToMap() (map[string]inte... method UnmarshalJSON (line 240) | func (o *UpdateVerificationFlowWithCodeMethod) UnmarshalJSON(data []by... type _UpdateVerificationFlowWithCodeMethod (line 37) | type _UpdateVerificationFlowWithCodeMethod function NewUpdateVerificationFlowWithCodeMethod (line 43) | func NewUpdateVerificationFlowWithCodeMethod(method string) *UpdateVerif... function NewUpdateVerificationFlowWithCodeMethodWithDefaults (line 52) | func NewUpdateVerificationFlowWithCodeMethodWithDefaults() *UpdateVerifi... type NullableUpdateVerificationFlowWithCodeMethod (line 286) | type NullableUpdateVerificationFlowWithCodeMethod struct method Get (line 291) | func (v NullableUpdateVerificationFlowWithCodeMethod) Get() *UpdateVer... method Set (line 295) | func (v *NullableUpdateVerificationFlowWithCodeMethod) Set(val *Update... method IsSet (line 300) | func (v NullableUpdateVerificationFlowWithCodeMethod) IsSet() bool { method Unset (line 304) | func (v *NullableUpdateVerificationFlowWithCodeMethod) Unset() { method MarshalJSON (line 313) | func (v NullableUpdateVerificationFlowWithCodeMethod) MarshalJSON() ([... method UnmarshalJSON (line 317) | func (v *NullableUpdateVerificationFlowWithCodeMethod) UnmarshalJSON(s... function NewNullableUpdateVerificationFlowWithCodeMethod (line 309) | func NewNullableUpdateVerificationFlowWithCodeMethod(val *UpdateVerifica... FILE: pkg/httpclient/model_update_verification_flow_with_link_method.go type UpdateVerificationFlowWithLinkMethod (line 23) | type UpdateVerificationFlowWithLinkMethod struct method GetCsrfToken (line 57) | func (o *UpdateVerificationFlowWithLinkMethod) GetCsrfToken() string { method GetCsrfTokenOk (line 67) | func (o *UpdateVerificationFlowWithLinkMethod) GetCsrfTokenOk() (*stri... method HasCsrfToken (line 75) | func (o *UpdateVerificationFlowWithLinkMethod) HasCsrfToken() bool { method SetCsrfToken (line 84) | func (o *UpdateVerificationFlowWithLinkMethod) SetCsrfToken(v string) { method GetEmail (line 89) | func (o *UpdateVerificationFlowWithLinkMethod) GetEmail() string { method GetEmailOk (line 100) | func (o *UpdateVerificationFlowWithLinkMethod) GetEmailOk() (*string, ... method SetEmail (line 108) | func (o *UpdateVerificationFlowWithLinkMethod) SetEmail(v string) { method GetMethod (line 113) | func (o *UpdateVerificationFlowWithLinkMethod) GetMethod() string { method GetMethodOk (line 124) | func (o *UpdateVerificationFlowWithLinkMethod) GetMethodOk() (*string,... method SetMethod (line 132) | func (o *UpdateVerificationFlowWithLinkMethod) SetMethod(v string) { method GetTransientPayload (line 137) | func (o *UpdateVerificationFlowWithLinkMethod) GetTransientPayload() m... method GetTransientPayloadOk (line 147) | func (o *UpdateVerificationFlowWithLinkMethod) GetTransientPayloadOk()... method HasTransientPayload (line 155) | func (o *UpdateVerificationFlowWithLinkMethod) HasTransientPayload() b... method SetTransientPayload (line 164) | func (o *UpdateVerificationFlowWithLinkMethod) SetTransientPayload(v m... method MarshalJSON (line 168) | func (o UpdateVerificationFlowWithLinkMethod) MarshalJSON() ([]byte, e... method ToMap (line 176) | func (o UpdateVerificationFlowWithLinkMethod) ToMap() (map[string]inte... method UnmarshalJSON (line 194) | func (o *UpdateVerificationFlowWithLinkMethod) UnmarshalJSON(data []by... type _UpdateVerificationFlowWithLinkMethod (line 35) | type _UpdateVerificationFlowWithLinkMethod function NewUpdateVerificationFlowWithLinkMethod (line 41) | func NewUpdateVerificationFlowWithLinkMethod(email string, method string... function NewUpdateVerificationFlowWithLinkMethodWithDefaults (line 51) | func NewUpdateVerificationFlowWithLinkMethodWithDefaults() *UpdateVerifi... type NullableUpdateVerificationFlowWithLinkMethod (line 240) | type NullableUpdateVerificationFlowWithLinkMethod struct method Get (line 245) | func (v NullableUpdateVerificationFlowWithLinkMethod) Get() *UpdateVer... method Set (line 249) | func (v *NullableUpdateVerificationFlowWithLinkMethod) Set(val *Update... method IsSet (line 254) | func (v NullableUpdateVerificationFlowWithLinkMethod) IsSet() bool { method Unset (line 258) | func (v *NullableUpdateVerificationFlowWithLinkMethod) Unset() { method MarshalJSON (line 267) | func (v NullableUpdateVerificationFlowWithLinkMethod) MarshalJSON() ([... method UnmarshalJSON (line 271) | func (v *NullableUpdateVerificationFlowWithLinkMethod) UnmarshalJSON(s... function NewNullableUpdateVerificationFlowWithLinkMethod (line 263) | func NewNullableUpdateVerificationFlowWithLinkMethod(val *UpdateVerifica... FILE: pkg/httpclient/model_verifiable_identity_address.go type VerifiableIdentityAddress (line 24) | type VerifiableIdentityAddress struct method GetCreatedAt (line 67) | func (o *VerifiableIdentityAddress) GetCreatedAt() time.Time { method GetCreatedAtOk (line 77) | func (o *VerifiableIdentityAddress) GetCreatedAtOk() (*time.Time, bool) { method HasCreatedAt (line 85) | func (o *VerifiableIdentityAddress) HasCreatedAt() bool { method SetCreatedAt (line 94) | func (o *VerifiableIdentityAddress) SetCreatedAt(v time.Time) { method GetId (line 99) | func (o *VerifiableIdentityAddress) GetId() string { method GetIdOk (line 109) | func (o *VerifiableIdentityAddress) GetIdOk() (*string, bool) { method HasId (line 117) | func (o *VerifiableIdentityAddress) HasId() bool { method SetId (line 126) | func (o *VerifiableIdentityAddress) SetId(v string) { method GetStatus (line 131) | func (o *VerifiableIdentityAddress) GetStatus() string { method GetStatusOk (line 142) | func (o *VerifiableIdentityAddress) GetStatusOk() (*string, bool) { method SetStatus (line 150) | func (o *VerifiableIdentityAddress) SetStatus(v string) { method GetUpdatedAt (line 155) | func (o *VerifiableIdentityAddress) GetUpdatedAt() time.Time { method GetUpdatedAtOk (line 165) | func (o *VerifiableIdentityAddress) GetUpdatedAtOk() (*time.Time, bool) { method HasUpdatedAt (line 173) | func (o *VerifiableIdentityAddress) HasUpdatedAt() bool { method SetUpdatedAt (line 182) | func (o *VerifiableIdentityAddress) SetUpdatedAt(v time.Time) { method GetValue (line 187) | func (o *VerifiableIdentityAddress) GetValue() string { method GetValueOk (line 198) | func (o *VerifiableIdentityAddress) GetValueOk() (*string, bool) { method SetValue (line 206) | func (o *VerifiableIdentityAddress) SetValue(v string) { method GetVerified (line 211) | func (o *VerifiableIdentityAddress) GetVerified() bool { method GetVerifiedOk (line 222) | func (o *VerifiableIdentityAddress) GetVerifiedOk() (*bool, bool) { method SetVerified (line 230) | func (o *VerifiableIdentityAddress) SetVerified(v bool) { method GetVerifiedAt (line 235) | func (o *VerifiableIdentityAddress) GetVerifiedAt() time.Time { method GetVerifiedAtOk (line 245) | func (o *VerifiableIdentityAddress) GetVerifiedAtOk() (*time.Time, boo... method HasVerifiedAt (line 253) | func (o *VerifiableIdentityAddress) HasVerifiedAt() bool { method SetVerifiedAt (line 262) | func (o *VerifiableIdentityAddress) SetVerifiedAt(v time.Time) { method GetVia (line 267) | func (o *VerifiableIdentityAddress) GetVia() string { method GetViaOk (line 278) | func (o *VerifiableIdentityAddress) GetViaOk() (*string, bool) { method SetVia (line 286) | func (o *VerifiableIdentityAddress) SetVia(v string) { method MarshalJSON (line 290) | func (o VerifiableIdentityAddress) MarshalJSON() ([]byte, error) { method ToMap (line 298) | func (o VerifiableIdentityAddress) ToMap() (map[string]interface{}, er... method UnmarshalJSON (line 324) | func (o *VerifiableIdentityAddress) UnmarshalJSON(data []byte) (err er... type _VerifiableIdentityAddress (line 43) | type _VerifiableIdentityAddress function NewVerifiableIdentityAddress (line 49) | func NewVerifiableIdentityAddress(status string, value string, verified ... function NewVerifiableIdentityAddressWithDefaults (line 61) | func NewVerifiableIdentityAddressWithDefaults() *VerifiableIdentityAddre... type NullableVerifiableIdentityAddress (line 376) | type NullableVerifiableIdentityAddress struct method Get (line 381) | func (v NullableVerifiableIdentityAddress) Get() *VerifiableIdentityAd... method Set (line 385) | func (v *NullableVerifiableIdentityAddress) Set(val *VerifiableIdentit... method IsSet (line 390) | func (v NullableVerifiableIdentityAddress) IsSet() bool { method Unset (line 394) | func (v *NullableVerifiableIdentityAddress) Unset() { method MarshalJSON (line 403) | func (v NullableVerifiableIdentityAddress) MarshalJSON() ([]byte, erro... method UnmarshalJSON (line 407) | func (v *NullableVerifiableIdentityAddress) UnmarshalJSON(src []byte) ... function NewNullableVerifiableIdentityAddress (line 399) | func NewNullableVerifiableIdentityAddress(val *VerifiableIdentityAddress... FILE: pkg/httpclient/model_verification_flow.go type VerificationFlow (line 24) | type VerificationFlow struct method GetActive (line 71) | func (o *VerificationFlow) GetActive() string { method GetActiveOk (line 81) | func (o *VerificationFlow) GetActiveOk() (*string, bool) { method HasActive (line 89) | func (o *VerificationFlow) HasActive() bool { method SetActive (line 98) | func (o *VerificationFlow) SetActive(v string) { method GetExpiresAt (line 103) | func (o *VerificationFlow) GetExpiresAt() time.Time { method GetExpiresAtOk (line 113) | func (o *VerificationFlow) GetExpiresAtOk() (*time.Time, bool) { method HasExpiresAt (line 121) | func (o *VerificationFlow) HasExpiresAt() bool { method SetExpiresAt (line 130) | func (o *VerificationFlow) SetExpiresAt(v time.Time) { method GetId (line 135) | func (o *VerificationFlow) GetId() string { method GetIdOk (line 146) | func (o *VerificationFlow) GetIdOk() (*string, bool) { method SetId (line 154) | func (o *VerificationFlow) SetId(v string) { method GetIssuedAt (line 159) | func (o *VerificationFlow) GetIssuedAt() time.Time { method GetIssuedAtOk (line 169) | func (o *VerificationFlow) GetIssuedAtOk() (*time.Time, bool) { method HasIssuedAt (line 177) | func (o *VerificationFlow) HasIssuedAt() bool { method SetIssuedAt (line 186) | func (o *VerificationFlow) SetIssuedAt(v time.Time) { method GetRequestUrl (line 191) | func (o *VerificationFlow) GetRequestUrl() string { method GetRequestUrlOk (line 201) | func (o *VerificationFlow) GetRequestUrlOk() (*string, bool) { method HasRequestUrl (line 209) | func (o *VerificationFlow) HasRequestUrl() bool { method SetRequestUrl (line 218) | func (o *VerificationFlow) SetRequestUrl(v string) { method GetReturnTo (line 223) | func (o *VerificationFlow) GetReturnTo() string { method GetReturnToOk (line 233) | func (o *VerificationFlow) GetReturnToOk() (*string, bool) { method HasReturnTo (line 241) | func (o *VerificationFlow) HasReturnTo() bool { method SetReturnTo (line 250) | func (o *VerificationFlow) SetReturnTo(v string) { method GetState (line 256) | func (o *VerificationFlow) GetState() interface{} { method GetStateOk (line 268) | func (o *VerificationFlow) GetStateOk() (*interface{}, bool) { method SetState (line 276) | func (o *VerificationFlow) SetState(v interface{}) { method GetTransientPayload (line 281) | func (o *VerificationFlow) GetTransientPayload() map[string]interface{} { method GetTransientPayloadOk (line 291) | func (o *VerificationFlow) GetTransientPayloadOk() (map[string]interfa... method HasTransientPayload (line 299) | func (o *VerificationFlow) HasTransientPayload() bool { method SetTransientPayload (line 308) | func (o *VerificationFlow) SetTransientPayload(v map[string]interface{... method GetType (line 313) | func (o *VerificationFlow) GetType() string { method GetTypeOk (line 324) | func (o *VerificationFlow) GetTypeOk() (*string, bool) { method SetType (line 332) | func (o *VerificationFlow) SetType(v string) { method GetUi (line 337) | func (o *VerificationFlow) GetUi() UiContainer { method GetUiOk (line 348) | func (o *VerificationFlow) GetUiOk() (*UiContainer, bool) { method SetUi (line 356) | func (o *VerificationFlow) SetUi(v UiContainer) { method MarshalJSON (line 360) | func (o VerificationFlow) MarshalJSON() ([]byte, error) { method ToMap (line 368) | func (o VerificationFlow) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 402) | func (o *VerificationFlow) UnmarshalJSON(data []byte) (err error) { type _VerificationFlow (line 47) | type _VerificationFlow function NewVerificationFlow (line 53) | func NewVerificationFlow(id string, state interface{}, type_ string, ui ... function NewVerificationFlowWithDefaults (line 65) | func NewVerificationFlowWithDefaults() *VerificationFlow { type NullableVerificationFlow (line 456) | type NullableVerificationFlow struct method Get (line 461) | func (v NullableVerificationFlow) Get() *VerificationFlow { method Set (line 465) | func (v *NullableVerificationFlow) Set(val *VerificationFlow) { method IsSet (line 470) | func (v NullableVerificationFlow) IsSet() bool { method Unset (line 474) | func (v *NullableVerificationFlow) Unset() { method MarshalJSON (line 483) | func (v NullableVerificationFlow) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 487) | func (v *NullableVerificationFlow) UnmarshalJSON(src []byte) error { function NewNullableVerificationFlow (line 479) | func NewNullableVerificationFlow(val *VerificationFlow) *NullableVerific... FILE: pkg/httpclient/model_verification_flow_state.go type VerificationFlowState (line 20) | type VerificationFlowState method UnmarshalJSON (line 36) | func (v *VerificationFlowState) UnmarshalJSON(src []byte) error { method IsValid (line 65) | func (v VerificationFlowState) IsValid() bool { method Ptr (line 75) | func (v VerificationFlowState) Ptr() *VerificationFlowState { constant VERIFICATIONFLOWSTATE_CHOOSE_METHOD (line 24) | VERIFICATIONFLOWSTATE_CHOOSE_METHOD VerificationFlowState = "choose_m... constant VERIFICATIONFLOWSTATE_SENT_EMAIL (line 25) | VERIFICATIONFLOWSTATE_SENT_EMAIL VerificationFlowState = "sent_email" constant VERIFICATIONFLOWSTATE_PASSED_CHALLENGE (line 26) | VERIFICATIONFLOWSTATE_PASSED_CHALLENGE VerificationFlowState = "passed_c... function NewVerificationFlowStateFromValue (line 55) | func NewVerificationFlowStateFromValue(v string) (*VerificationFlowState... type NullableVerificationFlowState (line 79) | type NullableVerificationFlowState struct method Get (line 84) | func (v NullableVerificationFlowState) Get() *VerificationFlowState { method Set (line 88) | func (v *NullableVerificationFlowState) Set(val *VerificationFlowState) { method IsSet (line 93) | func (v NullableVerificationFlowState) IsSet() bool { method Unset (line 97) | func (v *NullableVerificationFlowState) Unset() { method MarshalJSON (line 106) | func (v NullableVerificationFlowState) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 110) | func (v *NullableVerificationFlowState) UnmarshalJSON(src []byte) error { function NewNullableVerificationFlowState (line 102) | func NewNullableVerificationFlowState(val *VerificationFlowState) *Nulla... FILE: pkg/httpclient/model_version.go type Version (line 22) | type Version struct method GetVersion (line 48) | func (o *Version) GetVersion() string { method GetVersionOk (line 58) | func (o *Version) GetVersionOk() (*string, bool) { method HasVersion (line 66) | func (o *Version) HasVersion() bool { method SetVersion (line 75) | func (o *Version) SetVersion(v string) { method MarshalJSON (line 79) | func (o Version) MarshalJSON() ([]byte, error) { method ToMap (line 87) | func (o Version) ToMap() (map[string]interface{}, error) { method UnmarshalJSON (line 100) | func (o *Version) UnmarshalJSON(data []byte) (err error) { type _Version (line 28) | type _Version function NewVersion (line 34) | func NewVersion() *Version { function NewVersionWithDefaults (line 42) | func NewVersionWithDefaults() *Version { type NullableVersion (line 121) | type NullableVersion struct method Get (line 126) | func (v NullableVersion) Get() *Version { method Set (line 130) | func (v *NullableVersion) Set(val *Version) { method IsSet (line 135) | func (v NullableVersion) IsSet() bool { method Unset (line 139) | func (v *NullableVersion) Unset() { method MarshalJSON (line 148) | func (v NullableVersion) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 152) | func (v *NullableVersion) UnmarshalJSON(src []byte) error { function NewNullableVersion (line 144) | func NewNullableVersion(val *Version) *NullableVersion { FILE: pkg/httpclient/response.go type APIResponse (line 19) | type APIResponse struct function NewAPIResponse (line 37) | func NewAPIResponse(r *http.Response) *APIResponse { function NewAPIResponseWithError (line 44) | func NewAPIResponseWithError(errorMessage string) *APIResponse { FILE: pkg/httpclient/utils.go function PtrBool (line 23) | func PtrBool(v bool) *bool { return &v } function PtrInt (line 26) | func PtrInt(v int) *int { return &v } function PtrInt32 (line 29) | func PtrInt32(v int32) *int32 { return &v } function PtrInt64 (line 32) | func PtrInt64(v int64) *int64 { return &v } function PtrFloat32 (line 35) | func PtrFloat32(v float32) *float32 { return &v } function PtrFloat64 (line 38) | func PtrFloat64(v float64) *float64 { return &v } function PtrString (line 41) | func PtrString(v string) *string { return &v } function PtrTime (line 44) | func PtrTime(v time.Time) *time.Time { return &v } type NullableBool (line 46) | type NullableBool struct method Get (line 51) | func (v NullableBool) Get() *bool { method Set (line 55) | func (v *NullableBool) Set(val *bool) { method IsSet (line 60) | func (v NullableBool) IsSet() bool { method Unset (line 64) | func (v *NullableBool) Unset() { method MarshalJSON (line 73) | func (v NullableBool) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 77) | func (v *NullableBool) UnmarshalJSON(src []byte) error { function NewNullableBool (line 69) | func NewNullableBool(val *bool) *NullableBool { type NullableInt (line 82) | type NullableInt struct method Get (line 87) | func (v NullableInt) Get() *int { method Set (line 91) | func (v *NullableInt) Set(val *int) { method IsSet (line 96) | func (v NullableInt) IsSet() bool { method Unset (line 100) | func (v *NullableInt) Unset() { method MarshalJSON (line 109) | func (v NullableInt) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 113) | func (v *NullableInt) UnmarshalJSON(src []byte) error { function NewNullableInt (line 105) | func NewNullableInt(val *int) *NullableInt { type NullableInt32 (line 118) | type NullableInt32 struct method Get (line 123) | func (v NullableInt32) Get() *int32 { method Set (line 127) | func (v *NullableInt32) Set(val *int32) { method IsSet (line 132) | func (v NullableInt32) IsSet() bool { method Unset (line 136) | func (v *NullableInt32) Unset() { method MarshalJSON (line 145) | func (v NullableInt32) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 149) | func (v *NullableInt32) UnmarshalJSON(src []byte) error { function NewNullableInt32 (line 141) | func NewNullableInt32(val *int32) *NullableInt32 { type NullableInt64 (line 154) | type NullableInt64 struct method Get (line 159) | func (v NullableInt64) Get() *int64 { method Set (line 163) | func (v *NullableInt64) Set(val *int64) { method IsSet (line 168) | func (v NullableInt64) IsSet() bool { method Unset (line 172) | func (v *NullableInt64) Unset() { method MarshalJSON (line 181) | func (v NullableInt64) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 185) | func (v *NullableInt64) UnmarshalJSON(src []byte) error { function NewNullableInt64 (line 177) | func NewNullableInt64(val *int64) *NullableInt64 { type NullableFloat32 (line 190) | type NullableFloat32 struct method Get (line 195) | func (v NullableFloat32) Get() *float32 { method Set (line 199) | func (v *NullableFloat32) Set(val *float32) { method IsSet (line 204) | func (v NullableFloat32) IsSet() bool { method Unset (line 208) | func (v *NullableFloat32) Unset() { method MarshalJSON (line 217) | func (v NullableFloat32) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 221) | func (v *NullableFloat32) UnmarshalJSON(src []byte) error { function NewNullableFloat32 (line 213) | func NewNullableFloat32(val *float32) *NullableFloat32 { type NullableFloat64 (line 226) | type NullableFloat64 struct method Get (line 231) | func (v NullableFloat64) Get() *float64 { method Set (line 235) | func (v *NullableFloat64) Set(val *float64) { method IsSet (line 240) | func (v NullableFloat64) IsSet() bool { method Unset (line 244) | func (v *NullableFloat64) Unset() { method MarshalJSON (line 253) | func (v NullableFloat64) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 257) | func (v *NullableFloat64) UnmarshalJSON(src []byte) error { function NewNullableFloat64 (line 249) | func NewNullableFloat64(val *float64) *NullableFloat64 { type NullableString (line 262) | type NullableString struct method Get (line 267) | func (v NullableString) Get() *string { method Set (line 271) | func (v *NullableString) Set(val *string) { method IsSet (line 276) | func (v NullableString) IsSet() bool { method Unset (line 280) | func (v *NullableString) Unset() { method MarshalJSON (line 289) | func (v NullableString) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 293) | func (v *NullableString) UnmarshalJSON(src []byte) error { function NewNullableString (line 285) | func NewNullableString(val *string) *NullableString { type NullableTime (line 298) | type NullableTime struct method Get (line 303) | func (v NullableTime) Get() *time.Time { method Set (line 307) | func (v *NullableTime) Set(val *time.Time) { method IsSet (line 312) | func (v NullableTime) IsSet() bool { method Unset (line 316) | func (v *NullableTime) Unset() { method MarshalJSON (line 325) | func (v NullableTime) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 329) | func (v *NullableTime) UnmarshalJSON(src []byte) error { function NewNullableTime (line 321) | func NewNullableTime(val *time.Time) *NullableTime { function IsNil (line 335) | func IsNil(i interface{}) bool { type MappedNullable (line 348) | type MappedNullable interface function newStrictDecoder (line 353) | func newStrictDecoder(data []byte) *json.Decoder { function reportError (line 360) | func reportError(format string, a ...interface{}) error { FILE: pkg/registrationhelpers/helpers.go function setupServer (line 39) | func setupServer(t *testing.T, reg *driver.RegistryDefault) *httptest.Se... function ExpectValidationError (line 49) | func ExpectValidationError(ctx context.Context, t *testing.T, ts *httpte... function CheckFormContent (line 58) | func CheckFormContent(t *testing.T, body []byte, requiredFields ...strin... function FieldNameSet (line 65) | func FieldNameSet(t *testing.T, body []byte, fields []string) { function OutdatedFieldsDoNotExist (line 72) | func OutdatedFieldsDoNotExist(t *testing.T, body []byte) { function FormMethodIsPOST (line 78) | func FormMethodIsPOST(t *testing.T, body []byte) { function AssertSchemaDoesNotExist (line 94) | func AssertSchemaDoesNotExist(t *testing.T, reg *driver.RegistryDefault,... function AssertCSRFFailures (line 157) | func AssertCSRFFailures(t *testing.T, reg *driver.RegistryDefault, flows... function AssertRegistrationRespectsValidation (line 248) | func AssertRegistrationRespectsValidation(t *testing.T, reg *driver.Regi... function AssertCommonErrorCases (line 278) | func AssertCommonErrorCases(t *testing.T, flows []string) { FILE: pkg/settingshelpers/helpers.go function ExpectValidationError (line 18) | func ExpectValidationError(t *testing.T, ts *httptest.Server, hc *http.C... FILE: pkg/testhelpers/config.go function DefaultIdentitySchemaConfig (line 18) | func DefaultIdentitySchemaConfig(url string) map[string]any { function DefaultRawIdentitySchemaConfig (line 27) | func DefaultRawIdentitySchemaConfig(schema []byte) map[string]any { function WithDefaultIdentitySchema (line 31) | func WithDefaultIdentitySchema(ctx context.Context, url string) context.... function SetDefaultIdentitySchema (line 36) | func SetDefaultIdentitySchema(conf *config.Config, url string) func() { function WithAddIdentitySchema (line 50) | func WithAddIdentitySchema(ctx context.Context, t *testing.T, conf *conf... function UseIdentitySchema (line 65) | func UseIdentitySchema(t *testing.T, conf *config.Config, url string) (i... function WithDefaultIdentitySchemaFromRaw (line 81) | func WithDefaultIdentitySchemaFromRaw(ctx context.Context, schema []byte... function SetDefaultIdentitySchemaFromRaw (line 86) | func SetDefaultIdentitySchemaFromRaw(conf *config.Config, schema []byte) { FILE: pkg/testhelpers/courier.go function CourierExpectMessage (line 19) | func CourierExpectMessage(ctx context.Context, t *testing.T, reg interfa... function CourierExpectLinkInMessage (line 43) | func CourierExpectLinkInMessage(t *testing.T, message *courier.Message, ... function CourierExpectCodeInMessage (line 53) | func CourierExpectCodeInMessage(t *testing.T, message *courier.Message, ... FILE: pkg/testhelpers/e2e_server.go function StartE2EServerOnly (line 47) | func StartE2EServerOnly(t *testing.T, configFile string, isTLS bool, con... function startE2EServerOnly (line 51) | func startE2EServerOnly(t *testing.T, configFile string, isTLS bool, con... function waitTimeout (line 118) | func waitTimeout(t *testing.T, wg *errgroup.Group, timeout time.Duration... function StartE2EServer (line 132) | func StartE2EServer(t *testing.T, configFile string, configOptions Confi... function CheckE2EServerOnHTTP (line 137) | func CheckE2EServerOnHTTP(t *testing.T, publicPort, adminPort int) (publ... function waitToComeAlive (line 144) | func waitToComeAlive(t *testing.T, publicUrl, adminUrl string) { function CheckE2EServerOnHTTPS (line 167) | func CheckE2EServerOnHTTPS(t *testing.T, publicPort, adminPort int) (pub... function GenerateTLSCertificateFilesForTests (line 179) | func GenerateTLSCertificateFilesForTests(t *testing.T) (certPath, keyPat... FILE: pkg/testhelpers/errorx.go function NewErrorTestServer (line 27) | func NewErrorTestServer(t *testing.T, reg interface { function NewRedirTS (line 46) | func NewRedirTS(t *testing.T, body string, conf *config.Config) *httptes... function NewRedirSessionEchoTS (line 59) | func NewRedirSessionEchoTS(t *testing.T, reg interface { function NewRedirNoSessionTS (line 76) | func NewRedirNoSessionTS(t *testing.T, reg interface { FILE: pkg/testhelpers/fake.go function RandomEmail (line 12) | func RandomEmail() string { function RandomPhone (line 16) | func RandomPhone() string { FILE: pkg/testhelpers/handler_mock.go type mockDeps (line 27) | type mockDeps interface function MockSetSession (line 35) | func MockSetSession(t *testing.T, reg mockDeps, conf *config.Config) htt... function MockSetSessionWithIdentity (line 52) | func MockSetSessionWithIdentity(t *testing.T, reg mockDeps, _ *config.Co... function MockMakeAuthenticatedRequest (line 65) | func MockMakeAuthenticatedRequest(t *testing.T, reg mockDeps, conf *conf... function MockMakeAuthenticatedRequestWithClient (line 69) | func MockMakeAuthenticatedRequestWithClient(t *testing.T, reg mockDeps, ... function MockMakeAuthenticatedRequestWithClientAndID (line 73) | func MockMakeAuthenticatedRequestWithClientAndID(t *testing.T, reg mockD... function NewClientWithCookies (line 94) | func NewClientWithCookies(t *testing.T) *http.Client { function NewNoRedirectClientWithCookies (line 100) | func NewNoRedirectClientWithCookies(t *testing.T) *http.Client { function MockHydrateCookieClient (line 111) | func MockHydrateCookieClient(t *testing.T, c *http.Client, u string) *ht... function MockSessionCreateHandlerWithIdentity (line 130) | func MockSessionCreateHandlerWithIdentity(t *testing.T, reg mockDeps, i ... function MockSessionCreateHandlerWithIdentityAndAMR (line 147) | func MockSessionCreateHandlerWithIdentityAndAMR(t *testing.T, reg mockDe... function MockSessionCreateHandler (line 191) | func MockSessionCreateHandler(t *testing.T, reg mockDeps) (http.HandlerF... FILE: pkg/testhelpers/http.go function NewDebugClient (line 19) | func NewDebugClient(t *testing.T) *http.Client { function NewClientWithCookieJar (line 23) | func NewClientWithCookieJar(t *testing.T, jar *cookiejar.Jar, checkRedir... type CheckRedirectFunc (line 38) | type CheckRedirectFunc function DebugRedirects (line 40) | func DebugRedirects(t *testing.T) CheckRedirectFunc { function NewPostRequest (line 54) | func NewPostRequest(t *testing.T, isAPI bool, url string, payload io.Rea... function NewHTTPGetJSONRequest (line 68) | func NewHTTPGetJSONRequest(t *testing.T, url string) *http.Request { function NewHTTPGetAJAXRequest (line 77) | func NewHTTPGetAJAXRequest(t *testing.T, url string) *http.Request { function NewHTTPDeleteJSONRequest (line 85) | func NewHTTPDeleteJSONRequest(t *testing.T, url string, in interface{}) ... function HTTPRequestJSON (line 95) | func HTTPRequestJSON(t *testing.T, client *http.Client, method string, u... function HTTPPostForm (line 114) | func HTTPPostForm(t *testing.T, client *http.Client, remote string, in *... function NewTestHTTPRequest (line 129) | func NewTestHTTPRequest(t *testing.T, method, url string, body io.Reader... function EasyGet (line 135) | func EasyGet(t *testing.T, c *http.Client, url string) (*http.Response, ... function EasyGetJSON (line 144) | func EasyGetJSON(t *testing.T, c *http.Client, url string) (*http.Respon... function EasyGetBody (line 156) | func EasyGetBody(t *testing.T, c *http.Client, url string) []byte { function EasyCookieJar (line 161) | func EasyCookieJar(t *testing.T, o *cookiejar.Options) *cookiejar.Jar { FILE: pkg/testhelpers/httptest.go function NewHTTPTestServer (line 12) | func NewHTTPTestServer(t *testing.T, h http.Handler) *httptest.Server { FILE: pkg/testhelpers/identity.go function CreateSession (line 18) | func CreateSession(t *testing.T, reg driver.Registry) *session.Session { FILE: pkg/testhelpers/identity_schema.go function IdentitySchemasConfig (line 10) | func IdentitySchemasConfig(schemas map[string]string) map[string]any { FILE: pkg/testhelpers/json.go function JSONEq (line 15) | func JSONEq(t *testing.T, expected, actual interface{}, messageAndArgs .... function LogJSON (line 22) | func LogJSON(t *testing.T, v interface{}) { FILE: pkg/testhelpers/network.go function NewNetworkUnlessExisting (line 17) | func NewNetworkUnlessExisting(t *testing.T, ctx context.Context, p persi... function NewNetwork (line 27) | func NewNetwork(t testing.TB, ctx context.Context, p persistence.Persist... function ExistingNetwork (line 35) | func ExistingNetwork(t *testing.T, p persistence.Persister, id uuid.UUID... function SkipIfNetworkContext (line 40) | func SkipIfNetworkContext(t testing.TB, ctx context.Context) { FILE: pkg/testhelpers/sdk.go function NewSDKClient (line 19) | func NewSDKClient(ts *httptest.Server) *kratos.APIClient { function NewSDKCustomClient (line 23) | func NewSDKCustomClient(ts *httptest.Server, client *http.Client) *krato... function NewSDKClientFromURL (line 30) | func NewSDKClientFromURL(u string) *kratos.APIClient { function SDKFormFieldsToURLValues (line 36) | func SDKFormFieldsToURLValues(ff []kratos.UiNode) url.Values { function NewFakeCSRFNode (line 63) | func NewFakeCSRFNode() *kratos.UiNode { function NewSDKEmailNode (line 76) | func NewSDKEmailNode(group string) *kratos.UiNode { function NewMethodSubmit (line 89) | func NewMethodSubmit(group, value string) *kratos.UiNode { function NewPasswordNode (line 101) | func NewPasswordNode() *kratos.UiNode { FILE: pkg/testhelpers/selfservice.go function TestSelfServicePreHook (line 30) | func TestSelfServicePreHook( function SelfServiceHookCreateFakeIdentity (line 84) | func SelfServiceHookCreateFakeIdentity(t *testing.T, reg driver.Registry... function SelfServiceHookFakeIdentity (line 90) | func SelfServiceHookFakeIdentity(t *testing.T) *identity.Identity { function SelfServiceHookConfigReset (line 99) | func SelfServiceHookConfigReset(t *testing.T, conf *config.Config) func() { function SelfServiceHookSettingsSetDefaultRedirectTo (line 115) | func SelfServiceHookSettingsSetDefaultRedirectTo(t *testing.T, conf *con... function SelfServiceHookSettingsSetDefaultRedirectToStrategy (line 120) | func SelfServiceHookSettingsSetDefaultRedirectToStrategy(t *testing.T, c... function SelfServiceHookLoginSetDefaultRedirectTo (line 125) | func SelfServiceHookLoginSetDefaultRedirectTo(t *testing.T, conf *config... function SelfServiceHookLoginSetDefaultRedirectToStrategy (line 130) | func SelfServiceHookLoginSetDefaultRedirectToStrategy(t *testing.T, conf... function SelfServiceHookRegistrationSetDefaultRedirectTo (line 135) | func SelfServiceHookRegistrationSetDefaultRedirectTo(t *testing.T, conf ... function SelfServiceHookRegistrationSetDefaultRedirectToStrategy (line 140) | func SelfServiceHookRegistrationSetDefaultRedirectToStrategy(t *testing.... function SelfServiceHookLoginViperSetPost (line 145) | func SelfServiceHookLoginViperSetPost(t *testing.T, conf *config.Config,... function SelfServiceHookRegistrationViperSetPost (line 150) | func SelfServiceHookRegistrationViperSetPost(t *testing.T, conf *config.... function SelfServiceHookLoginErrorHandler (line 155) | func SelfServiceHookLoginErrorHandler(t *testing.T, w http.ResponseWrite... function SelfServiceHookRegistrationErrorHandler (line 159) | func SelfServiceHookRegistrationErrorHandler(t *testing.T, w http.Respon... function SelfServiceHookSettingsErrorHandler (line 163) | func SelfServiceHookSettingsErrorHandler(t *testing.T, w http.ResponseWr... function SelfServiceHookErrorHandler (line 167) | func SelfServiceHookErrorHandler(t *testing.T, w http.ResponseWriter, _ ... function SelfServiceMakeLoginPreHookRequest (line 180) | func SelfServiceMakeLoginPreHookRequest(t *testing.T, ts *httptest.Serve... function SelfServiceMakeLoginPostHookRequest (line 184) | func SelfServiceMakeLoginPostHookRequest(t *testing.T, ts *httptest.Serv... function SelfServiceMakeRegistrationPreHookRequest (line 188) | func SelfServiceMakeRegistrationPreHookRequest(t *testing.T, ts *httptes... function SelfServiceMakeSettingsPreHookRequest (line 192) | func SelfServiceMakeSettingsPreHookRequest(t *testing.T, ts *httptest.Se... function SelfServiceMakeRecoveryPreHookRequest (line 196) | func SelfServiceMakeRecoveryPreHookRequest(t *testing.T, ts *httptest.Se... function SelfServiceMakeVerificationPreHookRequest (line 200) | func SelfServiceMakeVerificationPreHookRequest(t *testing.T, ts *httptes... function SelfServiceMakeRegistrationPostHookRequest (line 204) | func SelfServiceMakeRegistrationPostHookRequest(t *testing.T, ts *httpte... function SelfServiceMakeSettingsPostHookRequest (line 208) | func SelfServiceMakeSettingsPostHookRequest(t *testing.T, ts *httptest.S... function SelfServiceMakeHookRequest (line 212) | func SelfServiceMakeHookRequest(t *testing.T, ts *httptest.Server, suffi... function GetSelfServiceRedirectLocation (line 230) | func GetSelfServiceRedirectLocation(t *testing.T, url string) string { function AssertMessage (line 244) | func AssertMessage[B string | []byte](t *testing.T, body B, message stri... function AssertFieldMessage (line 250) | func AssertFieldMessage[B string | []byte](t *testing.T, body B, fieldNa... FILE: pkg/testhelpers/selfservice_login.go function NewLoginUIFlowEchoServer (line 32) | func NewLoginUIFlowEchoServer(t *testing.T, reg driver.Registry) *httpte... function NewLoginUIWith401Response (line 44) | func NewLoginUIWith401Response(t *testing.T, c *config.Config) *httptest... type initFlowOptions (line 54) | type initFlowOptions struct method apply (line 69) | func (o *initFlowOptions) apply(opts []InitFlowWithOption) *initFlowOp... function newInitFlowOptions (line 65) | func newInitFlowOptions(opts []InitFlowWithOption) *initFlowOptions { function getURLFromInitOptions (line 76) | func getURLFromInitOptions(ts *httptest.Server, path string, forced bool... type InitFlowWithOption (line 107) | type InitFlowWithOption function InitFlowWithAAL (line 109) | func InitFlowWithAAL(aal identity.AuthenticatorAssuranceLevel) InitFlowW... function InitFlowWithReturnTo (line 115) | func InitFlowWithReturnTo(returnTo string) InitFlowWithOption { function InitFlowWithRefresh (line 121) | func InitFlowWithRefresh() InitFlowWithOption { function InitFlowWithContext (line 127) | func InitFlowWithContext(ctx context.Context) InitFlowWithOption { function InitFlowWithOAuth2LoginChallenge (line 133) | func InitFlowWithOAuth2LoginChallenge(hlc string) InitFlowWithOption { function InitFlowWithIdentitySchema (line 139) | func InitFlowWithIdentitySchema(schema string) InitFlowWithOption { function ExpectActive (line 145) | func ExpectActive(active string) InitFlowWithOption { function InitFlowWithVia (line 152) | func InitFlowWithVia(via string) InitFlowWithOption { function InitializeLoginFlowViaBrowser (line 159) | func InitializeLoginFlowViaBrowser(t *testing.T, client *http.Client, ts... function InitializeLoginFlowViaBrowserCtx (line 163) | func InitializeLoginFlowViaBrowserCtx(ctx context.Context, t *testing.T,... function InitializeLoginFlowViaAPICtx (line 208) | func InitializeLoginFlowViaAPICtx(ctx context.Context, t *testing.T, cli... function initializeLoginFlowViaAPI (line 212) | func initializeLoginFlowViaAPI(ctx context.Context, t *testing.T, client... function InitializeLoginFlowViaAPI (line 240) | func InitializeLoginFlowViaAPI(t *testing.T, client *http.Client, ts *ht... function InitializeLoginFlowViaAPIExpectError (line 244) | func InitializeLoginFlowViaAPIExpectError(ctx context.Context, t *testin... function LoginMakeRequest (line 249) | func LoginMakeRequest( type RequestOption (line 261) | type RequestOption function WithHeader (line 263) | func WithHeader(key, value string) RequestOption { function LoginMakeRequestCtx (line 269) | func LoginMakeRequestCtx( function GetLoginFlow (line 297) | func GetLoginFlow(t *testing.T, client *http.Client, ts *httptest.Server... function SubmitLoginForm (line 305) | func SubmitLoginForm( function SubmitLoginFormCtx (line 323) | func SubmitLoginFormCtx( FILE: pkg/testhelpers/selfservice_recovery.go function NewVerificationUIFlowEchoServer (line 27) | func NewVerificationUIFlowEchoServer(t *testing.T, reg driver.Registry) ... function GetVerificationFlow (line 39) | func GetVerificationFlow(t *testing.T, client *http.Client, ts *httptest... function InitializeVerificationFlowViaBrowser (line 53) | func InitializeVerificationFlowViaBrowser(t *testing.T, client *http.Cli... function InitializeVerificationFlowViaAPI (line 80) | func InitializeVerificationFlowViaAPI(t *testing.T, client *http.Client,... function VerificationMakeRequest (line 90) | func VerificationMakeRequest( function SubmitVerificationForm (line 108) | func SubmitVerificationForm( FILE: pkg/testhelpers/selfservice_registration.go function NewRegistrationUIFlowEchoServer (line 33) | func NewRegistrationUIFlowEchoServer(t *testing.T, reg driver.Registry) ... function InitializeRegistrationFlowViaBrowser (line 46) | func InitializeRegistrationFlowViaBrowser(t *testing.T, client *http.Cli... function InitializeRegistrationFlowViaBrowserCtx (line 50) | func InitializeRegistrationFlowViaBrowserCtx(ctx context.Context, t *tes... function InitializeRegistrationFlowViaAPIExpectError (line 88) | func InitializeRegistrationFlowViaAPIExpectError(t *testing.T, client *h... function InitializeRegistrationFlowViaAPI (line 96) | func InitializeRegistrationFlowViaAPI(t *testing.T, client *http.Client,... function InitializeRegistrationFlowViaAPICtx (line 100) | func InitializeRegistrationFlowViaAPICtx(ctx context.Context, t *testing... function GetRegistrationFlow (line 109) | func GetRegistrationFlow(t *testing.T, client *http.Client, ts *httptest... function RegistrationMakeRequest (line 116) | func RegistrationMakeRequest( function RegistrationMakeRequestCtx (line 127) | func RegistrationMakeRequestCtx( function SubmitRegistrationForm (line 153) | func SubmitRegistrationForm( function SubmitRegistrationFormCtx (line 170) | func SubmitRegistrationFormCtx( FILE: pkg/testhelpers/selfservice_settings.go function NewSettingsUIFlowEchoServer (line 32) | func NewSettingsUIFlowEchoServer(t *testing.T, reg driver.Registry) *htt... function InitializeSettingsFlowViaBrowser (line 44) | func InitializeSettingsFlowViaBrowser(t *testing.T, client *http.Client,... function InitializeSettingsFlowViaAPI (line 74) | func InitializeSettingsFlowViaAPI(t *testing.T, client *http.Client, ts ... function EncodeFormAsJSON (line 84) | func EncodeFormAsJSON(t *testing.T, isApi bool, values url.Values) (payl... function ExpectStatusCode (line 97) | func ExpectStatusCode(isAPI bool, api, browser int) int { function ExpectURL (line 104) | func ExpectURL(isAPI bool, api, browser string) string { function NewSettingsUITestServer (line 111) | func NewSettingsUITestServer(t *testing.T, conf *config.Config) *httptes... function NewSettingsUIEchoServer (line 129) | func NewSettingsUIEchoServer(t *testing.T, reg *driver.RegistryDefault) ... function NewSettingsLoginAcceptAPIServer (line 150) | func NewSettingsLoginAcceptAPIServer(t *testing.T, publicClient *kratos.... function AddAndLoginIdentity (line 177) | func AddAndLoginIdentity(t *testing.T, reg *driver.RegistryDefault, i *i... function AddAndLoginIdentities (line 184) | func AddAndLoginIdentities(t *testing.T, reg *driver.RegistryDefault, id... function SettingsMakeRequest (line 214) | func SettingsMakeRequest( function SubmitSettingsForm (line 241) | func SubmitSettingsForm( FILE: pkg/testhelpers/selfservice_verification.go function NewVerifyAfterHookWebHookTarget (line 33) | func NewVerifyAfterHookWebHookTarget(ctx context.Context, t *testing.T, ... function NewRecoveryAfterHookWebHookTarget (line 59) | func NewRecoveryAfterHookWebHookTarget(ctx context.Context, t *testing.T... function NewRecoveryUIFlowEchoServer (line 85) | func NewRecoveryUIFlowEchoServer(t *testing.T, reg driver.Registry) *htt... function GetRecoveryFlowForType (line 97) | func GetRecoveryFlowForType(t *testing.T, client *http.Client, ts *httpt... function GetRecoveryFlow (line 136) | func GetRecoveryFlow(t *testing.T, client *http.Client, ts *httptest.Ser... function InitializeRecoveryFlowViaBrowser (line 140) | func InitializeRecoveryFlowViaBrowser(t *testing.T, client *http.Client,... function InitializeRecoveryFlowViaAPI (line 172) | func InitializeRecoveryFlowViaAPI(t *testing.T, client *http.Client, ts ... function RecoveryMakeRequest (line 182) | func RecoveryMakeRequest( function SubmitRecoveryForm (line 200) | func SubmitRecoveryForm( function PersistNewRecoveryFlow (line 230) | func PersistNewRecoveryFlow(t *testing.T, strategies recovery.Strategies... FILE: pkg/testhelpers/server.go function NewKratosServer (line 20) | func NewKratosServer(t *testing.T, reg driver.Registry) (public, admin *... function NewKratosServerWithCSRF (line 24) | func NewKratosServerWithCSRF(t *testing.T, reg driver.Registry) (public,... function NewKratosServerWithCSRFAndRouters (line 29) | func NewKratosServerWithCSRFAndRouters(t *testing.T, reg driver.Registry... function NewKratosServerWithRouters (line 54) | func NewKratosServerWithRouters(t *testing.T, reg driver.Registry, rp *h... function initKratosServers (line 74) | func initKratosServers(t *testing.T, reg driver.Registry, public, admin ... FILE: pkg/testhelpers/session.go type SessionLifespanProvider (line 26) | type SessionLifespanProvider struct method SessionLifespan (line 30) | func (p *SessionLifespanProvider) SessionLifespan(context.Context) tim... function NewSessionClient (line 34) | func NewSessionClient(t *testing.T, u string) *http.Client { function maybePersistSession (line 40) | func maybePersistSession(ctx context.Context, t *testing.T, reg *driver.... function NewHTTPClientWithSessionCookie (line 54) | func NewHTTPClientWithSessionCookie(ctx context.Context, t *testing.T, r... function NewHTTPClientWithSessionCookieLocalhost (line 73) | func NewHTTPClientWithSessionCookieLocalhost(ctx context.Context, t *tes... function NewNoRedirectHTTPClientWithSessionCookie (line 94) | func NewNoRedirectHTTPClientWithSessionCookie(ctx context.Context, t *te... function NewTransportWithLogger (line 108) | func NewTransportWithLogger(parent http.RoundTripper, t *testing.T) *Tra... type TransportWithLogger (line 115) | type TransportWithLogger struct method RoundTrip (line 120) | func (ct *TransportWithLogger) RoundTrip(req *http.Request) (*http.Res... function NewHTTPClientWithSessionToken (line 128) | func NewHTTPClientWithSessionToken(ctx context.Context, t *testing.T, re... function NewHTTPClientWithArbitrarySessionToken (line 138) | func NewHTTPClientWithArbitrarySessionToken(ctx context.Context, t *test... function NewHTTPClientWithArbitrarySessionTokenAndTraits (line 142) | func NewHTTPClientWithArbitrarySessionTokenAndTraits(ctx context.Context... function NewHTTPClientWithArbitrarySessionCookie (line 155) | func NewHTTPClientWithArbitrarySessionCookie(ctx context.Context, t *tes... function NewNoRedirectHTTPClientWithArbitrarySessionCookie (line 172) | func NewNoRedirectHTTPClientWithArbitrarySessionCookie(ctx context.Conte... function NewHTTPClientWithIdentitySessionCookie (line 190) | func NewHTTPClientWithIdentitySessionCookie(ctx context.Context, t *test... function NewHTTPClientWithIdentitySessionCookieLocalhost (line 204) | func NewHTTPClientWithIdentitySessionCookieLocalhost(ctx context.Context... function NewHTTPClientWithIdentitySessionToken (line 217) | func NewHTTPClientWithIdentitySessionToken(ctx context.Context, t *testi... function EnsureAAL (line 231) | func EnsureAAL(t *testing.T, c *http.Client, ts *httptest.Server, aal st... function NewAuthorizedTransport (line 243) | func NewAuthorizedTransport(ctx context.Context, t *testing.T, reg *driv... function NewTransportWithHeader (line 251) | func NewTransportWithHeader(t *testing.T, h http.Header) *TransportWithH... type TransportWithHeader (line 261) | type TransportWithHeader struct method GetHeader (line 266) | func (ct *TransportWithHeader) GetHeader() http.Header { method RoundTrip (line 270) | func (ct *TransportWithHeader) RoundTrip(req *http.Request) (*http.Res... function AssertNoCSRFCookieInResponse (line 277) | func AssertNoCSRFCookieInResponse(t *testing.T, r *http.Response) { FILE: pkg/testhelpers/session_active.go function NewActiveSession (line 14) | func NewActiveSession(r *http.Request, reg interface { FILE: pkg/testhelpers/snapshot.go function SnapshotTExcept (line 15) | func SnapshotTExcept(t *testing.T, actual interface{}, except []string) { FILE: pkg/testhelpers/strategies.go function StrategyEnable (line 15) | func StrategyEnable(t *testing.T, c *config.Config, strategy string, ena... function MethodEnableConfig (line 20) | func MethodEnableConfig[S ~string](method S, enable bool) map[string]any { FILE: request/auth.go type noopAuthStrategy (line 14) | type noopAuthStrategy struct method apply (line 63) | func (c *noopAuthStrategy) apply(_ *retryablehttp.Request) {} type basicAuthStrategy (line 15) | type basicAuthStrategy struct method apply (line 72) | func (c *basicAuthStrategy) apply(req *retryablehttp.Request) { type apiKeyStrategy (line 19) | type apiKeyStrategy struct method apply (line 84) | func (c *apiKeyStrategy) apply(req *retryablehttp.Request) { type AuthStrategy (line 24) | type AuthStrategy interface function authStrategy (line 29) | func authStrategy(typ string, config map[string]any) (AuthStrategy, erro... function NewNoopAuthStrategy (line 59) | func NewNoopAuthStrategy() AuthStrategy { function NewBasicAuthStrategy (line 65) | func NewBasicAuthStrategy(user, password string) AuthStrategy { function NewAPIKeyStrategy (line 76) | func NewAPIKeyStrategy(in, name, value string) AuthStrategy { FILE: request/auth_test.go function TestNoopAuthStrategy (line 15) | func TestNoopAuthStrategy(t *testing.T) { function TestBasicAuthStrategy (line 24) | func TestBasicAuthStrategy(t *testing.T) { function TestApiKeyInHeaderStrategy (line 40) | func TestApiKeyInHeaderStrategy(t *testing.T) { function TestApiKeyInCookieStrategy (line 56) | func TestApiKeyInCookieStrategy(t *testing.T) { function TestAuthStrategy (line 73) | func TestAuthStrategy(t *testing.T) { FILE: request/builder.go constant ContentTypeForm (line 35) | ContentTypeForm = "application/x-www-form-urlencoded" constant ContentTypeJSON (line 36) | ContentTypeJSON = "application/json" type Dependencies (line 40) | type Dependencies interface type Builder (line 46) | type Builder struct method addBody (line 113) | func (b *Builder) addBody(ctx context.Context, body interface{}) (err ... method addJSONBody (line 149) | func (b *Builder) addJSONBody(ctx context.Context, jsonnetSnippet []by... method addURLEncodedBody (line 187) | func (b *Builder) addURLEncodedBody(ctx context.Context, jsonnetSnippe... method BuildRequest (line 227) | func (b *Builder) BuildRequest(ctx context.Context, body interface{}) ... method addRawBody (line 242) | func (b *Builder) addRawBody(body any) (err error) { method BuildRawRequest (line 268) | func (b *Builder) BuildRawRequest(body any) (*retryablehttp.Request, e... method readTemplate (line 283) | func (b *Builder) readTemplate(ctx context.Context) ([]byte, error) { type options (line 53) | type options struct function WithCache (line 60) | func WithCache(cache *ristretto.Cache[[]byte, []byte]) BuilderOption { function WithBodySizeHint (line 66) | func WithBodySizeHint(hint uint) BuilderOption { function NewBuilder (line 72) | func NewBuilder(ctx context.Context, c *Config, deps Dependencies, o ...... function isNilInterface (line 309) | func isNilInterface(i interface{}) bool { FILE: request/builder_test.go type testRequestBody (line 23) | type testRequestBody struct function TestBuildRequest (line 32) | func TestBuildRequest(t *testing.T) { type testDependencyProvider (line 322) | type testDependencyProvider struct function newTestDependencyProvider (line 327) | func newTestDependencyProvider(t *testing.T) *testDependencyProvider { function mustContainHeader (line 337) | func mustContainHeader(t *testing.T, expected http.Header, actual http.H... FILE: request/config.go type Config (line 19) | type Config struct FILE: schema/context.go function ContextSetRoot (line 12) | func ContextSetRoot(err *jsonschema.ValidationError, head string) *jsons... function prefixPointer (line 31) | func prefixPointer(pointer, head string) string { FILE: schema/context_test.go function TestContextSetRoot (line 15) | func TestContextSetRoot(t *testing.T) { FILE: schema/errors.go type ValidationError (line 16) | type ValidationError struct function NewRequiredError (line 21) | func NewRequiredError(missingPtr, missingFieldName string) error { function NewTOTPVerifierWrongError (line 34) | func NewTOTPVerifierWrongError(instancePtr string) error { function NewWebAuthnVerifierWrongError (line 45) | func NewWebAuthnVerifierWrongError(instancePtr string) error { function NewLookupAlreadyUsed (line 56) | func NewLookupAlreadyUsed() error { function NewErrorValidationLookupInvalid (line 67) | func NewErrorValidationLookupInvalid() error { type ValidationErrorContextPasswordPolicyViolation (line 78) | type ValidationErrorContextPasswordPolicyViolation struct method AddContext (line 82) | func (r *ValidationErrorContextPasswordPolicyViolation) AddContext(_, ... method FinishInstanceContext (line 84) | func (r *ValidationErrorContextPasswordPolicyViolation) FinishInstance... function NewPasswordPolicyViolationError (line 86) | func NewPasswordPolicyViolationError(instancePtr string, message *text.M... function NewMissingIdentifierError (line 99) | func NewMissingIdentifierError() error { type ValidationErrorContextInvalidCredentialsError (line 109) | type ValidationErrorContextInvalidCredentialsError struct method AddContext (line 111) | func (r *ValidationErrorContextInvalidCredentialsError) AddContext(_, ... method FinishInstanceContext (line 113) | func (r *ValidationErrorContextInvalidCredentialsError) FinishInstance... function NewInvalidCredentialsError (line 115) | func NewInvalidCredentialsError() error { function NewAccountNotFoundError (line 125) | func NewAccountNotFoundError() error { type ValidationErrorContextDuplicateCredentialsError (line 135) | type ValidationErrorContextDuplicateCredentialsError struct method AddContext (line 141) | func (r *ValidationErrorContextDuplicateCredentialsError) AddContext(_... method FinishInstanceContext (line 143) | func (r *ValidationErrorContextDuplicateCredentialsError) FinishInstan... type DuplicateCredentialsHinter (line 145) | type DuplicateCredentialsHinter interface function NewDuplicateCredentialsError (line 152) | func NewDuplicateCredentialsError(err error) error { function NewNoLoginStrategyResponsible (line 178) | func NewNoLoginStrategyResponsible() error { function NewNoRegistrationStrategyResponsible (line 188) | func NewNoRegistrationStrategyResponsible() error { function NewNoSettingsStrategyResponsible (line 198) | func NewNoSettingsStrategyResponsible() error { function NewNoRecoveryStrategyResponsible (line 208) | func NewNoRecoveryStrategyResponsible() error { function NewNoVerificationStrategyResponsible (line 218) | func NewNoVerificationStrategyResponsible() error { function NewAddressNotVerifiedError (line 228) | func NewAddressNotVerifiedError() error { function NewNoTOTPDeviceRegistered (line 238) | func NewNoTOTPDeviceRegistered() error { function NewNoLookupDefined (line 248) | func NewNoLookupDefined() error { function NewNoWebAuthnRegistered (line 258) | func NewNoWebAuthnRegistered() error { function NewHookValidationError (line 268) | func NewHookValidationError(instancePtr, message string, messages text.M... type ValidationListError (line 278) | type ValidationListError struct method Error (line 282) | func (e ValidationListError) Error() string { method Add (line 290) | func (e *ValidationListError) Add(v *ValidationError) { method HasErrors (line 294) | func (e ValidationListError) HasErrors() bool { method WithError (line 298) | func (e *ValidationListError) WithError(instancePtr, message string, d... function NewValidationListError (line 308) | func NewValidationListError(errs []*ValidationError) error { function NewNoWebAuthnCredentials (line 312) | func NewNoWebAuthnCredentials() error { function NewNoCodeAuthnCredentials (line 322) | func NewNoCodeAuthnCredentials() error { function NewTraitsMismatch (line 332) | func NewTraitsMismatch() error { function NewRegistrationCodeInvalid (line 342) | func NewRegistrationCodeInvalid() error { function NewLoginCodeInvalid (line 352) | func NewLoginCodeInvalid() error { function NewLinkedCredentialsDoNotMatch (line 362) | func NewLinkedCredentialsDoNotMatch() error { function NewUnknownAddressError (line 372) | func NewUnknownAddressError() error { FILE: schema/errors_test.go function TestListValidationErrors (line 16) | func TestListValidationErrors(t *testing.T) { FILE: schema/extension.go constant ExtensionName (line 19) | ExtensionName string = "ory.sh/kratos" type ExtensionConfig (line 23) | type ExtensionConfig struct method EnhancePath (line 74) | func (e *ExtensionConfig) EnhancePath(path jsonschemax.Path) map[strin... type ValidateExtension (line 54) | type ValidateExtension interface type CompileExtension (line 58) | type CompileExtension interface type ExtensionRunner (line 62) | type ExtensionRunner struct method Register (line 155) | func (r *ExtensionRunner) Register(compiler *jsonschema.Compiler) *Ext... method Extension (line 160) | func (r *ExtensionRunner) Extension() jsonschema.Extension { method AddRunner (line 168) | func (r *ExtensionRunner) AddRunner(run ValidateExtension) *ExtensionR... method Finish (line 173) | func (r *ExtensionRunner) Finish() error { type ExtensionRunnerOption (line 71) | type ExtensionRunnerOption function WithValidateRunners (line 84) | func WithValidateRunners(runners ...ValidateExtension) ExtensionRunnerOp... function WithCompileRunners (line 90) | func WithCompileRunners(runners ...CompileExtension) ExtensionRunnerOpti... function NewExtensionRunner (line 96) | func NewExtensionRunner(ctx context.Context, opts ...ExtensionRunnerOpti... FILE: schema/extension_test.go type extensionStub (line 19) | type extensionStub struct method Run (line 24) | func (r *extensionStub) Run(ctx jsonschema.ValidationContext, config E... method Finish (line 34) | func (r *extensionStub) Finish() error { function TestExtensionRunner (line 40) | func TestExtensionRunner(t *testing.T) { FILE: schema/handler.go type handlerDependencies (line 35) | type handlerDependencies interface type Handler (line 44) | type Handler struct method RegisterPublicRoutes (line 61) | func (h *Handler) RegisterPublicRoutes(public *httprouterx.RouterPubli... method RegisterAdminRoutes (line 72) | func (h *Handler) RegisterAdminRoutes(admin *httprouterx.RouterAdmin) { method getIdentitySchema (line 111) | func (h *Handler) getIdentitySchema(w http.ResponseWriter, r *http.Req... method getAll (line 197) | func (h *Handler) getAll(w http.ResponseWriter, r *http.Request) { method ReadSchema (line 228) | func (h *Handler) ReadSchema(ctx context.Context, uri *url.URL) (data ... type HandlerProvider (line 47) | type HandlerProvider interface function NewHandler (line 52) | func NewHandler(r handlerDependencies) *Handler { constant SchemasPath (line 57) | SchemasPath string = "schemas" constant maxSchemaSize (line 58) | maxSchemaSize = 1024 * 1024 type _ (line 80) | type _ type _ (line 85) | type _ struct type IdentitySchemas (line 149) | type IdentitySchemas type identitySchemaContainer (line 154) | type identitySchemaContainer struct type _ (line 166) | type _ struct type _ (line 173) | type _ struct FILE: schema/handler_test.go function TestHandler (line 31) | func TestHandler(t *testing.T) { FILE: schema/schema.go type Schemas (line 27) | type Schemas method GetByID (line 74) | func (s Schemas) GetByID(id string) (*Schema, error) { method Total (line 89) | func (s Schemas) Total() int { method List (line 93) | func (s Schemas) List(page, perPage int) Schemas { method findSchemaByID (line 104) | func (s Schemas) findSchemaByID(id string) (*Schema, bool) { type IdentitySchemaProvider (line 29) | type IdentitySchemaProvider interface type deps (line 33) | type deps interface type DefaultIdentitySchemaProvider (line 37) | type DefaultIdentitySchemaProvider struct method IdentityTraitsSchemas (line 45) | func (d *DefaultIdentitySchemaProvider) IdentityTraitsSchemas(ctx cont... function NewDefaultIdentityTraitsProvider (line 41) | func NewDefaultIdentityTraitsProvider(d deps) *DefaultIdentitySchemaProv... type IdentitySchemaList (line 68) | type IdentitySchemaList interface function init (line 118) | func init() { function computeKeyPositions (line 122) | func computeKeyPositions(schema []byte, dest *[]string, parents []string) { function GetKeysInOrder (line 134) | func GetKeysInOrder(ctx context.Context, schemaRef string) ([]string, er... type Schema (line 157) | type Schema struct method SchemaURL (line 164) | func (s *Schema) SchemaURL(host *url.URL) *url.URL { function IDToURL (line 168) | func IDToURL(host *url.URL, id string) *url.URL { function TryDecodeID (line 172) | func TryDecodeID(encoded string) (string, bool) { FILE: schema/schema_test.go function TestDefaultIdentityTraitsProvider (line 19) | func TestDefaultIdentityTraitsProvider(t *testing.T) { function TestGetKeysInOrder (line 24) | func TestGetKeysInOrder(t *testing.T) { FILE: schema/test/schema_provider.go function TestIdentitySchemaProvider (line 20) | func TestIdentitySchemaProvider(t *testing.T, provider schema.IdentitySc... FILE: schema/validator.go type Validator (line 19) | type Validator struct method Validate (line 41) | func (v *Validator) Validate( type ValidationProvider (line 23) | type ValidationProvider interface function NewValidator (line 27) | func NewValidator() *Validator { type validatorOptions (line 31) | type validatorOptions struct function WithExtensionRunner (line 35) | func WithExtensionRunner(e *ExtensionRunner) func(*validatorOptions) { FILE: schema/validator_test.go function TestSchemaValidator (line 21) | func TestSchemaValidator(t *testing.T) { FILE: selfservice/errorx/error.go type ErrorContainer (line 16) | type ErrorContainer struct method TableName (line 37) | func (e ErrorContainer) TableName(ctx context.Context) string { FILE: selfservice/errorx/handler.go constant RouteGet (line 21) | RouteGet = "/self-service/errors" type handlerDependencies (line 26) | type handlerDependencies interface type HandlerProvider (line 31) | type HandlerProvider interface type Handler (line 34) | type Handler struct method WithTokenGenerator (line 46) | func (h *Handler) WithTokenGenerator(f func(r *http.Request) string) { method RegisterPublicRoutes (line 50) | func (h *Handler) RegisterPublicRoutes(public *httprouterx.RouterPubli... method RegisterAdminRoutes (line 54) | func (h *Handler) RegisterAdminRoutes(public *httprouterx.RouterAdmin) { method publicFetchError (line 95) | func (h *Handler) publicFetchError(w http.ResponseWriter, r *http.Requ... method fetchError (line 102) | func (h *Handler) fetchError(w http.ResponseWriter, r *http.Request) e... function NewHandler (line 40) | func NewHandler( type getFlowError (line 62) | type getFlowError struct FILE: selfservice/errorx/handler_test.go function TestHandler (line 31) | func TestHandler(t *testing.T) { FILE: selfservice/errorx/manager.go type managerDependencies (line 23) | type managerDependencies interface type Manager (line 31) | type Manager struct method Create (line 47) | func (m *Manager) Create(ctx context.Context, w http.ResponseWriter, r... method Forward (line 62) | func (m *Manager) Forward(ctx context.Context, w http.ResponseWriter, ... type ManagementProvider (line 35) | type ManagementProvider interface function NewManager (line 41) | func NewManager(d managerDependencies) *Manager { FILE: selfservice/errorx/persistence.go type Persister (line 14) | type Persister interface type PersistenceProvider (line 30) | type PersistenceProvider interface FILE: selfservice/errorx/test/persistence.go function TestPersister (line 26) | func TestPersister(ctx context.Context, p persistence.Persister) func(t ... FILE: selfservice/flow/config.go type MethodConfigurator (line 11) | type MethodConfigurator interface FILE: selfservice/flow/continue_with.go type ContinueWith (line 17) | type ContinueWith interface type ContinueWithActionSetOrySessionToken (line 23) | type ContinueWithActionSetOrySessionToken constant ContinueWithActionSetOrySessionTokenString (line 26) | ContinueWithActionSetOrySessionTokenString ContinueWithActionSetOrySessi... type ContinueWithSetOrySessionToken (line 34) | type ContinueWithSetOrySessionToken struct method AppendTo (line 46) | func (ContinueWithSetOrySessionToken) AppendTo(url.Values) url.Values { method GetAction (line 57) | func (c ContinueWithSetOrySessionToken) GetAction() string { function NewContinueWithSetToken (line 50) | func NewContinueWithSetToken(t string) *ContinueWithSetOrySessionToken { type ContinueWithActionShowVerificationUI (line 62) | type ContinueWithActionShowVerificationUI constant ContinueWithActionShowVerificationUIString (line 66) | ContinueWithActionShowVerificationUIString ContinueWithActionShowVerific... type ContinueWithVerificationUI (line 74) | type ContinueWithVerificationUI struct method GetAction (line 85) | func (c ContinueWithVerificationUI) GetAction() string { method AppendTo (line 120) | func (c ContinueWithVerificationUI) AppendTo(src *url.URL) *url.URL { type ContinueWithVerificationUIFlow (line 90) | type ContinueWithVerificationUIFlow struct function NewContinueWithVerificationUI (line 109) | func NewContinueWithVerificationUI(id uuid.UUID, address, url string) *C... type FlowWithContinueWith (line 126) | type FlowWithContinueWith interface type ContinueWithActionShowSettingsUI (line 133) | type ContinueWithActionShowSettingsUI constant ContinueWithActionShowSettingsUIString (line 137) | ContinueWithActionShowSettingsUIString ContinueWithActionShowSettingsUI ... type ContinueWithSettingsUI (line 145) | type ContinueWithSettingsUI struct method GetAction (line 157) | func (c ContinueWithSettingsUI) GetAction() string { type ContinueWithSettingsUIFlow (line 162) | type ContinueWithSettingsUIFlow struct function NewContinueWithSettingsUI (line 176) | func NewContinueWithSettingsUI(f Flow, redirectTo string) *ContinueWithS... type ContinueWithActionShowRecoveryUI (line 187) | type ContinueWithActionShowRecoveryUI constant ContinueWithActionShowRecoveryUIString (line 191) | ContinueWithActionShowRecoveryUIString ContinueWithActionShowRecoveryUI ... type ContinueWithRecoveryUI (line 197) | type ContinueWithRecoveryUI struct method GetAction (line 232) | func (c ContinueWithRecoveryUI) GetAction() string { type ContinueWithRecoveryUIFlow (line 209) | type ContinueWithRecoveryUIFlow struct function NewContinueWithRecoveryUI (line 223) | func NewContinueWithRecoveryUI(f Flow) *ContinueWithRecoveryUI { type ContinueWithActionRedirectBrowserTo (line 237) | type ContinueWithActionRedirectBrowserTo constant ContinueWithActionRedirectBrowserToString (line 241) | ContinueWithActionRedirectBrowserToString ContinueWithActionRedirectBrow... type ContinueWithRedirectBrowserTo (line 247) | type ContinueWithRedirectBrowserTo struct method GetAction (line 266) | func (c ContinueWithRedirectBrowserTo) GetAction() string { function NewContinueWithRedirectBrowserTo (line 259) | func NewContinueWithRedirectBrowserTo(redirectTo string) *ContinueWithRe... function ErrorWithContinueWith (line 270) | func ErrorWithContinueWith(err *herodot.DefaultError, continueWith ...Co... FILE: selfservice/flow/duplicate_credentials.go constant internalContextDuplicateCredentialsPath (line 16) | internalContextDuplicateCredentialsPath = "registration_duplicate_creden... type DuplicateCredentialsData (line 18) | type DuplicateCredentialsData struct function SetDuplicateCredentials (line 25) | func SetDuplicateCredentials(flow InternalContexter, creds DuplicateCred... function DuplicateCredentials (line 43) | func DuplicateCredentials(flow InternalContexter) (*DuplicateCredentials... FILE: selfservice/flow/error.go type errorFlowReplaced (line 42) | type errorFlowReplaced struct type ReplacedError (line 49) | type ReplacedError struct method WithFlow (line 60) | func (e *ReplacedError) WithFlow(flow Flow) *ReplacedError { method GetFlow (line 66) | func (e *ReplacedError) GetFlow() Flow { method EnhanceJSONError (line 70) | func (e *ReplacedError) EnhanceJSONError() interface{} { function NewFlowReplacedError (line 74) | func NewFlowReplacedError(message *text.Message) *ReplacedError { type selfServiceFlowExpiredError (line 88) | type selfServiceFlowExpiredError struct type ExpiredError (line 104) | type ExpiredError struct method Unwrap (line 119) | func (e *ExpiredError) Unwrap() error { method WithContinueWith (line 123) | func (e *ExpiredError) WithContinueWith(continueWith ...ContinueWith) ... method WithFlow (line 128) | func (e *ExpiredError) WithFlow(flow Flow) *ExpiredError { method GetFlow (line 134) | func (e *ExpiredError) GetFlow() Flow { method EnhanceJSONError (line 138) | func (e *ExpiredError) EnhanceJSONError() interface{} { function NewFlowExpiredError (line 142) | func NewFlowExpiredError(at time.Time) *ExpiredError { type errorBrowserLocationChangeRequired (line 159) | type errorBrowserLocationChangeRequired struct type BrowserLocationChangeRequiredError (line 167) | type BrowserLocationChangeRequiredError struct method EnhanceJSONError (line 174) | func (e *BrowserLocationChangeRequiredError) EnhanceJSONError() interf... function NewBrowserLocationChangeRequiredError (line 178) | func NewBrowserLocationChangeRequiredError(redirectTo string) *BrowserLo... function HandleHookError (line 192) | func HandleHookError(_ http.ResponseWriter, r *http.Request, f Flow, tra... function GetFlowExpiredRedirectURL (line 215) | func GetFlowExpiredRedirectURL(ctx context.Context, config *config.Confi... FILE: selfservice/flow/error_test.go type testCSRFTokenGenerator (line 27) | type testCSRFTokenGenerator struct method GenerateCSRFToken (line 29) | func (t *testCSRFTokenGenerator) GenerateCSRFToken(_ *http.Request) st... type testFlow (line 34) | type testFlow struct method GetID (line 68) | func (t *testFlow) GetID() uuid.UUID { method GetType (line 72) | func (t *testFlow) GetType() Type { method GetRequestURL (line 76) | func (t *testFlow) GetRequestURL() string { method AppendTo (line 80) | func (t *testFlow) AppendTo(url *url.URL) *url.URL { method GetUI (line 84) | func (t *testFlow) GetUI() *container.Container { method GetState (line 88) | func (t *testFlow) GetState() State { method GetFlowName (line 92) | func (t *testFlow) GetFlowName() FlowName { method SetState (line 96) | func (t *testFlow) SetState(state State) { method GetTransientPayload (line 100) | func (t *testFlow) GetTransientPayload() json.RawMessage { function newTestFlow (line 104) | func newTestFlow(r *http.Request, flowType Type) Flow { function prepareTraits (line 123) | func prepareTraits(username, password string) identity.Traits { function TestHandleHookError (line 133) | func TestHandleHookError(t *testing.T) { FILE: selfservice/flow/flow.go function AppendFlowTo (line 26) | func AppendFlowTo(src *url.URL, id uuid.UUID) *url.URL { function GetFlowID (line 30) | func GetFlowID(r *http.Request) (uuid.UUID, error) { type Flow (line 38) | type Flow interface type FlowWithRedirect (line 50) | type FlowWithRedirect interface type InternalContexter (line 54) | type InternalContexter interface type OAuth2ChallengeProvider (line 60) | type OAuth2ChallengeProvider interface FILE: selfservice/flow/flow_identity_schema.go type IdentitySchema (line 16) | type IdentitySchema method Scan (line 19) | func (is *IdentitySchema) Scan(value any) error { method Value (line 29) | func (is *IdentitySchema) Value() (driver.Value, error) { method URL (line 38) | func (is *IdentitySchema) URL(ctx context.Context, config *config.Conf... method ID (line 55) | func (is *IdentitySchema) ID(ctx context.Context, config *config.Confi... FILE: selfservice/flow/flow_test.go function TestGetFlowID (line 19) | func TestGetFlowID(t *testing.T) { FILE: selfservice/flow/internal_context.go function PrefixInternalContextKey (line 8) | func PrefixInternalContextKey(t identity.CredentialsType, suffix string)... FILE: selfservice/flow/login/aal.go function CheckAAL (line 13) | func CheckAAL(f *Flow, expected identity.AuthenticatorAssuranceLevel) er... FILE: selfservice/flow/login/aal_test.go function TestCheckAAL (line 16) | func TestCheckAAL(t *testing.T) { FILE: selfservice/flow/login/error.go type errorHandlerDependencies (line 49) | type errorHandlerDependencies interface type ErrorHandlerProvider (line 62) | type ErrorHandlerProvider interface type ErrorHandler (line 64) | type ErrorHandler struct method PrepareReplacementForExpiredFlow (line 73) | func (s *ErrorHandler) PrepareReplacementForExpiredFlow(w http.Respons... method WriteFlowError (line 92) | func (s *ErrorHandler) WriteFlowError(w http.ResponseWriter, r *http.R... method forward (line 174) | func (s *ErrorHandler) forward(w http.ResponseWriter, r *http.Request,... function NewFlowErrorHandler (line 69) | func NewFlowErrorHandler(d errorHandlerDependencies) *ErrorHandler { FILE: selfservice/flow/login/error_test.go type opts (line 43) | type opts struct function withLoginChallenge (line 47) | func withLoginChallenge(challenge string) func(*opts) { function TestHandleError (line 53) | func TestHandleError(t *testing.T) { FILE: selfservice/flow/login/export_test.go function CheckAALForTest (line 12) | func CheckAALForTest(ctx context.Context, e *HookExecutor, s *session.Se... FILE: selfservice/flow/login/extension_identifier_label.go function GetIdentifierLabelFromSchema (line 16) | func GetIdentifierLabelFromSchema(ctx context.Context, schemaURL string)... FILE: selfservice/flow/login/extension_identifier_label_test.go function constructSchema (line 21) | func constructSchema(t *testing.T, ecModifier, ucModifier func(*schema.E... function TestGetIdentifierLabelFromSchema (line 79) | func TestGetIdentifierLabelFromSchema(t *testing.T) { FILE: selfservice/flow/login/flow.go type Flow (line 41) | type Flow struct method GetType (line 208) | func (f *Flow) GetType() flow.Type { return... method GetRequestURL (line 209) | func (f *Flow) GetRequestURL() string { return... method GetID (line 210) | func (f *Flow) GetID() uuid.UUID { return... method GetInternalContext (line 211) | func (f *Flow) GetInternalContext() sqlxx.JSONRawMessage { return... method SetInternalContext (line 212) | func (f *Flow) SetInternalContext(bytes sqlxx.JSONRawMessage) { f.Inte... method GetUI (line 213) | func (f *Flow) GetUI() *container.Container { return... method GetState (line 214) | func (f *Flow) GetState() flow.State { return... method GetFlowName (line 215) | func (Flow) GetFlowName() flow.FlowName { return... method TableName (line 216) | func (Flow) TableName() string { return... method ContinueWith (line 217) | func (f *Flow) ContinueWith() []flow.ContinueWith { return... method SetReturnToVerification (line 218) | func (f *Flow) SetReturnToVerification(to string) { f.Retu... method GetOAuth2LoginChallenge (line 219) | func (f *Flow) GetOAuth2LoginChallenge() sqlxx.NullString { return... method AppendTo (line 220) | func (f *Flow) AppendTo(src *url.URL) *url.URL { return... method SetState (line 221) | func (f *Flow) SetState(state flow.State) { f.Stat... method GetTransientPayload (line 222) | func (f *Flow) GetTransientPayload() json.RawMessage { return... method IsRefresh (line 226) | func (f *Flow) IsRefresh() bool { return f.Refresh } method Valid (line 228) | func (f *Flow) Valid() error { method EnsureInternalContext (line 235) | func (f *Flow) EnsureInternalContext() { method MarshalJSON (line 241) | func (f Flow) MarshalJSON() ([]byte, error) { method SetReturnTo (line 247) | func (f *Flow) SetReturnTo() { method AfterFind (line 257) | func (f *Flow) AfterFind(*pop.Connection) error { method AfterSave (line 262) | func (f *Flow) AfterSave(*pop.Connection) error { method SecureRedirectToOpts (line 267) | func (f *Flow) SecureRedirectToOpts(ctx context.Context, cfg config.Pr... method AddContinueWith (line 277) | func (f *Flow) AddContinueWith(c flow.ContinueWith) { method ToLoggerField (line 281) | func (f *Flow) ToLoggerField() map[string]any { function NewFlow (line 164) | func NewFlow(conf *config.Config, exp time.Duration, csrf string, r *htt... FILE: selfservice/flow/login/flow_test.go function TestFakeFlow (line 37) | func TestFakeFlow(t *testing.T) { function TestNewFlow (line 50) | func TestNewFlow(t *testing.T) { function TestFlow (line 154) | func TestFlow(t *testing.T) { function TestGetType (line 179) | func TestGetType(t *testing.T) { function TestGetRequestURL (line 192) | func TestGetRequestURL(t *testing.T) { function TestFlowEncodeJSON (line 199) | func TestFlowEncodeJSON(t *testing.T) { function TestFlowDontOverrideReturnTo (line 206) | func TestFlowDontOverrideReturnTo(t *testing.T) { function TestDuplicateCredentials (line 217) | func TestDuplicateCredentials(t *testing.T) { FILE: selfservice/flow/login/handler.go constant RouteInitBrowserFlow (line 44) | RouteInitBrowserFlow = "/self-service/login/browser" constant RouteInitAPIFlow (line 45) | RouteInitAPIFlow = "/self-service/login/api" constant RouteGetFlow (line 47) | RouteGetFlow = "/self-service/login/flows" constant RouteSubmitFlow (line 49) | RouteSubmitFlow = "/self-service/login" type dependencies (line 53) | type dependencies interface type HandlerProvider (line 70) | type HandlerProvider interface type Handler (line 73) | type Handler struct method RegisterPublicRoutes (line 78) | func (h *Handler) RegisterPublicRoutes(public *httprouterx.RouterPubli... method RegisterAdminRoutes (line 90) | func (h *Handler) RegisterAdminRoutes(admin *httprouterx.RouterAdmin) { method NewLoginFlow (line 139) | func (h *Handler) NewLoginFlow(w http.ResponseWriter, r *http.Request,... method FromOldFlow (line 317) | func (h *Handler) FromOldFlow(w http.ResponseWriter, r *http.Request, ... method createNativeLoginFlow (line 429) | func (h *Handler) createNativeLoginFlow(w http.ResponseWriter, r *http... method createBrowserLoginFlow (line 559) | func (h *Handler) createBrowserLoginFlow(w http.ResponseWriter, r *htt... method getLoginFlow (line 717) | func (h *Handler) getLoginFlow(w http.ResponseWriter, r *http.Request) { method updateLoginFlow (line 862) | func (h *Handler) updateLoginFlow(w http.ResponseWriter, r *http.Reque... function NewHandler (line 76) | func NewHandler(d dependencies) *Handler { return &Handler{d: d} } type FlowOption (line 99) | type FlowOption function WithFlowReturnTo (line 101) | func WithFlowReturnTo(returnTo string) FlowOption { function WithOrganizationID (line 107) | func WithOrganizationID(organizationID uuid.NullUUID) FlowOption { function WithInternalContext (line 113) | func WithInternalContext(internalContext []byte) FlowOption { function WithFormErrorMessage (line 119) | func WithFormErrorMessage(messages []text.Message) FlowOption { function WithIsAccountLinking (line 127) | func WithIsAccountLinking() FlowOption { function WithLoginChallenge (line 133) | func WithLoginChallenge(loginChallenge string) FlowOption { type createNativeLoginFlow (line 334) | type createNativeLoginFlow struct type createBrowserLoginFlow (line 452) | type createBrowserLoginFlow struct type getLoginFlow (line 655) | type getLoginFlow struct type updateLoginFlow (line 773) | type updateLoginFlow struct type updateLoginFlowBody (line 806) | type updateLoginFlowBody struct FILE: selfservice/flow/login/handler_test.go function init (line 46) | func init() { function TestFlowLifecycle (line 50) | func TestFlowLifecycle(t *testing.T) { function TestGetFlow (line 879) | func TestGetFlow(t *testing.T) { FILE: selfservice/flow/login/hook.go type PreHookExecutor (line 36) | type PreHookExecutor interface type PostHookExecutor (line 40) | type PostHookExecutor interface type HooksProvider (line 44) | type HooksProvider interface type executorDependencies (line 51) | type executorDependencies interface type HookExecutor (line 69) | type HookExecutor struct method checkAAL (line 89) | func (e *HookExecutor) checkAAL(ctx context.Context, s *session.Sessio... method handleLoginError (line 105) | func (e *HookExecutor) handleLoginError(_ http.ResponseWriter, r *http... method PostLoginHook (line 128) | func (e *HookExecutor) PostLoginHook( method PreLoginHook (line 393) | func (e *HookExecutor) PreLoginHook(w http.ResponseWriter, r *http.Req... method maybeLinkCredentials (line 408) | func (e *HookExecutor) maybeLinkCredentials(ctx context.Context, sess ... method checkDuplicateCredentialsIdentifierMatch (line 449) | func (e *HookExecutor) checkDuplicateCredentialsIdentifierMatch(ctx co... type HookExecutorProvider (line 72) | type HookExecutorProvider interface function PostHookExecutorNames (line 77) | func PostHookExecutorNames(e []PostHookExecutor) []string { function NewHookExecutor (line 85) | func NewHookExecutor(d executorDependencies) *HookExecutor { FILE: selfservice/flow/login/hook_test.go function TestLoginExecutor (line 38) | func TestLoginExecutor(t *testing.T) { FILE: selfservice/flow/login/organizations.go function PrepareOrganizations (line 20) | func PrepareOrganizations(r *http.Request, f *Flow, sess *session.Sessio... FILE: selfservice/flow/login/organizations_test.go function TestPrepareOrganizations (line 20) | func TestPrepareOrganizations(t *testing.T) { FILE: selfservice/flow/login/persistence.go type FlowPersister (line 14) | type FlowPersister interface type FlowPersistenceProvider (line 21) | type FlowPersistenceProvider interface FILE: selfservice/flow/login/session.go type APIFlowResponse (line 14) | type APIFlowResponse struct FILE: selfservice/flow/login/sort.go function sortNodes (line 12) | func sortNodes(ctx context.Context, n node.Nodes) error { FILE: selfservice/flow/login/strategy.go type Strategy (line 19) | type Strategy interface type Strategies (line 26) | type Strategies method Strategy (line 39) | func (s Strategies) Strategy(id identity.CredentialsType) (Strategy, e... method MustStrategy (line 51) | func (s Strategies) MustStrategy(id identity.CredentialsType) Strategy { type LinkableStrategy (line 28) | type LinkableStrategy interface type FastLoginStrategy (line 34) | type FastLoginStrategy interface type StrategyFilter (line 59) | type StrategyFilter type StrategyProvider (line 61) | type StrategyProvider interface FILE: selfservice/flow/login/strategy_form_hydrator.go type UnifiedFormHydrator (line 14) | type UnifiedFormHydrator interface type AAL1FormHydrator (line 19) | type AAL1FormHydrator interface type AAL2FormHydrator (line 40) | type AAL2FormHydrator interface type FormHydratorOptions (line 48) | type FormHydratorOptions struct type FormHydratorModifier (line 53) | type FormHydratorModifier function WithIdentityHint (line 55) | func WithIdentityHint(i *identity.Identity) FormHydratorModifier { function WithIdentifier (line 61) | func WithIdentifier(i string) FormHydratorModifier { function NewFormHydratorOptions (line 67) | func NewFormHydratorOptions(modifiers []FormHydratorModifier) *FormHydra... FILE: selfservice/flow/login/strategy_form_hydrator_test.go function TestWithIdentityHint (line 14) | func TestWithIdentityHint(t *testing.T) { function TestWithIdentifier (line 20) | func TestWithIdentifier(t *testing.T) { FILE: selfservice/flow/login/test/persistence.go function TestFlowPersister (line 28) | func TestFlowPersister(ctx context.Context, p persistence.Persister) fun... FILE: selfservice/flow/login/testsetup_test.go function TestMain (line 15) | func TestMain(m *testing.M) { FILE: selfservice/flow/logout/handler.go constant RouteInitBrowserFlow (line 34) | RouteInitBrowserFlow = "/self-service/logout/browser" constant RouteAPIFlow (line 35) | RouteAPIFlow = "/self-service/logout/api" constant RouteSubmitFlow (line 36) | RouteSubmitFlow = "/self-service/logout" type dependencies (line 40) | type dependencies interface type HandlerProvider (line 48) | type HandlerProvider interface type Handler (line 51) | type Handler struct method RegisterPublicRoutes (line 56) | func (h *Handler) RegisterPublicRoutes(router *httprouterx.RouterPubli... method RegisterAdminRoutes (line 64) | func (h *Handler) RegisterAdminRoutes(admin *httprouterx.RouterAdmin) { method createBrowserLogoutFlow (line 139) | func (h *Handler) createBrowserLogoutFlow(w http.ResponseWriter, r *ht... method performNativeLogout (line 233) | func (h *Handler) performNativeLogout(w http.ResponseWriter, r *http.R... method updateLogoutFlow (line 327) | func (h *Handler) updateLogoutFlow(w http.ResponseWriter, r *http.Requ... method completeLogout (line 358) | func (h *Handler) completeLogout(w http.ResponseWriter, r *http.Reques... function NewHandler (line 54) | func NewHandler(d dependencies) *Handler { return &Handler{d: d} } type logoutFlow (line 73) | type logoutFlow struct type createBrowserLogoutFlow (line 92) | type createBrowserLogoutFlow struct type performNativeLogout (line 184) | type performNativeLogout struct type performNativeLogoutBody (line 196) | type performNativeLogoutBody struct type updateLogoutFlow (line 273) | type updateLogoutFlow struct FILE: selfservice/flow/logout/handler_test.go function TestLogout (line 31) | func TestLogout(t *testing.T) { FILE: selfservice/flow/name.go type FlowName (line 16) | type FlowName constant LoginFlow (line 19) | LoginFlow FlowName = "login" constant RegistrationFlow (line 20) | RegistrationFlow FlowName = "registration" constant SettingsFlow (line 21) | SettingsFlow FlowName = "settings" constant RecoveryFlow (line 22) | RecoveryFlow FlowName = "recovery" constant VerificationFlow (line 23) | VerificationFlow FlowName = "verification" method String (line 26) | func (t Type) String() string { FILE: selfservice/flow/nosurf.go function GetCSRFToken (line 12) | func GetCSRFToken(reg interface { FILE: selfservice/flow/nosurf_test.go function TestGetCSRFToken (line 15) | func TestGetCSRFToken(t *testing.T) { type mockReg (line 43) | type mockReg struct method GenerateCSRFToken (line 49) | func (m *mockReg) GenerateCSRFToken(*http.Request) string { method CSRFHandler (line 53) | func (m *mockReg) CSRFHandler() nosurf.Handler { method RegenerateToken (line 57) | func (m *mockReg) RegenerateToken(http.ResponseWriter, *http.Request) ... FILE: selfservice/flow/organizations.go function ParseOrganizationFromURLQuery (line 18) | func ParseOrganizationFromURLQuery(ctx context.Context, q url.Values) (o... type OrganizationImplementor (line 30) | type OrganizationImplementor interface FILE: selfservice/flow/organizations_test.go function TestParseOrganizationFromURLQuery (line 15) | func TestParseOrganizationFromURLQuery(t *testing.T) { FILE: selfservice/flow/recovery/error.go type errorHandlerDependencies (line 43) | type errorHandlerDependencies interface type ErrorHandlerProvider (line 54) | type ErrorHandlerProvider interface type ErrorHandler (line 58) | type ErrorHandler struct method WriteFlowError (line 67) | func (s *ErrorHandler) WriteFlowError( method forward (line 169) | func (s *ErrorHandler) forward(w http.ResponseWriter, r *http.Request,... function NewErrorHandler (line 63) | func NewErrorHandler(d errorHandlerDependencies) *ErrorHandler { FILE: selfservice/flow/recovery/error_test.go function TestHandleError (line 39) | func TestHandleError(t *testing.T) { function TestHandleError_WithContinueWith (line 301) | func TestHandleError_WithContinueWith(t *testing.T) { FILE: selfservice/flow/recovery/flow.go type Flow (line 37) | type Flow struct method GetType (line 183) | func (f *Flow) GetType() flow.Type { return f.Type } method GetRequestURL (line 184) | func (f *Flow) GetRequestURL() string { return f.Reques... method TableName (line 185) | func (Flow) TableName() string { return "selfser... method GetID (line 186) | func (f Flow) GetID() uuid.UUID { return f.ID } method GetUI (line 187) | func (f *Flow) GetUI() *container.Container { return f.UI } method GetState (line 188) | func (f *Flow) GetState() State { return f.State } method GetFlowName (line 189) | func (Flow) GetFlowName() flow.FlowName { return flow.Rec... method SetState (line 190) | func (f *Flow) SetState(state State) { f.State = state } method GetTransientPayload (line 191) | func (f *Flow) GetTransientPayload() json.RawMessage { return f.Transi... method Valid (line 193) | func (f *Flow) Valid() error { method AppendTo (line 200) | func (f *Flow) AppendTo(src *url.URL) *url.URL { method SetCSRFToken (line 204) | func (f *Flow) SetCSRFToken(token string) { method MarshalJSON (line 209) | func (f Flow) MarshalJSON() ([]byte, error) { method SetReturnTo (line 215) | func (f *Flow) SetReturnTo() { method AfterFind (line 225) | func (f *Flow) AfterFind(*pop.Connection) error { method AfterSave (line 230) | func (f *Flow) AfterSave(*pop.Connection) error { method ToLoggerField (line 235) | func (f *Flow) ToLoggerField() map[string]any { function NewFlow (line 119) | func NewFlow(conf *config.Config, exp time.Duration, csrf string, r *htt... function FromOldFlow (line 168) | func FromOldFlow(conf *config.Config, exp time.Duration, csrf string, r ... FILE: selfservice/flow/recovery/flow_test.go function TestFlow (line 27) | func TestFlow(t *testing.T) { function TestGetType (line 67) | func TestGetType(t *testing.T) { function TestGetRequestURL (line 79) | func TestGetRequestURL(t *testing.T) { function TestFlowEncodeJSON (line 85) | func TestFlowEncodeJSON(t *testing.T) { function TestFromOldFlow (line 91) | func TestFromOldFlow(t *testing.T) { function TestFlowDontOverrideReturnTo (line 126) | func TestFlowDontOverrideReturnTo(t *testing.T) { FILE: selfservice/flow/recovery/handler.go constant RouteInitBrowserFlow (line 31) | RouteInitBrowserFlow = "/self-service/recovery/browser" constant RouteInitAPIFlow (line 32) | RouteInitAPIFlow = "/self-service/recovery/api" constant RouteGetFlow (line 33) | RouteGetFlow = "/self-service/recovery/flows" constant RouteSubmitFlow (line 35) | RouteSubmitFlow = "/self-service/recovery" type HandlerProvider (line 39) | type HandlerProvider interface type handlerDependencies (line 42) | type handlerDependencies interface type Handler (line 56) | type Handler struct method RegisterPublicRoutes (line 63) | func (h *Handler) RegisterPublicRoutes(public *httprouterx.RouterPubli... method RegisterAdminRoutes (line 85) | func (h *Handler) RegisterAdminRoutes(admin *httprouterx.RouterAdmin) { method createNativeRecoveryFlow (line 120) | func (h *Handler) createNativeRecoveryFlow(w http.ResponseWriter, r *h... method createBrowserRecoveryFlow (line 188) | func (h *Handler) createBrowserRecoveryFlow(w http.ResponseWriter, r *... method getRecoveryFlow (line 281) | func (h *Handler) getRecoveryFlow(w http.ResponseWriter, r *http.Reque... method updateRecoveryFlow (line 409) | func (h *Handler) updateRecoveryFlow(w http.ResponseWriter, r *http.Re... function NewHandler (line 61) | func NewHandler(d handlerDependencies) *Handler { return &Handler{d: d} } type createBrowserRecoveryFlow (line 156) | type createBrowserRecoveryFlow struct type getRecoveryFlow (line 225) | type getRecoveryFlow struct type updateRecoveryFlow (line 327) | type updateRecoveryFlow struct type updateRecoveryFlowBody (line 367) | type updateRecoveryFlowBody struct FILE: selfservice/flow/recovery/handler_test.go function init (line 35) | func init() { function TestHandlerRedirectOnAuthenticated (line 39) | func TestHandlerRedirectOnAuthenticated(t *testing.T) { function TestInitFlow (line 66) | func TestInitFlow(t *testing.T) { function TestGetFlow (line 203) | func TestGetFlow(t *testing.T) { FILE: selfservice/flow/recovery/hook.go type PreHookExecutor (line 27) | type PreHookExecutor interface type PreHookExecutorFunc (line 30) | type PreHookExecutorFunc method ExecuteRecoveryPreHook (line 51) | func (f PreHookExecutorFunc) ExecuteRecoveryPreHook(w http.ResponseWri... type PostHookExecutor (line 32) | type PostHookExecutor interface type PostHookExecutorFunc (line 35) | type PostHookExecutorFunc method ExecutePostRecoveryHook (line 55) | func (f PostHookExecutorFunc) ExecutePostRecoveryHook(w http.ResponseW... type HooksProvider (line 37) | type HooksProvider interface function PostHookRecoveryExecutorNames (line 43) | func PostHookRecoveryExecutorNames(e []PostHookExecutor) []string { type executorDependencies (line 60) | type executorDependencies interface type HookExecutor (line 71) | type HookExecutor struct method PostRecoveryHook (line 86) | func (e *HookExecutor) PostRecoveryHook(w http.ResponseWriter, r *http... method PreRecoveryHook (line 122) | func (e *HookExecutor) PreRecoveryHook(w http.ResponseWriter, r *http.... type HookExecutorProvider (line 75) | type HookExecutorProvider interface function NewHookExecutor (line 80) | func NewHookExecutor(d executorDependencies) *HookExecutor { FILE: selfservice/flow/recovery/hook_test.go function TestRecoveryExecutor (line 30) | func TestRecoveryExecutor(t *testing.T) { FILE: selfservice/flow/recovery/persistence.go type FlowPersister (line 14) | type FlowPersister interface type FlowPersistenceProvider (line 20) | type FlowPersistenceProvider interface FILE: selfservice/flow/recovery/strategy.go type RecoveryMethod (line 17) | type RecoveryMethod constant RecoveryStrategyLink (line 20) | RecoveryStrategyLink RecoveryMethod = "link" constant RecoveryStrategyCode (line 21) | RecoveryStrategyCode RecoveryMethod = "code" type Strategy (line 25) | type Strategy interface type Strategies (line 32) | type Strategies method ActiveStrategies (line 40) | func (s Strategies) ActiveStrategies(id string) (active Strategies, pr... type StrategyProvider (line 33) | type StrategyProvider interface FILE: selfservice/flow/recovery/test/persistence.go function TestFlowPersister (line 25) | func TestFlowPersister(ctx context.Context, p interface { FILE: selfservice/flow/registration/decoder.go function DecodeBody (line 16) | func DecodeBody(p interface{}, r *http.Request, schema []byte, ds *url.U... FILE: selfservice/flow/registration/error.go type errorHandlerDependencies (line 43) | type errorHandlerDependencies interface type ErrorHandlerProvider (line 56) | type ErrorHandlerProvider interface type ErrorHandler (line 58) | type ErrorHandler struct method PrepareReplacementForExpiredFlow (line 67) | func (s *ErrorHandler) PrepareReplacementForExpiredFlow(w http.Respons... method WriteFlowError (line 86) | func (s *ErrorHandler) WriteFlowError( method forward (line 184) | func (s *ErrorHandler) forward(w http.ResponseWriter, r *http.Request,... function NewErrorHandler (line 63) | func NewErrorHandler(d errorHandlerDependencies) *ErrorHandler { FILE: selfservice/flow/registration/error_test.go type opts (line 38) | type opts struct function withLoginChallenge (line 42) | func withLoginChallenge(challenge string) func(*opts) { function TestHandleError (line 48) | func TestHandleError(t *testing.T) { FILE: selfservice/flow/registration/flow.go type Flow (line 31) | type Flow struct method TableName (line 185) | func (Flow) TableName() string { return... method GetID (line 186) | func (f Flow) GetID() uuid.UUID { return... method AppendTo (line 187) | func (f *Flow) AppendTo(src *url.URL) *url.URL { return... method GetType (line 188) | func (f *Flow) GetType() flow.Type { return... method GetRequestURL (line 189) | func (f *Flow) GetRequestURL() string { return... method GetInternalContext (line 190) | func (f *Flow) GetInternalContext() sqlxx.JSONRawMessage { return... method SetInternalContext (line 191) | func (f *Flow) SetInternalContext(bytes sqlxx.JSONRawMessage) { f.Inte... method GetUI (line 192) | func (f *Flow) GetUI() *container.Container { return... method GetState (line 193) | func (f *Flow) GetState() State { return... method GetFlowName (line 194) | func (Flow) GetFlowName() flow.FlowName { return... method SetState (line 195) | func (f *Flow) SetState(state State) { f.Stat... method GetTransientPayload (line 196) | func (f *Flow) GetTransientPayload() json.RawMessage { return... method SetReturnToVerification (line 197) | func (f *Flow) SetReturnToVerification(to string) { f.Retu... method GetOAuth2LoginChallenge (line 198) | func (f *Flow) GetOAuth2LoginChallenge() sqlxx.NullString { return... method Valid (line 200) | func (f *Flow) Valid() error { method EnsureInternalContext (line 207) | func (f *Flow) EnsureInternalContext() { method MarshalJSON (line 213) | func (f Flow) MarshalJSON() ([]byte, error) { method SetReturnTo (line 219) | func (f *Flow) SetReturnTo() { method AfterFind (line 229) | func (f *Flow) AfterFind(*pop.Connection) error { method AfterSave (line 234) | func (f *Flow) AfterSave(*pop.Connection) error { method AddContinueWith (line 239) | func (f *Flow) AddContinueWith(c flow.ContinueWith) { method ContinueWith (line 243) | func (f *Flow) ContinueWith() []flow.ContinueWith { return f.ContinueW... method SecureRedirectToOpts (line 245) | func (f *Flow) SecureRedirectToOpts(ctx context.Context, cfg config.Pr... method ToLoggerField (line 255) | func (f *Flow) ToLoggerField() map[string]any { function NewFlow (line 138) | func NewFlow(conf *config.Config, exp time.Duration, csrf string, r *htt... FILE: selfservice/flow/registration/flow_test.go function TestFakeFlow (line 30) | func TestFakeFlow(t *testing.T) { function TestNewFlow (line 41) | func TestNewFlow(t *testing.T) { function TestFlow (line 95) | func TestFlow(t *testing.T) { function TestGetType (line 119) | func TestGetType(t *testing.T) { function TestGetRequestURL (line 131) | func TestGetRequestURL(t *testing.T) { function TestFlowEncodeJSON (line 137) | func TestFlowEncodeJSON(t *testing.T) { function TestFlowDontOverrideReturnTo (line 143) | func TestFlowDontOverrideReturnTo(t *testing.T) { FILE: selfservice/flow/registration/handler.go constant RouteInitBrowserFlow (line 41) | RouteInitBrowserFlow = "/self-service/registration/browser" constant RouteInitAPIFlow (line 42) | RouteInitAPIFlow = "/self-service/registration/api" constant RouteGetFlow (line 44) | RouteGetFlow = "/self-service/registration/flows" constant RouteSubmitFlow (line 46) | RouteSubmitFlow = "/self-service/registration" type handlerDependencies (line 50) | type handlerDependencies interface type HandlerProvider (line 66) | type HandlerProvider interface type Handler (line 69) | type Handler struct method RegisterPublicRoutes (line 76) | func (h *Handler) RegisterPublicRoutes(public *httprouterx.RouterPubli... method onAuthenticated (line 90) | func (h *Handler) onAuthenticated(w http.ResponseWriter, r *http.Reque... method RegisterAdminRoutes (line 99) | func (h *Handler) RegisterAdminRoutes(admin *httprouterx.RouterAdmin) { method NewRegistrationFlow (line 121) | func (h *Handler) NewRegistrationFlow(w http.ResponseWriter, r *http.R... method FromOldFlow (line 186) | func (h *Handler) FromOldFlow(w http.ResponseWriter, r *http.Request, ... method createNativeRegistrationFlow (line 230) | func (h *Handler) createNativeRegistrationFlow(w http.ResponseWriter, ... method createBrowserRegistrationFlow (line 357) | func (h *Handler) createBrowserRegistrationFlow(w http.ResponseWriter,... method getRegistrationFlow (line 525) | func (h *Handler) getRegistrationFlow(w http.ResponseWriter, r *http.R... method updateRegistrationFlow (line 665) | func (h *Handler) updateRegistrationFlow(w http.ResponseWriter, r *htt... function NewHandler (line 74) | func NewHandler(d handlerDependencies) *Handler { return &Handler{d: d} } type FlowOption (line 107) | type FlowOption function WithFlowReturnTo (line 109) | func WithFlowReturnTo(returnTo string) FlowOption { function WithFlowOAuth2LoginChallenge (line 115) | func WithFlowOAuth2LoginChallenge(loginChallenge string) FlowOption { type createNativeRegistrationFlow (line 246) | type createNativeRegistrationFlow struct type createBrowserRegistrationFlow (line 278) | type createBrowserRegistrationFlow struct type getRegistrationFlow (line 463) | type getRegistrationFlow struct type updateRegistrationFlow (line 581) | type updateRegistrationFlow struct type updateRegistrationFlowBody (line 611) | type updateRegistrationFlowBody struct FILE: selfservice/flow/registration/handler_test.go function init (line 43) | func init() { function TestHandlerRedirectOnAuthenticated (line 47) | func TestHandlerRedirectOnAuthenticated(t *testing.T) { function TestInitFlow (line 111) | func TestInitFlow(t *testing.T) { function TestDisabledFlow (line 321) | func TestDisabledFlow(t *testing.T) { function TestGetFlow (line 379) | func TestGetFlow(t *testing.T) { function TestOIDCStrategyOrder (line 491) | func TestOIDCStrategyOrder(t *testing.T) { FILE: selfservice/flow/registration/hook.go type PreHookExecutor (line 34) | type PreHookExecutor interface type PreHookExecutorFunc (line 37) | type PreHookExecutorFunc method ExecuteRegistrationPreHook (line 64) | func (f PreHookExecutorFunc) ExecuteRegistrationPreHook(w http.Respons... type PostHookPostPersistExecutor (line 39) | type PostHookPostPersistExecutor interface type PostHookPostPersistExecutorFunc (line 42) | type PostHookPostPersistExecutorFunc method ExecutePostRegistrationPostPersistHook (line 68) | func (f PostHookPostPersistExecutorFunc) ExecutePostRegistrationPostPe... type PostHookPrePersistExecutor (line 44) | type PostHookPrePersistExecutor interface type PostHookPrePersistExecutorFunc (line 47) | type PostHookPrePersistExecutorFunc method ExecutePostRegistrationPrePersistHook (line 72) | func (f PostHookPrePersistExecutorFunc) ExecutePostRegistrationPrePers... type HooksProvider (line 49) | type HooksProvider interface function ExecutorNames (line 56) | func ExecutorNames[T any](e []T) []string { type executorDependencies (line 77) | type executorDependencies interface type HookExecutor (line 96) | type HookExecutor struct method PostRegistrationHook (line 108) | func (e *HookExecutor) PostRegistrationHook(w http.ResponseWriter, r *... method getDuplicateIdentifier (line 345) | func (e *HookExecutor) getDuplicateIdentifier(ctx context.Context, i *... method PreRegistrationHook (line 353) | func (e *HookExecutor) PreRegistrationHook(w http.ResponseWriter, r *h... type HookExecutorProvider (line 99) | type HookExecutorProvider interface function NewHookExecutor (line 104) | func NewHookExecutor(d executorDependencies) *HookExecutor { FILE: selfservice/flow/registration/hook_test.go function TestRegistrationExecutor (line 34) | func TestRegistrationExecutor(t *testing.T) { FILE: selfservice/flow/registration/oragnizations.go function PrepareOrganizations (line 17) | func PrepareOrganizations(r *http.Request, f *Flow) []StrategyFilter { FILE: selfservice/flow/registration/organizations_test.go function TestPrepareOrganizations (line 16) | func TestPrepareOrganizations(t *testing.T) { FILE: selfservice/flow/registration/persistence.go type FlowPersister (line 13) | type FlowPersister interface type FlowPersistenceProvider (line 20) | type FlowPersistenceProvider interface FILE: selfservice/flow/registration/session.go type APIFlowResponse (line 15) | type APIFlowResponse struct FILE: selfservice/flow/registration/sort.go function SortNodes (line 12) | func SortNodes(ctx context.Context, n node.Nodes, schemaRef string) error { FILE: selfservice/flow/registration/sort_test.go function TestSortNodes (line 21) | func TestSortNodes(t *testing.T) { FILE: selfservice/flow/registration/strategy.go type Strategy (line 17) | type Strategy interface type Strategies (line 23) | type Strategies method Strategy (line 25) | func (s Strategies) Strategy(id identity.CredentialsType) (Strategy, e... method MustStrategy (line 37) | func (s Strategies) MustStrategy(id identity.CredentialsType) Strategy { type StrategyFilter (line 45) | type StrategyFilter type StrategyProvider (line 47) | type StrategyProvider interface FILE: selfservice/flow/registration/strategy_form_hydrator.go type UnifiedFormHydrator (line 14) | type UnifiedFormHydrator interface type FormHydratorOptions (line 18) | type FormHydratorOptions struct type FormHydratorModifier (line 22) | type FormHydratorModifier function WithTraits (line 24) | func WithTraits(traits json.RawMessage) FormHydratorModifier { type FormHydrator (line 30) | type FormHydrator interface FILE: selfservice/flow/registration/test/persistence.go function TestFlowPersister (line 29) | func TestFlowPersister(ctx context.Context, p persistence.Persister) fun... FILE: selfservice/flow/registration/testsetup_test.go function TestMain (line 15) | func TestMain(m *testing.M) { FILE: selfservice/flow/request.go function EnsureCSRF (line 36) | func EnsureCSRF( function MethodEnabledAndAllowedFromRequest (line 81) | func MethodEnabledAndAllowedFromRequest(r *http.Request, flow FlowName, ... function MethodEnabledAndAllowed (line 105) | func MethodEnabledAndAllowed(ctx context.Context, _ FlowName, expected, ... FILE: selfservice/flow/request_test.go function TestVerifyRequest (line 27) | func TestVerifyRequest(t *testing.T) { function TestMethodEnabledAndAllowed (line 64) | func TestMethodEnabledAndAllowed(t *testing.T) { FILE: selfservice/flow/settings/error.go type errorHandlerDependencies (line 39) | type errorHandlerDependencies interface type ErrorHandlerProvider (line 51) | type ErrorHandlerProvider interface type ErrorHandler (line 53) | type ErrorHandler struct method reauthenticate (line 96) | func (s *ErrorHandler) reauthenticate( method PrepareReplacementForExpiredFlow (line 119) | func (s *ErrorHandler) PrepareReplacementForExpiredFlow(ctx context.Co... method WriteFlowError (line 139) | func (s *ErrorHandler) WriteFlowError( method forward (line 270) | func (s *ErrorHandler) forward(ctx context.Context, w http.ResponseWri... type needsPrivilegedSessionError (line 64) | type needsPrivilegedSessionError struct type FlowNeedsReAuth (line 74) | type FlowNeedsReAuth struct method EnhanceJSONError (line 81) | func (e *FlowNeedsReAuth) EnhanceJSONError() interface{} { function NewFlowNeedsReAuth (line 85) | func NewFlowNeedsReAuth() *FlowNeedsReAuth { function NewErrorHandler (line 92) | func NewErrorHandler(d errorHandlerDependencies) *ErrorHandler { FILE: selfservice/flow/settings/error_test.go function TestHandleError (line 41) | func TestHandleError(t *testing.T) { FILE: selfservice/flow/settings/flow.go type Flow (line 38) | type Flow struct method GetInternalContext (line 169) | func (f *Flow) GetInternalContext() sqlxx.JSONRawMessage { retu... method SetInternalContext (line 170) | func (f *Flow) SetInternalContext(message sqlxx.JSONRawMessage) { f.In... method GetType (line 171) | func (f *Flow) GetType() flow.Type { retu... method GetRequestURL (line 172) | func (f *Flow) GetRequestURL() string { retu... method TableName (line 173) | func (Flow) TableName() string { retu... method GetID (line 174) | func (f Flow) GetID() uuid.UUID { retu... method AppendTo (line 175) | func (f *Flow) AppendTo(src *url.URL) *url.URL { retu... method GetUI (line 176) | func (f *Flow) GetUI() *container.Container { retu... method ContinueWith (line 177) | func (f *Flow) ContinueWith() []flow.ContinueWith { retu... method GetState (line 178) | func (f *Flow) GetState() State { retu... method GetFlowName (line 179) | func (Flow) GetFlowName() flow.FlowName { retu... method SetState (line 180) | func (f *Flow) SetState(state State) { f.St... method GetTransientPayload (line 181) | func (f *Flow) GetTransientPayload() json.RawMessage { retu... method Valid (line 183) | func (f *Flow) Valid(s *session.Session) error { method EnsureInternalContext (line 196) | func (f *Flow) EnsureInternalContext() { method MarshalJSON (line 202) | func (f Flow) MarshalJSON() ([]byte, error) { method SetReturnTo (line 208) | func (f *Flow) SetReturnTo() { method AfterFind (line 218) | func (f *Flow) AfterFind(*pop.Connection) error { method AfterSave (line 223) | func (f *Flow) AfterSave(*pop.Connection) error { method AddContinueWith (line 228) | func (f *Flow) AddContinueWith(c flow.ContinueWith) { method ToLoggerField (line 232) | func (f *Flow) ToLoggerField() map[string]any { function MustNewFlow (line 128) | func MustNewFlow(conf *config.Config, exp time.Duration, r *http.Request... function NewFlow (line 136) | func NewFlow(conf *config.Config, exp time.Duration, r *http.Request, i ... FILE: selfservice/flow/settings/flow_test.go function TestFakeFlow (line 38) | func TestFakeFlow(t *testing.T) { function TestNewFlow (line 49) | func TestNewFlow(t *testing.T) { function TestFlow (line 90) | func TestFlow(t *testing.T) { function TestGetType (line 145) | func TestGetType(t *testing.T) { function TestGetRequestURL (line 157) | func TestGetRequestURL(t *testing.T) { function TestEnsureInternalContext (line 163) | func TestEnsureInternalContext(t *testing.T) { function TestFlowEncodeJSON (line 169) | func TestFlowEncodeJSON(t *testing.T) { function TestFlowDontOverrideReturnTo (line 175) | func TestFlowDontOverrideReturnTo(t *testing.T) { FILE: selfservice/flow/settings/handler.go constant RouteInitBrowserFlow (line 38) | RouteInitBrowserFlow = "/self-service/settings/browser" constant RouteInitAPIFlow (line 39) | RouteInitAPIFlow = "/self-service/settings/api" constant RouteGetFlow (line 40) | RouteGetFlow = "/self-service/settings/flows" constant RouteSubmitFlow (line 42) | RouteSubmitFlow = "/self-service/settings" constant ContinuityPrefix (line 44) | ContinuityPrefix = "ory_kratos_settings" function ContinuityKey (line 47) | func ContinuityKey(id string) string { type handlerDependencies (line 52) | type handlerDependencies interface type HandlerProvider (line 81) | type HandlerProvider interface type Handler (line 84) | type Handler struct method RegisterPublicRoutes (line 92) | func (h *Handler) RegisterPublicRoutes(public *httprouterx.RouterPubli... method RegisterAdminRoutes (line 117) | func (h *Handler) RegisterAdminRoutes(admin *httprouterx.RouterAdmin) { method NewFlow (line 127) | func (h *Handler) NewFlow(ctx context.Context, w http.ResponseWriter, ... method FromOldFlow (line 166) | func (h *Handler) FromOldFlow(ctx context.Context, w http.ResponseWrit... method createNativeSettingsFlow (line 225) | func (h *Handler) createNativeSettingsFlow(w http.ResponseWriter, r *h... method createBrowserSettingsFlow (line 312) | func (h *Handler) createBrowserSettingsFlow(w http.ResponseWriter, r *... method getSettingsFlow (line 414) | func (h *Handler) getSettingsFlow(w http.ResponseWriter, r *http.Reque... method updateSettingsFlow (line 579) | func (h *Handler) updateSettingsFlow(w http.ResponseWriter, r *http.Re... function NewHandler (line 90) | func NewHandler(d handlerDependencies) *Handler { return &Handler{d: d, ... type createNativeSettingsFlow (line 182) | type createNativeSettingsFlow struct type createBrowserSettingsFlow (line 253) | type createBrowserSettingsFlow struct type getSettingsFlow (line 347) | type getSettingsFlow struct type updateSettingsFlow (line 470) | type updateSettingsFlow struct type updateSettingsFlowBody (line 505) | type updateSettingsFlowBody struct FILE: selfservice/flow/settings/handler_test.go function init (line 48) | func init() { function TestHandler (line 52) | func TestHandler(t *testing.T) { FILE: selfservice/flow/settings/hook.go type PreHookExecutor (line 43) | type PreHookExecutor interface type PreHookExecutorFunc (line 46) | type PreHookExecutorFunc method ExecuteSettingsPreHook (line 87) | func (f PreHookExecutorFunc) ExecuteSettingsPreHook(w http.ResponseWri... type PostHookPrePersistExecutor (line 48) | type PostHookPrePersistExecutor interface type PostHookPrePersistExecutorFunc (line 51) | type PostHookPrePersistExecutorFunc method ExecuteSettingsPrePersistHook (line 91) | func (f PostHookPrePersistExecutorFunc) ExecuteSettingsPrePersistHook(... type PostHookPostPersistExecutor (line 53) | type PostHookPostPersistExecutor interface type PostHookPostPersistExecutorFunc (line 56) | type PostHookPostPersistExecutorFunc method ExecuteSettingsPostPersistHook (line 95) | func (f PostHookPostPersistExecutorFunc) ExecuteSettingsPostPersistHoo... type HooksProvider (line 58) | type HooksProvider interface type executorDependencies (line 64) | type executorDependencies interface type HookExecutor (line 79) | type HookExecutor struct method handleSettingsError (line 131) | func (e *HookExecutor) handleSettingsError(_ context.Context, _ http.R... method PostSettingsHook (line 162) | func (e *HookExecutor) PostSettingsHook(ctx context.Context, w http.Re... method PreSettingsHook (line 338) | func (e *HookExecutor) PreSettingsHook(ctx context.Context, w http.Res... type HookExecutorProvider (line 82) | type HookExecutorProvider interface function PostHookPostPersistExecutorNames (line 99) | func PostHookPostPersistExecutorNames(e []PostHookPostPersistExecutor) [... function PostHookPrePersistExecutorNames (line 107) | func PostHookPrePersistExecutorNames(e []PostHookPrePersistExecutor) []s... function NewHookExecutor (line 115) | func NewHookExecutor(d executorDependencies) *HookExecutor { type PostSettingsHookOption (line 119) | type PostSettingsHookOption type postSettingsHookOptions (line 121) | type postSettingsHookOptions struct function WithCallback (line 125) | func WithCallback(cb func(ctxUpdate *UpdateContext) error) func(o *postS... FILE: selfservice/flow/settings/hook_test.go function TestSettingsExecutor (line 30) | func TestSettingsExecutor(t *testing.T) { FILE: selfservice/flow/settings/persistence.go type FlowPersister (line 14) | type FlowPersister interface type FlowPersistenceProvider (line 20) | type FlowPersistenceProvider interface FILE: selfservice/flow/settings/sort.go function sortNodes (line 12) | func sortNodes(ctx context.Context, n node.Nodes, schemaRef string) error { FILE: selfservice/flow/settings/strategy.go constant StrategyProfile (line 21) | StrategyProfile = "profile" type Strategy (line 26) | type Strategy interface type Strategies (line 33) | type Strategies method Strategy (line 35) | func (s Strategies) Strategy(id string) (Strategy, error) { method MustStrategy (line 47) | func (s Strategies) MustStrategy(id string) Strategy { type StrategyProvider (line 55) | type StrategyProvider interface FILE: selfservice/flow/settings/strategy_helper.go type UpdatePayload (line 31) | type UpdatePayload interface type UpdateContext (line 36) | type UpdateContext struct method UpdateIdentity (line 42) | func (c *UpdateContext) UpdateIdentity(i *identity.Identity) { method GetIdentityToUpdate (line 46) | func (c *UpdateContext) GetIdentityToUpdate() (*identity.Identity, err... method GetSessionIdentity (line 53) | func (c UpdateContext) GetSessionIdentity() *identity.Identity { function PrepareUpdate (line 60) | func PrepareUpdate(d interface { function ContinuityOptions (line 88) | func ContinuityOptions(p interface{}, i *identity.Identity) []continuity... function GetFlowID (line 96) | func GetFlowID(r *http.Request) (uuid.UUID, error) { function OnUnauthenticated (line 104) | func OnUnauthenticated(reg interface { FILE: selfservice/flow/settings/strategy_helper_test.go function TestGetIdentityToUpdate (line 15) | func TestGetIdentityToUpdate(t *testing.T) { FILE: selfservice/flow/settings/test/persistence.go function clearids (line 33) | func clearids(r *settings.Flow) { function TestFlowPersister (line 39) | func TestFlowPersister(ctx context.Context, p persistence.Persister) fun... FILE: selfservice/flow/settings/testsetup_test.go function TestMain (line 15) | func TestMain(m *testing.M) { FILE: selfservice/flow/state.go type State (line 26) | type State method MarshalJSON (line 92) | func (ns State) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 97) | func (ns *State) UnmarshalJSON(data []byte) error { method Scan (line 108) | func (ns *State) Scan(value interface{}) error { method Value (line 118) | func (ns State) Value() (driver.Value, error) { method String (line 126) | func (ns State) String() string { constant StateChooseMethod (line 32) | StateChooseMethod State = "choose_method" constant StateEmailSent (line 35) | StateEmailSent State = "sent_email" constant StatePassedChallenge (line 36) | StatePassedChallenge State = "passed_challenge" constant StateShowForm (line 37) | StateShowForm State = "show_form" constant StateSuccess (line 38) | StateSuccess State = "success" constant StateRecoveryAwaitingAddress (line 44) | StateRecoveryAwaitingAddress State = "recovery_awaiting_address" constant StateRecoveryAwaitingAddressChoice (line 45) | StateRecoveryAwaitingAddressChoice State = "recovery_awaiting_address_c... constant StateRecoveryAwaitingAddressConfirm (line 46) | StateRecoveryAwaitingAddressConfirm State = "recovery_confirming_address" constant StateRecoveryAwaitingCode (line 47) | StateRecoveryAwaitingCode State = "recovery_awaiting_code" function indexOf (line 62) | func indexOf(current State) int { function HasReachedState (line 71) | func HasReachedState(expected, actual State) bool { function IsStateRecoveryV2 (line 75) | func IsStateRecoveryV2(state State) bool { function NextState (line 79) | func NextState(current State) State { FILE: selfservice/flow/state_test.go function TestState (line 12) | func TestState(t *testing.T) { FILE: selfservice/flow/type.go type Type (line 11) | type Type method IsBrowser (line 18) | func (t Type) IsBrowser() bool { method IsAPI (line 22) | func (t Type) IsAPI() bool { method Valid (line 26) | func (t Type) Valid() bool { constant TypeAPI (line 14) | TypeAPI Type = "api" constant TypeBrowser (line 15) | TypeBrowser Type = "browser" FILE: selfservice/flow/verification/error.go type errorHandlerDependencies (line 41) | type errorHandlerDependencies interface type ErrorHandlerProvider (line 53) | type ErrorHandlerProvider interface type ErrorHandler (line 57) | type ErrorHandler struct method WriteFlowError (line 66) | func (s *ErrorHandler) WriteFlowError( method forward (line 158) | func (s *ErrorHandler) forward(w http.ResponseWriter, r *http.Request,... function NewErrorHandler (line 62) | func NewErrorHandler(d errorHandlerDependencies) *ErrorHandler { FILE: selfservice/flow/verification/error_test.go function TestHandleError (line 42) | func TestHandleError(t *testing.T) { FILE: selfservice/flow/verification/fake_strategy.go type FakeStrategy (line 14) | type FakeStrategy struct method VerificationStrategyID (line 18) | func (f FakeStrategy) VerificationStrategyID() string { method IsPrimary (line 22) | func (f FakeStrategy) IsPrimary() bool { method VerificationNodeGroup (line 26) | func (f FakeStrategy) VerificationNodeGroup() node.UiNodeGroup { method PopulateVerificationMethod (line 30) | func (f FakeStrategy) PopulateVerificationMethod(*http.Request, *Flow)... method Verify (line 34) | func (f FakeStrategy) Verify(_ http.ResponseWriter, _ *http.Request, _... method SendVerificationCode (line 38) | func (f FakeStrategy) SendVerificationCode(context.Context, *Flow, *id... method NodeGroup (line 42) | func (f FakeStrategy) NodeGroup() node.UiNodeGroup { FILE: selfservice/flow/verification/flow.go type Flow (line 37) | type Flow struct method GetType (line 198) | func (f *Flow) GetType() flow.Type { return f.T... method GetRequestURL (line 199) | func (f *Flow) GetRequestURL() string { return f.R... method TableName (line 200) | func (Flow) TableName() string { return "se... method GetID (line 201) | func (f Flow) GetID() uuid.UUID { return f.ID } method GetState (line 202) | func (f *Flow) GetState() State { return f.S... method GetFlowName (line 203) | func (Flow) GetFlowName() flow.FlowName { return flo... method SetState (line 204) | func (f *Flow) SetState(state State) { f.State = ... method GetTransientPayload (line 205) | func (f *Flow) GetTransientPayload() json.RawMessage { return f.T... method GetOAuth2LoginChallenge (line 206) | func (f *Flow) GetOAuth2LoginChallenge() sqlxx.NullString { return f.O... method GetUI (line 207) | func (f *Flow) GetUI() *container.Container { return f.UI } method Valid (line 209) | func (f *Flow) Valid() error { method AppendTo (line 216) | func (f *Flow) AppendTo(src *url.URL) *url.URL { method SetCSRFToken (line 222) | func (f *Flow) SetCSRFToken(token string) { method MarshalJSON (line 227) | func (f Flow) MarshalJSON() ([]byte, error) { method SetReturnTo (line 233) | func (f *Flow) SetReturnTo() { method AfterFind (line 239) | func (f *Flow) AfterFind(*pop.Connection) error { method AfterSave (line 244) | func (f *Flow) AfterSave(*pop.Connection) error { method ContinueURL (line 255) | func (f *Flow) ContinueURL(ctx context.Context, config *config.Config)... method ToLoggerField (line 278) | func (f *Flow) ToLoggerField() map[string]interface{} { type OAuth2LoginChallengeParams (line 102) | type OAuth2LoginChallengeParams struct function NewFlow (line 116) | func NewFlow(conf *config.Config, exp time.Duration, csrf string, r *htt... function FromOldFlow (line 158) | func FromOldFlow(conf *config.Config, exp time.Duration, csrf string, r ... function NewPostHookFlow (line 173) | func NewPostHookFlow(conf *config.Config, exp time.Duration, csrf string... FILE: selfservice/flow/verification/flow_test.go function TestFlow (line 32) | func TestFlow(t *testing.T) { function TestGetType (line 72) | func TestGetType(t *testing.T) { function TestGetRequestURL (line 84) | func TestGetRequestURL(t *testing.T) { function TestNewPostHookFlow (line 90) | func TestNewPostHookFlow(t *testing.T) { function TestFlowEncodeJSON (line 125) | func TestFlowEncodeJSON(t *testing.T) { function TestFromOldFlow (line 131) | func TestFromOldFlow(t *testing.T) { function TestContinueURL (line 149) | func TestContinueURL(t *testing.T) { FILE: selfservice/flow/verification/handler.go constant RouteInitBrowserFlow (line 33) | RouteInitBrowserFlow = "/self-service/verification/browser" constant RouteInitAPIFlow (line 34) | RouteInitAPIFlow = "/self-service/verification/api" constant RouteGetFlow (line 35) | RouteGetFlow = "/self-service/verification/flows" constant RouteSubmitFlow (line 37) | RouteSubmitFlow = "/self-service/verification" type HandlerProvider (line 41) | type HandlerProvider interface type handlerDependencies (line 44) | type handlerDependencies interface type Handler (line 63) | type Handler struct method RegisterPublicRoutes (line 70) | func (h *Handler) RegisterPublicRoutes(public *httprouterx.RouterPubli... method RegisterAdminRoutes (line 82) | func (h *Handler) RegisterAdminRoutes(admin *httprouterx.RouterAdmin) { method NewVerificationFlow (line 99) | func (h *Handler) NewVerificationFlow(w http.ResponseWriter, r *http.R... method createNativeVerificationFlow (line 163) | func (h *Handler) createNativeVerificationFlow(w http.ResponseWriter, ... method createBrowserVerificationFlow (line 213) | func (h *Handler) createBrowserVerificationFlow(w http.ResponseWriter,... method getVerificationFlow (line 291) | func (h *Handler) getVerificationFlow(w http.ResponseWriter, r *http.R... method updateVerificationFlow (line 418) | func (h *Handler) updateVerificationFlow(w http.ResponseWriter, r *htt... function NewHandler (line 68) | func NewHandler(d handlerDependencies) *Handler { return &Handler{d: d} } type FlowOption (line 91) | type FlowOption function WithFlowReturnTo (line 93) | func WithFlowReturnTo(returnTo string) FlowOption { type createNativeVerificationFlow (line 130) | type createNativeVerificationFlow struct type createBrowserVerificationFlow (line 184) | type createBrowserVerificationFlow struct type getVerificationFlow (line 235) | type getVerificationFlow struct type updateVerificationFlow (line 337) | type updateVerificationFlow struct type updateVerificationFlowBody (line 377) | type updateVerificationFlowBody struct FILE: selfservice/flow/verification/handler_test.go function TestGetFlow (line 36) | func TestGetFlow(t *testing.T) { function TestPostFlow (line 191) | func TestPostFlow(t *testing.T) { FILE: selfservice/flow/verification/hook.go type PreHookExecutor (line 27) | type PreHookExecutor interface type PreHookExecutorFunc (line 30) | type PreHookExecutorFunc method ExecuteVerificationPreHook (line 51) | func (f PreHookExecutorFunc) ExecuteVerificationPreHook(w http.Respons... type PostHookExecutor (line 32) | type PostHookExecutor interface type PostHookExecutorFunc (line 35) | type PostHookExecutorFunc method ExecutePostVerificationHook (line 55) | func (f PostHookExecutorFunc) ExecutePostVerificationHook(w http.Respo... type HooksProvider (line 37) | type HooksProvider interface function PostHookVerificationExecutorNames (line 43) | func PostHookVerificationExecutorNames(e []PostHookExecutor) []string { type executorDependencies (line 60) | type executorDependencies interface type HookExecutor (line 71) | type HookExecutor struct method PreVerificationHook (line 86) | func (e *HookExecutor) PreVerificationHook(w http.ResponseWriter, r *h... method PostVerificationHook (line 100) | func (e *HookExecutor) PostVerificationHook(w http.ResponseWriter, r *... type HookExecutorProvider (line 75) | type HookExecutorProvider interface function NewHookExecutor (line 80) | func NewHookExecutor(d executorDependencies) *HookExecutor { FILE: selfservice/flow/verification/hook_test.go function TestVerificationExecutor (line 30) | func TestVerificationExecutor(t *testing.T) { FILE: selfservice/flow/verification/persistence.go type FlowPersistenceProvider (line 14) | type FlowPersistenceProvider interface type FlowPersister (line 17) | type FlowPersister interface FILE: selfservice/flow/verification/strategy.go type VerificationStrategy (line 18) | type VerificationStrategy constant VerificationStrategyLink (line 21) | VerificationStrategyLink VerificationStrategy = "link" constant VerificationStrategyCode (line 22) | VerificationStrategyCode VerificationStrategy = "code" type Strategy (line 26) | type Strategy interface type PrimaryStrategy (line 32) | type PrimaryStrategy interface type Strategies (line 36) | type Strategies method ActiveStrategies (line 44) | func (s Strategies) ActiveStrategies(id string) (active Strategies, pr... method MustStrategy (line 64) | func (s Strategies) MustStrategy(id string) Strategy { type StrategyProvider (line 37) | type StrategyProvider interface FILE: selfservice/flow/verification/test/persistence.go function TestFlowPersister (line 25) | func TestFlowPersister(ctx context.Context, p interface { FILE: selfservice/flowhelpers/login.go function GuessForcedLoginIdentifier (line 14) | func GuessForcedLoginIdentifier(r *http.Request, d interface { FILE: selfservice/flowhelpers/login_test.go function TestGuessForcedLoginIdentifier (line 22) | func TestGuessForcedLoginIdentifier(t *testing.T) { FILE: selfservice/hook/error.go type Error (line 41) | type Error struct method err (line 45) | func (e Error) err(path string, abort error) error { method ExecuteSettingsPreHook (line 55) | func (e Error) ExecuteSettingsPreHook(w http.ResponseWriter, r *http.R... method ExecuteSettingsPrePersistHook (line 59) | func (e Error) ExecuteSettingsPrePersistHook(w http.ResponseWriter, r ... method ExecuteSettingsPostPersistHook (line 63) | func (e Error) ExecuteSettingsPostPersistHook(w http.ResponseWriter, r... method ExecuteLoginPostHook (line 67) | func (e Error) ExecuteLoginPostHook(w http.ResponseWriter, r *http.Req... method ExecuteLoginPreHook (line 71) | func (e Error) ExecuteLoginPreHook(w http.ResponseWriter, r *http.Requ... method ExecuteRegistrationPreHook (line 75) | func (e Error) ExecuteRegistrationPreHook(w http.ResponseWriter, r *ht... method ExecutePostRegistrationPostPersistHook (line 79) | func (e Error) ExecutePostRegistrationPostPersistHook(w http.ResponseW... method ExecutePostRegistrationPrePersistHook (line 83) | func (e Error) ExecutePostRegistrationPrePersistHook(w http.ResponseWr... method ExecuteRecoveryPreHook (line 87) | func (e Error) ExecuteRecoveryPreHook(w http.ResponseWriter, r *http.R... method ExecutePostRecoveryHook (line 91) | func (e Error) ExecutePostRecoveryHook(w http.ResponseWriter, r *http.... method ExecuteVerificationPreHook (line 95) | func (e Error) ExecuteVerificationPreHook(w http.ResponseWriter, r *ht... method ExecutePostVerificationHook (line 99) | func (e Error) ExecutePostVerificationHook(w http.ResponseWriter, r *h... FILE: selfservice/hook/hooks.go constant KeySessionIssuer (line 7) | KeySessionIssuer = "session" constant KeySessionDestroyer (line 8) | KeySessionDestroyer = "revoke_active_sessions" constant KeyWebHook (line 9) | KeyWebHook = "web_hook" constant KeyRequireVerifiedAddress (line 10) | KeyRequireVerifiedAddress = "require_verified_address" constant KeyVerificationUI (line 11) | KeyVerificationUI = "show_verification_ui" constant KeyVerifier (line 12) | KeyVerifier = "verification" FILE: selfservice/hook/hooktest/web_hook_test_server.go type Server (line 25) | type Server struct method HookConfig (line 44) | func (s *Server) HookConfig() config.SelfServiceHook { method AssertTransientPayload (line 56) | func (s *Server) AssertTransientPayload(t *testing.T, expected string) { method SetConfig (line 64) | func (s *Server) SetConfig(t *testing.T, conf *configx.Provider, key s... function NewServer (line 31) | func NewServer() *Server { FILE: selfservice/hook/password_migration_hook.go type PasswordMigration (line 30) | type PasswordMigration struct method Execute (line 48) | func (p *PasswordMigration) Execute(ctx context.Context, req *http.Req... type PasswordMigrationRequest (line 34) | type PasswordMigrationRequest struct type PasswordMigrationResponse (line 39) | type PasswordMigrationResponse struct function NewPasswordMigrationHook (line 44) | func NewPasswordMigrationHook(deps webHookDependencies, conf *request.Co... FILE: selfservice/hook/require_verified_address.go type addressVerifierDependencies (line 36) | type addressVerifierDependencies interface type AddressVerifier (line 46) | type AddressVerifier struct method ExecuteLoginPostHook (line 57) | func (e *AddressVerifier) ExecuteLoginPostHook(w http.ResponseWriter, ... function NewAddressVerifier (line 51) | func NewAddressVerifier(r addressVerifierDependencies) *AddressVerifier { FILE: selfservice/hook/require_verified_address_test.go function TestAddressVerifier (line 36) | func TestAddressVerifier(t *testing.T) { FILE: selfservice/hook/session_destroyer.go type sessionDestroyerDependencies (line 24) | type sessionDestroyerDependencies interface type SessionDestroyer (line 28) | type SessionDestroyer struct method ExecuteLoginPostHook (line 37) | func (e *SessionDestroyer) ExecuteLoginPostHook(_ http.ResponseWriter,... method ExecutePostRecoveryHook (line 46) | func (e *SessionDestroyer) ExecutePostRecoveryHook(_ http.ResponseWrit... method ExecuteSettingsPostPersistHook (line 55) | func (e *SessionDestroyer) ExecuteSettingsPostPersistHook(_ http.Respo... function NewSessionDestroyer (line 33) | func NewSessionDestroyer(r sessionDestroyerDependencies) *SessionDestroy... FILE: selfservice/hook/session_destroyer_test.go function init (line 29) | func init() { function TestSessionDestroyer (line 33) | func TestSessionDestroyer(t *testing.T) { FILE: selfservice/hook/session_issuer.go type sessionIssuerDependencies (line 32) | type sessionIssuerDependencies interface type SessionIssuerProvider (line 40) | type SessionIssuerProvider interface type SessionIssuer (line 43) | type SessionIssuer struct method ExecutePostRegistrationPostPersistHook (line 52) | func (e *SessionIssuer) ExecutePostRegistrationPostPersistHook(w http.... method executePostRegistrationPostPersistHook (line 58) | func (e *SessionIssuer) executePostRegistrationPostPersistHook(w http.... method acceptLoginChallenge (line 118) | func (e *SessionIssuer) acceptLoginChallenge(ctx context.Context, regi... function NewSessionIssuer (line 48) | func NewSessionIssuer(r sessionIssuerDependencies) *SessionIssuer { function willVerificationFollow (line 149) | func willVerificationFollow(f *registration.Flow) bool { FILE: selfservice/hook/session_issuer_test.go function TestSessionIssuer (line 33) | func TestSessionIssuer(t *testing.T) { FILE: selfservice/hook/show_verification_ui.go type showVerificationUIDependencies (line 35) | type showVerificationUIDependencies interface type ShowVerfificationUIProvider (line 42) | type ShowVerfificationUIProvider interface type ShowVerificationUIHook (line 47) | type ShowVerificationUIHook struct method ExecutePostRegistrationPostPersistHook (line 58) | func (e *ShowVerificationUIHook) ExecutePostRegistrationPostPersistHoo... method ExecuteLoginPostHook (line 64) | func (e *ShowVerificationUIHook) ExecuteLoginPostHook(_ http.ResponseW... method ExecuteSettingsPostPersistHook (line 68) | func (e *ShowVerificationUIHook) ExecuteSettingsPostPersistHook(w http... method execute (line 81) | func (e *ShowVerificationUIHook) execute(r *http.Request, f verificati... function NewShowVerificationUIHook (line 52) | func NewShowVerificationUIHook(d showVerificationUIDependencies) *ShowVe... type verificationUIFlow (line 72) | type verificationUIFlow interface type loginOrRegistrationFlow (line 77) | type loginOrRegistrationFlow interface FILE: selfservice/hook/show_verification_ui_test.go function TestExecutePostRegistrationPostPersistHook (line 25) | func TestExecutePostRegistrationPostPersistHook(t *testing.T) { FILE: selfservice/hook/verification.go type verifierDependencies (line 39) | type verifierDependencies interface type Verifier (line 49) | type Verifier struct method ExecutePostRegistrationPostPersistHook (line 58) | func (e *Verifier) ExecutePostRegistrationPostPersistHook(w http.Respo... method ExecuteSettingsPostPersistHook (line 69) | func (e *Verifier) ExecuteSettingsPostPersistHook(w http.ResponseWrite... method ExecuteLoginPostHook (line 75) | func (e *Verifier) ExecuteLoginPostHook(w http.ResponseWriter, r *http... method do (line 102) | func (e *Verifier) do( function NewVerifier (line 54) | func NewVerifier(r verifierDependencies) *Verifier { constant InternalContextRegistrationVerificationFlow (line 100) | InternalContextRegistrationVerificationFlow = "registration_verification... FILE: selfservice/hook/verification_test.go function TestVerifier (line 38) | func TestVerifier(t *testing.T) { function assertContinueWithAddresses (line 253) | func assertContinueWithAddresses(t *testing.T, cs []flow.ContinueWith, a... FILE: selfservice/hook/web_hook.go type webHookDependencies (line 75) | type webHookDependencies interface type templateContext (line 83) | type templateContext struct type WebHook (line 93) | type WebHook struct method ExecuteLoginPreHook (line 129) | func (e *WebHook) ExecuteLoginPreHook(_ http.ResponseWriter, req *http... method ExecuteLoginPostHook (line 141) | func (e *WebHook) ExecuteLoginPostHook(_ http.ResponseWriter, req *htt... method ExecuteVerificationPreHook (line 155) | func (e *WebHook) ExecuteVerificationPreHook(_ http.ResponseWriter, re... method ExecutePostVerificationHook (line 167) | func (e *WebHook) ExecutePostVerificationHook(_ http.ResponseWriter, r... method ExecuteRecoveryPreHook (line 180) | func (e *WebHook) ExecuteRecoveryPreHook(_ http.ResponseWriter, req *h... method ExecutePostRecoveryHook (line 192) | func (e *WebHook) ExecutePostRecoveryHook(_ http.ResponseWriter, req *... method ExecuteRegistrationPreHook (line 205) | func (e *WebHook) ExecuteRegistrationPreHook(_ http.ResponseWriter, re... method ExecutePostRegistrationPrePersistHook (line 217) | func (e *WebHook) ExecutePostRegistrationPrePersistHook(_ http.Respons... method ExecutePostRegistrationPostPersistHook (line 234) | func (e *WebHook) ExecutePostRegistrationPostPersistHook(_ http.Respon... method ExecuteSettingsPreHook (line 255) | func (e *WebHook) ExecuteSettingsPreHook(_ http.ResponseWriter, req *h... method ExecuteSettingsPostPersistHook (line 268) | func (e *WebHook) ExecuteSettingsPostPersistHook(_ http.ResponseWriter... method ExecuteSettingsPrePersistHook (line 285) | func (e *WebHook) ExecuteSettingsPrePersistHook(_ http.ResponseWriter,... method execute (line 302) | func (e *WebHook) execute(ctx context.Context, data *templateContext) ... type detailedMessage (line 98) | type detailedMessage struct type errorMessage (line 105) | type errorMessage struct type rawHookResponse (line 110) | type rawHookResponse struct function cookies (line 115) | func cookies(req *http.Request) map[string]string { function NewWebHook (line 125) | func NewWebHook(r webHookDependencies, c *request.Config) *WebHook { function RemoveDisallowedHeaders (line 444) | func RemoveDisallowedHeaders(httpHeaders http.Header, headerAllowlist []... function parseWebhookResponse (line 455) | func parseWebhookResponse(resp *http.Response, id *identity.Identity) (e... function IsTimeoutError (line 549) | func IsTimeoutError(err error) bool { function InstrumentHTTPClientForEvents (line 554) | func InstrumentHTTPClientForEvents(ctx context.Context, httpClient *retr... FILE: selfservice/hook/web_hook_integration_test.go function TestWebHooks (line 63) | func TestWebHooks(t *testing.T) { function TestDisallowPrivateIPRanges (line 1042) | func TestDisallowPrivateIPRanges(t *testing.T) { function TestAsyncWebhook (line 1113) | func TestAsyncWebhook(t *testing.T) { function TestWebhookEvents (line 1196) | func TestWebhookEvents(t *testing.T) { function TestRemoveDisallowedHeaders (line 1390) | func TestRemoveDisallowedHeaders(t *testing.T) { FILE: selfservice/sessiontokenexchange/persistence.go type Codes (line 13) | type Codes struct type Exchanger (line 18) | type Exchanger struct method TableName (line 34) | func (Exchanger) TableName() string { return "session_token_exchanges" } type Persister (line 37) | type Persister interface type PersistenceProvider (line 47) | type PersistenceProvider interface FILE: selfservice/sessiontokenexchange/test/persistence.go type testParams (line 20) | type testParams struct method setCodes (line 33) | func (t *testParams) setCodes(e *sessiontokenexchange.Exchanger) { function newParams (line 25) | func newParams() testParams { function TestPersister (line 38) | func TestPersister(ctx context.Context, p interface { FILE: selfservice/strategy/code/code_login.go type LoginCode (line 21) | type LoginCode struct method TableName (line 64) | func (LoginCode) TableName(ctx context.Context) string { method Validate (line 68) | func (f *LoginCode) Validate() error { method GetHMACCode (line 81) | func (f *LoginCode) GetHMACCode() string { method GetID (line 85) | func (f *LoginCode) GetID() uuid.UUID { type CreateLoginCodeParams (line 90) | type CreateLoginCodeParams struct FILE: selfservice/strategy/code/code_login_test.go function TestLoginCode (line 22) | func TestLoginCode(t *testing.T) { FILE: selfservice/strategy/code/code_recovery.go type RecoveryCodeType (line 20) | type RecoveryCodeType constant RecoveryCodeTypeAdmin (line 23) | RecoveryCodeTypeAdmin RecoveryCodeType = iota + 1 constant RecoveryCodeTypeSelfService (line 24) | RecoveryCodeTypeSelfService type RecoveryCode (line 33) | type RecoveryCode struct method TableName (line 74) | func (RecoveryCode) TableName(ctx context.Context) string { method Validate (line 78) | func (f *RecoveryCode) Validate() error { method GetHMACCode (line 91) | func (f *RecoveryCode) GetHMACCode() string { method GetID (line 95) | func (f *RecoveryCode) GetID() uuid.UUID { type CreateRecoveryCodeParams (line 99) | type CreateRecoveryCodeParams struct FILE: selfservice/strategy/code/code_recovery_test.go function TestRecoveryCode (line 24) | func TestRecoveryCode(t *testing.T) { function TestRecoveryCodeType (line 92) | func TestRecoveryCodeType(t *testing.T) { FILE: selfservice/strategy/code/code_registration.go type RegistrationCode (line 21) | type RegistrationCode struct method TableName (line 63) | func (RegistrationCode) TableName(context.Context) string { method Validate (line 67) | func (f *RegistrationCode) Validate() error { method GetHMACCode (line 80) | func (f *RegistrationCode) GetHMACCode() string { method GetID (line 84) | func (f *RegistrationCode) GetID() uuid.UUID { type CreateRegistrationCodeParams (line 89) | type CreateRegistrationCodeParams struct FILE: selfservice/strategy/code/code_registration_test.go function TestRegistrationCode (line 22) | func TestRegistrationCode(t *testing.T) { FILE: selfservice/strategy/code/code_sender.go type senderDependencies (line 34) | type senderDependencies interface type SenderProvider (line 51) | type SenderProvider interface type Sender (line 55) | type Sender struct method SendCode (line 70) | func (s *Sender) SendCode(ctx context.Context, f flow.Flow, id *identi... method SendRecoveryCode (line 207) | func (s *Sender) SendRecoveryCode(ctx context.Context, f *recovery.Flo... method SendRecoveryCodeTo (line 272) | func (s *Sender) SendRecoveryCodeTo(ctx context.Context, i *identity.I... method SendVerificationCode (line 332) | func (s *Sender) SendVerificationCode(ctx context.Context, f *verifica... method constructVerificationLink (line 387) | func (s *Sender) constructVerificationLink(ctx context.Context, fID uu... method SendVerificationCodeTo (line 396) | func (s *Sender) SendVerificationCodeTo(ctx context.Context, f *verifi... method send (line 449) | func (s *Sender) send(ctx context.Context, via string, t courier.Templ... type Address (line 58) | type Address struct function NewSender (line 66) | func NewSender(deps senderDependencies) *Sender { function hackyInferChannel (line 485) | func hackyInferChannel(addr string) string { FILE: selfservice/strategy/code/code_sender_test.go function TestSender (line 36) | func TestSender(t *testing.T) { FILE: selfservice/strategy/code/code_verification.go type VerificationCode (line 18) | type VerificationCode struct method TableName (line 55) | func (VerificationCode) TableName(context.Context) string { method Validate (line 64) | func (f *VerificationCode) Validate() error { method GetHMACCode (line 77) | func (f *VerificationCode) GetHMACCode() string { method GetID (line 81) | func (f *VerificationCode) GetID() uuid.UUID { type CreateVerificationCodeParams (line 85) | type CreateVerificationCodeParams struct FILE: selfservice/strategy/code/code_verification_test.go function TestVerificationCode (line 22) | func TestVerificationCode(t *testing.T) { FILE: selfservice/strategy/code/node.go function nodeSubmitRegistration (line 12) | func nodeSubmitRegistration() *node.Node { function nodeRegistrationResendNode (line 17) | func nodeRegistrationResendNode() *node.Node { function nodeRegistrationSelectCredentialsNode (line 22) | func nodeRegistrationSelectCredentialsNode() *node.Node { function nodeContinueButton (line 31) | func nodeContinueButton() *node.Node { function nodeCodeInputFieldHidden (line 36) | func nodeCodeInputFieldHidden() *node.Node { function nodeCodeInputField (line 40) | func nodeCodeInputField() *node.Node { FILE: selfservice/strategy/code/persistence.go type RecoveryCodePersister (line 13) | type RecoveryCodePersister interface type RecoveryCodePersistenceProvider (line 19) | type RecoveryCodePersistenceProvider interface type VerificationCodePersister (line 23) | type VerificationCodePersister interface type VerificationCodePersistenceProvider (line 29) | type VerificationCodePersistenceProvider interface type RegistrationCodePersistenceProvider (line 33) | type RegistrationCodePersistenceProvider interface type RegistrationCodePersister (line 37) | type RegistrationCodePersister interface type LoginCodePersistenceProvider (line 44) | type LoginCodePersistenceProvider interface type LoginCodePersister (line 48) | type LoginCodePersister interface FILE: selfservice/strategy/code/strategy.go type FlowMethod (line 58) | type FlowMethod struct type dependencies (line 62) | type dependencies interface type Strategy (line 118) | type Strategy struct method CountActiveFirstFactorCredentials (line 125) | func (s *Strategy) CountActiveFirstFactorCredentials(ctx context.Conte... method CountActiveMultiFactorCredentials (line 135) | func (s *Strategy) CountActiveMultiFactorCredentials(ctx context.Conte... method ID (line 184) | func (s *Strategy) ID() identity.CredentialsType { method NodeGroup (line 188) | func (s *Strategy) NodeGroup() node.UiNodeGroup { method PopulateMethod (line 192) | func (s *Strategy) PopulateMethod(r *http.Request, f flow.Flow) error { method populateChooseMethodFlow (line 243) | func (s *Strategy) populateChooseMethodFlow(r *http.Request, f flow.Fl... method populateEmailSentFlow (line 299) | func (s *Strategy) populateEmailSentFlow(ctx context.Context, f flow.F... method NewCodeUINodes (line 411) | func (s *Strategy) NewCodeUINodes(r *http.Request, f flow.Flow, data a... method FindCodeAddresses (line 435) | func (s *Strategy) FindCodeAddresses(ctx context.Context, sess *sessio... type codeIdentifier (line 120) | type codeIdentifier struct function NewStrategy (line 182) | func NewStrategy(deps dependencies) *Strategy { return &Strategy{deps: d... function SetDefaultFlowState (line 482) | func SetDefaultFlowState(f flow.Flow, resend string) { constant CodeLength (line 493) | CodeLength = 6 function GenerateCode (line 495) | func GenerateCode() string { function MaskAddress (line 511) | func MaskAddress(input string) string { FILE: selfservice/strategy/code/strategy_login.go type updateLoginFlowWithCodeMethod (line 44) | type updateLoginFlowWithCodeMethod struct method CompletedAuthenticationMethod (line 79) | func (s *Strategy) CompletedAuthenticationMethod(ctx context.Context) se... method HandleLoginError (line 91) | func (s *Strategy) HandleLoginError(r *http.Request, f *login.Flow, body... method findIdentityByIdentifier (line 119) | func (s *Strategy) findIdentityByIdentifier(ctx context.Context, identif... type decodedMethod (line 148) | type decodedMethod struct method methodEnabledAndAllowedFromRequest (line 153) | func (s *Strategy) methodEnabledAndAllowedFromRequest(r *http.Request, f... method Login (line 176) | func (s *Strategy) Login(w http.ResponseWriter, r *http.Request, f *logi... method FastLogin1FA (line 253) | func (s *Strategy) FastLogin1FA(w http.ResponseWriter, r *http.Request, ... method FastLogin2FA (line 301) | func (s *Strategy) FastLogin2FA(w http.ResponseWriter, r *http.Request, ... method findIdentifierInVerifiableAddress (line 349) | func (s *Strategy) findIdentifierInVerifiableAddress(i *identity.Identit... method findIdentityForIdentifier (line 370) | func (s *Strategy) findIdentityForIdentifier(ctx context.Context, identi... method loginSendCode (line 482) | func (s *Strategy) loginSendCode(ctx context.Context, w http.ResponseWri... function maybeNormalizeEmail (line 539) | func maybeNormalizeEmail(input string) string { method loginVerifyCode (line 546) | func (s *Strategy) loginVerifyCode(ctx context.Context, f *login.Flow, p... method verifyAddress (line 622) | func (s *Strategy) verifyAddress(ctx context.Context, i *identity.Identi... method PopulateLoginMethodFirstFactorRefresh (line 652) | func (s *Strategy) PopulateLoginMethodFirstFactorRefresh(r *http.Request... method PopulateLoginMethodFirstFactor (line 656) | func (s *Strategy) PopulateLoginMethodFirstFactor(r *http.Request, f *lo... method PopulateLoginMethodSecondFactor (line 660) | func (s *Strategy) PopulateLoginMethodSecondFactor(r *http.Request, f *l... method PopulateLoginMethodSecondFactorRefresh (line 664) | func (s *Strategy) PopulateLoginMethodSecondFactorRefresh(r *http.Reques... method PopulateLoginMethodIdentifierFirstCredentials (line 668) | func (s *Strategy) PopulateLoginMethodIdentifierFirstCredentials(r *http... method PopulateLoginMethodIdentifierFirstIdentification (line 686) | func (s *Strategy) PopulateLoginMethodIdentifierFirstIdentification(r *h... FILE: selfservice/strategy/code/strategy_login_test.go function createIdentity (line 50) | func createIdentity(ctx context.Context, t *testing.T, reg driver.Regist... function TestLoginCodeStrategy (line 95) | func TestLoginCodeStrategy(t *testing.T) { function TestFormHydration (line 1236) | func TestFormHydration(t *testing.T) { function TestCodeLoginWithLoginChallenge (line 1503) | func TestCodeLoginWithLoginChallenge(t *testing.T) { FILE: selfservice/strategy/code/strategy_mfa.go function FindAllIdentifiers (line 16) | func FindAllIdentifiers(i *identity.Identity) (result []Address) { function FindCodeAddressCandidates (line 27) | func FindCodeAddressCandidates(i *identity.Identity, fallbackEnabled boo... FILE: selfservice/strategy/code/strategy_mfa_test.go function TestFindAllIdentifiers (line 14) | func TestFindAllIdentifiers(t *testing.T) { function TestFindCodeAddressCandidates (line 57) | func TestFindCodeAddressCandidates(t *testing.T) { FILE: selfservice/strategy/code/strategy_recovery.go method RecoveryStrategyID (line 44) | func (s *Strategy) RecoveryStrategyID() string { method IsPrimary (line 48) | func (s *Strategy) IsPrimary() bool { method PopulateRecoveryMethod (line 53) | func (s *Strategy) PopulateRecoveryMethod(r *http.Request, f *recovery.F... type updateRecoveryFlowWithCodeMethod (line 93) | type updateRecoveryFlowWithCodeMethod struct method isCodeFlow (line 154) | func (s *Strategy) isCodeFlow(f *recovery.Flow) bool { method Recover (line 162) | func (s *Strategy) Recover(w http.ResponseWriter, r *http.Request, f *re... method recoveryIssueSession (line 260) | func (s *Strategy) recoveryIssueSession(w http.ResponseWriter, r *http.R... method recoveryUseCode (line 347) | func (s *Strategy) recoveryUseCode(w http.ResponseWriter, r *http.Reques... type retry (line 383) | type retry struct type RetryOption (line 388) | type RetryOption function RetryWithError (line 390) | func RetryWithError(err error) RetryOption { function RetryWithMessage (line 396) | func RetryWithMessage(msg *text.Message) RetryOption { method retryRecoveryFlow (line 402) | func (s *Strategy) retryRecoveryFlow(w http.ResponseWriter, r *http.Requ... function AddressToHashBase64 (line 462) | func AddressToHashBase64(address string) string { method recoveryV2HandleStateAwaitingAddress (line 467) | func (s *Strategy) recoveryV2HandleStateAwaitingAddress(r *http.Request,... method recoveryV2HandleStateAwaitingAddressChoice (line 547) | func (s *Strategy) recoveryV2HandleStateAwaitingAddressChoice(r *http.Re... method recoveryV2HandleStateConfirmingAddress (line 636) | func (s *Strategy) recoveryV2HandleStateConfirmingAddress(r *http.Reques... method recoveryV2HandleStateAwaitingCode (line 707) | func (s *Strategy) recoveryV2HandleStateAwaitingCode(w http.ResponseWrit... method recoveryV2HandleGoBack (line 722) | func (s *Strategy) recoveryV2HandleGoBack(r *http.Request, f *recovery.F... method recoveryHandleFormSubmission (line 762) | func (s *Strategy) recoveryHandleFormSubmission(w http.ResponseWriter, r... method markRecoveryAddressVerified (line 823) | func (s *Strategy) markRecoveryAddressVerified(w http.ResponseWriter, r ... method HandleRecoveryError (line 838) | func (s *Strategy) HandleRecoveryError(w http.ResponseWriter, r *http.Re... type recoverySubmitPayload (line 859) | type recoverySubmitPayload struct method decodeRecovery (line 874) | func (s *Strategy) decodeRecovery(r *http.Request) (*recoverySubmitPaylo... FILE: selfservice/strategy/code/strategy_recovery_admin.go constant RouteAdminCreateRecoveryCode (line 33) | RouteAdminCreateRecoveryCode = "/recovery/code" method RegisterPublicRoutes (line 36) | func (s *Strategy) RegisterPublicRoutes(public *httprouterx.RouterPublic) { method RegisterAdminRoutes (line 41) | func (s *Strategy) RegisterAdminRoutes(admin *httprouterx.RouterAdmin) { type createRecoveryCodeForIdentity (line 52) | type createRecoveryCodeForIdentity struct type createRecoveryCodeForIdentityBody (line 60) | type createRecoveryCodeForIdentityBody struct type recoveryCodeForIdentity (line 97) | type recoveryCodeForIdentity struct method createRecoveryCodeForIdentity (line 143) | func (s *Strategy) createRecoveryCodeForIdentity(w http.ResponseWriter, ... FILE: selfservice/strategy/code/strategy_recovery_test.go function init (line 51) | func init() { function extractCsrfToken (line 55) | func extractCsrfToken(body []byte) string { type ClientType (line 59) | type ClientType method String (line 67) | func (c ClientType) String() string { constant RecoveryClientTypeBrowser (line 62) | RecoveryClientTypeBrowser ClientType = "browser" constant RecoveryClientTypeSPA (line 63) | RecoveryClientTypeSPA ClientType = "spa" constant RecoveryClientTypeAPI (line 64) | RecoveryClientTypeAPI ClientType = "api" function apiHttpClient (line 71) | func apiHttpClient(*testing.T) *http.Client { function spaHttpClient (line 75) | func spaHttpClient(t *testing.T) *http.Client { function browserHttpClient (line 79) | func browserHttpClient(t *testing.T) *http.Client { function withCSRFToken (line 113) | func withCSRFToken(t *testing.T, clientType ClientType, body string, v u... function createIdentityToRecover (line 125) | func createIdentityToRecover(t *testing.T, reg *driver.RegistryDefault, ... function TestRecovery (line 149) | func TestRecovery(t *testing.T) { function TestRecovery_WithContinueWith (line 1012) | func TestRecovery_WithContinueWith(t *testing.T) { function TestRecovery_V2_WithContinueWith_OneAddress_Email (line 1973) | func TestRecovery_V2_WithContinueWith_OneAddress_Email(t *testing.T) { function createIdentityToRecoverPhone (line 2730) | func createIdentityToRecoverPhone(t *testing.T, reg *driver.RegistryDefa... function TestRecovery_V2_WithContinueWith_OneAddress_Phone (line 2750) | func TestRecovery_V2_WithContinueWith_OneAddress_Phone(t *testing.T) { function createIdentityToRecoverEmailAndPhone (line 3481) | func createIdentityToRecoverEmailAndPhone(t *testing.T, reg *driver.Regi... function TestRecovery_V2_WithContinueWith_SeveralAddresses (line 3501) | func TestRecovery_V2_WithContinueWith_SeveralAddresses(t *testing.T) { function TestDisabledStrategy (line 4532) | func TestDisabledStrategy(t *testing.T) { FILE: selfservice/strategy/code/strategy_registration.go type updateRegistrationFlowWithCodeMethod (line 37) | type updateRegistrationFlowWithCodeMethod struct method GetResend (line 69) | func (p *updateRegistrationFlowWithCodeMethod) GetResend() string { method HandleRegistrationError (line 73) | func (s *Strategy) HandleRegistrationError(ctx context.Context, r *http.... method PopulateRegistrationMethod (line 93) | func (s *Strategy) PopulateRegistrationMethod(r *http.Request, f *regist... method PopulateRegistrationMethodCredentials (line 104) | func (s *Strategy) PopulateRegistrationMethodCredentials(r *http.Request... method PopulateRegistrationMethodProfile (line 121) | func (s *Strategy) PopulateRegistrationMethodProfile(r *http.Request, f ... method validateTraits (line 137) | func (s *Strategy) validateTraits(ctx context.Context, traits json.RawMe... method validateAndGetCredentialsFromTraits (line 151) | func (s *Strategy) validateAndGetCredentialsFromTraits(ctx context.Conte... method Register (line 173) | func (s *Strategy) Register(w http.ResponseWriter, r *http.Request, f *r... method registrationSendEmail (line 212) | func (s *Strategy) registrationSendEmail(ctx context.Context, w http.Res... method registrationVerifyCode (line 279) | func (s *Strategy) registrationVerifyCode(ctx context.Context, f *regist... FILE: selfservice/strategy/code/strategy_registration_test.go type state (line 47) | type state struct function TestRegistrationCodeStrategyDisabled (line 56) | func TestRegistrationCodeStrategyDisabled(t *testing.T) { function TestRegistrationCodeStrategy (line 102) | func TestRegistrationCodeStrategy(t *testing.T) { function TestPopulateRegistrationMethod (line 742) | func TestPopulateRegistrationMethod(t *testing.T) { function TestCodeRegistrationWithLoginChallenge (line 827) | func TestCodeRegistrationWithLoginChallenge(t *testing.T) { FILE: selfservice/strategy/code/strategy_test.go function TestMaskAddress (line 36) | func TestMaskAddress(t *testing.T) { function TestCountActiveCredentials (line 72) | func TestCountActiveCredentials(t *testing.T) { FILE: selfservice/strategy/code/strategy_verification.go method VerificationStrategyID (line 28) | func (s *Strategy) VerificationStrategyID() string { method PopulateVerificationMethod (line 37) | func (s *Strategy) PopulateVerificationMethod(r *http.Request, f *verifi... method decodeVerification (line 41) | func (s *Strategy) decodeVerification(r *http.Request) (*updateVerificat... method handleVerificationError (line 63) | func (s *Strategy) handleVerificationError(r *http.Request, f *verificat... type updateVerificationFlowWithCodeMethod (line 79) | type updateVerificationFlowWithCodeMethod struct method getMethod (line 120) | func (body *updateVerificationFlowWithCodeMethod) getMethod() verifica... method Verify (line 131) | func (s *Strategy) Verify(w http.ResponseWriter, r *http.Request, f *ver... method handleLinkClick (line 163) | func (s *Strategy) handleLinkClick(ctx context.Context, w http.ResponseW... method verificationHandleFormSubmission (line 187) | func (s *Strategy) verificationHandleFormSubmission(ctx context.Context,... method verificationUseCode (line 236) | func (s *Strategy) verificationUseCode(ctx context.Context, w http.Respo... method retryVerificationFlowWithMessage (line 296) | func (s *Strategy) retryVerificationFlowWithMessage(ctx context.Context,... method retryVerificationFlowWithError (line 324) | func (s *Strategy) retryVerificationFlowWithError(ctx context.Context, w... method SendVerificationCode (line 363) | func (s *Strategy) SendVerificationCode(ctx context.Context, f *verifica... FILE: selfservice/strategy/code/strategy_verification_test.go function TestVerification (line 45) | func TestVerification(t *testing.T) { FILE: selfservice/strategy/code/test/persistence.go function TestPersister (line 30) | func TestPersister(ctx context.Context, p interface { FILE: selfservice/strategy/handler.go constant EndpointDisabledMessage (line 14) | EndpointDisabledMessage = "This endpoint was disabled by system administ... type disabledChecker (line 16) | type disabledChecker interface function disabledWriter (line 21) | func disabledWriter(c disabledChecker, enabled bool, wrap http.HandlerFu... function IsDisabled (line 29) | func IsDisabled(c disabledChecker, strategy string, wrap http.HandlerFun... FILE: selfservice/strategy/idfirst/strategy.go type dependencies (line 20) | type dependencies interface type Strategy (line 34) | type Strategy struct method ID (line 38) | func (s *Strategy) ID() identity.CredentialsType { method CompletedAuthenticationMethod (line 42) | func (s *Strategy) CompletedAuthenticationMethod(ctx context.Context) ... method NodeGroup (line 49) | func (s *Strategy) NodeGroup() node.UiNodeGroup { function NewStrategy (line 36) | func NewStrategy(d dependencies) *Strategy { return &Strategy{d: d} } FILE: selfservice/strategy/idfirst/strategy_login.go method handleLoginError (line 34) | func (s *Strategy) handleLoginError(r *http.Request, f *login.Flow, payl... method Login (line 45) | func (s *Strategy) Login(w http.ResponseWriter, r *http.Request, f *logi... method PopulateLoginMethodFirstFactorRefresh (line 165) | func (s *Strategy) PopulateLoginMethodFirstFactorRefresh(r *http.Request... method PopulateLoginMethodFirstFactor (line 169) | func (s *Strategy) PopulateLoginMethodFirstFactor(r *http.Request, sr *l... method PopulateLoginMethodIdentifierFirstIdentification (line 173) | func (s *Strategy) PopulateLoginMethodIdentifierFirstIdentification(r *h... method PopulateLoginMethodIdentifierFirstCredentials (line 194) | func (s *Strategy) PopulateLoginMethodIdentifierFirstCredentials(_ *http... FILE: selfservice/strategy/idfirst/strategy_login_test.go function TestCompleteLogin (line 46) | func TestCompleteLogin(t *testing.T) { function TestFormHydration (line 617) | func TestFormHydration(t *testing.T) { FILE: selfservice/strategy/idfirst/strategy_test.go function TestCompletedAuthenticationMethod (line 26) | func TestCompletedAuthenticationMethod(t *testing.T) { function TestNodeGroup (line 36) | func TestNodeGroup(t *testing.T) { function createIdentity (line 44) | func createIdentity(ctx context.Context, reg *driver.RegistryDefault, t ... function createIdentityWithAllMethods (line 76) | func createIdentityWithAllMethods(ctx context.Context, reg *driver.Regis... FILE: selfservice/strategy/idfirst/types.go type UpdateLoginFlowWithIdentifierFirstMethod (line 11) | type UpdateLoginFlowWithIdentifierFirstMethod struct FILE: selfservice/strategy/link/persistence.go type RecoveryTokenPersister (line 13) | type RecoveryTokenPersister interface type RecoveryTokenPersistenceProvider (line 19) | type RecoveryTokenPersistenceProvider interface type VerificationTokenPersister (line 23) | type VerificationTokenPersister interface type VerificationTokenPersistenceProvider (line 29) | type VerificationTokenPersistenceProvider interface FILE: selfservice/strategy/link/sender.go type senderDependencies (line 26) | type senderDependencies interface type SenderProvider (line 41) | type SenderProvider interface type Sender (line 45) | type Sender struct method SendRecoveryLink (line 61) | func (s *Sender) SendRecoveryLink(ctx context.Context, f *recovery.Flo... method SendVerificationLink (line 119) | func (s *Sender) SendVerificationLink(ctx context.Context, f *verifica... method SendRecoveryTokenTo (line 171) | func (s *Sender) SendRecoveryTokenTo(ctx context.Context, f *recovery.... method SendVerificationTokenTo (line 209) | func (s *Sender) SendVerificationTokenTo(ctx context.Context, f *verif... method send (line 253) | func (s *Sender) send(ctx context.Context, via string, t courier.Email... function NewSender (line 52) | func NewSender(r senderDependencies) *Sender { FILE: selfservice/strategy/link/sender_test.go function TestManager (line 31) | func TestManager(t *testing.T) { FILE: selfservice/strategy/link/strategy.go type FlowMethod (line 33) | type FlowMethod struct type dependencies (line 37) | type dependencies interface type Strategy (line 79) | type Strategy struct method NodeGroup (line 83) | func (s *Strategy) NodeGroup() node.UiNodeGroup { return node.LinkGroup } function NewStrategy (line 82) | func NewStrategy(d dependencies) *Strategy { return &Strategy{d: d} } FILE: selfservice/strategy/link/strategy_recovery.go constant RouteAdminCreateRecoveryLink (line 39) | RouteAdminCreateRecoveryLink = "/recovery/link" method RecoveryStrategyID (line 41) | func (s *Strategy) RecoveryStrategyID() string { method IsPrimary (line 45) | func (s *Strategy) IsPrimary() bool { method RegisterPublicRoutes (line 49) | func (s *Strategy) RegisterPublicRoutes(public *httprouterx.RouterPublic) { method RegisterAdminRoutes (line 54) | func (s *Strategy) RegisterAdminRoutes(admin *httprouterx.RouterAdmin) { method PopulateRecoveryMethod (line 59) | func (s *Strategy) PopulateRecoveryMethod(r *http.Request, f *recovery.F... type _ (line 73) | type _ struct type createRecoveryLinkForIdentityBody (line 83) | type createRecoveryLinkForIdentityBody struct type recoveryLinkForIdentity (line 110) | type recoveryLinkForIdentity struct method createRecoveryLinkForIdentity (line 151) | func (s *Strategy) createRecoveryLinkForIdentity(w http.ResponseWriter, ... type _ (line 226) | type _ struct method Recover (line 253) | func (s *Strategy) Recover(w http.ResponseWriter, r *http.Request, f *re... method recoveryIssueSession (line 307) | func (s *Strategy) recoveryIssueSession(ctx context.Context, w http.Resp... method recoveryUseToken (line 363) | func (s *Strategy) recoveryUseToken(ctx context.Context, w http.Response... method retryRecoveryFlowWithMessage (line 410) | func (s *Strategy) retryRecoveryFlowWithMessage(w http.ResponseWriter, r... method retryRecoveryFlowWithError (line 433) | func (s *Strategy) retryRecoveryFlowWithError(w http.ResponseWriter, r *... method recoveryHandleFormSubmission (line 463) | func (s *Strategy) recoveryHandleFormSubmission(r *http.Request, f *reco... method markRecoveryAddressVerified (line 500) | func (s *Strategy) markRecoveryAddressVerified(r *http.Request, f *recov... method HandleRecoveryError (line 515) | func (s *Strategy) HandleRecoveryError(r *http.Request, req *recovery.Fl... type recoverySubmitPayload (line 532) | type recoverySubmitPayload struct method decodeRecovery (line 541) | func (s *Strategy) decodeRecovery(r *http.Request) (*recoverySubmitPaylo... FILE: selfservice/strategy/link/strategy_recovery_test.go function init (line 46) | func init() { function createIdentityToRecover (line 50) | func createIdentityToRecover(t *testing.T, reg *driver.RegistryDefault, ... function TestAdminStrategy (line 68) | func TestAdminStrategy(t *testing.T) { function TestRecovery (line 251) | func TestRecovery(t *testing.T) { function TestDisabledEndpoint (line 894) | func TestDisabledEndpoint(t *testing.T) { FILE: selfservice/strategy/link/strategy_test.go function initViper (line 19) | func initViper(t *testing.T, c *config.Config) { FILE: selfservice/strategy/link/strategy_verification.go method VerificationStrategyID (line 30) | func (s *Strategy) VerificationStrategyID() string { method PopulateVerificationMethod (line 34) | func (s *Strategy) PopulateVerificationMethod(r *http.Request, f *verifi... type verificationSubmitPayload (line 44) | type verificationSubmitPayload struct method decodeVerification (line 53) | func (s *Strategy) decodeVerification(r *http.Request) (*verificationSub... method handleVerificationError (line 75) | func (s *Strategy) handleVerificationError(r *http.Request, f *verificat... type updateVerificationFlowWithLinkMethod (line 97) | type updateVerificationFlowWithLinkMethod struct method Verify (line 124) | func (s *Strategy) Verify(w http.ResponseWriter, r *http.Request, f *ver... method verificationHandleFormSubmission (line 161) | func (s *Strategy) verificationHandleFormSubmission(ctx context.Context,... method verificationUseToken (line 198) | func (s *Strategy) verificationUseToken(ctx context.Context, w http.Resp... method retryVerificationFlowWithMessage (line 258) | func (s *Strategy) retryVerificationFlowWithMessage(ctx context.Context,... method retryVerificationFlowWithError (line 282) | func (s *Strategy) retryVerificationFlowWithError(ctx context.Context, w... method SendVerificationCode (line 313) | func (s *Strategy) SendVerificationCode(ctx context.Context, f *verifica... FILE: selfservice/strategy/link/strategy_verification_test.go function TestVerification (line 42) | func TestVerification(t *testing.T) { FILE: selfservice/strategy/link/test/persistence.go function TestPersister (line 30) | func TestPersister(ctx context.Context, p interface { FILE: selfservice/strategy/link/token_recovery.go type RecoveryTokenType (line 22) | type RecoveryTokenType constant RecoveryTokenTypeAdmin (line 25) | RecoveryTokenTypeAdmin RecoveryTokenType = iota + 1 constant RecoveryTokenTypeSelfService (line 26) | RecoveryTokenTypeSelfService type RecoveryToken (line 29) | type RecoveryToken struct method TableName (line 66) | func (RecoveryToken) TableName(ctx context.Context) string { method Valid (line 104) | func (f *RecoveryToken) Valid() error { function NewSelfServiceRecoveryToken (line 70) | func NewSelfServiceRecoveryToken(address *identity.RecoveryAddress, f *r... function NewAdminRecoveryToken (line 91) | func NewAdminRecoveryToken(identityID uuid.UUID, fID uuid.UUID, expiresI... FILE: selfservice/strategy/link/token_recovery_test.go function TestRecoveryToken (line 24) | func TestRecoveryToken(t *testing.T) { function TestRecoveryTokenType (line 53) | func TestRecoveryTokenType(t *testing.T) { FILE: selfservice/strategy/link/token_verification.go type VerificationToken (line 20) | type VerificationToken struct method TableName (line 54) | func (VerificationToken) TableName(ctx context.Context) string { method Valid (line 70) | func (f *VerificationToken) Valid() error { function NewSelfServiceVerificationToken (line 58) | func NewSelfServiceVerificationToken(address *identity.VerifiableAddress... FILE: selfservice/strategy/link/token_verification_test.go function TestVerificationToken (line 24) | func TestVerificationToken(t *testing.T) { FILE: selfservice/strategy/lookup/login.go method PopulateLoginMethod (line 29) | func (s *Strategy) PopulateLoginMethod(r *http.Request, requestedAAL ide... method handleLoginError (line 59) | func (s *Strategy) handleLoginError(r *http.Request, f *login.Flow, err ... type updateLoginFlowWithLookupSecretMethod (line 73) | type updateLoginFlowWithLookupSecretMethod struct method Login (line 88) | func (s *Strategy) Login(_ http.ResponseWriter, r *http.Request, f *logi... FILE: selfservice/strategy/lookup/login_test.go function TestCompleteLogin (line 41) | func TestCompleteLogin(t *testing.T) { function TestFormHydration (line 327) | func TestFormHydration(t *testing.T) { FILE: selfservice/strategy/lookup/nodes.go function NewRevealLookupNode (line 11) | func NewRevealLookupNode() *node.Node { function NewRegenerateLookupNode (line 16) | func NewRegenerateLookupNode() *node.Node { function NewDisableLookupNode (line 22) | func NewDisableLookupNode() *node.Node { function NewConfirmLookupNode (line 27) | func NewConfirmLookupNode() *node.Node { FILE: selfservice/strategy/lookup/settings.go method SettingsStrategyID (line 36) | func (s *Strategy) SettingsStrategyID() string { constant internalContextKeyRevealed (line 41) | internalContextKeyRevealed = "revealed" constant InternalContextKeyRegenerated (line 42) | InternalContextKeyRegenerated = "regenerated" constant numCodes (line 45) | numCodes = 12 type updateSettingsFlowWithLookupMethod (line 59) | type updateSettingsFlowWithLookupMethod struct method GetFlowID (line 93) | func (p *updateSettingsFlowWithLookupMethod) GetFlowID() uuid.UUID { method SetFlowID (line 97) | func (p *updateSettingsFlowWithLookupMethod) SetFlowID(rid uuid.UUID) { method Settings (line 101) | func (s *Strategy) Settings(ctx context.Context, w http.ResponseWriter, ... method decodeSettingsFlow (line 137) | func (s *Strategy) decodeSettingsFlow(r *http.Request, dest interface{})... method continueSettingsFlow (line 149) | func (s *Strategy) continueSettingsFlow(ctx context.Context, r *http.Req... method continueSettingsFlowDisable (line 186) | func (s *Strategy) continueSettingsFlowDisable(ctx context.Context, ctxU... method continueSettingsFlowReveal (line 216) | func (s *Strategy) continueSettingsFlowReveal(ctx context.Context, ctxUp... method continueSettingsFlowRegenerate (line 256) | func (s *Strategy) continueSettingsFlowRegenerate(ctx context.Context, c... method continueSettingsFlowConfirm (line 282) | func (s *Strategy) continueSettingsFlowConfirm(ctx context.Context, ctxU... method identityHasLookup (line 330) | func (s *Strategy) identityHasLookup(ctx context.Context, id *identity.I... method PopulateSettingsMethod (line 345) | func (s *Strategy) PopulateSettingsMethod(ctx context.Context, r *http.R... method handleSettingsError (line 365) | func (s *Strategy) handleSettingsError(w http.ResponseWriter, r *http.Re... FILE: selfservice/strategy/lookup/settings_test.go function createIdentityWithoutLookup (line 42) | func createIdentityWithoutLookup(t *testing.T, reg driver.Registry) *ide... function createIdentity (line 49) | func createIdentity(t *testing.T, reg driver.Registry) (*identity.Identi... function TestCompleteSettings (line 93) | func TestCompleteSettings(t *testing.T) { FILE: selfservice/strategy/lookup/strategy.go type dependencies (line 38) | type dependencies interface type Strategy (line 78) | type Strategy struct method CountActiveFirstFactorCredentials (line 82) | func (s *Strategy) CountActiveFirstFactorCredentials(_ context.Context... method CountActiveMultiFactorCredentials (line 86) | func (s *Strategy) CountActiveMultiFactorCredentials(_ context.Context... method ID (line 102) | func (s *Strategy) ID() identity.CredentialsType { method NodeGroup (line 106) | func (s *Strategy) NodeGroup() node.UiNodeGroup { method CompletedAuthenticationMethod (line 110) | func (s *Strategy) CompletedAuthenticationMethod(ctx context.Context) ... method PopulateLoginMethodSecondFactor (line 117) | func (s *Strategy) PopulateLoginMethodSecondFactor(r *http.Request, f ... method PopulateLoginMethodSecondFactorRefresh (line 121) | func (s *Strategy) PopulateLoginMethodSecondFactorRefresh(r *http.Requ... function NewStrategy (line 80) | func NewStrategy(d dependencies) *Strategy { return &Strategy{d: d} } FILE: selfservice/strategy/lookup/strategy_test.go function TestCountActiveFirstFactorCredentials (line 19) | func TestCountActiveFirstFactorCredentials(t *testing.T) { FILE: selfservice/strategy/oidc/const.go constant sessionName (line 7) | sessionName = "ory_kratos_oidc_auth_code_session" FILE: selfservice/strategy/oidc/error.go function logUpstreamError (line 26) | func logUpstreamError(l *logrusx.Logger, resp *http.Response) error { FILE: selfservice/strategy/oidc/fedcm/definitions.go type Provider (line 8) | type Provider struct type CreateFedcmFlowResponse (line 50) | type CreateFedcmFlowResponse struct type UpdateFedcmFlowBody (line 77) | type UpdateFedcmFlowBody struct type updateFedcmFlow (line 104) | type updateFedcmFlow struct FILE: selfservice/strategy/oidc/form.go function merge (line 17) | func merge(containerTraits json.RawMessage, openIDProviderValues json.Ra... FILE: selfservice/strategy/oidc/form_test.go function TestMerge (line 15) | func TestMerge(t *testing.T) { FILE: selfservice/strategy/oidc/nodes.go function NewLinkNode (line 11) | func NewLinkNode(providerID, providerLabel string) *node.Node { function NewUnlinkNode (line 15) | func NewUnlinkNode(providerID, providerLabel string) *node.Node { FILE: selfservice/strategy/oidc/pkce.go type pkceDependencies (line 19) | type pkceDependencies interface function PKCEChallenge (line 24) | func PKCEChallenge(s *oidcv1.State) []oauth2.AuthCodeOption { function PKCEVerifier (line 31) | func PKCEVerifier(s *oidcv1.State) []oauth2.AuthCodeOption { function maybePKCE (line 38) | func maybePKCE(ctx context.Context, d pkceDependencies, _p Provider) (ve... function discoverPKCE (line 63) | func discoverPKCE(ctx context.Context, d pkceDependencies, p OAuth2Provi... FILE: selfservice/strategy/oidc/pkce_test.go function TestPKCESupport (line 24) | func TestPKCESupport(t *testing.T) { FILE: selfservice/strategy/oidc/provider.go type Provider (line 24) | type Provider interface type OAuth2Provider (line 27) | type OAuth2Provider interface type OAuth1Provider (line 33) | type OAuth1Provider interface type OAuth2TokenExchanger (line 42) | type OAuth2TokenExchanger interface type IDTokenVerifier (line 46) | type IDTokenVerifier interface type NonceValidationSkipper (line 50) | type NonceValidationSkipper interface type Claims (line 54) | type Claims struct method Validate (line 109) | func (c *Claims) Validate() error { type Locale (line 85) | type Locale method UnmarshalJSON (line 87) | func (l *Locale) UnmarshalJSON(data []byte) error { function UpstreamParameters (line 130) | func UpstreamParameters(upstreamParameters map[string]string) []oauth2.A... FILE: selfservice/strategy/oidc/provider_amazon.go type ProviderAmazon (line 29) | type ProviderAmazon struct method SetProfileURL (line 57) | func (p *ProviderAmazon) SetProfileURL(t *testing.T, url string) { method Config (line 61) | func (p *ProviderAmazon) Config() *Configuration { method oauth2 (line 65) | func (p *ProviderAmazon) oauth2(ctx context.Context) *oauth2.Config { method validateConfiguration (line 75) | func (p *ProviderAmazon) validateConfiguration() error { method OAuth2 (line 89) | func (p *ProviderAmazon) OAuth2(ctx context.Context) (*oauth2.Config, ... method AuthCodeURLOptions (line 98) | func (p *ProviderAmazon) AuthCodeURLOptions(r ider) []oauth2.AuthCodeO... method Claims (line 102) | func (p *ProviderAmazon) Claims(ctx context.Context, exchange *oauth2.... type amazonProfileResponse (line 34) | type amazonProfileResponse struct function NewProviderAmazon (line 41) | func NewProviderAmazon( FILE: selfservice/strategy/oidc/provider_amazon_test.go function TestAmazonOidcClaims (line 19) | func TestAmazonOidcClaims(t *testing.T) { FILE: selfservice/strategy/oidc/provider_apple.go type ProviderApple (line 23) | type ProviderApple struct method newClientSecret (line 44) | func (a *ProviderApple) newClientSecret() (string, error) { method oauth2 (line 76) | func (a *ProviderApple) oauth2(ctx context.Context) (*oauth2.Config, e... method OAuth2 (line 92) | func (a *ProviderApple) OAuth2(ctx context.Context) (*oauth2.Config, e... method AuthCodeURLOptions (line 96) | func (a *ProviderApple) AuthCodeURLOptions(r ider) []oauth2.AuthCodeOp... method Claims (line 118) | func (a *ProviderApple) Claims(ctx context.Context, exchange *oauth2.T... method DecodeQuery (line 132) | func (a *ProviderApple) DecodeQuery(query url.Values, claims *Claims) { method Verify (line 162) | func (a *ProviderApple) Verify(ctx context.Context, rawIDToken string)... method CanSkipNonce (line 171) | func (a *ProviderApple) CanSkipNonce(c *Claims) bool { function NewProviderApple (line 30) | func NewProviderApple( constant issuerURLApple (line 160) | issuerURLApple = "https://appleid.apple.com" FILE: selfservice/strategy/oidc/provider_apple_test.go function TestDecodeQuery (line 25) | func TestDecodeQuery(t *testing.T) { function TestAppleVerify (line 53) | func TestAppleVerify(t *testing.T) { FILE: selfservice/strategy/oidc/provider_auth0.go type ProviderAuth0 (line 28) | type ProviderAuth0 struct method oauth2 (line 46) | func (g *ProviderAuth0) oauth2(ctx context.Context) (*oauth2.Config, e... method OAuth2 (line 72) | func (g *ProviderAuth0) OAuth2(ctx context.Context) (*oauth2.Config, e... method Claims (line 76) | func (g *ProviderAuth0) Claims(ctx context.Context, exchange *oauth2.T... function NewProviderAuth0 (line 34) | func NewProviderAuth0( function authZeroUpdatedAtWorkaround (line 131) | func authZeroUpdatedAtWorkaround(body []byte) ([]byte, error) { FILE: selfservice/strategy/oidc/provider_auth0_unit_test.go function TestAuthZeroUpdatedAtWorkaround (line 16) | func TestAuthZeroUpdatedAtWorkaround(t *testing.T) { FILE: selfservice/strategy/oidc/provider_config.go constant AccountLinkingModeVerifyWithExistingCredential (line 21) | AccountLinkingModeVerifyWithExistingCredential = "confirm_with_existing_... constant AccountLinkingModeAutomatic (line 23) | AccountLinkingModeAutomatic = "automatic" constant ProviderTypeApple (line 26) | ProviderTypeApple = "apple" constant ProviderTypeGoogle (line 28) | ProviderTypeGoogle = "google" type Configuration (line 31) | type Configuration struct method Redir (line 162) | func (p Configuration) Redir(public *url.URL) string { type ConfigurationCollection (line 177) | type ConfigurationCollection struct method Provider (line 216) | func (c ConfigurationCollection) Provider(id string, reg Dependencies)... FILE: selfservice/strategy/oidc/provider_config_test.go function TestConfig (line 21) | func TestConfig(t *testing.T) { FILE: selfservice/strategy/oidc/provider_dingtalk.go type ProviderDingTalk (line 23) | type ProviderDingTalk struct method Config (line 40) | func (g *ProviderDingTalk) Config() *Configuration { method oauth2 (line 44) | func (g *ProviderDingTalk) oauth2(ctx context.Context) *oauth2.Config { method AuthCodeURLOptions (line 60) | func (g *ProviderDingTalk) AuthCodeURLOptions(r ider) []oauth2.AuthCod... method OAuth2 (line 66) | func (g *ProviderDingTalk) OAuth2(ctx context.Context) (*oauth2.Config... method ExchangeOAuth2Token (line 70) | func (g *ProviderDingTalk) ExchangeOAuth2Token(ctx context.Context, co... method Claims (line 127) | func (g *ProviderDingTalk) Claims(ctx context.Context, exchange *oauth... function NewProviderDingTalk (line 30) | func NewProviderDingTalk( FILE: selfservice/strategy/oidc/provider_discord.go type ProviderDiscord (line 25) | type ProviderDiscord struct method Config (line 40) | func (d *ProviderDiscord) Config() *Configuration { method oauth2 (line 44) | func (d *ProviderDiscord) oauth2(ctx context.Context) *oauth2.Config { method OAuth2 (line 57) | func (d *ProviderDiscord) OAuth2(ctx context.Context) (*oauth2.Config,... method AuthCodeURLOptions (line 61) | func (d *ProviderDiscord) AuthCodeURLOptions(r ider) []oauth2.AuthCode... method Claims (line 72) | func (d *ProviderDiscord) Claims(ctx context.Context, exchange *oauth2... function NewProviderDiscord (line 30) | func NewProviderDiscord( FILE: selfservice/strategy/oidc/provider_facebook.go type ProviderFacebook (line 29) | type ProviderFacebook struct method generateAppSecretProof (line 46) | func (g *ProviderFacebook) generateAppSecretProof(token *oauth2.Token)... method OAuth2 (line 55) | func (g *ProviderFacebook) OAuth2(ctx context.Context) (*oauth2.Config... method Claims (line 67) | func (g *ProviderFacebook) Claims(ctx context.Context, token *oauth2.T... function NewProviderFacebook (line 33) | func NewProviderFacebook( FILE: selfservice/strategy/oidc/provider_generic_oidc.go type ProviderGenericOIDC (line 22) | type ProviderGenericOIDC struct method Config (line 43) | func (g *ProviderGenericOIDC) Config() *Configuration { method withHTTPClientContext (line 47) | func (g *ProviderGenericOIDC) withHTTPClientContext(ctx context.Contex... method provider (line 51) | func (g *ProviderGenericOIDC) provider(ctx context.Context) (*gooidc.P... method oauth2ConfigFromEndpoint (line 62) | func (g *ProviderGenericOIDC) oauth2ConfigFromEndpoint(ctx context.Con... method OAuth2 (line 77) | func (g *ProviderGenericOIDC) OAuth2(ctx context.Context) (*oauth2.Con... method AuthCodeURLOptions (line 87) | func (g *ProviderGenericOIDC) AuthCodeURLOptions(r ider) []oauth2.Auth... method verifyAndDecodeClaimsWithProvider (line 100) | func (g *ProviderGenericOIDC) verifyAndDecodeClaimsWithProvider(ctx co... method Claims (line 120) | func (g *ProviderGenericOIDC) Claims(ctx context.Context, exchange *oa... method claimsFromUserInfo (line 132) | func (g *ProviderGenericOIDC) claimsFromUserInfo(ctx context.Context, ... method claimsFromIDToken (line 184) | func (g *ProviderGenericOIDC) claimsFromIDToken(ctx context.Context, e... method idTokenAndProvider (line 193) | func (g *ProviderGenericOIDC) idTokenAndProvider(ctx context.Context, ... method verifiedIDToken (line 207) | func (g *ProviderGenericOIDC) verifiedIDToken(ctx context.Context, exc... function NewProviderGenericOIDC (line 28) | func NewProviderGenericOIDC( constant ClaimsSourceIDToken (line 39) | ClaimsSourceIDToken = "id_token" constant ClaimsSourceUserInfo (line 40) | ClaimsSourceUserInfo = "userinfo" FILE: selfservice/strategy/oidc/provider_generic_test.go function makeOIDCClaims (line 24) | func makeOIDCClaims() json.RawMessage { function makeAuthCodeURL (line 38) | func makeAuthCodeURL(t *testing.T, r *login.Flow, reg *driver.RegistryDe... function TestProviderGenericOIDC_AddAuthCodeURLOptions (line 53) | func TestProviderGenericOIDC_AddAuthCodeURLOptions(t *testing.T) { FILE: selfservice/strategy/oidc/provider_github.go type ProviderGitHub (line 28) | type ProviderGitHub struct method Config (line 43) | func (g *ProviderGitHub) Config() *Configuration { method oauth2 (line 47) | func (g *ProviderGitHub) oauth2(ctx context.Context) *oauth2.Config { method OAuth2 (line 57) | func (g *ProviderGitHub) OAuth2(ctx context.Context) (*oauth2.Config, ... method AuthCodeURLOptions (line 61) | func (g *ProviderGitHub) AuthCodeURLOptions(r ider) []oauth2.AuthCodeO... method Claims (line 65) | func (g *ProviderGitHub) Claims(ctx context.Context, exchange *oauth2.... function NewProviderGitHub (line 33) | func NewProviderGitHub( FILE: selfservice/strategy/oidc/provider_github_app.go type ProviderGitHubApp (line 23) | type ProviderGitHubApp struct method Config (line 38) | func (g *ProviderGitHubApp) Config() *Configuration { method oauth2 (line 42) | func (g *ProviderGitHubApp) oauth2(ctx context.Context) *oauth2.Config { method OAuth2 (line 52) | func (g *ProviderGitHubApp) OAuth2(ctx context.Context) (*oauth2.Confi... method AuthCodeURLOptions (line 56) | func (g *ProviderGitHubApp) AuthCodeURLOptions(r ider) []oauth2.AuthCo... method Claims (line 60) | func (g *ProviderGitHubApp) Claims(ctx context.Context, exchange *oaut... function NewProviderGitHubApp (line 28) | func NewProviderGitHubApp( FILE: selfservice/strategy/oidc/provider_gitlab.go constant defaultEndpoint (line 24) | defaultEndpoint = "https://gitlab.com" type ProviderGitLab (line 29) | type ProviderGitLab struct method oauth2 (line 45) | func (g *ProviderGitLab) oauth2(ctx context.Context) (*oauth2.Config, ... method OAuth2 (line 69) | func (g *ProviderGitLab) OAuth2(ctx context.Context) (*oauth2.Config, ... method Claims (line 73) | func (g *ProviderGitLab) Claims(ctx context.Context, exchange *oauth2.... method endpoint (line 111) | func (g *ProviderGitLab) endpoint() (*url.URL, error) { function NewProviderGitLab (line 33) | func NewProviderGitLab( FILE: selfservice/strategy/oidc/provider_google.go type ProviderGoogle (line 16) | type ProviderGoogle struct method oauth2ConfigFromEndpoint (line 35) | func (g *ProviderGoogle) oauth2ConfigFromEndpoint(ctx context.Context,... method OAuth2 (line 52) | func (g *ProviderGoogle) OAuth2(ctx context.Context) (*oauth2.Config, ... method AuthCodeURLOptions (line 62) | func (g *ProviderGoogle) AuthCodeURLOptions(r ider) []oauth2.AuthCodeO... method Verify (line 77) | func (g *ProviderGoogle) Verify(ctx context.Context, rawIDToken string... method CanSkipNonce (line 86) | func (g *ProviderGoogle) CanSkipNonce(c *Claims) bool { function NewProviderGoogle (line 21) | func NewProviderGoogle( constant issuerURLGoogle (line 75) | issuerURLGoogle = "https://accounts.google.com" FILE: selfservice/strategy/oidc/provider_google_test.go function TestProviderGoogle_Scope (line 24) | func TestProviderGoogle_Scope(t *testing.T) { function TestProviderGoogle_AccessType (line 41) | func TestProviderGoogle_AccessType(t *testing.T) { function TestGoogleVerify (line 62) | func TestGoogleVerify(t *testing.T) { FILE: selfservice/strategy/oidc/provider_jackson.go type ProviderJackson (line 16) | type ProviderJackson struct method setProvider (line 32) | func (j *ProviderJackson) setProvider(ctx context.Context) { method OAuth2 (line 48) | func (j *ProviderJackson) OAuth2(ctx context.Context) (*oauth2.Config,... function NewProviderJackson (line 20) | func NewProviderJackson( FILE: selfservice/strategy/oidc/provider_jackson_test.go function TestProviderJackson (line 18) | func TestProviderJackson(t *testing.T) { FILE: selfservice/strategy/oidc/provider_lark.go type ProviderLark (line 21) | type ProviderLark struct method Config (line 46) | func (pl *ProviderLark) Config() *Configuration { method OAuth2 (line 50) | func (pl *ProviderLark) OAuth2(ctx context.Context) (*oauth2.Config, e... method Claims (line 61) | func (pl *ProviderLark) Claims(ctx context.Context, exchange *oauth2.T... method AuthCodeURLOptions (line 115) | func (pl *ProviderLark) AuthCodeURLOptions(r ider) []oauth2.AuthCodeOp... function NewProviderLark (line 34) | func NewProviderLark( FILE: selfservice/strategy/oidc/provider_line_2_1.go type ProviderLineV21 (line 12) | type ProviderLineV21 struct method Exchange (line 29) | func (g *ProviderLineV21) Exchange(ctx context.Context, code string, o... function NewProviderLineV21 (line 16) | func NewProviderLineV21( FILE: selfservice/strategy/oidc/provider_linkedin.go type LinkedInProfile (line 23) | type LinkedInProfile struct type LinkedInEmail (line 38) | type LinkedInEmail struct type LinkedInIntrospection (line 47) | type LinkedInIntrospection struct constant ProfileURL (line 61) | ProfileURL string = "https://api.linkedin.com/v2/me?projection=(id... constant EmailURL (line 62) | EmailURL string = "https://api.linkedin.com/v2/emailAddress?q=me... constant IntrospectionURL (line 63) | IntrospectionURL string = "https://www.linkedin.com/oauth/v2/introspectT... type ProviderLinkedIn (line 68) | type ProviderLinkedIn struct method Config (line 83) | func (l *ProviderLinkedIn) Config() *Configuration { method oauth2 (line 87) | func (l *ProviderLinkedIn) oauth2(ctx context.Context) *oauth2.Config { method OAuth2 (line 97) | func (l *ProviderLinkedIn) OAuth2(ctx context.Context) (*oauth2.Config... method AuthCodeURLOptions (line 101) | func (l *ProviderLinkedIn) AuthCodeURLOptions(r ider) []oauth2.AuthCod... method fetch (line 105) | func (l *ProviderLinkedIn) fetch(ctx context.Context, client *retryabl... method Profile (line 131) | func (l *ProviderLinkedIn) Profile(ctx context.Context, client *retrya... method Email (line 140) | func (l *ProviderLinkedIn) Email(ctx context.Context, client *retryabl... method ProfilePicture (line 149) | func (l *ProviderLinkedIn) ProfilePicture(profile *LinkedInProfile) st... method Claims (line 170) | func (l *ProviderLinkedIn) Claims(ctx context.Context, exchange *oauth... function NewProviderLinkedIn (line 73) | func NewProviderLinkedIn( FILE: selfservice/strategy/oidc/provider_linkedin_test.go function TestProviderLinkedin_Claims (line 24) | func TestProviderLinkedin_Claims(t *testing.T) { function TestProviderLinkedin_No_Picture (line 135) | func TestProviderLinkedin_No_Picture(t *testing.T) { FILE: selfservice/strategy/oidc/provider_linkedin_v2.go function NewProviderLinkedInV2 (line 6) | func NewProviderLinkedInV2( FILE: selfservice/strategy/oidc/provider_linkedin_v2_test.go function TestProviderLinkedInV2_Discovery (line 17) | func TestProviderLinkedInV2_Discovery(t *testing.T) { FILE: selfservice/strategy/oidc/provider_microsoft.go type ProviderMicrosoft (line 25) | type ProviderMicrosoft struct method OAuth2 (line 41) | func (m *ProviderMicrosoft) OAuth2(ctx context.Context) (*oauth2.Confi... method Claims (line 55) | func (m *ProviderMicrosoft) Claims(ctx context.Context, exchange *oaut... method updateSubject (line 86) | func (m *ProviderMicrosoft) updateSubject(ctx context.Context, claims ... function NewProviderMicrosoft (line 29) | func NewProviderMicrosoft( type microsoftUnverifiedClaims (line 126) | type microsoftUnverifiedClaims struct method Valid (line 130) | func (c *microsoftUnverifiedClaims) Valid() error { FILE: selfservice/strategy/oidc/provider_netid.go constant defaultBrokerScheme (line 25) | defaultBrokerScheme = "https" constant defaultBrokerHost (line 26) | defaultBrokerHost = "broker.netid.de" type ProviderNetID (line 31) | type ProviderNetID struct method OAuth2 (line 52) | func (n *ProviderNetID) OAuth2(ctx context.Context) (*oauth2.Config, e... method oAuth2 (line 56) | func (n *ProviderNetID) oAuth2(ctx context.Context) (*oauth2.Config, e... method Claims (line 74) | func (n *ProviderNetID) Claims(ctx context.Context, exchange *oauth2.T... method Verify (line 120) | func (n *ProviderNetID) Verify(ctx context.Context, rawIDToken string)... method brokerURL (line 172) | func (n *ProviderNetID) brokerURL() *url.URL { function NewProviderNetID (line 35) | func NewProviderNetID( FILE: selfservice/strategy/oidc/provider_netid_test.go function TestNetidProvider (line 16) | func TestNetidProvider(t *testing.T) { FILE: selfservice/strategy/oidc/provider_patreon.go type ProviderPatreon (line 23) | type ProviderPatreon struct method Config (line 52) | func (d *ProviderPatreon) Config() *Configuration { method oauth2 (line 56) | func (d *ProviderPatreon) oauth2(ctx context.Context) *oauth2.Config { method OAuth2 (line 69) | func (d *ProviderPatreon) OAuth2(ctx context.Context) (*oauth2.Config,... method AuthCodeURLOptions (line 73) | func (d *ProviderPatreon) AuthCodeURLOptions(r ider) []oauth2.AuthCode... method Claims (line 84) | func (d *ProviderPatreon) Claims(ctx context.Context, exchange *oauth2... type PatreonIdentityResponse (line 28) | type PatreonIdentityResponse struct function NewProviderPatreon (line 42) | func NewProviderPatreon( FILE: selfservice/strategy/oidc/provider_private_net_test.go constant wellknownJWKs (line 23) | wellknownJWKs = "https://raw.githubusercontent.com/aeneasr/private-oidc/... constant fakeJWTJWKS (line 24) | fakeJWTJWKS = "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NT... function TestProviderPrivateIP (line 27) | func TestProviderPrivateIP(t *testing.T) { FILE: selfservice/strategy/oidc/provider_salesforce.go type ProviderSalesforce (line 30) | type ProviderSalesforce struct method oauth2 (line 46) | func (g *ProviderSalesforce) oauth2(ctx context.Context) (*oauth2.Conf... method OAuth2 (line 72) | func (g *ProviderSalesforce) OAuth2(ctx context.Context) (*oauth2.Conf... method Claims (line 76) | func (g *ProviderSalesforce) Claims(ctx context.Context, exchange *oau... function NewProviderSalesforce (line 34) | func NewProviderSalesforce( function salesforceUpdatedAtWorkaround (line 131) | func salesforceUpdatedAtWorkaround(body []byte) ([]byte, error) { FILE: selfservice/strategy/oidc/provider_salesforce_unit_test.go function TestSalesforceUpdatedAtWorkaround (line 16) | func TestSalesforceUpdatedAtWorkaround(t *testing.T) { FILE: selfservice/strategy/oidc/provider_slack.go type ProviderSlack (line 24) | type ProviderSlack struct method Config (line 39) | func (d *ProviderSlack) Config() *Configuration { method oauth2 (line 43) | func (d *ProviderSlack) oauth2(ctx context.Context) *oauth2.Config { method OAuth2 (line 58) | func (d *ProviderSlack) OAuth2(ctx context.Context) (*oauth2.Config, e... method AuthCodeURLOptions (line 62) | func (d *ProviderSlack) AuthCodeURLOptions(r ider) []oauth2.AuthCodeOp... method Claims (line 66) | func (d *ProviderSlack) Claims(ctx context.Context, exchange *oauth2.T... function NewProviderSlack (line 29) | func NewProviderSlack( FILE: selfservice/strategy/oidc/provider_spotify.go type ProviderSpotify (line 29) | type ProviderSpotify struct method Config (line 44) | func (g *ProviderSpotify) Config() *Configuration { method oauth2 (line 48) | func (g *ProviderSpotify) oauth2(ctx context.Context) *oauth2.Config { method OAuth2 (line 58) | func (g *ProviderSpotify) OAuth2(ctx context.Context) (*oauth2.Config,... method AuthCodeURLOptions (line 62) | func (g *ProviderSpotify) AuthCodeURLOptions(r ider) []oauth2.AuthCode... method Claims (line 66) | func (g *ProviderSpotify) Claims(ctx context.Context, exchange *oauth2... function NewProviderSpotify (line 34) | func NewProviderSpotify( FILE: selfservice/strategy/oidc/provider_test.go function TestClaimsValidate (line 16) | func TestClaimsValidate(t *testing.T) { type TestProvider (line 25) | type TestProvider struct method Verify (line 46) | func (t *TestProvider) Verify(_ context.Context, token string) (*Claim... function NewTestProvider (line 29) | func NewTestProvider(c *Configuration, reg Dependencies) Provider { function RegisterTestProvider (line 35) | func RegisterTestProvider(t *testing.T, id string) { method SetUserInfoURL (line 58) | func (p *ProviderUAEPass) SetUserInfoURL(t *testing.T, url string) { function TestLocale (line 63) | func TestLocale(t *testing.T) { FILE: selfservice/strategy/oidc/provider_test_fedcm.go type ProviderTestFedcm (line 13) | type ProviderTestFedcm struct method Verify (line 31) | func (g *ProviderTestFedcm) Verify(_ context.Context, rawIDToken strin... function NewProviderTestFedcm (line 19) | func NewProviderTestFedcm( FILE: selfservice/strategy/oidc/provider_test_fedcm_test.go function TestFedcmTestProvider (line 16) | func TestFedcmTestProvider(t *testing.T) { FILE: selfservice/strategy/oidc/provider_uaepass.go type ProviderUAEPass (line 43) | type ProviderUAEPass struct method oauth2 (line 83) | func (p *ProviderUAEPass) oauth2(ctx context.Context) *oauth2.Config { method OAuth2 (line 98) | func (p *ProviderUAEPass) OAuth2(ctx context.Context) (*oauth2.Config,... method AuthCodeURLOptions (line 110) | func (p *ProviderUAEPass) AuthCodeURLOptions(r ider) []oauth2.AuthCode... method Claims (line 118) | func (p *ProviderUAEPass) Claims(ctx context.Context, exchange *oauth2... function NewProviderUAEPass (line 53) | func NewProviderUAEPass( constant UAEPassACRWeb (line 104) | UAEPassACRWeb = "urn:safelayer:tws:policies:authentication:level:low" FILE: selfservice/strategy/oidc/provider_uaepass_test.go function TestUAEPassOIDCClaims (line 20) | func TestUAEPassOIDCClaims(t *testing.T) { function TestUAEPassOIDCClaimsVisitor (line 93) | func TestUAEPassOIDCClaimsVisitor(t *testing.T) { function TestUAEPassOIDCClaimsError (line 140) | func TestUAEPassOIDCClaimsError(t *testing.T) { function TestUAEPassIssuerURL (line 164) | func TestUAEPassIssuerURL(t *testing.T) { function TestUAEPassConfigurationValidation (line 213) | func TestUAEPassConfigurationValidation(t *testing.T) { function TestUAEPassAuthFlowDefaultsToWeb (line 248) | func TestUAEPassAuthFlowDefaultsToWeb(t *testing.T) { function TestUAEPassMobileACRViaUpstreamParams (line 271) | func TestUAEPassMobileACRViaUpstreamParams(t *testing.T) { FILE: selfservice/strategy/oidc/provider_userinfo_test.go type mockRegistry (line 30) | type mockRegistry struct method HTTPClient (line 35) | func (s *mockRegistry) HTTPClient(ctx context.Context, opts ...httpx.R... function TestProviderClaimsRespectsErrorCodes (line 39) | func TestProviderClaimsRespectsErrorCodes(t *testing.T) { FILE: selfservice/strategy/oidc/provider_vk.go type ProviderVK (line 24) | type ProviderVK struct method Config (line 39) | func (g *ProviderVK) Config() *Configuration { method oauth2 (line 43) | func (g *ProviderVK) oauth2(ctx context.Context) *oauth2.Config { method AuthCodeURLOptions (line 56) | func (g *ProviderVK) AuthCodeURLOptions(r ider) []oauth2.AuthCodeOption { method OAuth2 (line 60) | func (g *ProviderVK) OAuth2(ctx context.Context) (*oauth2.Config, erro... method Claims (line 64) | func (g *ProviderVK) Claims(ctx context.Context, exchange *oauth2.Toke... function NewProviderVK (line 29) | func NewProviderVK( FILE: selfservice/strategy/oidc/provider_x.go constant xUserInfoBase (line 24) | xUserInfoBase = "https://api.twitter.com/1.1/account/verify_credent... constant xUserInfoWithEmail (line 25) | xUserInfoWithEmail = xUserInfoBase + "?include_email=true" type ProviderX (line 28) | type ProviderX struct method Config (line 33) | func (p *ProviderX) Config() *Configuration { method ExchangeToken (line 47) | func (p *ProviderX) ExchangeToken(ctx context.Context, req *http.Reque... method AuthURL (line 61) | func (p *ProviderX) AuthURL(ctx context.Context, state string) (_ stri... method CheckError (line 85) | func (p *ProviderX) CheckError(ctx context.Context, r *http.Request) e... method OAuth1 (line 93) | func (p *ProviderX) OAuth1(ctx context.Context) *oauth1.Config { method userInfoEndpoint (line 102) | func (p *ProviderX) userInfoEndpoint() string { method Claims (line 112) | func (p *ProviderX) Claims(ctx context.Context, token *oauth1.Token) (... function NewProviderX (line 37) | func NewProviderX( type xUser (line 150) | type xUser struct FILE: selfservice/strategy/oidc/provider_yandex.go type ProviderYandex (line 22) | type ProviderYandex struct method Config (line 37) | func (g *ProviderYandex) Config() *Configuration { method oauth2 (line 41) | func (g *ProviderYandex) oauth2(ctx context.Context) *oauth2.Config { method AuthCodeURLOptions (line 54) | func (g *ProviderYandex) AuthCodeURLOptions(r ider) []oauth2.AuthCodeO... method OAuth2 (line 58) | func (g *ProviderYandex) OAuth2(ctx context.Context) (*oauth2.Config, ... method Claims (line 62) | func (g *ProviderYandex) Claims(ctx context.Context, exchange *oauth2.... function NewProviderYandex (line 27) | func NewProviderYandex( FILE: selfservice/strategy/oidc/state.go function encryptState (line 24) | func encryptState(ctx context.Context, c cipher.Cipher, state *oidcv1.St... function DecryptState (line 32) | func DecryptState(ctx context.Context, c cipher.Cipher, ciphertext strin... method GenerateState (line 44) | func (s *Strategy) GenerateState(ctx context.Context, p Provider, flow f... function codeMatches (line 75) | func codeMatches(s *oidcv1.State, code string) bool { FILE: selfservice/strategy/oidc/state_test.go function TestGenerateState (line 21) | func TestGenerateState(t *testing.T) { type testProvider (line 47) | type testProvider struct method Config (line 49) | func (t *testProvider) Config() *oidc.Configuration { FILE: selfservice/strategy/oidc/strategy.go constant RouteBase (line 60) | RouteBase = "/self-service/methods/oidc" constant RouteAuth (line 62) | RouteAuth = RouteBase + "/auth/{flow}" constant RouteCallback (line 63) | RouteCallback = RouteBase + "/callback/{provider}" constant RouteCallbackGeneric (line 64) | RouteCallbackGeneric = RouteBase + "/callback" constant RouteOrganizationCallback (line 65) | RouteOrganizationCallback = RouteBase + "/organization/{organization}/ca... type Dependencies (line 73) | type Dependencies interface function isForced (line 120) | func isForced(req interface{}) bool { type ConflictingIdentityVerdict (line 129) | type ConflictingIdentityVerdict constant ConflictingIdentityVerdictUnknown (line 133) | ConflictingIdentityVerdictUnknown ConflictingIdentityVerdict = iota constant ConflictingIdentityVerdictReject (line 138) | ConflictingIdentityVerdictReject constant ConflictingIdentityVerdictMerge (line 141) | ConflictingIdentityVerdictMerge type Strategy (line 146) | type Strategy struct method CountActiveFirstFactorCredentials (line 165) | func (s *Strategy) CountActiveFirstFactorCredentials(ctx context.Conte... method CountActiveMultiFactorCredentials (line 200) | func (s *Strategy) CountActiveMultiFactorCredentials(_ context.Context... method RegisterPublicRoutes (line 204) | func (s *Strategy) RegisterPublicRoutes(r *httprouterx.RouterPublic) { method RegisterAdminRoutes (line 222) | func (s *Strategy) RegisterAdminRoutes(*httprouterx.RouterAdmin) {} method redirectToGET (line 225) | func (s *Strategy) redirectToGET(w http.ResponseWriter, r *http.Reques... method SetOnConflictingIdentity (line 272) | func (s *Strategy) SetOnConflictingIdentity(t testing.TB, handler Conf... method ID (line 295) | func (s *Strategy) ID() identity.CredentialsType { method validateFlow (line 299) | func (s *Strategy) validateFlow(ctx context.Context, r *http.Request, ... method ValidateCallback (line 342) | func (s *Strategy) ValidateCallback(w http.ResponseWriter, r *http.Req... method alreadyAuthenticated (line 424) | func (s *Strategy) alreadyAuthenticated(ctx context.Context, w http.Re... method HandleCallback (line 454) | func (s *Strategy) HandleCallback(w http.ResponseWriter, r *http.Reque... method exchangeCode (line 603) | func (s *Strategy) exchangeCode(ctx context.Context, provider OAuth2Pr... method populateMethod (line 622) | func (s *Strategy) populateMethod(r *http.Request, f flow.Flow, messag... method Config (line 634) | func (s *Strategy) Config(ctx context.Context) (*ConfigurationCollecti... method Provider (line 648) | func (s *Strategy) Provider(ctx context.Context, id string) (Provider,... method forwardError (line 658) | func (s *Strategy) forwardError(ctx context.Context, w http.ResponseWr... method HandleError (line 677) | func (s *Strategy) HandleError(ctx context.Context, w http.ResponseWri... method populateAccountLinkingUI (line 762) | func (s *Strategy) populateAccountLinkingUI(ctx context.Context, lf *l... method NodeGroup (line 834) | func (s *Strategy) NodeGroup() node.UiNodeGroup { method CompletedAuthenticationMethod (line 838) | func (s *Strategy) CompletedAuthenticationMethod(context.Context) sess... method ProcessIDToken (line 845) | func (s *Strategy) ProcessIDToken(r *http.Request, provider Provider, ... method linkCredentials (line 883) | func (s *Strategy) linkCredentials(ctx context.Context, i *identity.Id... method encryptOAuth2Tokens (line 948) | func (s *Strategy) encryptOAuth2Tokens(ctx context.Context, token *oau... type ConflictingIdentityPolicy (line 155) | type ConflictingIdentityPolicy type AuthCodeContainer (line 157) | type AuthCodeContainer struct function CountActiveFirstFactorCredentials (line 169) | func CountActiveFirstFactorCredentials(_ context.Context, id identity.Cr... type NewStrategyOpt (line 244) | type NewStrategyOpt function ForCredentialType (line 247) | func ForCredentialType(ct identity.CredentialsType) NewStrategyOpt { function WithUnknownProviderHandler (line 253) | func WithUnknownProviderHandler(handler func(error) error) NewStrategyOpt { function WithHandleMethodNotAllowedError (line 259) | func WithHandleMethodNotAllowedError(handler func(error) error) NewStrat... function WithOnConflictingIdentity (line 265) | func WithOnConflictingIdentity(handler ConflictingIdentityPolicy) NewStr... function NewStrategy (line 279) | func NewStrategy(d Dependencies, opts ...NewStrategyOpt) *Strategy { function registrationOrLoginFlowID (line 413) | func registrationOrLoginFlowID(flow any) (uuid.UUID, bool) { function getAuthRedirectURL (line 930) | func getAuthRedirectURL(ctx context.Context, provider Provider, req ider... FILE: selfservice/strategy/oidc/strategy_helper_test.go type idTokenClaims (line 44) | type idTokenClaims struct method MarshalJSON (line 57) | func (token *idTokenClaims) MarshalJSON() ([]byte, error) { function createClient (line 80) | func createClient(t *testing.T, remote string, redir []string) (id, secr... function newHydraIntegration (line 132) | func newHydraIntegration(t *testing.T, remote *string, subject *string, ... function newReturnTS (line 198) | func newReturnTS(t *testing.T, reg driver.Registry) *httptest.Server { function newUI (line 215) | func newUI(t *testing.T, reg driver.Registry) *httptest.Server { function newHydra (line 239) | func newHydra(t *testing.T, subject *string, claims *idTokenClaims, scop... function newOIDCProvider (line 308) | func newOIDCProvider( function viperSetProviderConfig (line 333) | func viperSetProviderConfig(t *testing.T, conf *config.Config, providers... function AssertSystemError (line 349) | func AssertSystemError(t *testing.T, errTS *httptest.Server, res *http.R... type claims (line 367) | type claims struct function createIDToken (line 372) | func createIDToken(t *testing.T, cl jwt.RegisteredClaims) string { FILE: selfservice/strategy/oidc/strategy_login.go type UpdateLoginFlowWithOidcMethod (line 45) | type UpdateLoginFlowWithOidcMethod struct method handleConflictingIdentity (line 101) | func (s *Strategy) handleConflictingIdentity(ctx context.Context, loginF... method ProcessLogin (line 161) | func (s *Strategy) ProcessLogin(ctx context.Context, w http.ResponseWrit... method Login (line 260) | func (s *Strategy) Login(w http.ResponseWriter, r *http.Request, f *logi... method PopulateLoginMethodFirstFactorRefresh (line 385) | func (s *Strategy) PopulateLoginMethodFirstFactorRefresh(r *http.Request... method PopulateLoginMethodFirstFactor (line 419) | func (s *Strategy) PopulateLoginMethodFirstFactor(r *http.Request, f *lo... method removeProviders (line 423) | func (s *Strategy) removeProviders(conf *ConfigurationCollection, f *log... method PopulateLoginMethodIdentifierFirstCredentials (line 445) | func (s *Strategy) PopulateLoginMethodIdentifierFirstCredentials(r *http... method PopulateLoginMethodIdentifierFirstIdentification (line 501) | func (s *Strategy) PopulateLoginMethodIdentifierFirstIdentification(r *h... FILE: selfservice/strategy/oidc/strategy_login_test.go function createIdentity (line 30) | func createIdentity(t *testing.T, ctx context.Context, reg driver.Regist... function TestFormHydration (line 41) | func TestFormHydration(t *testing.T) { FILE: selfservice/strategy/oidc/strategy_registration.go type MetadataType (line 49) | type MetadataType type VerifiedAddress (line 51) | type VerifiedAddress struct constant VerifiedAddressesKey (line 57) | VerifiedAddressesKey = "identity.verified_addresses" constant PublicMetadata (line 59) | PublicMetadata MetadataType = "identity.metadata_public" constant AdminMetadata (line 60) | AdminMetadata MetadataType = "identity.metadata_admin" method PopulateRegistrationMethod (line 63) | func (s *Strategy) PopulateRegistrationMethod(r *http.Request, f *regist... method PopulateRegistrationMethodProfile (line 67) | func (s *Strategy) PopulateRegistrationMethodProfile(r *http.Request, f ... method PopulateRegistrationMethodCredentials (line 71) | func (s *Strategy) PopulateRegistrationMethodCredentials(r *http.Request... type UpdateRegistrationFlowWithOidcMethod (line 78) | type UpdateRegistrationFlowWithOidcMethod struct method newLinkDecoder (line 134) | func (s *Strategy) newLinkDecoder(ctx context.Context, p interface{}, r ... method Register (line 163) | func (s *Strategy) Register(w http.ResponseWriter, r *http.Request, f *r... method registrationToLogin (line 282) | func (s *Strategy) registrationToLogin(ctx context.Context, w http.Respo... method processRegistration (line 322) | func (s *Strategy) processRegistration(ctx context.Context, w http.Respo... method newIdentityFromClaims (line 387) | func (s *Strategy) newIdentityFromClaims(ctx context.Context, claims *Cl... method setTraits (line 450) | func (s *Strategy) setTraits(provider Provider, container *AuthCodeConta... method setMetadata (line 475) | func (s *Strategy) setMetadata(evaluated string, i *identity.Identity, m... method extractVerifiedAddresses (line 495) | func (s *Strategy) extractVerifiedAddresses(evaluated string) ([]Verifie... FILE: selfservice/strategy/oidc/strategy_registration_test.go function TestPopulateRegistrationMethod (line 27) | func TestPopulateRegistrationMethod(t *testing.T) { FILE: selfservice/strategy/oidc/strategy_settings.go method SettingsStrategyID (line 55) | func (s *Strategy) SettingsStrategyID() string { method decoderSettings (line 59) | func (s *Strategy) decoderSettings(ctx context.Context, p *updateSetting... method linkedProviders (line 88) | func (s *Strategy) linkedProviders(conf *ConfigurationCollection, confid... method linkableProviders (line 113) | func (s *Strategy) linkableProviders(conf *ConfigurationCollection, conf... method PopulateSettingsMethod (line 144) | func (s *Strategy) PopulateSettingsMethod(ctx context.Context, r *http.R... type updateSettingsFlowWithOidcMethod (line 195) | type updateSettingsFlowWithOidcMethod struct method GetFlowID (line 247) | func (p *updateSettingsFlowWithOidcMethod) GetFlowID() uuid.UUID { method SetFlowID (line 251) | func (p *updateSettingsFlowWithOidcMethod) SetFlowID(rid uuid.UUID) { method Settings (line 255) | func (s *Strategy) Settings(ctx context.Context, w http.ResponseWriter, ... method isLinkable (line 320) | func (s *Strategy) isLinkable(ctx context.Context, ctxUpdate *settings.U... method initLinkProvider (line 350) | func (s *Strategy) initLinkProvider(ctx context.Context, w http.Response... method linkProvider (line 402) | func (s *Strategy) linkProvider(ctx context.Context, w http.ResponseWrit... method unlinkProvider (line 444) | func (s *Strategy) unlinkProvider(ctx context.Context, w http.ResponseWr... method handleSettingsError (line 516) | func (s *Strategy) handleSettingsError(ctx context.Context, w http.Respo... method Link (line 533) | func (s *Strategy) Link(ctx context.Context, i *identity.Identity, crede... method CompletedLogin (line 565) | func (s *Strategy) CompletedLogin(sess *session.Session, data *flow.Dupl... method SetDuplicateCredentials (line 585) | func (s *Strategy) SetDuplicateCredentials(f flow.InternalContexter, dup... FILE: selfservice/strategy/oidc/strategy_settings_test.go function init (line 44) | func init() { function TestSettingsStrategy (line 48) | func TestSettingsStrategy(t *testing.T) { function TestPopulateSettingsMethod (line 845) | func TestPopulateSettingsMethod(t *testing.T) { FILE: selfservice/strategy/oidc/strategy_test.go function TestStrategy (line 57) | func TestStrategy(t *testing.T) { function prettyJSON (line 1909) | func prettyJSON(t *testing.T, body []byte) string { function TestCountActiveFirstFactorCredentials (line 1916) | func TestCountActiveFirstFactorCredentials(t *testing.T) { function TestDisabledEndpoint (line 2012) | func TestDisabledEndpoint(t *testing.T) { function TestPostEndpointRedirect (line 2066) | func TestPostEndpointRedirect(t *testing.T) { function findCsrfTokenPath (line 2112) | func findCsrfTokenPath(t *testing.T, body []byte) string { FILE: selfservice/strategy/oidc/token_verifier.go function verifyToken (line 17) | func verifyToken(ctx context.Context, keySet oidc.KeySet, config *Config... FILE: selfservice/strategy/oidc/types.go type FlowMethod (line 19) | type FlowMethod struct function AddProviders (line 23) | func AddProviders(c *container.Container, providers []Configuration, mes... function AddProvider (line 32) | func AddProvider(c *container.Container, providerID string, message *tex... function NewFlowMethod (line 42) | func NewFlowMethod(f *container.Container) *FlowMethod { type ider (line 46) | type ider interface FILE: selfservice/strategy/passkey/nodes.go function injectOptions (line 12) | func injectOptions(o []byte) *node.Node { function passkeyRegister (line 25) | func passkeyRegister() *node.Node { function passkeyRegisterTrigger (line 37) | func passkeyRegisterTrigger() *node.Node { FILE: selfservice/strategy/passkey/passkey_login.go method populateLoginMethodForPasskeys (line 44) | func (s *Strategy) populateLoginMethodForPasskeys(r *http.Request, login... method handleLoginError (line 129) | func (s *Strategy) handleLoginError(r *http.Request, f *login.Flow, err ... type updateLoginFlowWithPasskeyMethod (line 143) | type updateLoginFlowWithPasskeyMethod struct method Login (line 158) | func (s *Strategy) Login(w http.ResponseWriter, r *http.Request, f *logi... method loginPasswordless (line 190) | func (s *Strategy) loginPasswordless(ctx context.Context, w http.Respons... method loginAuthenticate (line 221) | func (s *Strategy) loginAuthenticate(ctx context.Context, r *http.Reques... method PopulateLoginMethodFirstFactorRefresh (line 293) | func (s *Strategy) PopulateLoginMethodFirstFactorRefresh(r *http.Request... method PopulateLoginMethodFirstFactor (line 405) | func (s *Strategy) PopulateLoginMethodFirstFactor(r *http.Request, f *lo... method PopulateLoginMethodIdentifierFirstCredentials (line 430) | func (s *Strategy) PopulateLoginMethodIdentifierFirstCredentials(r *http... method PopulateLoginMethodIdentifierFirstIdentification (line 469) | func (s *Strategy) PopulateLoginMethodIdentifierFirstIdentification(r *h... FILE: selfservice/strategy/passkey/passkey_login_test.go function TestPopulateLoginMethod (line 51) | func TestPopulateLoginMethod(t *testing.T) { function TestCompleteLogin (line 76) | func TestCompleteLogin(t *testing.T) { function createIdentity (line 535) | func createIdentity(t *testing.T, ctx context.Context, reg driver.Regist... function TestFormHydration (line 548) | func TestFormHydration(t *testing.T) { FILE: selfservice/strategy/passkey/passkey_registration.go type updateRegistrationFlowWithPasskeyMethod (line 40) | type updateRegistrationFlowWithPasskeyMethod struct method handleRegistrationError (line 73) | func (s *Strategy) handleRegistrationError(_ http.ResponseWriter, r *htt... method decode (line 90) | func (s *Strategy) decode(r *http.Request, ds *url.URL) (*updateRegistra... method Register (line 96) | func (s *Strategy) Register(w http.ResponseWriter, r *http.Request, regF... type passkeyCreateData (line 197) | type passkeyCreateData struct method PopulateRegistrationMethod (line 202) | func (s *Strategy) PopulateRegistrationMethod(r *http.Request, f *regist... method validateCredentials (line 232) | func (s *Strategy) validateCredentials(ctx context.Context, i *identity.... method PopulateRegistrationMethodCredentials (line 245) | func (s *Strategy) PopulateRegistrationMethodCredentials(r *http.Request... method PopulateRegistrationMethodProfile (line 275) | func (s *Strategy) PopulateRegistrationMethodProfile(r *http.Request, f ... method hydratePassKeyRegistrationOptions (line 291) | func (s *Strategy) hydratePassKeyRegistrationOptions(ctx context.Context... FILE: selfservice/strategy/passkey/passkey_registration_test.go function flowIsSPA (line 63) | func flowIsSPA(flow string) bool { function TestRegistration (line 67) | func TestRegistration(t *testing.T) { function TestPopulateRegistrationMethod (line 703) | func TestPopulateRegistrationMethod(t *testing.T) { FILE: selfservice/strategy/passkey/passkey_schema_extension.go type SchemaExtension (line 19) | type SchemaExtension struct method Run (line 25) | func (e *SchemaExtension) Run(_ jsonschema.ValidationContext, s schema... method Finish (line 40) | func (e *SchemaExtension) Finish() error { return nil } method PasskeyDisplayNameFromIdentity (line 45) | func (s *Strategy) PasskeyDisplayNameFromIdentity(ctx context.Context, i... method PasskeyDisplayNameFromTraits (line 53) | func (s *Strategy) PasskeyDisplayNameFromTraits(ctx context.Context, tra... method PasskeyDisplayNameFromSchema (line 60) | func (s *Strategy) PasskeyDisplayNameFromSchema(ctx context.Context, sch... type passkeyDisplayNameExtension (line 85) | type passkeyDisplayNameExtension struct method Run (line 89) | func (i *passkeyDisplayNameExtension) Run(_ jsonschema.CompilerContext... method getLabel (line 105) | func (i *passkeyDisplayNameExtension) getLabel() string { FILE: selfservice/strategy/passkey/passkey_settings.go method SettingsStrategyID (line 43) | func (s *Strategy) SettingsStrategyID() string { return s.ID().String() } constant InternalContextKeySessionData (line 46) | InternalContextKeySessionData = "session_data" constant InternalContextKeySessionOptions (line 47) | InternalContextKeySessionOptions = "session_options" method PopulateSettingsMethod (line 50) | func (s *Strategy) PopulateSettingsMethod(ctx context.Context, r *http.R... method identityListWebAuthn (line 151) | func (s *Strategy) identityListWebAuthn(id *identity.Identity) (*identit... method Settings (line 165) | func (s *Strategy) Settings(ctx context.Context, w http.ResponseWriter, ... type updateSettingsFlowWithPasskeyMethod (line 204) | type updateSettingsFlowWithPasskeyMethod struct method GetFlowID (line 232) | func (p *updateSettingsFlowWithPasskeyMethod) GetFlowID() uuid.UUID { method SetFlowID (line 236) | func (p *updateSettingsFlowWithPasskeyMethod) SetFlowID(rid uuid.UUID) { method continueSettingsFlow (line 240) | func (s *Strategy) continueSettingsFlow( method continueSettingsFlowRemove (line 271) | func (s *Strategy) continueSettingsFlowRemove(ctx context.Context, w htt... method continueSettingsFlowAdd (line 324) | func (s *Strategy) continueSettingsFlowAdd(ctx context.Context, ctxUpdat... method decodeSettingsFlow (line 402) | func (s *Strategy) decodeSettingsFlow(r *http.Request, dest interface{})... method handleSettingsError (line 416) | func (s *Strategy) handleSettingsError(ctx context.Context, w http.Respo... FILE: selfservice/strategy/passkey/passkey_settings_test.go function TestCompleteSettings (line 56) | func TestCompleteSettings(t *testing.T) { function TestPopulateSettingsMethod (line 556) | func TestPopulateSettingsMethod(t *testing.T) { FILE: selfservice/strategy/passkey/passkey_strategy.go type dependencies (line 30) | type dependencies interface type Strategy (line 76) | type Strategy struct method ID (line 80) | func (*Strategy) ID() identity.CredentialsType { method NodeGroup (line 84) | func (*Strategy) NodeGroup() node.UiNodeGroup { method CompletedAuthenticationMethod (line 88) | func (s *Strategy) CompletedAuthenticationMethod(context.Context) sess... method CountActiveMultiFactorCredentials (line 95) | func (s *Strategy) CountActiveMultiFactorCredentials(_ context.Context... method CountActiveFirstFactorCredentials (line 99) | func (s *Strategy) CountActiveFirstFactorCredentials(_ context.Context... method countCredentials (line 103) | func (s *Strategy) countCredentials(cc map[identity.CredentialsType]id... function NewStrategy (line 78) | func NewStrategy(d dependencies) *Strategy { return &Strategy{d: d} } FILE: selfservice/strategy/passkey/testfixture_test.go function newRegistrationRegistry (line 38) | func newRegistrationRegistry(t *testing.T, cfgOpts ...configx.OptionModi... function newLoginRegistry (line 50) | func newLoginRegistry(t *testing.T, cfgOpts ...configx.OptionModifier) *... type fixture (line 71) | type fixture struct method checkURL (line 148) | func (fix *fixture) checkURL(t *testing.T, shouldRedirect bool, res *h... method loginViaBrowser (line 156) | func (fix *fixture) loginViaBrowser(t *testing.T, spa bool, cb func(ur... method createIdentityWithPasskey (line 163) | func (fix *fixture) createIdentityWithPasskey(t *testing.T, c identity... method submitWebAuthnLoginFlowWithClient (line 182) | func (fix *fixture) submitWebAuthnLoginFlowWithClient(t *testing.T, is... method submitWebAuthnLoginWithClient (line 197) | func (fix *fixture) submitWebAuthnLoginWithClient(t *testing.T, isSPA ... method submitWebAuthnLogin (line 202) | func (fix *fixture) submitWebAuthnLogin(t *testing.T, ctx context.Cont... method useReturnToFromTS (line 210) | func (fix *fixture) useReturnToFromTS(ts *httptest.Server) { method useRedirTS (line 214) | func (fix *fixture) useRedirTS() { fix.useReturnToFromTS(fix.... method useRedirNoSessionTS (line 215) | func (fix *fixture) useRedirNoSessionTS() { fix.useReturnToFromTS(fix.... method disableSessionAfterRegistration (line 217) | func (fix *fixture) disableSessionAfterRegistration() { method enableSessionAfterRegistration (line 224) | func (fix *fixture) enableSessionAfterRegistration() { method submitPasskeyBrowserRegistration (line 257) | func (fix *fixture) submitPasskeyBrowserRegistration( method submitPasskeyAndroidRegistration (line 267) | func (fix *fixture) submitPasskeyAndroidRegistration( method submitPasskeyRegistration (line 280) | func (fix *fixture) submitPasskeyRegistration( method makeRegistration (line 343) | func (fix *fixture) makeRegistration(t *testing.T, flowType string, va... method makeSuccessfulRegistration (line 351) | func (fix *fixture) makeSuccessfulRegistration(t *testing.T, flowType ... method makeUnsuccessfulRegistration (line 365) | func (fix *fixture) makeUnsuccessfulRegistration(t *testing.T, flowTyp... method createIdentityWithoutPasskey (line 370) | func (fix *fixture) createIdentityWithoutPasskey(t *testing.T) *identi... method createIdentityAndReturnIdentifier (line 377) | func (fix *fixture) createIdentityAndReturnIdentifier(t *testing.T, co... method createIdentity (line 412) | func (fix *fixture) createIdentity(t *testing.T) *identity.Identity { function newRegistrationFixture (line 83) | func newRegistrationFixture(t *testing.T, cfgOpts ...configx.OptionModif... function newLoginFixture (line 105) | func newLoginFixture(t *testing.T, cfgOpts ...configx.OptionModifier) *f... function newSettingsFixture (line 133) | func newSettingsFixture(t *testing.T, cfgOpts ...configx.OptionModifier)... type submitPasskeyOpt (line 231) | type submitPasskeyOpt struct type submitPasskeyOption (line 237) | type submitPasskeyOption function withUserID (line 239) | func withUserID(id string) submitPasskeyOption { function withInternalContext (line 245) | func withInternalContext(ic sqlxx.JSONRawMessage) submitPasskeyOption { function withInitFlowWithOption (line 251) | func withInitFlowWithOption(ifo []testhelpers.InitFlowWithOption) submit... FILE: selfservice/strategy/password/helpers.go function tidyForm (line 8) | func tidyForm(vv url.Values) url.Values { FILE: selfservice/strategy/password/helpers_test.go function TestTidyForm (line 13) | func TestTidyForm(t *testing.T) { FILE: selfservice/strategy/password/login.go method handleLoginError (line 39) | func (s *Strategy) handleLoginError(r *http.Request, f *login.Flow, payl... method Login (line 51) | func (s *Strategy) Login(w http.ResponseWriter, r *http.Request, f *logi... method migratePasswordHash (line 129) | func (s *Strategy) migratePasswordHash(ctx context.Context, identifier u... method PopulateLoginMethodFirstFactorRefresh (line 158) | func (s *Strategy) PopulateLoginMethodFirstFactorRefresh(r *http.Request... method addIdentifierNode (line 183) | func (s *Strategy) addIdentifierNode(r *http.Request, sr *login.Flow) er... method PopulateLoginMethodFirstFactor (line 198) | func (s *Strategy) PopulateLoginMethodFirstFactor(r *http.Request, sr *l... method PopulateLoginMethodIdentifierFirstCredentials (line 209) | func (s *Strategy) PopulateLoginMethodIdentifierFirstCredentials(r *http... method PopulateLoginMethodIdentifierFirstIdentification (line 238) | func (s *Strategy) PopulateLoginMethodIdentifierFirstIdentification(r *h... FILE: selfservice/strategy/password/login_test.go function createIdentity (line 56) | func createIdentity(ctx context.Context, reg *driver.RegistryDefault, t ... function TestCompleteLogin (line 83) | func TestCompleteLogin(t *testing.T) { function TestFormHydration (line 1235) | func TestFormHydration(t *testing.T) { FILE: selfservice/strategy/password/nodes.go function NewPasswordNode (line 11) | func NewPasswordNode(name string, autocomplete node.UiNodeInputAttribute... FILE: selfservice/strategy/password/op_helpers_test.go type clientAppConfig (line 30) | type clientAppConfig struct type clientAppState (line 36) | type clientAppState struct type callTrace (line 41) | type callTrace constant RegistrationUI (line 44) | RegistrationUI callTrace = "registration-ui" constant RegistrationWithOAuth2LoginChallenge (line 45) | RegistrationWithOAuth2LoginChallenge callTrace = "registration-with-oaut... constant RegistrationWithFlowID (line 46) | RegistrationWithFlowID callTrace = "registration-with-flow... constant LoginUI (line 47) | LoginUI callTrace = "login-ui" constant LoginWithOAuth2LoginChallenge (line 48) | LoginWithOAuth2LoginChallenge callTrace = "login-with-oauth2-logi... constant LoginWithFlowID (line 49) | LoginWithFlowID callTrace = "login-with-flow-id" constant Consent (line 50) | Consent callTrace = "consent" constant ConsentWithChallenge (line 51) | ConsentWithChallenge callTrace = "consent-with-challenge" constant ConsentAccept (line 52) | ConsentAccept callTrace = "consent-accept" constant ConsentSkip (line 53) | ConsentSkip callTrace = "consent-skip" constant ConsentClientSkip (line 54) | ConsentClientSkip callTrace = "consent-client-skip" constant CodeExchange (line 55) | CodeExchange callTrace = "code-exchange" constant CodeExchangeWithToken (line 56) | CodeExchangeWithToken callTrace = "code-exchange-with-token" type testContextKey (line 59) | type testContextKey constant TestUIConfig (line 62) | TestUIConfig testContextKey = "test-ui-config" constant TestOAuthClientState (line 63) | TestOAuthClientState testContextKey = "test-oauth-client-state" type testConfig (line 66) | type testConfig struct function createHydraOAuth2ApiClient (line 78) | func createHydraOAuth2ApiClient(url string) hydraclientgo.OAuth2API { function createOAuth2Client (line 86) | func createOAuth2Client(t *testing.T, ctx context.Context, hydraAdmin hy... function makeAuthCodeURL (line 108) | func makeAuthCodeURL(t *testing.T, c *oauth2.Config, requestedClaims str... function newHydra (line 124) | func newHydra(t *testing.T, loginUI string, consentUI string) (hydraAdmi... type TestLogWriter (line 190) | type TestLogWriter struct method Write (line 195) | func (t TestLogWriter) Write(p []byte) (int, error) { function doOAuthFlow (line 200) | func doOAuthFlow(t *testing.T, ctx context.Context, oauthClient *oauth2.... FILE: selfservice/strategy/password/op_login_test.go function TestOAuth2Provider (line 37) | func TestOAuth2Provider(t *testing.T) { type AcceptWrongSubject (line 839) | type AcceptWrongSubject struct method AcceptLoginRequest (line 843) | func (h *AcceptWrongSubject) AcceptLoginRequest(ctx context.Context, p... method GetLoginRequest (line 848) | func (h *AcceptWrongSubject) GetLoginRequest(ctx context.Context, logi... FILE: selfservice/strategy/password/op_registration_test.go function TestOAuth2ProviderRegistration (line 31) | func TestOAuth2ProviderRegistration(t *testing.T) { FILE: selfservice/strategy/password/registration.go function nodePasswordInput (line 30) | func nodePasswordInput() *node.Node { function nodeSubmit (line 34) | func nodeSubmit() *node.Node { type UpdateRegistrationFlowWithPasswordMethod (line 43) | type UpdateRegistrationFlowWithPasswordMethod struct method handleRegistrationError (line 70) | func (s *Strategy) handleRegistrationError(r *http.Request, f *registrat... method decode (line 85) | func (s *Strategy) decode(p *UpdateRegistrationFlowWithPasswordMethod, r... method Register (line 89) | func (s *Strategy) Register(_ http.ResponseWriter, r *http.Request, f *r... method validateCredentials (line 164) | func (s *Strategy) validateCredentials(ctx context.Context, i *identity.... method PopulateRegistrationMethod (line 195) | func (s *Strategy) PopulateRegistrationMethod(r *http.Request, f *regist... method PopulateRegistrationMethodCredentials (line 237) | func (s *Strategy) PopulateRegistrationMethodCredentials(r *http.Request... method PopulateRegistrationMethodProfile (line 244) | func (s *Strategy) PopulateRegistrationMethodProfile(r *http.Request, f ... FILE: selfservice/strategy/password/registration_test.go function newRegistrationRegistry (line 44) | func newRegistrationRegistry(t *testing.T, cfgOpts ...configx.OptionModi... function TestRegistration (line 56) | func TestRegistration(t *testing.T) { function TestPopulateRegistrationMethod (line 904) | func TestPopulateRegistrationMethod(t *testing.T) { FILE: selfservice/strategy/password/settings.go method SettingsStrategyID (line 35) | func (s *Strategy) SettingsStrategyID() string { type updateSettingsFlowWithPasswordMethod (line 42) | type updateSettingsFlowWithPasswordMethod struct method GetFlowID (line 69) | func (p *updateSettingsFlowWithPasswordMethod) GetFlowID() uuid.UUID { method SetFlowID (line 73) | func (p *updateSettingsFlowWithPasswordMethod) SetFlowID(rid uuid.UUID) { method Settings (line 77) | func (s *Strategy) Settings(ctx context.Context, w http.ResponseWriter, ... method decodeSettingsFlow (line 106) | func (s *Strategy) decodeSettingsFlow(r *http.Request, dest interface{})... function getPasswordHashFromCredential (line 121) | func getPasswordHashFromCredential(creds map[identity.CredentialsType]id... function isNewPasswordSameAsOld (line 142) | func isNewPasswordSameAsOld(ctx context.Context, oldHashedPassword strin... method continueSettingsFlow (line 151) | func (s *Strategy) continueSettingsFlow(ctx context.Context, r *http.Req... method PopulateSettingsMethod (line 216) | func (s *Strategy) PopulateSettingsMethod(ctx context.Context, r *http.R... method handleSettingsError (line 227) | func (s *Strategy) handleSettingsError(ctx context.Context, w http.Respo... FILE: selfservice/strategy/password/settings_test.go function init (line 42) | func init() { function newIdentityWithPassword (line 46) | func newIdentityWithPassword(email string) *identity.Identity { function newEmptyIdentity (line 63) | func newEmptyIdentity() *identity.Identity { function newIdentityWithoutCredentials (line 73) | func newIdentityWithoutCredentials(email string) *identity.Identity { function TestSettings (line 83) | func TestSettings(t *testing.T) { FILE: selfservice/strategy/password/strategy.go type dependencies (line 38) | type dependencies interface type Strategy (line 78) | type Strategy struct method CountActiveFirstFactorCredentials (line 82) | func (s *Strategy) CountActiveFirstFactorCredentials(ctx context.Conte... method CountActiveMultiFactorCredentials (line 100) | func (s *Strategy) CountActiveMultiFactorCredentials(_ context.Context... method ID (line 104) | func (s *Strategy) ID() identity.CredentialsType { method CompletedAuthenticationMethod (line 108) | func (s *Strategy) CompletedAuthenticationMethod(_ context.Context) se... method NodeGroup (line 115) | func (s *Strategy) NodeGroup() node.UiNodeGroup { function NewStrategy (line 80) | func NewStrategy(d dependencies) *Strategy { return &Strategy{d: d} } FILE: selfservice/strategy/password/strategy_disabled_test.go function TestDisabledEndpoint (line 22) | func TestDisabledEndpoint(t *testing.T) { FILE: selfservice/strategy/password/strategy_test.go function generateRandomConfig (line 25) | func generateRandomConfig(t *testing.T) (identity.CredentialsPassword, [... function TestCountActiveFirstFactorCredentials (line 34) | func TestCountActiveFirstFactorCredentials(t *testing.T) { FILE: selfservice/strategy/password/types.go type updateLoginFlowWithPasswordMethod (line 11) | type updateLoginFlowWithPasswordMethod struct FILE: selfservice/strategy/password/validator.go constant hashCacheItemTTL (line 29) | hashCacheItemTTL = time.Hour type Validator (line 33) | type Validator interface type ValidationProvider (line 40) | type ValidationProvider interface type DefaultPasswordValidator (line 59) | type DefaultPasswordValidator struct method fetch (line 119) | func (s *DefaultPasswordValidator) fetch(ctx context.Context, hpw []by... method Validate (line 169) | func (s *DefaultPasswordValidator) Validate(ctx context.Context, ident... method validate (line 175) | func (s *DefaultPasswordValidator) validate(ctx context.Context, ident... type validatorDependencies (line 68) | type validatorDependencies interface function NewDefaultPasswordValidatorStrategy (line 72) | func NewDefaultPasswordValidatorStrategy(reg validatorDependencies) (*De... function b20 (line 93) | func b20(src []byte) string { function lcsLength (line 98) | func lcsLength(a, b string) int { FILE: selfservice/strategy/password/validator_lcs_test.go function TestLCSLength (line 13) | func TestLCSLength(t *testing.T) { FILE: selfservice/strategy/password/validator_test.go function TestDefaultPasswordValidationStrategy (line 33) | func TestDefaultPasswordValidationStrategy(t *testing.T) { function TestChangeHaveIBeenPwnedValidationHost (line 266) | func TestChangeHaveIBeenPwnedValidationHost(t *testing.T) { function TestDisableHaveIBeenPwnedValidationHost (line 291) | func TestDisableHaveIBeenPwnedValidationHost(t *testing.T) { function TestChangeMinPasswordLength (line 308) | func TestChangeMinPasswordLength(t *testing.T) { function TestChangeIdentifierSimilarityCheckEnabled (line 324) | func TestChangeIdentifierSimilarityCheckEnabled(t *testing.T) { type fakeHttpClient (line 342) | type fakeHttpClient struct method RespondWith (line 362) | func (c *fakeHttpClient) RespondWith(status int, body string) { method RespondWithError (line 374) | func (c *fakeHttpClient) RespondWithError(err string) { method Reset (line 380) | func (c *fakeHttpClient) Reset() { method RequestedURLs (line 384) | func (c *fakeHttpClient) RequestedURLs() []string { method handle (line 388) | func (c *fakeHttpClient) handle(request *http.Request) (*http.Response... function NewFakeHTTPClient (line 349) | func NewFakeHTTPClient() *fakeHttpClient { type fakeRoundTripper (line 396) | type fakeRoundTripper struct method RoundTrip (line 400) | func (rt *fakeRoundTripper) RoundTrip(request *http.Request) (*http.Re... FILE: selfservice/strategy/profile/nodes.go function nodePreviousScreen (line 11) | func nodePreviousScreen() *node.Node { function nodeSubmitProfile (line 20) | func nodeSubmitProfile() *node.Node { FILE: selfservice/strategy/profile/registration.go type RegistrationScreen (line 34) | type RegistrationScreen constant RegistrationScreenCredentialSelection (line 38) | RegistrationScreenCredentialSelection RegistrationScreen = "credential-s... constant RegistrationScreenPrevious (line 39) | RegistrationScreenPrevious RegistrationScreen = "previous" type updateRegistrationFlowWithProfileMethod (line 51) | type updateRegistrationFlowWithProfileMethod struct method ID (line 90) | func (s *Strategy) ID() identity.CredentialsType { method PopulateRegistrationMethodCredentials (line 94) | func (s *Strategy) PopulateRegistrationMethodCredentials(r *http.Request... method PopulateRegistrationMethodProfile (line 111) | func (s *Strategy) PopulateRegistrationMethodProfile(r *http.Request, f ... method PopulateRegistrationMethod (line 141) | func (s *Strategy) PopulateRegistrationMethod(r *http.Request, f *regist... method decode (line 160) | func (s *Strategy) decode(p *updateRegistrationFlowWithProfileMethod, r ... method Register (line 181) | func (s *Strategy) Register(w http.ResponseWriter, r *http.Request, regF... method returnToProfileForm (line 222) | func (s *Strategy) returnToProfileForm(ctx context.Context, w http.Respo... method showCredentialsSelection (line 261) | func (s *Strategy) showCredentialsSelection(ctx context.Context, w http.... method handleRegistrationError (line 330) | func (s *Strategy) handleRegistrationError(r *http.Request, regFlow *reg... FILE: selfservice/strategy/profile/registration_test.go function TestTwoStepRegistration (line 32) | func TestTwoStepRegistration(t *testing.T) { function TestOneStepRegistration (line 178) | func TestOneStepRegistration(t *testing.T) { function TestPopulateRegistrationMethod (line 250) | func TestPopulateRegistrationMethod(t *testing.T) { FILE: selfservice/strategy/profile/strategy.go type strategyDependencies (line 44) | type strategyDependencies interface type Strategy (line 75) | type Strategy struct method SettingsStrategyID (line 80) | func (s *Strategy) SettingsStrategyID() string { method PopulateSettingsMethod (line 84) | func (s *Strategy) PopulateSettingsMethod(ctx context.Context, r *http... method Settings (line 116) | func (s *Strategy) Settings(ctx context.Context, w http.ResponseWriter... method continueFlow (line 155) | func (s *Strategy) continueFlow(ctx context.Context, r *http.Request, ... method hydrateForm (line 235) | func (s *Strategy) hydrateForm(r *http.Request, ar *settings.Flow, tra... method handleSettingsError (line 247) | func (s *Strategy) handleSettingsError(ctx context.Context, w http.Res... method newSettingsProfileDecoder (line 275) | func (s *Strategy) newSettingsProfileDecoder(ctx context.Context, i *i... method NodeGroup (line 298) | func (s *Strategy) NodeGroup() node.UiNodeGroup { function NewStrategy (line 78) | func NewStrategy(d strategyDependencies) *Strategy { return &Strategy{d:... type updateSettingsFlowWithProfileMethod (line 196) | type updateSettingsFlowWithProfileMethod struct method GetFlowID (line 227) | func (p *updateSettingsFlowWithProfileMethod) GetFlowID() uuid.UUID { method SetFlowID (line 231) | func (p *updateSettingsFlowWithProfileMethod) SetFlowID(rid uuid.UUID) { function SortForHydration (line 303) | func SortForHydration(strats registration.Strategies) registration.Strat... FILE: selfservice/strategy/profile/strategy_test.go function init (line 54) | func init() { function newIdentityWithPassword (line 58) | func newIdentityWithPassword(email string) *identity.Identity { function TestStrategyTraits (line 72) | func TestStrategyTraits(t *testing.T) { function TestDisabledEndpoint (line 627) | func TestDisabledEndpoint(t *testing.T) { function TestSortedForHydration (line 655) | func TestSortedForHydration(t *testing.T) { FILE: selfservice/strategy/saml/login.go type _ (line 11) | type _ struct FILE: selfservice/strategy/saml/registration.go type _ (line 11) | type _ struct FILE: selfservice/strategy/saml/settings.go type _ (line 11) | type _ struct FILE: selfservice/strategy/totp/generator.go constant secretSize (line 27) | secretSize = 160 / 8 constant digits (line 28) | digits = otp.DigitsSix function NewKey (line 30) | func NewKey(ctx context.Context, accountName string, d interface { function KeyToHTMLImage (line 47) | func KeyToHTMLImage(key *otp.Key) (string, error) { FILE: selfservice/strategy/totp/generator_test.go function TestGenerator (line 20) | func TestGenerator(t *testing.T) { FILE: selfservice/strategy/totp/login.go method PopulateLoginMethod (line 28) | func (s *Strategy) PopulateLoginMethod(r *http.Request, requestedAAL ide... method handleLoginError (line 58) | func (s *Strategy) handleLoginError(r *http.Request, f *login.Flow, err ... type updateLoginFlowWithTotpMethod (line 72) | type updateLoginFlowWithTotpMethod struct method Login (line 92) | func (s *Strategy) Login(_ http.ResponseWriter, r *http.Request, f *logi... FILE: selfservice/strategy/totp/login_test.go constant totpCodeGJSONQuery (line 43) | totpCodeGJSONQuery = "ui.nodes.#(attributes.name==totp_code)" function createIdentityWithoutTOTP (line 45) | func createIdentityWithoutTOTP(ctx context.Context, t *testing.T, reg dr... function createIdentity (line 52) | func createIdentity(ctx context.Context, t *testing.T, reg driver.Regist... function TestCompleteLogin (line 87) | func TestCompleteLogin(t *testing.T) { function TestFormHydration (line 446) | func TestFormHydration(t *testing.T) { FILE: selfservice/strategy/totp/nodes.go function NewVerifyTOTPNode (line 13) | func NewVerifyTOTPNode() *node.Node { function NewTOTPImageQRNode (line 20) | func NewTOTPImageQRNode(key *otp.Key) (*node.Node, error) { function NewTOTPSourceURLNode (line 32) | func NewTOTPSourceURLNode(key *otp.Key) *node.Node { function NewUnlinkTOTPNode (line 38) | func NewUnlinkTOTPNode() *node.Node { FILE: selfservice/strategy/totp/schema_extension.go type SchemaExtension (line 14) | type SchemaExtension struct method Run (line 23) | func (r *SchemaExtension) Run(_ jsonschema.ValidationContext, s schema... method Finish (line 32) | func (r *SchemaExtension) Finish() error { function NewSchemaExtension (line 19) | func NewSchemaExtension(fallback string) *SchemaExtension { FILE: selfservice/strategy/totp/settings.go constant InternalContextKeyURL (line 38) | InternalContextKeyURL = "url" method SettingsStrategyID (line 40) | func (s *Strategy) SettingsStrategyID() string { type updateSettingsFlowWithTotpMethod (line 47) | type updateSettingsFlowWithTotpMethod struct method GetFlowID (line 77) | func (p *updateSettingsFlowWithTotpMethod) GetFlowID() uuid.UUID { method SetFlowID (line 81) | func (p *updateSettingsFlowWithTotpMethod) SetFlowID(rid uuid.UUID) { method Settings (line 85) | func (s *Strategy) Settings(ctx context.Context, w http.ResponseWriter, ... method decodeSettingsFlow (line 120) | func (s *Strategy) decodeSettingsFlow(r *http.Request, dest interface{})... method continueSettingsFlow (line 134) | func (s *Strategy) continueSettingsFlow(ctx context.Context, r *http.Req... method continueSettingsFlowAddTOTP (line 171) | func (s *Strategy) continueSettingsFlowAddTOTP(ctx context.Context, ctxU... method continueSettingsFlowRemoveTOTP (line 230) | func (s *Strategy) continueSettingsFlowRemoveTOTP(ctx context.Context, c... method identityHasTOTP (line 244) | func (s *Strategy) identityHasTOTP(ctx context.Context, id *identity.Ide... method PopulateSettingsMethod (line 259) | func (s *Strategy) PopulateSettingsMethod(ctx context.Context, r *http.R... method handleSettingsError (line 302) | func (s *Strategy) handleSettingsError(ctx context.Context, w http.Respo... FILE: selfservice/strategy/totp/settings_test.go function TestCompleteSettings (line 38) | func TestCompleteSettings(t *testing.T) { FILE: selfservice/strategy/totp/strategy.go type dependencies (line 38) | type dependencies interface type Strategy (line 77) | type Strategy struct method CountActiveFirstFactorCredentials (line 81) | func (s *Strategy) CountActiveFirstFactorCredentials(_ context.Context... method CountActiveMultiFactorCredentials (line 85) | func (s *Strategy) CountActiveMultiFactorCredentials(_ context.Context... method ID (line 102) | func (s *Strategy) ID() identity.CredentialsType { method NodeGroup (line 106) | func (s *Strategy) NodeGroup() node.UiNodeGroup { method CompletedAuthenticationMethod (line 110) | func (s *Strategy) CompletedAuthenticationMethod(ctx context.Context) ... method PopulateLoginMethodSecondFactor (line 117) | func (s *Strategy) PopulateLoginMethodSecondFactor(r *http.Request, f ... method PopulateLoginMethodSecondFactorRefresh (line 121) | func (s *Strategy) PopulateLoginMethodSecondFactorRefresh(r *http.Requ... function NewStrategy (line 79) | func NewStrategy(d dependencies) *Strategy { return &Strategy{d: d} } FILE: selfservice/strategy/totp/strategy_test.go function TestCountActiveCredentials (line 18) | func TestCountActiveCredentials(t *testing.T) { FILE: selfservice/strategy/webauthn/login.go method populateLoginMethodForPasswordless (line 50) | func (s *Strategy) populateLoginMethodForPasswordless(r *http.Request, s... method populateLoginMethod (line 56) | func (s *Strategy) populateLoginMethod(r *http.Request, sr *login.Flow, ... method handleLoginError (line 113) | func (s *Strategy) handleLoginError(r *http.Request, f *login.Flow, err ... type updateLoginFlowWithWebAuthnMethod (line 127) | type updateLoginFlowWithWebAuthnMethod struct method Login (line 152) | func (s *Strategy) Login(w http.ResponseWriter, r *http.Request, f *logi... method loginPasswordless (line 194) | func (s *Strategy) loginPasswordless(ctx context.Context, w http.Respons... method loginAuthenticate (line 251) | func (s *Strategy) loginAuthenticate(ctx context.Context, r *http.Reques... method loginMultiFactor (line 308) | func (s *Strategy) loginMultiFactor(ctx context.Context, r *http.Request... method populateLoginMethodRefresh (line 316) | func (s *Strategy) populateLoginMethodRefresh(r *http.Request, sr *login... method PopulateLoginMethodFirstFactorRefresh (line 337) | func (s *Strategy) PopulateLoginMethodFirstFactorRefresh(r *http.Request... method PopulateLoginMethodSecondFactorRefresh (line 341) | func (s *Strategy) PopulateLoginMethodSecondFactorRefresh(r *http.Reques... method PopulateLoginMethodFirstFactor (line 345) | func (s *Strategy) PopulateLoginMethodFirstFactor(r *http.Request, sr *l... method PopulateLoginMethodSecondFactor (line 380) | func (s *Strategy) PopulateLoginMethodSecondFactor(r *http.Request, sr *... method PopulateLoginMethodIdentifierFirstCredentials (line 400) | func (s *Strategy) PopulateLoginMethodIdentifierFirstCredentials(r *http... method PopulateLoginMethodIdentifierFirstIdentification (line 435) | func (s *Strategy) PopulateLoginMethodIdentifierFirstIdentification(r *h... FILE: selfservice/strategy/webauthn/login_test.go function TestCompleteLogin (line 77) | func TestCompleteLogin(t *testing.T) { function TestFormHydration (line 639) | func TestFormHydration(t *testing.T) { FILE: selfservice/strategy/webauthn/nodes.go function nodeWebauthnRegistrationOptions (line 12) | func nodeWebauthnRegistrationOptions(opts []byte) *node.Node { function nodeDisplayName (line 16) | func nodeDisplayName() *node.Node { return webauthnx.NewWebAuthnConn... function nodeConnectionInput (line 17) | func nodeConnectionInput() *node.Node { return webauthnx.NewWebAuthnConn... FILE: selfservice/strategy/webauthn/registration.go type updateRegistrationFlowWithWebAuthnMethod (line 37) | type updateRegistrationFlowWithWebAuthnMethod struct method handleRegistrationError (line 75) | func (s *Strategy) handleRegistrationError(r *http.Request, f *registrat... method decode (line 92) | func (s *Strategy) decode(p *updateRegistrationFlowWithWebAuthnMethod, r... method Register (line 96) | func (s *Strategy) Register(_ http.ResponseWriter, r *http.Request, regF... method injectWebauthnRegistrationOptions (line 198) | func (s *Strategy) injectWebauthnRegistrationOptions(r *http.Request, f ... method PopulateRegistrationMethod (line 234) | func (s *Strategy) PopulateRegistrationMethod(r *http.Request, f *regist... method PopulateRegistrationMethodProfile (line 254) | func (s *Strategy) PopulateRegistrationMethodProfile(r *http.Request, f ... method PopulateRegistrationMethodCredentials (line 274) | func (s *Strategy) PopulateRegistrationMethodCredentials(r *http.Request... FILE: selfservice/strategy/webauthn/registration_test.go function flowToIsSPA (line 49) | func flowToIsSPA(flow string) bool { function newRegistrationRegistry (line 53) | func newRegistrationRegistry(t *testing.T, cfgOpts ...configx.OptionModi... function TestRegistration (line 66) | func TestRegistration(t *testing.T) { function TestPopulateRegistrationMethod (line 545) | func TestPopulateRegistrationMethod(t *testing.T) { FILE: selfservice/strategy/webauthn/settings.go method SettingsStrategyID (line 46) | func (s *Strategy) SettingsStrategyID() string { constant InternalContextKeySessionData (line 51) | InternalContextKeySessionData = "session_data" constant InternalContextKeyWebauthnOptions (line 52) | InternalContextKeyWebauthnOptions = "session_options" type updateSettingsFlowWithWebAuthnMethod (line 58) | type updateSettingsFlowWithWebAuthnMethod struct method GetFlowID (line 96) | func (p *updateSettingsFlowWithWebAuthnMethod) GetFlowID() uuid.UUID { method SetFlowID (line 100) | func (p *updateSettingsFlowWithWebAuthnMethod) SetFlowID(rid uuid.UUID) { method Settings (line 104) | func (s *Strategy) Settings(ctx context.Context, w http.ResponseWriter, ... method decodeSettingsFlow (line 144) | func (s *Strategy) decodeSettingsFlow(r *http.Request, dest interface{})... method continueSettingsFlow (line 158) | func (s *Strategy) continueSettingsFlow( method continueSettingsFlowRemove (line 188) | func (s *Strategy) continueSettingsFlowRemove(ctx context.Context, w htt... method continueSettingsFlowAdd (line 244) | func (s *Strategy) continueSettingsFlowAdd(ctx context.Context, ctxUpdat... method identityListWebAuthn (line 326) | func (s *Strategy) identityListWebAuthn(id *identity.Identity) (*identit... method PopulateSettingsMethod (line 340) | func (s *Strategy) PopulateSettingsMethod(ctx context.Context, r *http.R... method handleSettingsError (line 398) | func (s *Strategy) handleSettingsError(ctx context.Context, w http.Respo... FILE: selfservice/strategy/webauthn/settings_test.go constant registerDisplayNameGJSONQuery (line 56) | registerDisplayNameGJSONQuery = "ui.nodes.#(attributes.name==" + node.We... function createIdentityWithoutWebAuthn (line 58) | func createIdentityWithoutWebAuthn(t *testing.T, reg driver.Registry) *i... function createIdentityAndReturnIdentifier (line 65) | func createIdentityAndReturnIdentifier(ctx context.Context, t *testing.T... function createIdentity (line 102) | func createIdentity(ctx context.Context, t *testing.T, reg driver.Regist... function ensureReplacement (line 117) | func ensureReplacement(t *testing.T, index string, ui kratos.UiContainer... function TestCompleteSettings (line 123) | func TestCompleteSettings(t *testing.T) { FILE: selfservice/strategy/webauthn/strategy.go type dependencies (line 36) | type dependencies interface type Strategy (line 76) | type Strategy struct method CountActiveMultiFactorCredentials (line 80) | func (s *Strategy) CountActiveMultiFactorCredentials(_ context.Context... method CountActiveFirstFactorCredentials (line 84) | func (s *Strategy) CountActiveFirstFactorCredentials(_ context.Context... method countCredentials (line 88) | func (s *Strategy) countCredentials(cc map[identity.CredentialsType]id... method ID (line 117) | func (s *Strategy) ID() identity.CredentialsType { method NodeGroup (line 121) | func (s *Strategy) NodeGroup() node.UiNodeGroup { method CompletedAuthenticationMethod (line 125) | func (s *Strategy) CompletedAuthenticationMethod(ctx context.Context) ... function NewStrategy (line 78) | func NewStrategy(d dependencies) *Strategy { return &Strategy{d: d} } FILE: selfservice/strategy/webauthn/strategy_test.go function TestCompletedAuthenticationMethod (line 21) | func TestCompletedAuthenticationMethod(t *testing.T) { function TestCountActiveFirstFactorCredentials (line 41) | func TestCountActiveFirstFactorCredentials(t *testing.T) { FILE: selfservice/strategy/webauthn/validate.go method validateCredentials (line 13) | func (s *Strategy) validateCredentials(ctx context.Context, i *identity.... FILE: session/error.go function RespondWithJSONErrorOnAuthenticated (line 12) | func RespondWithJSONErrorOnAuthenticated(h herodot.Writer, err error) ht... FILE: session/expand.go constant ExpandSessionDevices (line 17) | ExpandSessionDevices Expandable = "Devices" constant ExpandSessionIdentity (line 19) | ExpandSessionIdentity Expandable = "Identity" constant ExpandSessionIdentityRecoveryAddress (line 20) | ExpandSessionIdentityRecoveryAddress Expandable = "Identity.RecoveryAd... constant ExpandSessionIdentityVerifiableAddress (line 21) | ExpandSessionIdentityVerifiableAddress Expandable = "Identity.Verifiable... function ParseExpandable (line 32) | func ParseExpandable(in string) (Expandable, bool) { FILE: session/expand_test.go function TestExpandableSearch_ExistingExpand (line 12) | func TestExpandableSearch_ExistingExpand(t *testing.T) { function TestExpandableSearch_NonExistingExpandOption (line 18) | func TestExpandableSearch_NonExistingExpandOption(t *testing.T) { function TestExpandables_ToEager_skips_Identity (line 24) | func TestExpandables_ToEager_skips_Identity(t *testing.T) { function TestExpandables_ExpandNothing_IsEmpty (line 31) | func TestExpandables_ExpandNothing_IsEmpty(t *testing.T) { FILE: session/handler.go type handlerDependencies (line 39) | type handlerDependencies interface type HandlerProvider (line 50) | type HandlerProvider interface type Handler (line 53) | type Handler struct method RegisterAdminRoutes (line 71) | func (h *Handler) RegisterAdminRoutes(admin *httprouterx.RouterAdmin) { method RegisterPublicRoutes (line 83) | func (h *Handler) RegisterPublicRoutes(public *httprouterx.RouterPubli... method whoami (line 211) | func (h *Handler) whoami(w http.ResponseWriter, r *http.Request) { method deleteIdentitySessions (line 309) | func (h *Handler) deleteIdentitySessions(w http.ResponseWriter, r *htt... method adminListSessions (line 391) | func (h *Handler) adminListSessions(w http.ResponseWriter, r *http.Req... method getSession (line 478) | func (h *Handler) getSession(w http.ResponseWriter, r *http.Request) { method disableSession (line 550) | func (h *Handler) disableSession(w http.ResponseWriter, r *http.Reques... method listIdentitySessions (line 619) | func (h *Handler) listIdentitySessions(w http.ResponseWriter, r *http.... method deleteMySessions (line 696) | func (h *Handler) deleteMySessions(w http.ResponseWriter, r *http.Requ... method deleteMySession (line 758) | func (h *Handler) deleteMySession(w http.ResponseWriter, r *http.Reque... method listMySessions (line 845) | func (h *Handler) listMySessions(w http.ResponseWriter, r *http.Reques... method IsAuthenticated (line 883) | func (h *Handler) IsAuthenticated(wrap http.HandlerFunc, onUnauthentic... method adminSessionExtend (line 943) | func (h *Handler) adminSessionExtend(w http.ResponseWriter, r *http.Re... method IsNotAuthenticated (line 973) | func (h *Handler) IsNotAuthenticated(wrap http.HandlerFunc, onAuthenti... method exchangeCode (line 1079) | func (h *Handler) exchangeCode(w http.ResponseWriter, r *http.Request) { function NewHandler (line 56) | func NewHandler(r handlerDependencies) *Handler { return &Handler{r: r} } constant RouteCollection (line 59) | RouteCollection = "/sessions" constant RouteExchangeCodeForSessionToken (line 60) | RouteExchangeCodeForSessionToken = RouteCollection + "/token-exchange" constant RouteWhoami (line 61) | RouteWhoami = RouteCollection + "/whoami" constant RouteSession (line 62) | RouteSession = RouteCollection + "/{id}" constant AdminRouteIdentity (line 66) | AdminRouteIdentity = "/identities" constant AdminRouteIdentitiesSessions (line 67) | AdminRouteIdentitiesSessions = AdminRouteIdentity + "/{id}/sessions" constant AdminRouteSessionExtendId (line 68) | AdminRouteSessionExtendId = RouteSession + "/extend" type toSession (line 111) | type toSession struct type deleteIdentitySessions (line 281) | type deleteIdentitySessions struct type listSessionsRequest (line 331) | type listSessionsRequest struct type SessionExpandable (line 350) | type SessionExpandable constant SessionExpandableIdentity (line 353) | SessionExpandableIdentity SessionExpandable = "identity" constant SessionExpandableDevices (line 354) | SessionExpandableDevices SessionExpandable = "devices" type listSessionsResponse (line 365) | type listSessionsResponse struct type getSession (line 442) | type getSession struct type disableSession (line 523) | type disableSession struct type listIdentitySessionsRequest (line 571) | type listIdentitySessionsRequest struct type listIdentitySessionsResponse (line 593) | type listIdentitySessionsResponse struct type deleteMySessionsCount (line 652) | type deleteMySessionsCount struct type disableMyOtherSessions (line 663) | type disableMyOtherSessions struct type disableMySession (line 719) | type disableMySession struct type listMySessionsParameters (line 797) | type listMySessionsParameters struct type listMySessionsResponse (line 821) | type listMySessionsResponse struct type sessionInContext (line 877) | type sessionInContext constant sessionInContextKey (line 880) | sessionInContextKey sessionInContext = iota type extendSession (line 905) | type extendSession struct function RedirectOnAuthenticated (line 993) | func RedirectOnAuthenticated(d interface{ config.Provider }) http.Handle... function RedirectOnUnauthenticated (line 1006) | func RedirectOnUnauthenticated(to string) http.HandlerFunc { function RespondWitherrorGenericOnAuthenticated (line 1012) | func RespondWitherrorGenericOnAuthenticated(h herodot.Writer, err error)... type exchangeSessionToken (line 1024) | type exchangeSessionToken struct type CodeExchangeResponse (line 1041) | type CodeExchangeResponse struct FILE: session/handler_test.go function init (line 46) | func init() { function send (line 50) | func send(code int) http.HandlerFunc { function TestSessionWhoAmI (line 56) | func TestSessionWhoAmI(t *testing.T) { function TestIsNotAuthenticatedSecurecookie (line 351) | func TestIsNotAuthenticatedSecurecookie(t *testing.T) { function TestIsNotAuthenticated (line 381) | func TestIsNotAuthenticated(t *testing.T) { function TestIsAuthenticated (line 437) | func TestIsAuthenticated(t *testing.T) { function TestHandlerAdminSessionManagement (line 492) | func TestHandlerAdminSessionManagement(t *testing.T) { function TestHandlerSelfServiceSessionManagement (line 858) | func TestHandlerSelfServiceSessionManagement(t *testing.T) { function TestHandlerRefreshSessionBySessionID (line 1045) | func TestHandlerRefreshSessionBySessionID(t *testing.T) { type byCreatedAt (line 1099) | type byCreatedAt method Len (line 1101) | func (s byCreatedAt) Len() int { return len(s) } method Swap (line 1102) | func (s byCreatedAt) Swap(i, j int) { s[i], s[j] = s[j], s[i] } method Less (line 1103) | func (s byCreatedAt) Less(i, j int) bool { FILE: session/helper.go function bearerTokenFromRequest (line 11) | func bearerTokenFromRequest(r *http.Request) (string, bool) { FILE: session/helper_test.go function TestBearerTokenFromRequest (line 14) | func TestBearerTokenFromRequest(t *testing.T) { FILE: session/manager.go type ErrNoActiveSessionFound (line 25) | type ErrNoActiveSessionFound struct method EnhanceJSONError (line 46) | func (e *ErrNoActiveSessionFound) EnhanceJSONError() interface{} { function NewErrNoActiveSessionFound (line 33) | func NewErrNoActiveSessionFound() *ErrNoActiveSessionFound { function NewErrNoCredentialsForSession (line 40) | func NewErrNoCredentialsForSession() *ErrNoActiveSessionFound { type errorAuthenticatorAssuranceLevelNotSatisfied (line 56) | type errorAuthenticatorAssuranceLevelNotSatisfied struct type ErrAALNotSatisfied (line 64) | type ErrAALNotSatisfied struct method EnhanceJSONError (line 69) | func (e *ErrAALNotSatisfied) EnhanceJSONError() interface{} { method PassReturnToAndLoginChallengeParameters (line 73) | func (e *ErrAALNotSatisfied) PassReturnToAndLoginChallengeParameters(r... function NewErrAALNotSatisfied (line 102) | func NewErrAALNotSatisfied(redirectTo string) *ErrAALNotSatisfied { type Manager (line 119) | type Manager interface type ManagementProvider (line 169) | type ManagementProvider interface FILE: session/manager_http.go type managerHTTPDependencies (line 50) | type managerHTTPDependencies interface type ManagerHTTP (line 63) | type ManagerHTTP struct method UpsertAndIssueCookie (line 98) | func (s *ManagerHTTP) UpsertAndIssueCookie(ctx context.Context, w http... method RefreshCookie (line 113) | func (s *ManagerHTTP) RefreshCookie(ctx context.Context, w http.Respon... method IssueCookie (line 138) | func (s *ManagerHTTP) IssueCookie(ctx context.Context, w http.Response... method getCookie (line 207) | func (s *ManagerHTTP) getCookie(r *http.Request) (*sessions.Session, e... method extractToken (line 211) | func (s *ManagerHTTP) extractToken(r *http.Request) string { method FetchFromRequestContext (line 234) | func (s *ManagerHTTP) FetchFromRequestContext(ctx context.Context, r *... method FetchFromRequest (line 245) | func (s *ManagerHTTP) FetchFromRequest(ctx context.Context, r *http.Re... method PurgeFromRequest (line 279) | func (s *ManagerHTTP) PurgeFromRequest(ctx context.Context, w http.Res... method DoesSessionSatisfy (line 304) | func (s *ManagerHTTP) DoesSessionSatisfy(ctx context.Context, sess *Se... method SessionAddAuthenticationMethods (line 405) | func (s *ManagerHTTP) SessionAddAuthenticationMethods(ctx context.Cont... method MaybeRedirectAPICodeFlow (line 421) | func (s *ManagerHTTP) MaybeRedirectAPICodeFlow(w http.ResponseWriter, ... method ActivateSession (line 454) | func (s *ManagerHTTP) ActivateSession(r *http.Request, session *Sessio... function NewManagerHTTP (line 69) | func NewManagerHTTP(r managerHTTPDependencies) *ManagerHTTP { type options (line 78) | type options struct type ManagerOptions (line 83) | type ManagerOptions function WithRequestURL (line 86) | func WithRequestURL(requestURL string) ManagerOptions { function UpsertAAL (line 94) | func UpsertAAL(opts *options) { function getCookieExpiry (line 194) | func getCookieExpiry(s *sessions.Session) *time.Time { FILE: session/manager_http_test.go type mockCSRFHandler (line 35) | type mockCSRFHandler struct method DisablePath (line 39) | func (f *mockCSRFHandler) DisablePath(string) ... method DisableGlob (line 40) | func (f *mockCSRFHandler) DisableGlob(string) ... method DisableGlobs (line 41) | func (f *mockCSRFHandler) DisableGlobs(...string) ... method IgnoreGlob (line 42) | func (f *mockCSRFHandler) IgnoreGlob(string) ... method IgnoreGlobs (line 43) | func (f *mockCSRFHandler) IgnoreGlobs(...string) ... method ExemptPath (line 44) | func (f *mockCSRFHandler) ExemptPath(string) ... method IgnorePath (line 45) | func (f *mockCSRFHandler) IgnorePath(string) ... method ServeHTTP (line 46) | func (f *mockCSRFHandler) ServeHTTP(http.ResponseWriter, *http.Request... method RegenerateToken (line 48) | func (f *mockCSRFHandler) RegenerateToken(_ http.ResponseWriter, _ *ht... function newAAL2Identity (line 53) | func newAAL2Identity() *identity.Identity { function newAAL1Identity (line 73) | func newAAL1Identity() *identity.Identity { function TestManagerHTTP (line 88) | func TestManagerHTTP(t *testing.T) { function TestDoesSessionSatisfy (line 521) | func TestDoesSessionSatisfy(t *testing.T) { FILE: session/manager_test.go function TestErrAALNotSatisfied_PassReturnToAndLoginChallengeParameters (line 16) | func TestErrAALNotSatisfied_PassReturnToAndLoginChallengeParameters(t *t... FILE: session/persistence.go type PersistenceProvider (line 19) | type PersistenceProvider interface type Persister (line 23) | type Persister interface type DevicePersister (line 75) | type DevicePersister interface FILE: session/session.go type lifespanProvider (line 28) | type lifespanProvider interface type refreshWindowProvider (line 32) | type refreshWindowProvider interface type Device (line 39) | type Device struct method TableName (line 67) | func (Device) TableName() string { return "session_devices" } type Session (line 72) | type Session struct method PageToken (line 150) | func (s Session) PageToken() keysetpagination.PageToken { method DefaultPageToken (line 157) | func (Session) DefaultPageToken() keysetpagination.PageToken { method TableName (line 164) | func (Session) TableName() string { return "sessions" } method CompletedLoginForMethod (line 166) | func (s *Session) CompletedLoginForMethod(method AuthenticationMethod) { method CompletedLoginFor (line 171) | func (s *Session) CompletedLoginFor(method identity.CredentialsType, a... method CompletedLoginForWithProvider (line 175) | func (s *Session) CompletedLoginForWithProvider(method identity.Creden... method AuthenticatedVia (line 184) | func (s *Session) AuthenticatedVia(method identity.CredentialsType) bo... method SetAuthenticatorAssuranceLevel (line 193) | func (s *Session) SetAuthenticatorAssuranceLevel() { method SetSessionDeviceInformation (line 252) | func (s *Session) SetSessionDeviceInformation(r *http.Request) { method Declassified (line 277) | func (s Session) Declassified() *Session { method IsActive (line 282) | func (s *Session) IsActive() bool { method Refresh (line 286) | func (s *Session) Refresh(ctx context.Context, c lifespanProvider) *Se... method MarshalJSON (line 291) | func (s *Session) MarshalJSON() ([]byte, error) { method CanBeRefreshed (line 298) | func (s *Session) CanBeRefreshed(ctx context.Context, c refreshWindowP... function NewInactiveSession (line 242) | func NewInactiveSession() *Session { type AuthenticationMethods (line 307) | type AuthenticationMethods method Scan (line 353) | func (n *AuthenticationMethods) Scan(value interface{}) error { method Value (line 365) | func (n AuthenticationMethods) Value() (driver.Value, error) { type AuthenticationMethod (line 314) | type AuthenticationMethod struct method Scan (line 332) | func (n *AuthenticationMethod) Scan(value interface{}) error { method Value (line 344) | func (n AuthenticationMethod) Value() (driver.Value, error) { FILE: session/session_test.go function TestSession (line 24) | func TestSession(t *testing.T) { FILE: session/test/persistence.go function TestPersister (line 32) | func TestPersister(ctx context.Context, conf *config.Config, p interface { FILE: session/tokenizer.go type tokenizerDependencies (line 30) | type tokenizerDependencies interface type Tokenizer (line 37) | type Tokenizer struct method SetNowFunc (line 56) | func (s *Tokenizer) SetNowFunc(t func() time.Time) { method TokenizeSession (line 75) | func (s *Tokenizer) TokenizeSession(ctx context.Context, template stri... type TokenizerProvider (line 42) | type TokenizerProvider interface function NewTokenizer (line 47) | func NewTokenizer(r tokenizerDependencies) *Tokenizer { function SetSubjectClaim (line 60) | func SetSubjectClaim(claims jwt.MapClaims, session *Session, subjectSour... FILE: session/tokenizer_test.go function validateTokenized (line 36) | func validateTokenized(t *testing.T, raw string, key []byte) *jwt.Token { function setTokenizeConfig (line 59) | func setTokenizeConfig(ctx context.Context, templateID, keyFile, mapper ... function setTokenizeConfigWitSubjectSource (line 66) | func setTokenizeConfigWitSubjectSource(ctx context.Context, templateID, ... function TestTokenizer (line 75) | func TestTokenizer(t *testing.T) { FILE: test/e2e/cypress.config.ts constant CRI (line 6) | const CRI = require("chrome-remote-interface") method setupNodeEvents (line 32) | setupNodeEvents(on, config) { function ensureRdpPort (line 70) | function ensureRdpPort(args) { FILE: test/e2e/cypress/helpers/httpbin.ts function checkToken (line 6) | function checkToken( FILE: test/e2e/cypress/helpers/index.ts constant APP_URL (line 43) | const APP_URL = ( constant MOBILE_URL (line 47) | const MOBILE_URL = ( constant SPA_URL (line 50) | const SPA_URL = ( constant KRATOS_ADMIN (line 53) | const KRATOS_ADMIN = ( constant KRATOS_PUBLIC (line 59) | const KRATOS_PUBLIC = ( constant MAIL_API (line 65) | const MAIL_API = ( function extractOTPCode (line 98) | function extractOTPCode(body: string): string | null { FILE: test/e2e/cypress/helpers/oauth2.ts type oAuth2Client (line 6) | type oAuth2Client = { function getDefaultAuthorizeURL (line 18) | function getDefaultAuthorizeURL(client: oAuth2Client) { function getAuthorizeURL (line 35) | function getAuthorizeURL( function getToken (line 70) | function getToken( FILE: test/e2e/cypress/helpers/webhook.ts constant WEBHOOK_TARGET (line 7) | const WEBHOOK_TARGET = "https://webhook-target-gsmwn5ab4a-uc.a.run.app" FILE: test/e2e/cypress/integration/profiles/oidc-provider/login.spec.ts function doConsent (line 173) | function doConsent(amrs?: string[]) { FILE: test/e2e/cypress/plugins/index.js constant CRI (line 7) | const CRI = require("chrome-remote-interface") function ensureRdpPort (line 19) | function ensureRdpPort(args) { FILE: test/e2e/cypress/support/commands.ts function checkConfigVersion (line 37) | function checkConfigVersion(previous, tries = 0) { FILE: test/e2e/cypress/support/configHelpers.ts class ConfigBuilder (line 6) | class ConfigBuilder { method constructor (line 7) | constructor(readonly config: OryKratosConfiguration) {} method build (line 9) | public build() { method longRecoveryLifespan (line 13) | public longRecoveryLifespan() { method longLinkLifespan (line 18) | public longLinkLifespan() { method disableVerification (line 23) | public disableVerification() { method disableCodeMfa (line 28) | public disableCodeMfa() { method enableRecovery (line 33) | public enableRecovery() { method disableRecovery (line 41) | public disableRecovery() { method enableVerification (line 46) | public enableVerification() { method useRecoveryStrategy (line 51) | public useRecoveryStrategy(strategy: "link" | "code") { method disableRecoveryStrategy (line 63) | public disableRecoveryStrategy(strategy: "link" | "code") { method notifyUnknownRecipients (line 68) | public notifyUnknownRecipients( method longCodeLifespan (line 76) | public longCodeLifespan() { method shortCodeLifespan (line 81) | public shortCodeLifespan() { method longPrivilegedSessionTime (line 86) | public longPrivilegedSessionTime() { method requireStrictAal (line 91) | public requireStrictAal() { method enableLoginForVerifiedAddressOnly (line 97) | public enableLoginForVerifiedAddressOnly() { method longVerificationLifespan (line 104) | public longVerificationLifespan() { method longLifespan (line 109) | public longLifespan(strategy: "link" | "code") { method useVerificationStrategy (line 114) | public useVerificationStrategy(strategy: "link" | "code") { method resetCourierTemplates (line 123) | public resetCourierTemplates( method useLaxSessionAal (line 135) | public useLaxSessionAal() { method useLaxSettingsFlowAal (line 140) | public useLaxSettingsFlowAal() { method useLaxAal (line 145) | public useLaxAal() { method useHighestSessionAal (line 149) | public useHighestSessionAal() { method useHighestSettingsFlowAal (line 154) | public useHighestSettingsFlowAal() { method useHighestAvailable (line 159) | public useHighestAvailable() { method enableCode (line 163) | public enableCode() { method enableCodeMFA (line 168) | public enableCodeMFA() { FILE: test/e2e/cypress/support/index.d.ts type MailMessage (line 8) | interface MailMessage { type Strategy (line 15) | type Strategy = "code" | "link" type app (line 16) | type app = "express" | "react" type Chainable (line 20) | interface Chainable { FILE: test/e2e/hydra-kratos-login-consent/main.go function checkReq (line 19) | func checkReq(w http.ResponseWriter, err error) bool { function main (line 27) | func main() { FILE: test/e2e/hydra-login-consent/main.go function check (line 16) | func check(err error) { function checkReq (line 22) | func checkReq(w http.ResponseWriter, err error) bool { FILE: test/e2e/mock/httptarget/main.go function main (line 21) | func main() { function init (line 26) | func init() { FILE: test/e2e/mock/webhook/main.go constant AuthHeader (line 17) | AuthHeader = "X-Authorize-Request" type detailedMessage (line 21) | type detailedMessage struct type errorMessage (line 28) | type errorMessage struct type rawHookResponse (line 33) | type rawHookResponse struct type logResponseWriter (line 37) | type logResponseWriter struct method Header (line 45) | func (w *logResponseWriter) Header() http.Header { method Write (line 51) | func (w *logResponseWriter) Write(data []byte) (int, error) { method WriteHeader (line 61) | func (w *logResponseWriter) WriteHeader(statusCode int) { function accessLog (line 67) | func accessLog(next http.HandlerFunc) http.HandlerFunc { function headerAuth (line 78) | func headerAuth(next http.HandlerFunc) http.HandlerFunc { function healthCheck (line 90) | func healthCheck(w http.ResponseWriter, _ *http.Request) { function webhookHandler (line 94) | func webhookHandler(w http.ResponseWriter, r *http.Request) { function writeWebhookHandler (line 151) | func writeWebhookHandler(w http.ResponseWriter, r *http.Request) { function main (line 161) | func main() { FILE: test/e2e/playwright.config.ts function dbToDsn (line 76) | function dbToDsn(): string { FILE: test/e2e/playwright/actions/identity.ts function createIdentity (line 10) | async function createIdentity( function createIdentityWithPhoneNumber (line 21) | async function createIdentityWithPhoneNumber( function createIdentityWithEmail (line 39) | async function createIdentityWithEmail(request: APIRequestContext) { function createIdentityWithPassword (line 53) | async function createIdentityWithPassword(request: APIRequestContext) { FILE: test/e2e/playwright/actions/login.ts function loginWithPassword (line 10) | async function loginWithPassword( function logoutUrl (line 49) | async function logoutUrl(r: APIRequestContext, baseUrl: string) { FILE: test/e2e/playwright/actions/mail.ts type searchProps (line 11) | type searchProps = { function search (line 22) | function search({ query, kind, filter }: searchProps) { FILE: test/e2e/playwright/actions/session.ts function hasSession (line 7) | async function hasSession( function getSession (line 19) | async function getSession( function hasNoSession (line 29) | async function hasNoSession( FILE: test/e2e/playwright/actions/webhook.ts constant WEBHOOK_TARGET (line 8) | const WEBHOOK_TARGET = "http://127.0.0.1:4471" function fetchDocument (line 17) | async function fetchDocument(key: string) { function deleteDocument (line 36) | async function deleteDocument(key: string) { function documentUrl (line 55) | function documentUrl(key: string) { FILE: test/e2e/playwright/fixtures/index.ts type DeepPartial (line 28) | type DeepPartial = T extends object type TestFixtures (line 34) | type TestFixtures = { type WorkerFixtures (line 44) | type WorkerFixtures = { function toHaveSession (line 155) | async function toHaveSession( function toMatchResponseData (line 212) | async function toMatchResponseData( FILE: test/e2e/playwright/lib/config.ts type RetryOptions (line 6) | type RetryOptions = OperationOptions FILE: test/e2e/playwright/lib/helper.ts function extractCode (line 21) | function extractCode(mail: Message) { function findCsrfToken (line 29) | function findCsrfToken(ui: UiContainer) { function isUiNodeInputAttributes (line 41) | function isUiNodeInputAttributes( FILE: test/e2e/playwright/lib/request.ts type RetryOptions (line 8) | type RetryOptions = OperationOptions function expectJSONResponse (line 18) | async function expectJSONResponse( FILE: test/e2e/playwright/models/elements/login.ts type LoginStyle (line 9) | enum LoginStyle { type SubmitOptions (line 14) | type SubmitOptions = { class LoginPage (line 19) | class LoginPage { method constructor (line 41) | constructor( method submitIdentifierFirst (line 69) | async submitIdentifierFirst(identifier: string) { method loginWithPassword (line 76) | async loginWithPassword( method triggerLoginWithCode (line 94) | async triggerLoginWithCode(identifier: string, opts?: SubmitOptions) { method open (line 119) | async open({ method isReady (line 147) | async isReady() { method submitMethod (line 151) | submitMethod(method: string) { method inputField (line 161) | inputField(name: string) { method submit (line 165) | async submit(method: string, opts?: SubmitOptions) { FILE: test/e2e/playwright/models/elements/registration.ts class RegistrationPage (line 8) | class RegistrationPage { method constructor (line 11) | constructor( method open (line 18) | async open() { method inputField (line 31) | inputField(name: string) { method submitField (line 35) | submitField(name: string) { method isReady (line 39) | async isReady() { method triggerRegistrationWithCode (line 43) | async triggerRegistrationWithCode(identifier: string) { FILE: test/e2e/playwright/models/elements/settings.ts class SettingsPage (line 8) | class SettingsPage { method constructor (line 9) | constructor( method isReady (line 14) | async isReady() { method open (line 22) | async open() { method setupTotp (line 27) | async setupTotp() { FILE: test/e2e/playwright/selectors/input.ts type InputLocator (line 6) | interface InputLocator { FILE: test/e2e/playwright/tests/desktop/identifier_first/oidc.login.spec.ts function loginHydra (line 12) | async function loginHydra(page: Page) { function registerWithHydra (line 27) | async function registerWithHydra( FILE: test/e2e/playwright/tests/desktop/identifier_first/passkeys.login.spec.ts function toggleAutomaticPresenceSimulation (line 12) | async function toggleAutomaticPresenceSimulation( function registerWithPasskey (line 23) | async function registerWithPasskey( FILE: test/e2e/playwright/tests/mobile/app_login.spec.ts function performOidcLogin (line 7) | async function performOidcLogin(popup: Page, username: string) { function rejectOidcLogin (line 19) | async function rejectOidcLogin(popup: Page) { function testRegistrationOrLogin (line 25) | async function testRegistrationOrLogin(page: Page, username: string) { function logout (line 37) | async function logout(page: Page) { function testRegistration (line 41) | async function testRegistration(page: Page, username: string) { function testLogin (line 46) | async function testLogin(page: Page, username: string) { FILE: test/e2e/playwright/types/index.ts type SessionWithResponse (line 7) | type SessionWithResponse = { FILE: test/e2e/shared/config.d.ts type OryKratosConfiguration (line 11) | type OryKratosConfiguration = OryKratosConfiguration1 & type OryKratosConfiguration1 (line 13) | type OryKratosConfiguration1 = { type RedirectBrowsersToSetURLPerDefault (line 19) | type RedirectBrowsersToSetURLPerDefault = string type AllowedReturnToURLs (line 23) | type AllowedReturnToURLs = string[] type URLOfTheSettingsPage (line 27) | type URLOfTheSettingsPage = string type RequiredAuthenticatorAssuranceLevel (line 31) | type RequiredAuthenticatorAssuranceLevel = "aal1" | "highest_available" type WebHookConfiguration (line 35) | type WebHookConfiguration = type SelfServiceHooks (line 43) | type SelfServiceHooks = (SelfServiceWebHook | B2BSSOHook)[] type EnableUserRegistration (line 47) | type EnableUserRegistration = boolean type ProvideLoginHintsOnFailedRegistration (line 51) | type ProvideLoginHintsOnFailedRegistration = boolean type RegistrationUIURL (line 55) | type RegistrationUIURL = string type DisableTwoStepRegistration (line 59) | type DisableTwoStepRegistration = boolean type RegistrationFlowStyle (line 63) | type RegistrationFlowStyle = "unified" | "profile_first" type LoginUIURL (line 67) | type LoginUIURL = string type LoginFlowStyle (line 71) | type LoginFlowStyle = "unified" | "identifier_first" type EnableEmailPhoneVerification (line 75) | type EnableEmailPhoneVerification = boolean type VerifyUIURL (line 79) | type VerifyUIURL = string type SelfServiceVerificationRequestLifespan (line 83) | type SelfServiceVerificationRequestLifespan = string type VerificationStrategy (line 87) | type VerificationStrategy = "link" | "code" type NotifyUnknownRecipients (line 91) | type NotifyUnknownRecipients = boolean type EnableAccountRecovery (line 95) | type EnableAccountRecovery = boolean type RecoveryUIURL (line 99) | type RecoveryUIURL = string type SelfServiceAfterRecoveryHooks (line 100) | type SelfServiceAfterRecoveryHooks = ( type SelfServiceRecoveryRequestLifespan (line 107) | type SelfServiceRecoveryRequestLifespan = string type RecoveryStrategy (line 111) | type RecoveryStrategy = "link" | "code" type NotifyUnknownRecipients1 (line 115) | type NotifyUnknownRecipients1 = boolean type OryKratosErrorUIURL (line 119) | type OryKratosErrorUIURL = string type EnablesProfileManagementMethod (line 120) | type EnablesProfileManagementMethod = boolean type EnablesLinkMethod (line 121) | type EnablesLinkMethod = boolean type OverrideTheBaseURLWhichShouldBeUsedAsTheBaseForRecoveryAndVerificationLinks (line 122) | type OverrideTheBaseURLWhichShouldBeUsedAsTheBaseForRecoveryAndVerificat... type HowLongALinkIsValidFor (line 124) | type HowLongALinkIsValidFor = string type EnablesUsernameEmailAndPasswordMethod (line 125) | type EnablesUsernameEmailAndPasswordMethod = boolean type CustomHaveibeenpwnedHost (line 129) | type CustomHaveibeenpwnedHost = string type EnableTheHaveIBeenPwnedAPI (line 133) | type EnableTheHaveIBeenPwnedAPI = boolean type AllowPasswordBreaches (line 137) | type AllowPasswordBreaches = number type IgnoreLookupNetworkErrors (line 141) | type IgnoreLookupNetworkErrors = boolean type MinimumPasswordLength (line 145) | type MinimumPasswordLength = number type EnablePasswordIdentifierSimilarityCheck (line 149) | type EnablePasswordIdentifierSimilarityCheck = boolean type EnablePasswordMigration (line 153) | type EnablePasswordMigration = boolean type AuthMechanisms (line 157) | type AuthMechanisms = type EnablesTheTOTPMethod (line 160) | type EnablesTheTOTPMethod = boolean type TOTPIssuer (line 164) | type TOTPIssuer = string type EnablesTheLookupSecretMethod (line 165) | type EnablesTheLookupSecretMethod = boolean type EnablesTheWebAuthnMethod (line 166) | type EnablesTheWebAuthnMethod = boolean type UseForPasswordlessFlows (line 170) | type UseForPasswordlessFlows = boolean type RelyingPartyRPConfig (line 171) | type RelyingPartyRPConfig = type EnablesThePasskeyMethod (line 195) | type EnablesThePasskeyMethod = boolean type RelyingPartyDisplayName (line 199) | type RelyingPartyDisplayName = string type RelyingPartyIdentifier (line 203) | type RelyingPartyIdentifier = string type RelyingPartyOrigins (line 207) | type RelyingPartyOrigins = string[] type EnablesOpenIDConnectMethod (line 208) | type EnablesOpenIDConnectMethod = boolean type BaseURLForOAuth2RedirectURIs (line 212) | type BaseURLForOAuth2RedirectURIs = string type SelfServiceOIDCProvider (line 213) | type SelfServiceOIDCProvider = SelfServiceOIDCProvider1 & { type SelfServiceOIDCProvider1 (line 237) | type SelfServiceOIDCProvider1 = { type Provider (line 245) | type Provider = type OptionalStringWhichWillBeUsedWhenGeneratingLabelsForUIButtons (line 270) | type OptionalStringWhichWillBeUsedWhenGeneratingLabelsForUIButtons = type JsonnetMapperURL (line 275) | type JsonnetMapperURL = string type AzureADTenant (line 279) | type AzureADTenant = string type MicrosoftSubjectSource (line 283) | type MicrosoftSubjectSource = "userinfo" | "me" | "oid" type AppleDeveloperTeamID (line 287) | type AppleDeveloperTeamID = string type ApplePrivateKeyIdentifier (line 291) | type ApplePrivateKeyIdentifier = string type ApplePrivateKey (line 295) | type ApplePrivateKey = string type OrganizationID (line 299) | type OrganizationID = string type AdditionalClientIdsAllowedWhenUsingIDTokenSubmission (line 300) | type AdditionalClientIdsAllowedWhenUsingIDTokenSubmission = string[] type ClaimsSource (line 304) | type ClaimsSource = "id_token" | "userinfo" type ProofKeyForCodeExchange (line 308) | type ProofKeyForCodeExchange = "auto" | "never" | "force" type FederationConfigurationURL (line 312) | type FederationConfigurationURL = string type NetIDTokenOriginHeader (line 316) | type NetIDTokenOriginHeader = string type OpenIDConnectAndOAuth2Providers (line 320) | type OpenIDConnectAndOAuth2Providers = SelfServiceOIDCProvider[] type NumberOfRecordsToCleanInOneIteration (line 324) | type NumberOfRecordsToCleanInOneIteration = number type DelayBetweenEachTableCleanups (line 328) | type DelayBetweenEachTableCleanups = string type RemoveRecordsOlderThan (line 332) | type RemoveRecordsOlderThan = string type DataSourceName (line 336) | type DataSourceName = string type OverrideMessageTemplates (line 340) | type OverrideMessageTemplates = string type DeliveryStrategy (line 344) | type DeliveryStrategy = "smtp" | "http" type HTTPAddressOfAPIEndpoint (line 348) | type HTTPAddressOfAPIEndpoint = string type AuthMechanisms1 (line 352) | type AuthMechanisms1 = type SMTPConnectionString (line 358) | type SMTPConnectionString = string type SMTPClientCertificatePath (line 362) | type SMTPClientCertificatePath = string type SMTPClientPrivateKeyPath (line 366) | type SMTPClientPrivateKeyPath = string type SMTPSenderAddress (line 370) | type SMTPSenderAddress = string type SMTPSenderName (line 374) | type SMTPSenderName = string type SMTPHELOEHLOName (line 378) | type SMTPHELOEHLOName = string type ChannelId (line 382) | type ChannelId = "sms" type ChannelType (line 386) | type ChannelType = "http" type OAuth20ProviderURL (line 390) | type OAuth20ProviderURL = string type PersistOAuth2RequestBetweenFlows (line 394) | type PersistOAuth2RequestBetweenFlows = boolean type DefaultReadConsistencyLevel (line 398) | type DefaultReadConsistencyLevel = "strong" | "eventual" type DisableHealthEndpointsRequestLogging (line 402) | type DisableHealthEndpointsRequestLogging = boolean type AdminBaseURL (line 406) | type AdminBaseURL = string type AdminHost (line 410) | type AdminHost = string type AdminPort (line 414) | type AdminPort = number type PrivateKeyPEM (line 415) | type PrivateKeyPEM = TlsxSource type PathToPEMEncodedFle (line 416) | type PathToPEMEncodedFle = string type Base64EncodedInline (line 420) | type Base64EncodedInline = string type TLSCertificatePEM (line 421) | type TLSCertificatePEM = TlsxSource type DisableHealthEndpointsRequestLogging1 (line 425) | type DisableHealthEndpointsRequestLogging1 = boolean type BaseURL (line 429) | type BaseURL = string type PublicHost (line 433) | type PublicHost = string type PublicPort (line 437) | type PublicPort = number type LeakSensitiveLogValues (line 441) | type LeakSensitiveLogValues = boolean type SensitiveLogValueRedactionText (line 445) | type SensitiveLogValueRedactionText = string type TheDefaultIdentitySchema (line 449) | type TheDefaultIdentitySchema = string type AllJSONSchemasForIdentityTraits (line 455) | type AllJSONSchemasForIdentityTraits = [ type TheSchemaSID (line 467) | type TheSchemaSID = string type JSONSchemaURLForIdentityTraitsSchema (line 471) | type JSONSchemaURLForIdentityTraitsSchema = string type DefaultEncryptionSigningSecrets (line 475) | type DefaultEncryptionSigningSecrets = string[] type SigningKeysForCookies (line 479) | type SigningKeysForCookies = string[] type SecretsToUseForEncryptionByCipher (line 485) | type SecretsToUseForEncryptionByCipher = [string, ...string[]] type PasswordHashingAlgorithm (line 490) | type PasswordHashingAlgorithm = "argon2" | "bcrypt" type CipheringAlgorithm (line 494) | type CipheringAlgorithm = "noop" | "aes" | "xchacha20-poly1305" type HTTPCookieDomain (line 498) | type HTTPCookieDomain = string type HTTPCookiePath (line 502) | type HTTPCookiePath = string type SessionCookieSecureFlag (line 506) | type SessionCookieSecureFlag = string type HTTPCookieSameSiteConfiguration (line 510) | type HTTPCookieSameSiteConfiguration = "Strict" | "Lax" | "None" type TokenTimeToLive (line 511) | type TokenTimeToLive = string type JsonNetMapperURL (line 512) | type JsonNetMapperURL = string type JSONWebKeySetURL (line 513) | type JSONWebKeySetURL = string type SessionLifespan (line 517) | type SessionLifespan = string type SessionCookieDomain (line 521) | type SessionCookieDomain = string type SessionCookieName (line 525) | type SessionCookieName = string type MakeSessionCookiePersistent (line 529) | type MakeSessionCookiePersistent = boolean type SessionCookiePath (line 533) | type SessionCookiePath = string type SessionCookieSecureFlag1 (line 537) | type SessionCookieSecureFlag1 = string type SessionCookieSameSiteConfiguration (line 541) | type SessionCookieSameSiteConfiguration = "Strict" | "Lax" | "None" type EarliestPossibleSessionExtension (line 545) | type EarliestPossibleSessionExtension = string type TheKratosVersionThisConfigIsWrittenFor (line 549) | type TheKratosVersionThisConfigIsWrittenFor = string type MetricsPort (line 553) | type MetricsPort = number type DisallowPrivateIPRanges (line 557) | type DisallowPrivateIPRanges = boolean type AddExemptURLsToPrivateIPRanges (line 561) | type AddExemptURLsToPrivateIPRanges = string[] type AllowedRequestHeaders (line 565) | type AllowedRequestHeaders = string[] type EnableOrySessionsCaching (line 569) | type EnableOrySessionsCaching = boolean type SetOrySessionEdgeCachingMaximumAge (line 573) | type SetOrySessionEdgeCachingMaximumAge = string type EnableNewFlowTransitionsUsingContinueWithItems (line 577) | type EnableNewFlowTransitionsUsingContinueWithItems = boolean type EnableFasterSessionExtension (line 581) | type EnableFasterSessionExtension = boolean type RegistrationNodeGroup (line 585) | type RegistrationNodeGroup = "password" | "default" type Organizations (line 589) | type Organizations = unknown[] type FallbackURLTemplateForIdentitySchemas (line 593) | type FallbackURLTemplateForIdentitySchemas = string type OryKratosConfiguration2 (line 595) | interface OryKratosConfiguration2 { type SelfServiceAfterSettings (line 820) | interface SelfServiceAfterSettings { type SelfServiceAfterSettingsAuthMethod (line 831) | interface SelfServiceAfterSettingsAuthMethod { type SelfServiceWebHook (line 835) | interface SelfServiceWebHook { type SelfServiceSessionRevokerHook (line 839) | interface SelfServiceSessionRevokerHook { type SelfServiceAfterSettingsMethod (line 842) | interface SelfServiceAfterSettingsMethod { type B2BSSOHook (line 846) | interface B2BSSOHook { type SelfServiceBeforeSettings (line 852) | interface SelfServiceBeforeSettings { type SelfServiceBeforeRegistration (line 855) | interface SelfServiceBeforeRegistration { type SelfServiceAfterRegistration (line 858) | interface SelfServiceAfterRegistration { type SelfServiceAfterRegistrationMethod (line 867) | interface SelfServiceAfterRegistrationMethod { type SelfServiceSessionIssuerHook (line 876) | interface SelfServiceSessionIssuerHook { type SelfServiceShowVerificationUIHook (line 879) | interface SelfServiceShowVerificationUIHook { type SelfServiceBeforeLogin (line 882) | interface SelfServiceBeforeLogin { type SelfServiceAfterLogin (line 885) | interface SelfServiceAfterLogin { type SelfServiceAfterDefaultLoginMethod (line 903) | interface SelfServiceAfterDefaultLoginMethod { type SelfServiceRequireVerifiedAddressHook (line 914) | interface SelfServiceRequireVerifiedAddressHook { type SelfServiceVerificationHook (line 917) | interface SelfServiceVerificationHook { type SelfServiceAfterOIDCLoginMethod (line 920) | interface SelfServiceAfterOIDCLoginMethod { type EmailAndPhoneVerificationAndAccountActivationConfiguration (line 929) | interface EmailAndPhoneVerificationAndAccountActivationConfiguration { type SelfServiceAfterVerification (line 938) | interface SelfServiceAfterVerification { type SelfServiceBeforeVerification (line 942) | interface SelfServiceBeforeVerification { type AccountRecoveryConfiguration (line 945) | interface AccountRecoveryConfiguration { type SelfServiceAfterRecovery (line 954) | interface SelfServiceAfterRecovery { type SelfServiceBeforeRecovery (line 958) | interface SelfServiceBeforeRecovery { type SingleSignOnForB2B (line 964) | interface SingleSignOnForB2B { type LinkConfiguration (line 983) | interface LinkConfiguration { type PasswordConfiguration (line 991) | interface PasswordConfiguration { type WebHookAuthApiKeyProperties (line 1024) | interface WebHookAuthApiKeyProperties { type WebHookAuthBasicAuthProperties (line 1041) | interface WebHookAuthBasicAuthProperties { type TOTPConfiguration (line 1054) | interface TOTPConfiguration { type WebAuthnConfiguration (line 1057) | interface WebAuthnConfiguration { type PasskeyConfiguration (line 1061) | interface PasskeyConfiguration { type RelyingPartyRPConfig1 (line 1064) | interface RelyingPartyRPConfig1 { type SpecifyOpenIDConnectAndOAuth2Configuration (line 1070) | interface SpecifyOpenIDConnectAndOAuth2Configuration { type OpenIDConnectClaims (line 1080) | interface OpenIDConnectClaims { type DatabaseRelatedConfiguration (line 1113) | interface DatabaseRelatedConfiguration { type DatabaseCleanupSettings (line 1119) | interface DatabaseCleanupSettings { type DelaysBetweenVariousDatabaseCleanupPhases (line 1128) | interface DelaysBetweenVariousDatabaseCleanupPhases { type CourierConfiguration (line 1135) | interface CourierConfiguration { type CourierTemplates (line 1178) | interface CourierTemplates { type EmailCourierTemplate (line 1187) | interface EmailCourierTemplate { type SmsCourierTemplate (line 1200) | interface SmsCourierTemplate { type HTTPConfiguration (line 1211) | interface HTTPConfiguration { type HttpRequestConfig (line 1214) | interface HttpRequestConfig { type SMTPConfiguration (line 1236) | interface SMTPConfiguration { type SMTPHeaders (line 1248) | interface SMTPHeaders { type CourierChannelConfiguration (line 1251) | interface CourierChannelConfiguration { type OAuth2ProviderConfiguration (line 1256) | interface OAuth2ProviderConfiguration { type HTTPRequestHeaders (line 1264) | interface HTTPRequestHeaders { type ConfigurePreviewFeatures (line 1267) | interface ConfigurePreviewFeatures { type Socket (line 1274) | interface Socket { type HTTPS (line 1291) | interface HTTPS { type TlsxSource (line 1295) | interface TlsxSource { type OryTracingConfig (line 1302) | interface OryTracingConfig { type IPv6AddressAndPort (line 1382) | interface IPv6AddressAndPort { type IPv4AddressAndPort (line 1385) | interface IPv4AddressAndPort { type HostnameAndPort (line 1388) | interface HostnameAndPort { type IPv6AddressAndPort1 (line 1391) | interface IPv6AddressAndPort1 { type IPv4AddressAndPort1 (line 1394) | interface IPv4AddressAndPort1 { type HostnameAndPort1 (line 1397) | interface HostnameAndPort1 { type Log (line 1403) | interface Log { type HashingAlgorithmConfiguration (line 1415) | interface HashingAlgorithmConfiguration { type ConfigurationForTheArgon2IdHasher (line 1420) | interface ConfigurationForTheArgon2IdHasher { type ConfigurationForTheBcryptHasherMinimumIs4WhenDevFlagIsUsedAnd12Otherwise (line 1442) | interface ConfigurationForTheBcryptHasherMinimumIs4WhenDevFlagIsUsedAnd1... type CipherAlgorithmConfiguration (line 1445) | interface CipherAlgorithmConfiguration { type HTTPCookieConfiguration (line 1452) | interface HTTPCookieConfiguration { type WhoAmIToSessionSettings (line 1461) | interface WhoAmIToSessionSettings { type TokenizerConfiguration (line 1468) | interface TokenizerConfiguration { type TokenizerTemplates (line 1475) | interface TokenizerTemplates { type GlobalOutgoingNetworkSettings (line 1490) | interface GlobalOutgoingNetworkSettings { type GlobalHTTPClientConfiguration (line 1498) | interface GlobalHTTPClientConfiguration { type GlobalWebHookHTTPClientConfiguration (line 1506) | interface GlobalWebHookHTTPClientConfiguration { type FeatureFlags (line 1510) | interface FeatureFlags { type EnterpriseFeatures (line 1520) | interface EnterpriseFeatures { type ConfigRevision (line 1526) | interface ConfigRevision { FILE: test/schema/schema_test.go type schema (line 27) | type schema struct method validate (line 46) | func (s schema) validate(t *testing.T, path string) error { type schemas (line 33) | type schemas method getByName (line 82) | func (ss *schemas) getByName(n string) (*schema, error) { type result (line 35) | type result method String (line 42) | func (r result) String() string { constant success (line 38) | success result = iota constant failure (line 39) | failure function TestSchemas (line 92) | func TestSchemas(t *testing.T) { function SchemaTestRunner (line 96) | func SchemaTestRunner(spath string, sname string) func(*testing.T) { function RunCases (line 127) | func RunCases(t *testing.T, ss schemas, dir string, expected result) { FILE: text/context.go function context (line 10) | func context(ctx map[string]any) []byte { FILE: text/id.go type ID (line 9) | type ID constant InfoSelfServiceLoginRoot (line 12) | InfoSelfServiceLoginRoot ID = 1010000 + iota constant InfoSelfServiceLogin (line 13) | InfoSelfServiceLogin constant InfoSelfServiceLoginWith (line 14) | InfoSelfServiceLoginWith constant InfoSelfServiceLoginReAuth (line 15) | InfoSelfServiceLoginReAuth constant InfoSelfServiceLoginMFA (line 16) | InfoSelfServiceLoginMFA constant InfoSelfServiceLoginVerify (line 17) | InfoSelfServiceLoginVerify constant InfoSelfServiceLoginTOTPLabel (line 18) | InfoSelfServiceLoginTOTPLabel constant InfoLoginLookupLabel (line 19) | InfoLoginLookupLabel constant InfoSelfServiceLoginWebAuthn (line 20) | InfoSelfServiceLoginWebAuthn constant InfoLoginTOTP (line 21) | InfoLoginTOTP constant InfoLoginLookup (line 22) | InfoLoginLookup constant InfoSelfServiceLoginContinueWebAuthn (line 23) | InfoSelfServiceLoginContinueWebAuthn constant InfoSelfServiceLoginWebAuthnPasswordless (line 24) | InfoSelfServiceLoginWebAuthnPasswordless constant InfoSelfServiceLoginContinue (line 25) | InfoSelfServiceLoginContinue constant InfoSelfServiceLoginCodeSent (line 26) | InfoSelfServiceLoginCodeSent constant InfoSelfServiceLoginCode (line 27) | InfoSelfServiceLoginCode constant InfoSelfServiceLoginLink (line 28) | InfoSelfServiceLoginLink constant InfoSelfServiceLoginAndLink (line 29) | InfoSelfServiceLoginAndLink constant InfoSelfServiceLoginWithAndLink (line 30) | InfoSelfServiceLoginWithAndLink constant InfoSelfServiceLoginCodeMFA (line 31) | InfoSelfServiceLoginCodeMFA constant InfoSelfServiceLoginCodeMFAHint (line 32) | InfoSelfServiceLoginCodeMFAHint constant InfoSelfServiceLoginPasskey (line 33) | InfoSelfServiceLoginPasskey constant InfoSelfServiceLoginPassword (line 34) | InfoSelfServiceLoginPassword constant InfoSelfServiceLoginAAL2CodeAddress (line 35) | InfoSelfServiceLoginAAL2CodeAddress constant InfoSelfServiceLogout (line 39) | InfoSelfServiceLogout ID = 1020000 + iota constant InfoSelfServiceMFA (line 43) | InfoSelfServiceMFA ID = 1030000 + iota constant InfoSelfServiceRegistrationRoot (line 47) | InfoSelfServiceRegistrationRoot ID = 1040000 + iota constant InfoSelfServiceRegistration (line 48) | InfoSelfServiceRegistration constant InfoSelfServiceRegistrationWith (line 49) | InfoSelfServiceRegistrationWith constant InfoSelfServiceRegistrationContinue (line 50) | InfoSelfServiceRegistrationContinue constant InfoSelfServiceRegistrationRegisterWebAuthn (line 51) | InfoSelfServiceRegistrationRegisterWebAuthn constant InfoSelfServiceRegistrationEmailWithCodeSent (line 52) | InfoSelfServiceRegistrationEmailWithCodeSent constant InfoSelfServiceRegistrationRegisterCode (line 53) | InfoSelfServiceRegistrationRegisterCode constant InfoSelfServiceRegistrationRegisterPasskey (line 54) | InfoSelfServiceRegistrationRegisterPasskey constant InfoSelfServiceRegistrationBack (line 55) | InfoSelfServiceRegistrationBack constant InfoSelfServiceRegistrationChooseCredentials (line 56) | InfoSelfServiceRegistrationChooseCredentials constant InfoSelfServiceSettings (line 60) | InfoSelfServiceSettings ID = 1050000 + iota constant InfoSelfServiceSettingsUpdateSuccess (line 61) | InfoSelfServiceSettingsUpdateSuccess constant InfoSelfServiceSettingsUpdateLinkOidc (line 62) | InfoSelfServiceSettingsUpdateLinkOidc constant InfoSelfServiceSettingsUpdateUnlinkOidc (line 63) | InfoSelfServiceSettingsUpdateUnlinkOidc constant InfoSelfServiceSettingsUpdateUnlinkTOTP (line 64) | InfoSelfServiceSettingsUpdateUnlinkTOTP constant InfoSelfServiceSettingsTOTPQRCode (line 65) | InfoSelfServiceSettingsTOTPQRCode constant InfoSelfServiceSettingsTOTPSecret (line 66) | InfoSelfServiceSettingsTOTPSecret constant InfoSelfServiceSettingsRevealLookup (line 67) | InfoSelfServiceSettingsRevealLookup constant InfoSelfServiceSettingsRegenerateLookup (line 68) | InfoSelfServiceSettingsRegenerateLookup constant InfoSelfServiceSettingsLookupSecret (line 69) | InfoSelfServiceSettingsLookupSecret constant InfoSelfServiceSettingsLookupSecretLabel (line 70) | InfoSelfServiceSettingsLookupSecretLabel constant InfoSelfServiceSettingsLookupConfirm (line 71) | InfoSelfServiceSettingsLookupConfirm constant InfoSelfServiceSettingsRegisterWebAuthn (line 72) | InfoSelfServiceSettingsRegisterWebAuthn constant InfoSelfServiceSettingsRegisterWebAuthnDisplayName (line 73) | InfoSelfServiceSettingsRegisterWebAuthnDisplayName constant InfoSelfServiceSettingsLookupSecretUsed (line 74) | InfoSelfServiceSettingsLookupSecretUsed constant InfoSelfServiceSettingsLookupSecretList (line 75) | InfoSelfServiceSettingsLookupSecretList constant InfoSelfServiceSettingsDisableLookup (line 76) | InfoSelfServiceSettingsDisableLookup constant InfoSelfServiceSettingsTOTPSecretLabel (line 77) | InfoSelfServiceSettingsTOTPSecretLabel constant InfoSelfServiceSettingsRemoveWebAuthn (line 78) | InfoSelfServiceSettingsRemoveWebAuthn constant InfoSelfServiceSettingsRegisterPasskey (line 79) | InfoSelfServiceSettingsRegisterPasskey constant InfoSelfServiceSettingsRemovePasskey (line 80) | InfoSelfServiceSettingsRemovePasskey constant InfoSelfServiceRecovery (line 84) | InfoSelfServiceRecovery ID = 1060000 + iota constant InfoSelfServiceRecoverySuccessful (line 85) | InfoSelfServiceRecoverySuccessful constant InfoSelfServiceRecoveryEmailSent (line 86) | InfoSelfServiceRecoveryEmailSent constant InfoSelfServiceRecoveryEmailWithCodeSent (line 87) | InfoSelfServiceRecoveryEmailWithCodeSent constant InfoSelfServiceRecoveryMessageMaskedWithCodeSent (line 88) | InfoSelfServiceRecoveryMessageMaskedWithCodeSent constant InfoSelfServiceRecoveryAskForFullAddress (line 89) | InfoSelfServiceRecoveryAskForFullAddress constant InfoSelfServiceRecoveryAskToChooseAddress (line 90) | InfoSelfServiceRecoveryAskToChooseAddress constant InfoSelfServiceRecoveryBack (line 91) | InfoSelfServiceRecoveryBack constant InfoNodeLabel (line 95) | InfoNodeLabel ID = 1070000 + iota constant InfoNodeLabelInputPassword (line 96) | InfoNodeLabelInputPassword constant InfoNodeLabelGenerated (line 97) | InfoNodeLabelGenerated constant InfoNodeLabelSave (line 98) | InfoNodeLabelSave constant InfoNodeLabelID (line 99) | InfoNodeLabelID constant InfoNodeLabelSubmit (line 100) | InfoNodeLabelSubmit constant InfoNodeLabelVerifyOTP (line 101) | InfoNodeLabelVerifyOTP constant InfoNodeLabelEmail (line 102) | InfoNodeLabelEmail constant InfoNodeLabelResendOTP (line 103) | InfoNodeLabelResendOTP constant InfoNodeLabelContinue (line 104) | InfoNodeLabelContinue constant InfoNodeLabelRecoveryCode (line 105) | InfoNodeLabelRecoveryCode constant InfoNodeLabelVerificationCode (line 106) | InfoNodeLabelVerificationCode constant InfoNodeLabelRegistrationCode (line 107) | InfoNodeLabelRegistrationCode constant InfoNodeLabelLoginCode (line 108) | InfoNodeLabelLoginCode constant InfoNodeLabelLoginAndLinkCredential (line 109) | InfoNodeLabelLoginAndLinkCredential constant InfoNodeLabelCaptcha (line 110) | InfoNodeLabelCaptcha constant InfoNodeLabelRecoveryAddress (line 111) | InfoNodeLabelRecoveryAddress constant InfoNodeLabelPhoneNumber (line 112) | InfoNodeLabelPhoneNumber constant InfoSelfServiceVerification (line 116) | InfoSelfServiceVerification ID = 1080000 + iota constant InfoSelfServiceVerificationEmailSent (line 117) | InfoSelfServiceVerificationEmailSent constant InfoSelfServiceVerificationSuccessful (line 118) | InfoSelfServiceVerificationSuccessful constant InfoSelfServiceVerificationEmailWithCodeSent (line 119) | InfoSelfServiceVerificationEmailWithCodeSent constant ErrorValidation (line 123) | ErrorValidation ID = 4000000 + iota constant ErrorValidationGeneric (line 124) | ErrorValidationGeneric constant ErrorValidationRequired (line 125) | ErrorValidationRequired constant ErrorValidationMinLength (line 126) | ErrorValidationMinLength constant ErrorValidationInvalidFormat (line 127) | ErrorValidationInvalidFormat constant ErrorValidationPasswordPolicyViolationGeneric (line 128) | ErrorValidationPasswordPolicyViolationGeneric constant ErrorValidationInvalidCredentials (line 129) | ErrorValidationInvalidCredentials constant ErrorValidationDuplicateCredentials (line 130) | ErrorValidationDuplicateCredentials constant ErrorValidationTOTPVerifierWrong (line 131) | ErrorValidationTOTPVerifierWrong constant ErrorValidationIdentifierMissing (line 132) | ErrorValidationIdentifierMissing constant ErrorValidationAddressNotVerified (line 133) | ErrorValidationAddressNotVerified constant ErrorValidationNoTOTPDevice (line 134) | ErrorValidationNoTOTPDevice constant ErrorValidationLookupAlreadyUsed (line 135) | ErrorValidationLookupAlreadyUsed constant ErrorValidationNoWebAuthnDevice (line 136) | ErrorValidationNoWebAuthnDevice constant ErrorValidationNoLookup (line 137) | ErrorValidationNoLookup constant ErrorValidationSuchNoWebAuthnUser (line 138) | ErrorValidationSuchNoWebAuthnUser constant ErrorValidationLookupInvalid (line 139) | ErrorValidationLookupInvalid constant ErrorValidationMaxLength (line 140) | ErrorValidationMaxLength constant ErrorValidationMinimum (line 141) | ErrorValidationMinimum constant ErrorValidationExclusiveMinimum (line 142) | ErrorValidationExclusiveMinimum constant ErrorValidationMaximum (line 143) | ErrorValidationMaximum constant ErrorValidationExclusiveMaximum (line 144) | ErrorValidationExclusiveMaximum constant ErrorValidationMultipleOf (line 145) | ErrorValidationMultipleOf constant ErrorValidationMaxItems (line 146) | ErrorValidationMaxItems constant ErrorValidationMinItems (line 147) | ErrorValidationMinItems constant ErrorValidationUniqueItems (line 148) | ErrorValidationUniqueItems constant ErrorValidationWrongType (line 149) | ErrorValidationWrongType constant ErrorValidationDuplicateCredentialsOnOIDCLink (line 150) | ErrorValidationDuplicateCredentialsOnOIDCLink constant ErrorValidationDuplicateCredentialsWithHints (line 151) | ErrorValidationDuplicateCredentialsWithHints constant ErrorValidationConst (line 152) | ErrorValidationConst constant ErrorValidationConstGeneric (line 153) | ErrorValidationConstGeneric constant ErrorValidationPasswordIdentifierTooSimilar (line 154) | ErrorValidationPasswordIdentifierTooSimilar constant ErrorValidationPasswordMinLength (line 155) | ErrorValidationPasswordMinLength constant ErrorValidationPasswordMaxLength (line 156) | ErrorValidationPasswordMaxLength constant ErrorValidationPasswordTooManyBreaches (line 157) | ErrorValidationPasswordTooManyBreaches constant ErrorValidationNoCodeUser (line 158) | ErrorValidationNoCodeUser constant ErrorValidationTraitsMismatch (line 159) | ErrorValidationTraitsMismatch constant ErrorValidationAccountNotFound (line 160) | ErrorValidationAccountNotFound constant ErrorValidationCaptchaError (line 161) | ErrorValidationCaptchaError constant ErrorValidationPasswordNewSameAsOld (line 162) | ErrorValidationPasswordNewSameAsOld constant ErrorValidationEmail (line 163) | ErrorValidationEmail constant ErrorValidationPhone (line 164) | ErrorValidationPhone constant ErrorValidationLogin (line 168) | ErrorValidationLogin ID = 4010000 + iota constant ErrorValidationLoginFlowExpired (line 169) | ErrorValidationLoginFlowExpired constant ErrorValidationLoginNoStrategyFound (line 170) | ErrorValidationLoginNoStrategyFound constant ErrorValidationRegistrationNoStrategyFound (line 171) | ErrorValidationRegistrationNoStrategyFound constant ErrorValidationSettingsNoStrategyFound (line 172) | ErrorValidationSettingsNoStrategyFound constant ErrorValidationRecoveryNoStrategyFound (line 173) | ErrorValidationRecoveryNoStrategyFound constant ErrorValidationVerificationNoStrategyFound (line 174) | ErrorValidationVerificationNoStrategyFound constant ErrorValidationLoginRetrySuccess (line 175) | ErrorValidationLoginRetrySuccess constant ErrorValidationLoginCodeInvalidOrAlreadyUsed (line 176) | ErrorValidationLoginCodeInvalidOrAlreadyUsed constant ErrorValidationLoginLinkedCredentialsDoNotMatch (line 177) | ErrorValidationLoginLinkedCredentialsDoNotMatch constant ErrorValidationLoginAddressUnknown (line 178) | ErrorValidationLoginAddressUnknown constant ErrorValidationRegistration (line 182) | ErrorValidationRegistration ID = 4040000 + iota constant ErrorValidationRegistrationFlowExpired (line 183) | ErrorValidationRegistrationFlowExpired constant ErrorValidateionRegistrationRetrySuccess (line 184) | ErrorValidateionRegistrationRetrySuccess constant ErrorValidationRegistrationCodeInvalidOrAlreadyUsed (line 185) | ErrorValidationRegistrationCodeInvalidOrAlreadyUsed constant ErrorValidationSettings (line 189) | ErrorValidationSettings ID = 4050000 + iota constant ErrorValidationSettingsFlowExpired (line 190) | ErrorValidationSettingsFlowExpired constant ErrorValidationRecovery (line 194) | ErrorValidationRecovery ID = 4060000 + iota constant ErrorValidationRecoveryRetrySuccess (line 195) | ErrorValidationRecoveryRetrySuccess constant ErrorValidationRecoveryStateFailure (line 196) | ErrorValidationRecoveryStateFailure constant ErrorValidationRecoveryMissingRecoveryToken (line 197) | ErrorValidationRecoveryMissingRecoveryToken constant ErrorValidationRecoveryTokenInvalidOrAlreadyUsed (line 198) | ErrorValidationRecoveryTokenInvalidOrAlreadyUsed constant ErrorValidationRecoveryFlowExpired (line 199) | ErrorValidationRecoveryFlowExpired constant ErrorValidationRecoveryCodeInvalidOrAlreadyUsed (line 200) | ErrorValidationRecoveryCodeInvalidOrAlreadyUsed constant ErrorValidationVerification (line 204) | ErrorValidationVerification ID = 4070000 + iota constant ErrorValidationVerificationTokenInvalidOrAlreadyUsed (line 205) | ErrorValidationVerificationTokenInvalidOrAlreadyUsed constant ErrorValidationVerificationRetrySuccess (line 206) | ErrorValidationVerificationRetrySuccess constant ErrorValidationVerificationStateFailure (line 207) | ErrorValidationVerificationStateFailure constant ErrorValidationVerificationMissingVerificationToken (line 208) | ErrorValidationVerificationMissingVerificationToken constant ErrorValidationVerificationFlowExpired (line 209) | ErrorValidationVerificationFlowExpired constant ErrorValidationVerificationCodeInvalidOrAlreadyUsed (line 210) | ErrorValidationVerificationCodeInvalidOrAlreadyUsed constant ErrorSystem (line 214) | ErrorSystem ID = 5000000 + iota constant ErrorSystemGeneric (line 215) | ErrorSystemGeneric constant ErrorSystemNoAuthenticationMethodsAvailable (line 216) | ErrorSystemNoAuthenticationMethodsAvailable FILE: text/id_test.go function TestIDs (line 12) | func TestIDs(t *testing.T) { FILE: text/message.go type Messages (line 14) | type Messages method MarshalJSON (line 16) | func (h Messages) MarshalJSON() ([]byte, error) { method Scan (line 24) | func (h *Messages) Scan(value interface{}) error { method Value (line 28) | func (h Messages) Value() (driver.Value, error) { method Add (line 35) | func (h *Messages) Add(m *Message) Messages { method Set (line 40) | func (h *Messages) Set(m *Message) Messages { method Clear (line 45) | func (h *Messages) Clear() Messages { type Message (line 51) | type Message struct method Scan (line 71) | func (m *Message) Scan(value interface{}) error { method Value (line 75) | func (m Message) Value() (driver.Value, error) { method Error (line 79) | func (m *Message) Error() string { method Is (line 83) | func (m *Message) Is(err error) bool { FILE: text/message_error.go constant ErrIDNeedsPrivilegedSession (line 9) | ErrIDNeedsPrivilegedSession = "session_refresh_re... constant ErrIDSelfServiceFlowExpired (line 10) | ErrIDSelfServiceFlowExpired = "self_service_flow_... constant ErrIDSelfServiceFlowDisabled (line 11) | ErrIDSelfServiceFlowDisabled = "self_service_flow_... constant ErrIDSelfServiceBrowserLocationChangeRequiredError (line 12) | ErrIDSelfServiceBrowserLocationChangeRequiredError = "browser_location_c... constant ErrIDSelfServiceFlowReplaced (line 13) | ErrIDSelfServiceFlowReplaced = "self_service_flow_... constant ErrIDAlreadyLoggedIn (line 15) | ErrIDAlreadyLoggedIn = "session_already_available" constant ErrIDAddressNotVerified (line 16) | ErrIDAddressNotVerified = "session_verified_address_required" constant ErrIDSessionHasAALAlready (line 17) | ErrIDSessionHasAALAlready = "session_aal_already_fulfilled" constant ErrIDSessionRequiredForHigherAAL (line 18) | ErrIDSessionRequiredForHigherAAL = "session_aal1_required" constant ErrIDHigherAALRequired (line 19) | ErrIDHigherAALRequired = "session_aal2_required" constant ErrNoActiveSession (line 20) | ErrNoActiveSession = "session_inactive" constant ErrIDRedirectURLNotAllowed (line 21) | ErrIDRedirectURLNotAllowed = "self_service_flow_return_to_forbidden" constant ErrIDInitiatedBySomeoneElse (line 22) | ErrIDInitiatedBySomeoneElse = "security_identity_mismatch" constant ErrIDCSRF (line 24) | ErrIDCSRF = "security_csrf_violation" FILE: text/message_login.go function NewInfoLoginReAuth (line 11) | func NewInfoLoginReAuth() *Message { function NewInfoLoginMFA (line 19) | func NewInfoLoginMFA() *Message { function NewInfoLoginWebAuthnPasswordless (line 27) | func NewInfoLoginWebAuthnPasswordless() *Message { function NewInfoLoginTOTPLabel (line 35) | func NewInfoLoginTOTPLabel() *Message { function NewInfoLoginLookupLabel (line 43) | func NewInfoLoginLookupLabel() *Message { function NewInfoLogin (line 51) | func NewInfoLogin() *Message { function NewInfoLoginLinkMessage (line 59) | func NewInfoLoginLinkMessage(dupIdentifier, provider, newLoginURL string... function NewInfoLoginAndLink (line 80) | func NewInfoLoginAndLink() *Message { function NewInfoLoginTOTP (line 88) | func NewInfoLoginTOTP() *Message { function NewInfoLoginPassword (line 96) | func NewInfoLoginPassword() *Message { function NewInfoLoginLookup (line 104) | func NewInfoLoginLookup() *Message { function NewInfoLoginVerify (line 112) | func NewInfoLoginVerify() *Message { function NewInfoLoginWith (line 120) | func NewInfoLoginWith(provider string, providerId string) *Message { function NewInfoLoginWithAndLink (line 132) | func NewInfoLoginWithAndLink(provider string) *Message { function NewErrorValidationLoginFlowExpired (line 143) | func NewErrorValidationLoginFlowExpired(expiredAt time.Time) *Message { function NewErrorValidationLoginNoStrategyFound (line 155) | func NewErrorValidationLoginNoStrategyFound() *Message { function NewErrorValidationRegistrationNoStrategyFound (line 163) | func NewErrorValidationRegistrationNoStrategyFound() *Message { function NewErrorValidationSettingsNoStrategyFound (line 171) | func NewErrorValidationSettingsNoStrategyFound() *Message { function NewErrorValidationRecoveryNoStrategyFound (line 179) | func NewErrorValidationRecoveryNoStrategyFound() *Message { function NewErrorValidationVerificationNoStrategyFound (line 187) | func NewErrorValidationVerificationNoStrategyFound() *Message { function NewInfoSelfServiceLoginWebAuthn (line 195) | func NewInfoSelfServiceLoginWebAuthn() *Message { function NewInfoSelfServiceLoginPasskey (line 203) | func NewInfoSelfServiceLoginPasskey() *Message { function NewInfoSelfServiceContinueLoginWebAuthn (line 211) | func NewInfoSelfServiceContinueLoginWebAuthn() *Message { function NewInfoSelfServiceLoginContinue (line 219) | func NewInfoSelfServiceLoginContinue() *Message { function NewLoginCodeSent (line 227) | func NewLoginCodeSent() *Message { function NewErrorValidationLoginCodeInvalidOrAlreadyUsed (line 235) | func NewErrorValidationLoginCodeInvalidOrAlreadyUsed() *Message { function NewErrorValidationLoginRetrySuccessful (line 243) | func NewErrorValidationLoginRetrySuccessful() *Message { function NewInfoSelfServiceLoginCode (line 251) | func NewInfoSelfServiceLoginCode() *Message { function NewErrorValidationLoginLinkedCredentialsDoNotMatch (line 259) | func NewErrorValidationLoginLinkedCredentialsDoNotMatch() *Message { function NewErrorValidationAddressUnknown (line 267) | func NewErrorValidationAddressUnknown() *Message { function NewInfoSelfServiceLoginCodeMFA (line 275) | func NewInfoSelfServiceLoginCodeMFA() *Message { function NewInfoSelfServiceLoginAAL2CodeAddress (line 283) | func NewInfoSelfServiceLoginAAL2CodeAddress(channel string, to string) *... FILE: text/message_node.go function NewInfoNodeLabelVerifyOTP (line 6) | func NewInfoNodeLabelVerifyOTP() *Message { function NewInfoNodeLabelVerificationCode (line 14) | func NewInfoNodeLabelVerificationCode() *Message { function NewInfoNodeLabelRecoveryCode (line 22) | func NewInfoNodeLabelRecoveryCode() *Message { function NewInfoNodeLabelRegistrationCode (line 30) | func NewInfoNodeLabelRegistrationCode() *Message { function NewInfoNodeLabelLoginCode (line 38) | func NewInfoNodeLabelLoginCode() *Message { function NewInfoNodeInputPassword (line 46) | func NewInfoNodeInputPassword() *Message { function NewInfoNodeLabelGenerated (line 54) | func NewInfoNodeLabelGenerated(title string, name string) *Message { function NewInfoNodeLabelSave (line 66) | func NewInfoNodeLabelSave() *Message { function NewInfoNodeLabelSubmit (line 74) | func NewInfoNodeLabelSubmit() *Message { function NewInfoNodeLabelContinue (line 82) | func NewInfoNodeLabelContinue() *Message { function NewInfoNodeLabelID (line 90) | func NewInfoNodeLabelID() *Message { function NewInfoNodeInputEmail (line 98) | func NewInfoNodeInputEmail() *Message { function NewInfoNodeInputPhoneNumber (line 106) | func NewInfoNodeInputPhoneNumber() *Message { function NewInfoNodeResendOTP (line 114) | func NewInfoNodeResendOTP() *Message { function NewInfoNodeLoginAndLinkCredential (line 122) | func NewInfoNodeLoginAndLinkCredential() *Message { FILE: text/message_recovery.go function NewErrorValidationRecoveryFlowExpired (line 11) | func NewErrorValidationRecoveryFlowExpired(expiredAt time.Time) *Message { function NewRecoverySuccessful (line 23) | func NewRecoverySuccessful(privilegedSessionExpiresAt time.Time) *Message { function NewRecoveryEmailSent (line 37) | func NewRecoveryEmailSent() *Message { function NewRecoveryEmailWithCodeSent (line 45) | func NewRecoveryEmailWithCodeSent() *Message { function NewRecoveryAskAnyRecoveryAddress (line 53) | func NewRecoveryAskAnyRecoveryAddress() *Message { function NewRecoveryCodeRecoverySelectAddressSent (line 61) | func NewRecoveryCodeRecoverySelectAddressSent(maskedAddress string) *Mes... function NewRecoveryAskForFullAddress (line 72) | func NewRecoveryAskForFullAddress() *Message { function NewRecoveryAskToChooseAddress (line 80) | func NewRecoveryAskToChooseAddress() *Message { function NewRecoveryBack (line 88) | func NewRecoveryBack() *Message { function NewErrorValidationRecoveryTokenInvalidOrAlreadyUsed (line 96) | func NewErrorValidationRecoveryTokenInvalidOrAlreadyUsed() *Message { function NewErrorValidationRecoveryCodeInvalidOrAlreadyUsed (line 104) | func NewErrorValidationRecoveryCodeInvalidOrAlreadyUsed() *Message { function NewErrorValidationRecoveryRetrySuccess (line 112) | func NewErrorValidationRecoveryRetrySuccess() *Message { function NewErrorValidationRecoveryStateFailure (line 120) | func NewErrorValidationRecoveryStateFailure() *Message { FILE: text/message_registration.go function NewInfoRegistration (line 11) | func NewInfoRegistration() *Message { function NewInfoRegistrationWith (line 19) | func NewInfoRegistrationWith(provider string, providerID string) *Message { function NewInfoRegistrationContinue (line 31) | func NewInfoRegistrationContinue() *Message { function NewInfoRegistrationBack (line 39) | func NewInfoRegistrationBack() *Message { function NewInfoSelfServiceChooseCredentials (line 47) | func NewInfoSelfServiceChooseCredentials() *Message { function NewErrorValidationRegistrationFlowExpired (line 55) | func NewErrorValidationRegistrationFlowExpired(expiredAt time.Time) *Mes... function NewInfoSelfServiceRegistrationRegisterWebAuthn (line 67) | func NewInfoSelfServiceRegistrationRegisterWebAuthn() *Message { function NewInfoSelfServiceRegistrationRegisterPasskey (line 75) | func NewInfoSelfServiceRegistrationRegisterPasskey() *Message { function NewRegistrationEmailWithCodeSent (line 83) | func NewRegistrationEmailWithCodeSent() *Message { function NewErrorValidationRegistrationCodeInvalidOrAlreadyUsed (line 91) | func NewErrorValidationRegistrationCodeInvalidOrAlreadyUsed() *Message { function NewErrorValidationRegistrationRetrySuccessful (line 99) | func NewErrorValidationRegistrationRetrySuccessful() *Message { function NewInfoSelfServiceRegistrationRegisterCode (line 107) | func NewInfoSelfServiceRegistrationRegisterCode() *Message { FILE: text/message_settings.go function NewErrorValidationSettingsFlowExpired (line 12) | func NewErrorValidationSettingsFlowExpired(expiredAt time.Time) *Message { function NewInfoSelfServiceSettingsTOTPQRCode (line 24) | func NewInfoSelfServiceSettingsTOTPQRCode() *Message { function NewInfoSelfServiceSettingsTOTPSecret (line 32) | func NewInfoSelfServiceSettingsTOTPSecret(secret string) *Message { function NewInfoSelfServiceSettingsTOTPSecretLabel (line 42) | func NewInfoSelfServiceSettingsTOTPSecretLabel() *Message { function NewInfoSelfServiceSettingsUpdateSuccess (line 50) | func NewInfoSelfServiceSettingsUpdateSuccess() *Message { function NewInfoSelfServiceSettingsUpdateUnlinkTOTP (line 58) | func NewInfoSelfServiceSettingsUpdateUnlinkTOTP() *Message { function NewInfoSelfServiceSettingsRevealLookup (line 66) | func NewInfoSelfServiceSettingsRevealLookup() *Message { function NewInfoSelfServiceSettingsRegenerateLookup (line 74) | func NewInfoSelfServiceSettingsRegenerateLookup() *Message { function NewInfoSelfServiceSettingsDisableLookup (line 82) | func NewInfoSelfServiceSettingsDisableLookup() *Message { function NewInfoSelfServiceSettingsLookupConfirm (line 90) | func NewInfoSelfServiceSettingsLookupConfirm() *Message { function NewInfoSelfServiceSettingsLookupSecretList (line 98) | func NewInfoSelfServiceSettingsLookupSecretList(secrets []string, raw an... function NewInfoSelfServiceSettingsLookupSecret (line 108) | func NewInfoSelfServiceSettingsLookupSecret(secret string) *Message { function NewInfoSelfServiceSettingsLookupSecretUsed (line 119) | func NewInfoSelfServiceSettingsLookupSecretUsed(usedAt time.Time) *Messa... function NewInfoSelfServiceSettingsLookupSecretsLabel (line 131) | func NewInfoSelfServiceSettingsLookupSecretsLabel() *Message { function NewInfoSelfServiceSettingsUpdateLinkOIDC (line 139) | func NewInfoSelfServiceSettingsUpdateLinkOIDC(provider string) *Message { function NewInfoSelfServiceSettingsUpdateUnlinkOIDC (line 150) | func NewInfoSelfServiceSettingsUpdateUnlinkOIDC(provider string) *Message { function NewInfoSelfServiceSettingsRegisterWebAuthn (line 161) | func NewInfoSelfServiceSettingsRegisterWebAuthn() *Message { function NewInfoSelfServiceSettingsRegisterPasskey (line 169) | func NewInfoSelfServiceSettingsRegisterPasskey() *Message { function NewInfoSelfServiceRegisterWebAuthnDisplayName (line 177) | func NewInfoSelfServiceRegisterWebAuthnDisplayName() *Message { function NewInfoSelfServiceRemoveWebAuthn (line 185) | func NewInfoSelfServiceRemoveWebAuthn(name string, createdAt time.Time) ... function NewInfoSelfServiceRemovePasskey (line 198) | func NewInfoSelfServiceRemovePasskey(name string, createdAt time.Time) *... FILE: text/message_system.go function NewErrorSystemGeneric (line 6) | func NewErrorSystemGeneric(reason string) *Message { function NewErrorSystemNoAuthenticationMethodsAvailable (line 17) | func NewErrorSystemNoAuthenticationMethodsAvailable() *Message { function NewCaptchaContainerMessage (line 25) | func NewCaptchaContainerMessage() *Message { FILE: text/message_test.go function TestMessage (line 13) | func TestMessage(t *testing.T) { function TestNewErrorValidationDuplicateCredentialsWithHints (line 25) | func TestNewErrorValidationDuplicateCredentialsWithHints(t *testing.T) { function TestMessages (line 42) | func TestMessages(t *testing.T) { FILE: text/message_validation.go function NewValidationErrorGeneric (line 16) | func NewValidationErrorGeneric(reason string) *Message { function NewValidationErrorRequired (line 27) | func NewValidationErrorRequired(missing string) *Message { function NewErrorValidationMinLength (line 38) | func NewErrorValidationMinLength(minLength, actualLength int) *Message { function NewErrorValidationMaxLength (line 50) | func NewErrorValidationMaxLength(maxLength, actualLength int) *Message { function NewErrorValidationInvalidFormat (line 62) | func NewErrorValidationInvalidFormat(pattern string) *Message { function NewErrorValidationMinimum (line 73) | func NewErrorValidationMinimum(minimum, actual float64) *Message { function NewErrorValidationExclusiveMinimum (line 85) | func NewErrorValidationExclusiveMinimum(minimum, actual float64) *Message { function NewErrorValidationMaximum (line 97) | func NewErrorValidationMaximum(maximum, actual float64) *Message { function NewErrorValidationExclusiveMaximum (line 109) | func NewErrorValidationExclusiveMaximum(maximum, actual float64) *Message { function NewErrorValidationMultipleOf (line 121) | func NewErrorValidationMultipleOf(base, actual float64) *Message { function NewErrorValidationMaxItems (line 133) | func NewErrorValidationMaxItems(maxItems, actualItems int) *Message { function NewErrorValidationMinItems (line 145) | func NewErrorValidationMinItems(minItems, actualItems int) *Message { function NewErrorValidationUniqueItems (line 157) | func NewErrorValidationUniqueItems(indexA, indexB int) *Message { function NewErrorValidationWrongType (line 169) | func NewErrorValidationWrongType(allowedTypes []string, actualType strin... function NewErrorValidationConst (line 181) | func NewErrorValidationConst(expected any) *Message { function NewErrorValidationConstGeneric (line 192) | func NewErrorValidationConstGeneric() *Message { function NewErrorValidationEmail (line 200) | func NewErrorValidationEmail(value string) *Message { function NewErrorValidationPhone (line 211) | func NewErrorValidationPhone(value string) *Message { function NewErrorValidationPasswordPolicyViolationGeneric (line 222) | func NewErrorValidationPasswordPolicyViolationGeneric(reason string) *Me... function NewErrorValidationPasswordIdentifierTooSimilar (line 233) | func NewErrorValidationPasswordIdentifierTooSimilar() *Message { function NewErrorValidationPasswordMinLength (line 241) | func NewErrorValidationPasswordMinLength(minLength, actualLength int) *M... function NewErrorValidationPasswordMaxLength (line 253) | func NewErrorValidationPasswordMaxLength(maxLength, actualLength int) *M... function NewErrorValidationPasswordNewSameAsOld (line 265) | func NewErrorValidationPasswordNewSameAsOld() *Message { function NewErrorValidationPasswordTooManyBreaches (line 273) | func NewErrorValidationPasswordTooManyBreaches(breaches int64) *Message { function NewErrorValidationInvalidCredentials (line 284) | func NewErrorValidationInvalidCredentials() *Message { function NewErrorValidationAccountNotFound (line 292) | func NewErrorValidationAccountNotFound() *Message { function NewErrorValidationDuplicateCredentials (line 300) | func NewErrorValidationDuplicateCredentials() *Message { function NewErrorValidationDuplicateCredentialsWithHints (line 308) | func NewErrorValidationDuplicateCredentialsWithHints(availableCredential... function NewErrorValidationDuplicateCredentialsOnOIDCLink (line 369) | func NewErrorValidationDuplicateCredentialsOnOIDCLink() *Message { function NewErrorValidationTOTPVerifierWrong (line 378) | func NewErrorValidationTOTPVerifierWrong() *Message { function NewErrorValidationLookupAlreadyUsed (line 386) | func NewErrorValidationLookupAlreadyUsed() *Message { function NewErrorValidationLookupInvalid (line 394) | func NewErrorValidationLookupInvalid() *Message { function NewErrorValidationIdentifierMissing (line 402) | func NewErrorValidationIdentifierMissing() *Message { function NewErrorValidationAddressNotVerified (line 410) | func NewErrorValidationAddressNotVerified() *Message { function NewErrorValidationNoTOTPDevice (line 418) | func NewErrorValidationNoTOTPDevice() *Message { function NewErrorValidationNoLookup (line 426) | func NewErrorValidationNoLookup() *Message { function NewErrorValidationNoWebAuthnDevice (line 434) | func NewErrorValidationNoWebAuthnDevice() *Message { function NewErrorValidationSuchNoWebAuthnUser (line 442) | func NewErrorValidationSuchNoWebAuthnUser() *Message { function NewErrorValidationNoCodeUser (line 450) | func NewErrorValidationNoCodeUser() *Message { function NewErrorValidationTraitsMismatch (line 458) | func NewErrorValidationTraitsMismatch() *Message { function NewErrorCaptchaFailed (line 466) | func NewErrorCaptchaFailed() *Message { FILE: text/message_verification.go function NewErrorValidationVerificationFlowExpired (line 11) | func NewErrorValidationVerificationFlowExpired(expiredAt time.Time) *Mes... function NewInfoSelfServiceVerificationSuccessful (line 23) | func NewInfoSelfServiceVerificationSuccessful() *Message { function NewVerificationEmailSent (line 31) | func NewVerificationEmailSent() *Message { function NewErrorValidationVerificationTokenInvalidOrAlreadyUsed (line 39) | func NewErrorValidationVerificationTokenInvalidOrAlreadyUsed() *Message { function NewErrorValidationVerificationRetrySuccess (line 47) | func NewErrorValidationVerificationRetrySuccess() *Message { function NewErrorValidationVerificationStateFailure (line 55) | func NewErrorValidationVerificationStateFailure() *Message { function NewErrorValidationVerificationCodeInvalidOrAlreadyUsed (line 63) | func NewErrorValidationVerificationCodeInvalidOrAlreadyUsed() *Message { function NewVerificationEmailWithCodeSent (line 71) | func NewVerificationEmailWithCodeSent() *Message { FILE: text/type.go type UITextType (line 9) | type UITextType constant Info (line 13) | Info UITextType = "info" constant Error (line 14) | Error UITextType = "error" constant Success (line 15) | Success UITextType = "success" FILE: ui/container/container.go type Container (line 41) | type Container struct method GetNodes (line 137) | func (c *Container) GetNodes() *node.Nodes { method SortNodes (line 141) | func (c *Container) SortNodes(ctx context.Context, opts ...node.SortOp... method ResetMessages (line 146) | func (c *Container) ResetMessages(exclude ...string) { method Reset (line 157) | func (c *Container) Reset(exclude ...string) { method ParseError (line 167) | func (c *Container) ParseError(group node.UiNodeGroup, err error) error { method UpdateNodeValuesFromJSON (line 299) | func (c *Container) UpdateNodeValuesFromJSON(raw json.RawMessage, pref... method UnsetNode (line 314) | func (c *Container) UnsetNode(id string) { method SetCSRF (line 319) | func (c *Container) SetCSRF(token string) { method SetNode (line 324) | func (c *Container) SetNode(n *node.Node) { method SetValue (line 329) | func (c *Container) SetValue(id string, n *node.Node) { method AddMessage (line 340) | func (c *Container) AddMessage(group node.UiNodeGroup, err *text.Messa... method Scan (line 358) | func (c *Container) Scan(value interface{}) error { method Value (line 362) | func (c *Container) Value() (driver.Value, error) { function New (line 64) | func New(action string) *Container { function NewFromHTTPRequest (line 74) | func NewFromHTTPRequest(r *http.Request, group node.UiNodeGroup, action ... function NewFromJSON (line 88) | func NewFromJSON(action string, group node.UiNodeGroup, raw json.RawMess... function NewFromStruct (line 95) | func NewFromStruct(action string, group node.UiNodeGroup, v interface{},... function NewFromJSONSchema (line 107) | func NewFromJSONSchema(ctx context.Context, action string, group node.Ui... function NodesFromJSONSchema (line 118) | func NodesFromJSONSchema(ctx context.Context, group node.UiNodeGroup, js... function translateValidationError (line 220) | func translateValidationError(err *jsonschema.ValidationError) *text.Mes... function addPrefix (line 369) | func addPrefix(name, prefix, separator string) string { FILE: ui/container/container_test.go function newJSONRequest (line 32) | func newJSONRequest(t *testing.T, j string) *http.Request { function newFormRequest (line 39) | func newFormRequest(t *testing.T, values url.Values) *http.Request { function TestContainer (line 46) | func TestContainer(t *testing.T) { FILE: ui/container/error.go type richError (line 7) | type richError interface FILE: ui/container/types.go type ErrorParser (line 11) | type ErrorParser interface type NodeSetter (line 18) | type NodeSetter interface type NodeUnsetter (line 23) | type NodeUnsetter interface type ValueSetter (line 28) | type ValueSetter interface type CSRFSetter (line 33) | type CSRFSetter interface type Resetter (line 38) | type Resetter interface type MessageResetter (line 43) | type MessageResetter interface type FieldSorter (line 48) | type FieldSorter interface type NodeGetter (line 52) | type NodeGetter interface FILE: ui/node/attributes.go constant InputAttributeTypeText (line 14) | InputAttributeTypeText UiNodeInputAttributeType = "text" constant InputAttributeTypePassword (line 15) | InputAttributeTypePassword UiNodeInputAttributeType = "password" constant InputAttributeTypeNumber (line 16) | InputAttributeTypeNumber UiNodeInputAttributeType = "number" constant InputAttributeTypeCheckbox (line 17) | InputAttributeTypeCheckbox UiNodeInputAttributeType = "checkbox" constant InputAttributeTypeHidden (line 18) | InputAttributeTypeHidden UiNodeInputAttributeType = "hidden" constant InputAttributeTypeEmail (line 19) | InputAttributeTypeEmail UiNodeInputAttributeType = "email" constant InputAttributeTypeTel (line 20) | InputAttributeTypeTel UiNodeInputAttributeType = "tel" constant InputAttributeTypeSubmit (line 21) | InputAttributeTypeSubmit UiNodeInputAttributeType = "submit" constant InputAttributeTypeButton (line 22) | InputAttributeTypeButton UiNodeInputAttributeType = "button" constant InputAttributeTypeDateTimeLocal (line 23) | InputAttributeTypeDateTimeLocal UiNodeInputAttributeType = "datetime-local" constant InputAttributeTypeDate (line 24) | InputAttributeTypeDate UiNodeInputAttributeType = "date" constant InputAttributeTypeURI (line 25) | InputAttributeTypeURI UiNodeInputAttributeType = "url" constant InputAttributeAutocompleteEmail (line 29) | InputAttributeAutocompleteEmail UiNodeInputAttributeAutocompl... constant InputAttributeAutocompleteTel (line 30) | InputAttributeAutocompleteTel UiNodeInputAttributeAutocompl... constant InputAttributeAutocompleteUrl (line 31) | InputAttributeAutocompleteUrl UiNodeInputAttributeAutocompl... constant InputAttributeAutocompleteCurrentPassword (line 32) | InputAttributeAutocompleteCurrentPassword UiNodeInputAttributeAutocompl... constant InputAttributeAutocompleteNewPassword (line 33) | InputAttributeAutocompleteNewPassword UiNodeInputAttributeAutocompl... constant InputAttributeAutocompleteOneTimeCode (line 34) | InputAttributeAutocompleteOneTimeCode UiNodeInputAttributeAutocompl... constant InputAttributeAutocompleteUsernameWebauthn (line 35) | InputAttributeAutocompleteUsernameWebauthn UiNodeInputAttributeAutocompl... type UiNodeInputAttributeType (line 39) | type UiNodeInputAttributeType type UiNodeInputAttributeAutocomplete (line 42) | type UiNodeInputAttributeAutocomplete type Attributes (line 47) | type Attributes interface type InputAttributes (line 70) | type InputAttributes struct method ID (line 332) | func (a *InputAttributes) ID() string { method Matches (line 352) | func (a *InputAttributes) Matches(other Attributes) bool { method SetValue (line 445) | func (a *InputAttributes) SetValue(value interface{}) { method GetValue (line 465) | func (a *InputAttributes) GetValue() interface{} { method Reset (line 485) | func (a *InputAttributes) Reset() { method GetNodeType (line 501) | func (a *InputAttributes) GetNodeType() UiNodeType { type ImageAttributes (line 136) | type ImageAttributes struct method ID (line 336) | func (a *ImageAttributes) ID() string { method Matches (line 377) | func (a *ImageAttributes) Matches(other Attributes) bool { method SetValue (line 449) | func (a *ImageAttributes) SetValue(value interface{}) { method GetValue (line 469) | func (a *ImageAttributes) GetValue() interface{} { method Reset (line 489) | func (a *ImageAttributes) Reset() { method GetNodeType (line 505) | func (a *ImageAttributes) GetNodeType() UiNodeType { type AnchorAttributes (line 168) | type AnchorAttributes struct method ID (line 340) | func (a *AnchorAttributes) ID() string { method Matches (line 394) | func (a *AnchorAttributes) Matches(other Attributes) bool { method SetValue (line 453) | func (a *AnchorAttributes) SetValue(value interface{}) { method GetValue (line 473) | func (a *AnchorAttributes) GetValue() interface{} { method Reset (line 492) | func (a *AnchorAttributes) Reset() { method GetNodeType (line 509) | func (a *AnchorAttributes) GetNodeType() UiNodeType { type TextAttributes (line 195) | type TextAttributes struct method ID (line 344) | func (a *TextAttributes) ID() string { method Matches (line 411) | func (a *TextAttributes) Matches(other Attributes) bool { method SetValue (line 457) | func (a *TextAttributes) SetValue(value interface{}) { method GetValue (line 477) | func (a *TextAttributes) GetValue() interface{} { method Reset (line 495) | func (a *TextAttributes) Reset() { method GetNodeType (line 513) | func (a *TextAttributes) GetNodeType() UiNodeType { type ScriptAttributes (line 216) | type ScriptAttributes struct method ID (line 348) | func (a *ScriptAttributes) ID() string { method Matches (line 424) | func (a *ScriptAttributes) Matches(other Attributes) bool { method SetValue (line 461) | func (a *ScriptAttributes) SetValue(value interface{}) { method GetValue (line 481) | func (a *ScriptAttributes) GetValue() interface{} { method Reset (line 498) | func (a *ScriptAttributes) Reset() { method GetNodeType (line 517) | func (a *ScriptAttributes) GetNodeType() UiNodeType { type DivisionAttributes (line 273) | type DivisionAttributes struct method ID (line 294) | func (d DivisionAttributes) ID() string { method Reset (line 298) | func (d DivisionAttributes) Reset() {} method SetValue (line 300) | func (d DivisionAttributes) SetValue(_ interface{}) {} method GetValue (line 302) | func (d DivisionAttributes) GetValue() interface{} { method GetNodeType (line 306) | func (d DivisionAttributes) GetNodeType() UiNodeType { method Matches (line 310) | func (d DivisionAttributes) Matches(other Attributes) bool { FILE: ui/node/attributes_input.go constant DisableFormField (line 15) | DisableFormField = "disableFormField" function toFormType (line 17) | func toFormType(n string, i interface{}) UiNodeInputAttributeType { type InputAttributesModifier (line 36) | type InputAttributesModifier type InputAttributesModifiers (line 37) | type InputAttributesModifiers function WithRequiredInputAttribute (line 40) | func WithRequiredInputAttribute(a *InputAttributes) { function WithMaxLengthInputAttribute (line 44) | func WithMaxLengthInputAttribute(maxLength int) func(a *InputAttributes) { function WithInputAttributes (line 50) | func WithInputAttributes(f func(a *InputAttributes)) func(a *InputAttrib... function applyInputAttributes (line 56) | func applyInputAttributes(opts []InputAttributesModifier, attributes *In... type ImageAttributesModifier (line 64) | type ImageAttributesModifier type ImageAttributesModifiers (line 65) | type ImageAttributesModifiers function WithImageAttributes (line 68) | func WithImageAttributes(f func(a *ImageAttributes)) func(a *ImageAttrib... function applyImageAttributes (line 74) | func applyImageAttributes(opts ImageAttributesModifiers, attributes *Ima... type ScriptAttributesModifier (line 82) | type ScriptAttributesModifier type ScriptAttributesModifiers (line 83) | type ScriptAttributesModifiers function applyScriptAttributes (line 86) | func applyScriptAttributes(opts ScriptAttributesModifiers, attributes *S... type DivisionAttributesModifier (line 94) | type DivisionAttributesModifier type DivisionAttributesModifiers (line 95) | type DivisionAttributesModifiers function WithDivisionAttributes (line 98) | func WithDivisionAttributes(f func(a *DivisionAttributes)) func(a *Divis... function applyDivisionAttributes (line 104) | func applyDivisionAttributes(opts DivisionAttributesModifiers, attribute... function NewInputFieldFromJSON (line 111) | func NewInputFieldFromJSON(name string, value interface{}, group UiNodeG... function NewInputField (line 120) | func NewInputField(name string, value interface{}, group UiNodeGroup, in... function NewImageField (line 129) | func NewImageField(id string, src string, group UiNodeGroup, opts ...Ima... function NewTextField (line 138) | func NewTextField(id string, text *text.Message, group UiNodeGroup) *Node { function NewDivisionField (line 147) | func NewDivisionField(id string, group UiNodeGroup, opts ...DivisionAttr... function NewAnchorField (line 156) | func NewAnchorField(id string, href string, group UiNodeGroup, title *te... function NewScriptField (line 165) | func NewScriptField(name string, src string, group UiNodeGroup, integrit... function NewInputFieldFromSchema (line 183) | func NewInputFieldFromSchema(name string, group UiNodeGroup, p jsonschem... FILE: ui/node/attributes_input_csrf.go function NewCSRFNode (line 8) | func NewCSRFNode(token string) *Node { FILE: ui/node/attributes_input_test.go function TestFieldFromPath (line 21) | func TestFieldFromPath(t *testing.T) { FILE: ui/node/attributes_test.go function TestIDs (line 18) | func TestIDs(t *testing.T) { function TestMatchesAnchorAttributes (line 26) | func TestMatchesAnchorAttributes(t *testing.T) { function TestMatchesImageAttributes (line 39) | func TestMatchesImageAttributes(t *testing.T) { function TestMatchesInputAttributes (line 52) | func TestMatchesInputAttributes(t *testing.T) { function TestMatchesTextAttributes (line 84) | func TestMatchesTextAttributes(t *testing.T) { function TestNodeEncode (line 90) | func TestNodeEncode(t *testing.T) { function TestNodeDecode (line 112) | func TestNodeDecode(t *testing.T) { FILE: ui/node/helper.go function PasswordLoginOrder (line 6) | func PasswordLoginOrder(in []string) []string { FILE: ui/node/identifiers.go constant TOTPCode (line 7) | TOTPCode = "totp_code" constant TOTPSecretKey (line 8) | TOTPSecretKey = "totp_secret_key" constant TOTPQR (line 9) | TOTPQR = "totp_qr" constant TOTPUnlink (line 10) | TOTPUnlink = "totp_unlink" constant LookupReveal (line 14) | LookupReveal = "lookup_secret_reveal" constant LookupRegenerate (line 15) | LookupRegenerate = "lookup_secret_regenerate" constant LookupDisable (line 16) | LookupDisable = "lookup_secret_disable" constant LookupCodes (line 17) | LookupCodes = "lookup_secret_codes" constant LookupConfirm (line 18) | LookupConfirm = "lookup_secret_confirm" constant LookupCodeEnter (line 19) | LookupCodeEnter = "lookup_secret" constant ProfileChooseCredentials (line 23) | ProfileChooseCredentials = "profile_choose_credentials" constant WebAuthnRegisterTrigger (line 27) | WebAuthnRegisterTrigger = "webauthn_register_trigger" constant WebAuthnRegister (line 28) | WebAuthnRegister = "webauthn_register" constant WebAuthnLogin (line 29) | WebAuthnLogin = "webauthn_login" constant WebAuthnLoginTrigger (line 30) | WebAuthnLoginTrigger = "webauthn_login_trigger" constant WebAuthnRegisterDisplayName (line 31) | WebAuthnRegisterDisplayName = "webauthn_register_displayname" constant WebAuthnRemove (line 32) | WebAuthnRemove = "webauthn_remove" constant WebAuthnScript (line 33) | WebAuthnScript = "webauthn_script" constant PasskeyRegisterTrigger (line 37) | PasskeyRegisterTrigger = "passkey_register_trigger" constant PasskeyRegister (line 38) | PasskeyRegister = "passkey_register" constant PasskeySettingsRegister (line 39) | PasskeySettingsRegister = "passkey_settings_register" constant PasskeyCreateData (line 40) | PasskeyCreateData = "passkey_create_data" constant PasskeyLogin (line 41) | PasskeyLogin = "passkey_login" constant PasskeyChallenge (line 42) | PasskeyChallenge = "passkey_challenge" constant PasskeyLoginTrigger (line 43) | PasskeyLoginTrigger = "passkey_login_trigger" constant PasskeyRemove (line 44) | PasskeyRemove = "passkey_remove" FILE: ui/node/node.go type UiNodeType (line 24) | type UiNodeType method String (line 35) | func (t UiNodeType) String() string { constant Text (line 27) | Text UiNodeType = "text" constant Input (line 28) | Input UiNodeType = "input" constant Image (line 29) | Image UiNodeType = "img" constant Anchor (line 30) | Anchor UiNodeType = "a" constant Script (line 31) | Script UiNodeType = "script" constant Division (line 32) | Division UiNodeType = "div" type UiNodeGroup (line 40) | type UiNodeGroup method String (line 58) | func (g UiNodeGroup) String() string { constant DefaultGroup (line 43) | DefaultGroup UiNodeGroup = "default" constant PasswordGroup (line 44) | PasswordGroup UiNodeGroup = "password" constant OpenIDConnectGroup (line 45) | OpenIDConnectGroup UiNodeGroup = "oidc" constant ProfileGroup (line 46) | ProfileGroup UiNodeGroup = "profile" constant LinkGroup (line 47) | LinkGroup UiNodeGroup = "link" constant CodeGroup (line 48) | CodeGroup UiNodeGroup = "code" constant TOTPGroup (line 49) | TOTPGroup UiNodeGroup = "totp" constant LookupGroup (line 50) | LookupGroup UiNodeGroup = "lookup_secret" constant WebAuthnGroup (line 51) | WebAuthnGroup UiNodeGroup = "webauthn" constant PasskeyGroup (line 52) | PasskeyGroup UiNodeGroup = "passkey" constant IdentifierFirstGroup (line 53) | IdentifierFirstGroup UiNodeGroup = "identifier_first" constant CaptchaGroup (line 54) | CaptchaGroup UiNodeGroup = "captcha" constant SAMLGroup (line 55) | SAMLGroup UiNodeGroup = "saml" type Nodes (line 63) | type Nodes method Find (line 149) | func (n Nodes) Find(id string) *Node { method FindAll (line 159) | func (n Nodes) FindAll(id string) []Node { method Reset (line 170) | func (n Nodes) Reset(exclude ...string) { method ResetNodes (line 180) | func (n Nodes) ResetNodes(reset ...string) { method ResetNodesWithPrefix (line 189) | func (n Nodes) ResetNodesWithPrefix(prefix string) { method SortBySchema (line 249) | func (n Nodes) SortBySchema(ctx context.Context, opts ...SortOption) e... method Remove (line 319) | func (n *Nodes) Remove(ids ...string) { method RemoveGroup (line 341) | func (n *Nodes) RemoveGroup(group UiNodeGroup) { method RemoveGroups (line 356) | func (n *Nodes) RemoveGroups(group ...UiNodeGroup) { method ClearTransientNodes (line 367) | func (n *Nodes) ClearTransientNodes() { method Upsert (line 385) | func (n *Nodes) Upsert(node *Node) { method SetValueAttribute (line 402) | func (n *Nodes) SetValueAttribute(id string, value interface{}) bool { method Append (line 413) | func (n *Nodes) Append(node *Node) { method RemoveMatching (line 417) | func (n *Nodes) RemoveMatching(node *Node) { type Node (line 71) | type Node struct method ID (line 128) | func (n *Node) ID() string { method Reset (line 132) | func (n *Node) Reset() { method WithMetaLabel (line 137) | func (n *Node) WithMetaLabel(label *text.Message) *Node { method GetValue (line 145) | func (n *Node) GetValue() interface{} { method Matches (line 432) | func (n *Node) Matches(needle *Node) bool { method UnmarshalJSON (line 448) | func (n *Node) UnmarshalJSON(data []byte) error { method MarshalJSON (line 494) | func (n *Node) MarshalJSON() ([]byte, error) { type Meta (line 110) | type Meta struct type jsonRawNode (line 120) | type jsonRawNode struct function getStringSliceIndexOf (line 197) | func getStringSliceIndexOf(needle []string, haystack string) int { type sortOptions (line 206) | type sortOptions struct type SortOption (line 214) | type SortOption function SortByGroups (line 216) | func SortByGroups(orderByGroups []UiNodeGroup) func(*sortOptions) { function SortBySchema (line 225) | func SortBySchema(schemaRef string) func(*sortOptions) { function SortUseOrder (line 231) | func SortUseOrder(keysInOrder []string) func(*sortOptions) { function SortUseOrderAppend (line 237) | func SortUseOrderAppend(keysInOrder []string) func(*sortOptions) { function SortUpdateOrder (line 243) | func SortUpdateOrder(f func([]string) []string) func(*sortOptions) { FILE: ui/node/node_test.go function init (line 33) | func init() { function TestNodesSort (line 41) | func TestNodesSort(t *testing.T) { function TestNodesUpsert (line 141) | func TestNodesUpsert(t *testing.T) { function TestNodesRemove (line 150) | func TestNodesRemove(t *testing.T) { function TestNodeJSON (line 162) | func TestNodeJSON(t *testing.T) { function TestMatchesNode (line 201) | func TestMatchesNode(t *testing.T) { function TestRemoveMatchingNodes (line 223) | func TestRemoveMatchingNodes(t *testing.T) { function TestNodeMarshalJSON (line 262) | func TestNodeMarshalJSON(t *testing.T) { function TestNodes_FindAll (line 410) | func TestNodes_FindAll(t *testing.T) { function TestNodes_RemoveGroup (line 434) | func TestNodes_RemoveGroup(t *testing.T) { FILE: x/cookie.go function SessionPersistValues (line 15) | func SessionPersistValues(w http.ResponseWriter, r *http.Request, s sess... function SessionGetString (line 27) | func SessionGetString(r *http.Request, s sessions.StoreExact, id string,... function SessionGetStringOr (line 55) | func SessionGetStringOr(r *http.Request, s sessions.StoreExact, id, key,... function SessionUnset (line 63) | func SessionUnset(w http.ResponseWriter, r *http.Request, s sessions.Sto... function SessionSetExpiresIn (line 75) | func SessionSetExpiresIn(w http.ResponseWriter, r *http.Request, s sessi... function SessionUnsetKey (line 86) | func SessionUnsetKey(w http.ResponseWriter, r *http.Request, s sessions.... FILE: x/cookie_test.go function TestSession (line 19) | func TestSession(t *testing.T) { FILE: x/err.go type WithIdentityIDError (line 15) | type WithIdentityIDError struct method Error (line 20) | func (e *WithIdentityIDError) Error() string { method Unwrap (line 24) | func (e *WithIdentityIDError) Unwrap() error { method IdentityID (line 28) | func (e *WithIdentityIDError) IdentityID() uuid.UUID { function WrapWithIdentityIDError (line 32) | func WrapWithIdentityIDError(err error, identityID uuid.UUID) error { function RecoverStatusCode (line 53) | func RecoverStatusCode(err error, fallback int) int { function Must (line 61) | func Must[T any](t T, err error) T { FILE: x/err_test.go function TestWrapWithIdentityIDError (line 17) | func TestWrapWithIdentityIDError(t *testing.T) { FILE: x/events/events.go constant IdentityCreated (line 24) | IdentityCreated semconv.Event = "IdentityCreated" constant IdentityDeleted (line 25) | IdentityDeleted semconv.Event = "IdentityDeleted" constant IdentityUpdated (line 26) | IdentityUpdated semconv.Event = "IdentityUpdated" constant JsonnetMappingFailed (line 27) | JsonnetMappingFailed semconv.Event = "JsonnetMappingFailed" constant LoginFailed (line 28) | LoginFailed semconv.Event = "LoginFailed" constant LoginInitiated (line 29) | LoginInitiated semconv.Event = "LoginInitiated" constant LoginSucceeded (line 30) | LoginSucceeded semconv.Event = "LoginSucceeded" constant RecoveryFailed (line 31) | RecoveryFailed semconv.Event = "RecoveryFailed" constant RecoveryInitiatedByAdmin (line 32) | RecoveryInitiatedByAdmin semconv.Event = "RecoveryInitiatedByAdmin" constant RecoverySucceeded (line 33) | RecoverySucceeded semconv.Event = "RecoverySucceeded" constant RegistrationFailed (line 34) | RegistrationFailed semconv.Event = "RegistrationFailed" constant RegistrationInitiated (line 35) | RegistrationInitiated semconv.Event = "RegistrationInitiated" constant RegistrationSucceeded (line 36) | RegistrationSucceeded semconv.Event = "RegistrationSucceeded" constant SessionChanged (line 37) | SessionChanged semconv.Event = "SessionChanged" constant SessionChecked (line 38) | SessionChecked semconv.Event = "SessionChecked" constant SessionIssued (line 39) | SessionIssued semconv.Event = "SessionIssued" constant SessionLifespanExtended (line 40) | SessionLifespanExtended semconv.Event = "SessionLifespanExtended" constant SessionRevoked (line 41) | SessionRevoked semconv.Event = "SessionRevoked" constant SessionTokenizedAsJWT (line 42) | SessionTokenizedAsJWT semconv.Event = "SessionTokenizedAsJWT" constant SettingsFailed (line 43) | SettingsFailed semconv.Event = "SettingsFailed" constant SettingsSucceeded (line 44) | SettingsSucceeded semconv.Event = "SettingsSucceeded" constant VerificationFailed (line 45) | VerificationFailed semconv.Event = "VerificationFailed" constant VerificationSucceeded (line 46) | VerificationSucceeded semconv.Event = "VerificationSucceeded" constant WebhookDelivered (line 47) | WebhookDelivered semconv.Event = "WebhookDelivered" constant WebhookFailed (line 48) | WebhookFailed semconv.Event = "WebhookFailed" constant WebhookSucceeded (line 49) | WebhookSucceeded semconv.Event = "WebhookSucceeded" constant CourierMessageAbandoned (line 50) | CourierMessageAbandoned semconv.Event = "CourierMessageAbandoned" constant CourierMessageDispatched (line 51) | CourierMessageDispatched semconv.Event = "CourierMessageDispatched" constant AttributeKeyErrorReason (line 55) | AttributeKeyErrorReason semconv.AttributeKey = "Erro... constant AttributeKeyFlowID (line 56) | AttributeKeyFlowID semconv.AttributeKey = "FlowID" constant AttributeKeyFlowRefresh (line 57) | AttributeKeyFlowRefresh semconv.AttributeKey = "Flow... constant AttributeKeyFlowRequestedAAL (line 58) | AttributeKeyFlowRequestedAAL semconv.AttributeKey = "Flow... constant AttributeKeyJsonnetInput (line 59) | AttributeKeyJsonnetInput semconv.AttributeKey = "Json... constant AttributeKeyJsonnetOutput (line 60) | AttributeKeyJsonnetOutput semconv.AttributeKey = "Json... constant AttributeKeyLoginRequestedAAL (line 61) | AttributeKeyLoginRequestedAAL semconv.AttributeKey = "Logi... constant AttributeKeyLoginRequestedPrivilegedSession (line 62) | AttributeKeyLoginRequestedPrivilegedSession semconv.AttributeKey = "Logi... constant AttributeKeyOrganizationID (line 63) | AttributeKeyOrganizationID semconv.AttributeKey = "Orga... constant AttributeKeyReason (line 64) | AttributeKeyReason semconv.AttributeKey = "Reason" constant AttributeKeySelfServiceFlowType (line 66) | AttributeKeySelfServiceFlowType semconv.AttributeKey = "SelfServiceFlowT... constant AttributeKeySelfServiceFlowName (line 68) | AttributeKeySelfServiceFlowName semconv.AttributeKey = "SelfServiceFlowN... constant AttributeKeySelfServiceMethodUsed (line 70) | AttributeKeySelfServiceMethodUsed semconv.AttributeKey = "SelfServi... constant AttributeKeySelfServiceSSOProviderUsed (line 71) | AttributeKeySelfServiceSSOProviderUsed semconv.AttributeKey = "SelfServi... constant AttributeKeySelfServiceStrategyUsed (line 75) | AttributeKeySelfServiceStrategyUsed semconv.AttributeKey = "SelfServi... constant AttributeKeySessionAAL (line 76) | AttributeKeySessionAAL semconv.AttributeKey = "SessionAAL" constant AttributeKeySessionExpiresAt (line 77) | AttributeKeySessionExpiresAt semconv.AttributeKey = "SessionEx... constant AttributeKeySessionID (line 78) | AttributeKeySessionID semconv.AttributeKey = "SessionID" constant AttributeKeyTokenizedSessionTTL (line 79) | AttributeKeyTokenizedSessionTTL semconv.AttributeKey = "Tokenized... constant AttributeKeyWebhookAttemptNumber (line 80) | AttributeKeyWebhookAttemptNumber semconv.AttributeKey = "WebhookAt... constant AttributeKeyWebhookID (line 81) | AttributeKeyWebhookID semconv.AttributeKey = "WebhookID" constant AttributeKeyWebhookRequestBody (line 82) | AttributeKeyWebhookRequestBody semconv.AttributeKey = "WebhookRe... constant AttributeKeyWebhookRequestID (line 83) | AttributeKeyWebhookRequestID semconv.AttributeKey = "WebhookRe... constant AttributeKeyWebhookResponseBody (line 84) | AttributeKeyWebhookResponseBody semconv.AttributeKey = "WebhookRe... constant AttributeKeyWebhookResponseStatusCode (line 85) | AttributeKeyWebhookResponseStatusCode semconv.AttributeKey = "WebhookRe... constant AttributeKeyWebhookTriggerID (line 86) | AttributeKeyWebhookTriggerID semconv.AttributeKey = "WebhookTr... constant AttributeKeyWebhookURL (line 87) | AttributeKeyWebhookURL semconv.AttributeKey = "WebhookURL" constant AttributeKeyCourierMessageID (line 88) | AttributeKeyCourierMessageID semconv.AttributeKey = "CourierMe... constant AttributeKeyCourierMessageChannel (line 89) | AttributeKeyCourierMessageChannel semconv.AttributeKey = "CourierMe... constant AttributeKeyCourierMessageTemplateType (line 90) | AttributeKeyCourierMessageTemplateType semconv.AttributeKey = "CourierMe... function attrSessionID (line 93) | func attrSessionID(val uuid.UUID) otelattr.KeyValue { function attrTokenizedSessionTTL (line 97) | func attrTokenizedSessionTTL(ttl time.Duration) otelattr.KeyValue { function attrSessionAAL (line 101) | func attrSessionAAL(val string) otelattr.KeyValue { function attLoginRequestedAAL (line 105) | func attLoginRequestedAAL(val string) otelattr.KeyValue { function attrFlowRefresh (line 109) | func attrFlowRefresh(val bool) otelattr.KeyValue { function attrOrganizationID (line 113) | func attrOrganizationID(val string) otelattr.KeyValue { function attrFlowRequestedAAL (line 117) | func attrFlowRequestedAAL(val string) otelattr.KeyValue { function attSessionExpiresAt (line 121) | func attSessionExpiresAt(expiresAt time.Time) otelattr.KeyValue { function attLoginRequestedPrivilegedSession (line 125) | func attLoginRequestedPrivilegedSession(val bool) otelattr.KeyValue { function attrSelfServiceFlowType (line 129) | func attrSelfServiceFlowType(val string) otelattr.KeyValue { function attrSelfServiceMethodUsed (line 133) | func attrSelfServiceMethodUsed(val string) otelattr.KeyValue { function attrSelfServiceSSOProviderUsed (line 137) | func attrSelfServiceSSOProviderUsed(val string) otelattr.KeyValue { function attrWebhookID (line 141) | func attrWebhookID(id string) otelattr.KeyValue { function attrWebhookURL (line 145) | func attrWebhookURL(URL *url.URL) otelattr.KeyValue { function attrWebhookReq (line 149) | func attrWebhookReq(body []byte) otelattr.KeyValue { function attrWebhookRes (line 153) | func attrWebhookRes(body []byte) otelattr.KeyValue { function attrWebhookStatus (line 157) | func attrWebhookStatus(status int) otelattr.KeyValue { function attrWebhookAttempt (line 161) | func attrWebhookAttempt(n int) otelattr.KeyValue { function attrWebhookRequestID (line 165) | func attrWebhookRequestID(id uuid.UUID) otelattr.KeyValue { function attrWebhookTriggerID (line 169) | func attrWebhookTriggerID(id uuid.UUID) otelattr.KeyValue { function attrReason (line 174) | func attrReason(err error) otelattr.KeyValue { function attrErrorReason (line 178) | func attrErrorReason(err error) otelattr.KeyValue { function attrJsonnetInput (line 182) | func attrJsonnetInput(in []byte) otelattr.KeyValue { function attrJsonnetOutput (line 186) | func attrJsonnetOutput(out string) otelattr.KeyValue { function attrFlowID (line 190) | func attrFlowID(id uuid.UUID) otelattr.KeyValue { function attrCourierMessageID (line 194) | func attrCourierMessageID(id uuid.UUID) otelattr.KeyValue { function attrCourierMessageChannel (line 198) | func attrCourierMessageChannel(channel string) otelattr.KeyValue { function attrCourierMessageTemplateType (line 202) | func attrCourierMessageTemplateType(templateType string) otelattr.KeyVal... function NewSessionIssued (line 206) | func NewSessionIssued(ctx context.Context, aal string, sessionID, identi... function NewSessionChanged (line 218) | func NewSessionChanged(ctx context.Context, aal string, sessionID, ident... function NewSessionLifespanExtended (line 230) | func NewSessionLifespanExtended(ctx context.Context, sessionID, identity... type LoginSucceededOpts (line 242) | type LoginSucceededOpts struct function NewLoginSucceeded (line 248) | func NewLoginSucceeded(ctx context.Context, o *LoginSucceededOpts) (stri... function NewRegistrationSucceeded (line 265) | func NewRegistrationSucceeded(ctx context.Context, flowID, identityID uu... function NewRecoverySucceeded (line 277) | func NewRecoverySucceeded(ctx context.Context, flowID, identityID uuid.U... function NewRecoveryInitiatedByAdmin (line 288) | func NewRecoveryInitiatedByAdmin(ctx context.Context, flowID, identityID... function NewSettingsSucceeded (line 299) | func NewSettingsSucceeded(ctx context.Context, flowID, identityID uuid.U... function NewVerificationSucceeded (line 310) | func NewVerificationSucceeded(ctx context.Context, flowID, identityID uu... function NewRegistrationFailed (line 321) | func NewRegistrationFailed(ctx context.Context, flowID uuid.UUID, flowTy... function NewRecoveryFailed (line 333) | func NewRecoveryFailed(ctx context.Context, flowID uuid.UUID, flowType, ... function NewSettingsFailed (line 351) | func NewSettingsFailed(ctx context.Context, flowID uuid.UUID, flowType, ... function NewVerificationFailed (line 369) | func NewVerificationFailed(ctx context.Context, flowID uuid.UUID, flowTy... function NewIdentityCreated (line 388) | func NewIdentityCreated(ctx context.Context, identityID uuid.UUID) (stri... function NewIdentityDeleted (line 398) | func NewIdentityDeleted(ctx context.Context, identityID uuid.UUID) (stri... function NewIdentityUpdated (line 408) | func NewIdentityUpdated(ctx context.Context, identityID uuid.UUID) (stri... function NewLoginFailed (line 418) | func NewLoginFailed(ctx context.Context, flowID uuid.UUID, flowType, met... function NewSessionRevoked (line 438) | func NewSessionRevoked(ctx context.Context, sessionID, identityID uuid.U... function NewSessionChecked (line 449) | func NewSessionChecked(ctx context.Context, sessionID, identityID uuid.U... function NewSessionJWTIssued (line 460) | func NewSessionJWTIssued(ctx context.Context, sessionID, identityID uuid... function NewWebhookDelivered (line 472) | func NewWebhookDelivered(ctx context.Context, URL *url.URL, reqBody []by... function NewWebhookSucceeded (line 489) | func NewWebhookSucceeded(ctx context.Context, triggerID uuid.UUID, webho... function NewWebhookFailed (line 499) | func NewWebhookFailed(ctx context.Context, err error, triggerID uuid.UUI... function NewJsonnetMappingFailed (line 515) | func NewJsonnetMappingFailed(ctx context.Context, err error, jsonnetInpu... function NewLoginInitiated (line 532) | func NewLoginInitiated(ctx context.Context, flowID uuid.UUID, flowType s... function NewRegistrationInitiated (line 549) | func NewRegistrationInitiated(ctx context.Context, flowID uuid.UUID, flo... function reasonForError (line 564) | func reasonForError(err error) string { function NewCourierMessageAbandoned (line 574) | func NewCourierMessageAbandoned(ctx context.Context, messageID uuid.UUID... function NewCourierMessageDispatched (line 586) | func NewCourierMessageDispatched(ctx context.Context, messageID uuid.UUI... FILE: x/events/events_test.go function TestNewJsonnetMappingFailed (line 20) | func TestNewJsonnetMappingFailed(t *testing.T) { function TestNewLoginFailed (line 80) | func TestNewLoginFailed(t *testing.T) { function TestNewRecoveryFailed (line 122) | func TestNewRecoveryFailed(t *testing.T) { function TestNewSettingsFailed (line 159) | func TestNewSettingsFailed(t *testing.T) { function TestNewVerificationFailed (line 196) | func TestNewVerificationFailed(t *testing.T) { FILE: x/fetcher.go type JWKSFetchProvider (line 8) | type JWKSFetchProvider interface FILE: x/http.go type ctxKey (line 17) | type ctxKey struct function WithBaseURL (line 21) | func WithBaseURL(ctx context.Context, baseURL *url.URL) context.Context { function BaseURLFromContext (line 29) | func BaseURLFromContext(ctx context.Context) *url.URL { function FlowBaseURL (line 43) | func FlowBaseURL(ctx context.Context, flow interface{ GetRequestURL() st... function RequestURL (line 56) | func RequestURL(r *http.Request) *url.URL { function SendFlowCompletedAsRedirectOrJSON (line 77) | func SendFlowCompletedAsRedirectOrJSON( function SendFlowErrorAsRedirectOrJSON (line 86) | func SendFlowErrorAsRedirectOrJSON( function sendFlowAsRedirectOrJSON (line 92) | func sendFlowAsRedirectOrJSON( function AcceptsJSON (line 113) | func AcceptsJSON(r *http.Request) bool { FILE: x/http_test.go function TestWithBaseURL (line 26) | func TestWithBaseURL(t *testing.T) { function TestRequestURL (line 32) | func TestRequestURL(t *testing.T) { function TestAcceptToRedirectOrJSON (line 44) | func TestAcceptToRedirectOrJSON(t *testing.T) { FILE: x/httploadermiddleware.go function HTTPLoaderContextMiddleware (line 17) | func HTTPLoaderContextMiddleware(reg httpx.ClientProvider) negroni.Handl... FILE: x/ider.go type Ider (line 6) | type Ider interface FILE: x/isjsonrequest.go function IsJSONRequest (line 15) | func IsJSONRequest(r *http.Request) bool { function IsBrowserRequest (line 20) | func IsBrowserRequest(r *http.Request) bool { FILE: x/isjsonrequest_test.go function TestIsBrowserOrAPIRequest (line 15) | func TestIsBrowserOrAPIRequest(t *testing.T) { FILE: x/json_bool.go type ConvertibleBoolean (line 11) | type ConvertibleBoolean method UnmarshalJSON (line 13) | func (bit *ConvertibleBoolean) UnmarshalJSON(data []byte) error { FILE: x/json_bool_test.go type ConvertibleBooleanTest (line 14) | type ConvertibleBooleanTest struct function TestUnmarshalBool (line 18) | func TestUnmarshalBool(t *testing.T) { function TestUnmarshalString (line 31) | func TestUnmarshalString(t *testing.T) { function TestUnmarshalError (line 44) | func TestUnmarshalError(t *testing.T) { FILE: x/json_marshal.go function ParseRawMessageOrEmpty (line 9) | func ParseRawMessageOrEmpty(input json.RawMessage) (map[string]interface... FILE: x/json_marshal_test.go function TestParseRawMessageOrEmpty (line 16) | func TestParseRawMessageOrEmpty(t *testing.T) { FILE: x/json_number.go function IsValidNumber (line 9) | func IsValidNumber(s string) bool { FILE: x/keys.go function Keys (line 6) | func Keys[K comparable, V any](m map[K]V) []K { FILE: x/mailhog.go function StartMailhog (line 30) | func StartMailhog(t testing.TB, withChaosMonkey bool) (smtpAddr, apiAddr... function serveSMTP (line 71) | func serveSMTP(ctx context.Context, ln net.Listener, cfg *mailhogconf.Co... FILE: x/map_json.go function TypeMap (line 20) | func TypeMap(m map[string]string) (map[string]interface{}, error) { function UntypedMapToJSON (line 53) | func UntypedMapToJSON(m map[string]string) (json.RawMessage, error) { function StructToMap (line 67) | func StructToMap(s interface{}) (map[string]interface{}, error) { FILE: x/map_json_test.go function TestStructToMap (line 14) | func TestStructToMap(t *testing.T) { function TestTypeMap (line 32) | func TestTypeMap(t *testing.T) { function TestUntypedMapToJSON (line 61) | func TestUntypedMapToJSON(t *testing.T) { FILE: x/maxitems.go function MaxItemsPerPage (line 7) | func MaxItemsPerPage(is int) int { FILE: x/nocache.go function NoCache (line 11) | func NoCache(w http.ResponseWriter) { function NoCacheHandlerFunc (line 16) | func NoCacheHandlerFunc(handle http.HandlerFunc) http.HandlerFunc { function NoCacheHandler (line 24) | func NoCacheHandler(handle http.Handler) http.Handler { FILE: x/normalize.go function NormalizeEmailIdentifier (line 14) | func NormalizeEmailIdentifier(value string) string { function NormalizePhoneIdentifier (line 22) | func NormalizePhoneIdentifier(value string) string { function NormalizeOtherIdentifier (line 30) | func NormalizeOtherIdentifier(value string) string { function GracefulNormalization (line 41) | func GracefulNormalization(value string) string { function NormalizeIdentifier (line 57) | func NormalizeIdentifier(value, format string) (string, error) { FILE: x/normalize_test.go function TestNormalizeEmailIdentifier (line 12) | func TestNormalizeEmailIdentifier(t *testing.T) { function TestNormalizePhoneIdentifier (line 27) | func TestNormalizePhoneIdentifier(t *testing.T) { function TestNormalizeOtherIdentifier (line 42) | func TestNormalizeOtherIdentifier(t *testing.T) { function TestGracefulNormalization (line 57) | func TestGracefulNormalization(t *testing.T) { function TestNormalizeIdentifier (line 73) | func TestNormalizeIdentifier(t *testing.T) { FILE: x/nosurfx/nosurf_test.go function TestNosurfBaseCookieHandler (line 31) | func TestNosurfBaseCookieHandler(t *testing.T) { function TestNosurfBaseCookieHandlerAliasing (line 62) | func TestNosurfBaseCookieHandlerAliasing(t *testing.T) { function TestNosurfBaseCookieErrorHandler (line 80) | func TestNosurfBaseCookieErrorHandler(t *testing.T) { FILE: x/pagination.go constant MapPaginationDateFormat (line 17) | MapPaginationDateFormat = "2006-01-02 15:04:05.99999" function ParsePagination (line 20) | func ParsePagination(r *http.Request) (page, itemsPerPage int) { function PaginationHeader (line 24) | func PaginationHeader(w http.ResponseWriter, u url.URL, total int64, pag... type Page (line 28) | type Page struct function ParseKeysetOrPagePagination (line 34) | func ParseKeysetOrPagePagination(r *http.Request) ([]keysetpagination.Op... FILE: x/pointer.go function PointToUUID (line 8) | func PointToUUID(id uuid.UUID) *uuid.UUID { FILE: x/provider.go type CookieProvider (line 17) | type CookieProvider interface type BasicRegistry (line 22) | type BasicRegistry struct method Tracer (line 28) | func (s *BasicRegistry) Tracer(_ context.Context) *otelx.Tracer { retu... method Logger (line 29) | func (s *BasicRegistry) Logger() *logrusx.Logger { retu... method HTTPClient (line 31) | func (s *BasicRegistry) HTTPClient(_ context.Context, _ ...httpx.Resil... FILE: x/readall.go function MustReadAll (line 10) | func MustReadAll(r io.Reader) []byte { FILE: x/redir/port_redirect.go function RedirectToAdminRoute (line 15) | func RedirectToAdminRoute(reg config.Provider) http.HandlerFunc { function RedirectToPublicRoute (line 29) | func RedirectToPublicRoute(reg config.Provider) http.HandlerFunc { FILE: x/redir/port_redirect_test.go function TestRedirectToPublicAdminRoute (line 25) | func TestRedirectToPublicAdminRoute(t *testing.T) { FILE: x/redir/secure_redirect.go type secureRedirectOptions (line 25) | type secureRedirectOptions struct type SecureRedirectOption (line 32) | type SecureRedirectOption function SecureRedirectAllowURLs (line 35) | func SecureRedirectAllowURLs(urls []url.URL) SecureRedirectOption { function SecureRedirectUseSourceURL (line 43) | func SecureRedirectUseSourceURL(source string) SecureRedirectOption { function SecureRedirectReturnTo (line 50) | func SecureRedirectReturnTo(returnTo string) SecureRedirectOption { function SecureRedirectAllowSelfServiceURLs (line 59) | func SecureRedirectAllowSelfServiceURLs(publicURL *url.URL) SecureRedire... function SecureRedirectOverrideDefaultReturnTo (line 67) | func SecureRedirectOverrideDefaultReturnTo(defaultReturnTo *url.URL) Sec... function SecureRedirectToIsAllowedHost (line 74) | func SecureRedirectToIsAllowedHost(returnTo *url.URL, allowed url.URL) b... function TakeOverReturnToParameter (line 83) | func TakeOverReturnToParameter(from string, to string, fallback ...strin... function SecureRedirectTo (line 105) | func SecureRedirectTo(r *http.Request, defaultReturnTo *url.URL, opts ..... function SecureContentNegotiationRedirection (line 152) | func SecureContentNegotiationRedirection( function ContentNegotiationRedirection (line 183) | func ContentNegotiationRedirection( FILE: x/redir/secure_redirect_test.go function TestSecureContentNegotiationRedirection (line 28) | func TestSecureContentNegotiationRedirection(t *testing.T) { function TestSecureRedirectToIsAllowedHost (line 83) | func TestSecureRedirectToIsAllowedHost(t *testing.T) { function TestTakeOverReturnToParameter (line 108) | func TestTakeOverReturnToParameter(t *testing.T) { function TestSecureRedirectTo (line 129) | func TestSecureRedirectTo(t *testing.T) { FILE: x/require.go function RequireJSONMarshal (line 14) | func RequireJSONMarshal(t *testing.T, in interface{}) []byte { FILE: x/router.go type PublicHandler (line 10) | type PublicHandler interface type AdminHandler (line 14) | type AdminHandler interface type Handler (line 18) | type Handler interface FILE: x/sdkx.go function SDKError (line 6) | func SDKError(err error) error { FILE: x/sql.go function EscapeLikePattern (line 8) | func EscapeLikePattern(s string) string { FILE: x/sql_test.go function TestEscapeLikePattern (line 12) | func TestEscapeLikePattern(t *testing.T) { FILE: x/stub_fs.go type StubFS (line 12) | type StubFS struct method Mode (line 25) | func (stub *StubFS) Mode() fs.FileMode { method ModTime (line 29) | func (stub *StubFS) ModTime() time.Time { method IsDir (line 33) | func (stub *StubFS) IsDir() bool { method Sys (line 37) | func (stub *StubFS) Sys() interface{} { method Stat (line 41) | func (stub *StubFS) Stat() (fs.FileInfo, error) { method Read (line 45) | func (stub *StubFS) Read(bytes []byte) (int, error) { method Close (line 54) | func (stub *StubFS) Close() error { method Open (line 58) | func (stub *StubFS) Open(name string) (fs.File, error) { method Name (line 62) | func (stub *StubFS) Name() string { method Size (line 66) | func (stub *StubFS) Size() int64 { function NewStubFS (line 18) | func NewStubFS(name string, data []byte) fs.FS { FILE: x/swagger/swagger_types_global.go type ErrorGeneric (line 13) | type ErrorGeneric struct type GenericError (line 21) | type GenericError struct type _ (line 26) | type _ struct FILE: x/swagger/swagger_types_overrides.go type uuid (line 12) | type uuid FILE: x/tests.go function MustEncodeJSON (line 14) | func MustEncodeJSON(t *testing.T, in interface{}) string { constant HostedHttpBin (line 20) | HostedHttpBin = "https://ory-network-httpbin-ijakee5waq-ez.a.run.app" FILE: x/time.go function AssertEqualTime (line 18) | func AssertEqualTime(t *testing.T, expected, actual time.Time) { function RequireEqualTime (line 22) | func RequireEqualTime(t *testing.T, expected, actual time.Time) { function RandomDelay (line 35) | func RandomDelay(base, deviation time.Duration) time.Duration { FILE: x/time_test.go function TestRandomDelay (line 13) | func TestRandomDelay(t *testing.T) { FILE: x/token_prefixes.go constant OrySessionToken (line 6) | OrySessionToken = "ory_st_" constant OryLogoutToken (line 7) | OryLogoutToken = "ory_lo_" FILE: x/transaction.go type TransactionPersistenceProvider (line 13) | type TransactionPersistenceProvider interface type TransactionalPersister (line 17) | type TransactionalPersister interface FILE: x/uuid.go function NewUUID (line 12) | func NewUUID() uuid.UUID { function ParseUUID (line 16) | func ParseUUID(in string) uuid.UUID { FILE: x/webauthnx/aaguid/aaguid.go type AAGUID (line 24) | type AAGUID struct function init (line 30) | func init() { function Lookup (line 45) | func Lookup(id []byte) *AAGUID { FILE: x/webauthnx/aaguid/aaguid_test.go function TestLookup (line 13) | func TestLookup(t *testing.T) { FILE: x/webauthnx/handler.go constant ScriptURL (line 16) | ScriptURL = "/.well-known/ory/webauthn.js" type webAuthnJavaScript (line 22) | type webAuthnJavaScript function RegisterWebauthnRoute (line 48) | func RegisterWebauthnRoute(r *httprouterx.RouterPublic) { FILE: x/webauthnx/js/trigger.go type WebAuthnTriggers (line 9) | type WebAuthnTriggers method String (line 20) | func (r WebAuthnTriggers) String() string { constant WebAuthnTriggersWebAuthnRegistration (line 12) | WebAuthnTriggersWebAuthnRegistration WebAuthnTriggers = "oryWebA... constant WebAuthnTriggersWebAuthnLogin (line 13) | WebAuthnTriggersWebAuthnLogin WebAuthnTriggers = "oryWebA... constant WebAuthnTriggersPasskeyLogin (line 14) | WebAuthnTriggersPasskeyLogin WebAuthnTriggers = "oryPass... constant WebAuthnTriggersPasskeyLoginAutocompleteInit (line 15) | WebAuthnTriggersPasskeyLoginAutocompleteInit WebAuthnTriggers = "oryPass... constant WebAuthnTriggersPasskeyRegistration (line 16) | WebAuthnTriggersPasskeyRegistration WebAuthnTriggers = "oryPass... constant WebAuthnTriggersPasskeySettingsRegistration (line 17) | WebAuthnTriggersPasskeySettingsRegistration WebAuthnTriggers = "oryPass... FILE: x/webauthnx/js/trigger_test.go function TestToString (line 12) | func TestToString(t *testing.T) { FILE: x/webauthnx/js/webauthn.js function __oryWebAuthnBufferDecode (line 18) | function __oryWebAuthnBufferDecode(value) { function __oryWebAuthnBufferEncode (line 27) | function __oryWebAuthnBufferEncode(value) { function __oryWebAuthnLogin (line 34) | function __oryWebAuthnLogin( function __oryWebAuthnRegistration (line 87) | function __oryWebAuthnRegistration( function __oryPasskeyLoginAutocompleteInit (line 140) | async function __oryPasskeyLoginAutocompleteInit() { function __oryPasskeyLogin (line 220) | function __oryPasskeyLogin() { function __oryPasskeyRegistration (line 300) | function __oryPasskeyRegistration() { function __oryPasskeySettingsRegistration (line 360) | function __oryPasskeySettingsRegistration() { FILE: x/webauthnx/nodes.go function NewWebAuthnConnectionTrigger (line 23) | func NewWebAuthnConnectionTrigger(options string) *node.Node { function NewWebAuthnScript (line 33) | func NewWebAuthnScript(base *url.URL) *node.Node { function NewWebAuthnConnectionInput (line 44) | func NewWebAuthnConnectionInput() *node.Node { function NewWebAuthnLoginTrigger (line 49) | func NewWebAuthnLoginTrigger(options string) *node.Node { function NewWebAuthnLoginInput (line 59) | func NewWebAuthnLoginInput() *node.Node { function NewWebAuthnConnectionName (line 64) | func NewWebAuthnConnectionName() *node.Node { function NewWebAuthnUnlink (line 69) | func NewWebAuthnUnlink(c *identity.CredentialWebAuthn, opts ...node.Inpu... function NewPasskeyUnlink (line 79) | func NewPasskeyUnlink(c *identity.CredentialWebAuthn, opts ...node.Input... FILE: x/webauthnx/user.go type User (line 14) | type User struct method WebAuthnID (line 29) | func (u *User) WebAuthnID() []byte { method WebAuthnName (line 33) | func (u *User) WebAuthnName() string { method WebAuthnDisplayName (line 37) | func (u *User) WebAuthnDisplayName() string { method WebAuthnIcon (line 41) | func (u *User) WebAuthnIcon() string { method WebAuthnCredentials (line 45) | func (u *User) WebAuthnCredentials() []webauthn.Credential { function NewUser (line 21) | func NewUser(id []byte, credentials []webauthn.Credential, config *webau...