API mimics `management.Management`s general interface, except it refers to the interfaces instead of the concrete structs.
| 9 | // API mimics `management.Management`s general interface, except it refers to |
| 10 | // the interfaces instead of the concrete structs. |
| 11 | type API struct { |
| 12 | Action ActionAPI |
| 13 | Anomaly AnomalyAPI |
| 14 | AttackProtection AttackProtectionAPI |
| 15 | Branding BrandingAPI |
| 16 | BrandingTheme BrandingThemeAPI |
| 17 | Client ClientAPI |
| 18 | ClientGrant ClientGrantAPI |
| 19 | Connection ConnectionAPI |
| 20 | CustomDomain CustomDomainAPI |
| 21 | EmailTemplate EmailTemplateAPI |
| 22 | EmailProvider EmailProviderAPI |
| 23 | EventStream EventStreamAPI |
| 24 | Flow FlowAPI |
| 25 | FlowVaultConnection FlowVaultConnectionAPI |
| 26 | Form FormAPI |
| 27 | Log LogAPI |
| 28 | LogStream LogStreamAPI |
| 29 | Organization OrganizationAPI |
| 30 | NetworkACL NetworkACLAPI |
| 31 | Prompt PromptAPI |
| 32 | ResourceServer ResourceServerAPI |
| 33 | Role RoleAPI |
| 34 | Rule RuleAPI |
| 35 | Tenant TenantAPI |
| 36 | TokenExchange TokenExchangeAPI |
| 37 | User UserAPI |
| 38 | Jobs JobsAPI |
| 39 | SelfServiceProfile SelfServiceProfileAPI |
| 40 | UserAttributeProfile UserAttributeProfilesAPI |
| 41 | |
| 42 | HTTPClient HTTPClientAPI |
| 43 | } |
| 44 | |
| 45 | func NewAPI(m *management.Management) *API { |
| 46 | return &API{ |
nothing calls this directly
no outgoing calls
no test coverage detected