-
Notifications
You must be signed in to change notification settings - Fork 314
Expand file tree
/
Copy pathmanagement.ManagementClient.html
More file actions
119 lines (114 loc) · 144 KB
/
management.ManagementClient.html
File metadata and controls
119 lines (114 loc) · 144 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html><html class="default" lang="en" data-base="../"><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ManagementClient | Auth0 Node.js SDK - v5.10.0</title><meta name="description" content="Documentation for Auth0 Node.js SDK"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script><script async src="../assets/hierarchy.js" id="tsd-hierarchy-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => window.app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><a href="../index.html" class="title">Auth0 Node.js SDK - v5.10.0</a><div id="tsd-toolbar-links"></div><button id="tsd-search-trigger" class="tsd-widget" aria-label="Search"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-search"></use></svg></button><dialog id="tsd-search" aria-label="Search"><input role="combobox" id="tsd-search-input" aria-controls="tsd-search-results" aria-autocomplete="list" aria-expanded="true" autocapitalize="off" autocomplete="off" placeholder="Search the docs" maxLength="100"/><ul role="listbox" id="tsd-search-results"></ul><div id="tsd-search-status" aria-live="polite" aria-atomic="true"><div>Preparing search index...</div></div></dialog><a href="#" class="tsd-widget menu" id="tsd-toolbar-menu-trigger" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb" aria-label="Breadcrumb"><li><a href="../modules/management.html">management</a></li><li><a href="" aria-current="page">ManagementClient</a></li></ul><h1>Class ManagementClient</h1></div><section class="tsd-panel tsd-comment"><div class="tsd-comment tsd-typography"><p>Auth0 Management API client wrapper.</p>
<p>Provides a high-level interface to Auth0's Management API with automatic
token management, telemetry, and Auth0-specific configuration.</p>
</div><div class="tsd-comment tsd-typography"><div class="tsd-tag-example"><h4 class="tsd-anchor-link" id="example-using-client-credentials-client-secret">Example: Using client credentials (client secret)<a href="#example-using-client-credentials-client-secret" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><pre><code class="typescript"><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-6">client</span><span class="hl-1"> = </span><span class="hl-5">new</span><span class="hl-1"> </span><span class="hl-0">ManagementClient</span><span class="hl-1">({</span><br/><span class="hl-1"> </span><span class="hl-4">domain:</span><span class="hl-1"> </span><span class="hl-2">'your-tenant.auth0.com'</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">clientId:</span><span class="hl-1"> </span><span class="hl-2">'your-client-id'</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">clientSecret:</span><span class="hl-1"> </span><span class="hl-2">'your-client-secret'</span><br/><span class="hl-1">});</span>
</code><button type="button">Copy</button></pre>
</div><div class="tsd-tag-example"><h4 class="tsd-anchor-link" id="example-using-client-credentials-client-assertion">Example: Using client credentials (client assertion)<a href="#example-using-client-credentials-client-assertion" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><pre><code class="typescript"><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-6">client</span><span class="hl-1"> = </span><span class="hl-5">new</span><span class="hl-1"> </span><span class="hl-0">ManagementClient</span><span class="hl-1">({</span><br/><span class="hl-1"> </span><span class="hl-4">domain:</span><span class="hl-1"> </span><span class="hl-2">'your-tenant.auth0.com'</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">clientId:</span><span class="hl-1"> </span><span class="hl-2">'your-client-id'</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">clientAssertionSigningKey:</span><span class="hl-1"> </span><span class="hl-2">'your-private-key'</span><br/><span class="hl-1">});</span>
</code><button type="button">Copy</button></pre>
</div><div class="tsd-tag-example"><h4 class="tsd-anchor-link" id="example-using-existing-token">Example: Using existing token<a href="#example-using-existing-token" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><pre><code class="typescript"><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-6">client</span><span class="hl-1"> = </span><span class="hl-5">new</span><span class="hl-1"> </span><span class="hl-0">ManagementClient</span><span class="hl-1">({</span><br/><span class="hl-1"> </span><span class="hl-4">domain:</span><span class="hl-1"> </span><span class="hl-2">'your-tenant.auth0.com'</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">token:</span><span class="hl-1"> </span><span class="hl-2">'your-static-token'</span><span class="hl-1"> </span><span class="hl-7">// or () => getAccessToken()</span><br/><span class="hl-1">});</span>
</code><button type="button">Copy</button></pre>
</div><div class="tsd-tag-example"><h4 class="tsd-anchor-link" id="example-using-custom-domain-header">Example: Using custom domain header<a href="#example-using-custom-domain-header" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><pre><code class="typescript"><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-6">client</span><span class="hl-1"> = </span><span class="hl-5">new</span><span class="hl-1"> </span><span class="hl-0">ManagementClient</span><span class="hl-1">({</span><br/><span class="hl-1"> </span><span class="hl-4">domain:</span><span class="hl-1"> </span><span class="hl-2">'your-tenant.auth0.com'</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">clientId:</span><span class="hl-1"> </span><span class="hl-2">'your-client-id'</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">clientSecret:</span><span class="hl-1"> </span><span class="hl-2">'your-client-secret'</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">withCustomDomainHeader:</span><span class="hl-1"> </span><span class="hl-2">'auth.example.com'</span><span class="hl-1"> </span><span class="hl-7">// Auto-applies to whitelisted endpoints</span><br/><span class="hl-1">});</span>
</code><button type="button">Copy</button></pre>
</div><div class="tsd-tag-example"><h4 class="tsd-anchor-link" id="example-using-custom-fetcher-with-custom-domain-header-they-work-together">Example: Using custom fetcher with custom domain header (they work together)<a href="#example-using-custom-fetcher-with-custom-domain-header-they-work-together" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h4><pre><code class="typescript"><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-6">client</span><span class="hl-1"> = </span><span class="hl-5">new</span><span class="hl-1"> </span><span class="hl-0">ManagementClient</span><span class="hl-1">({</span><br/><span class="hl-1"> </span><span class="hl-4">domain:</span><span class="hl-1"> </span><span class="hl-2">'your-tenant.auth0.com'</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">clientId:</span><span class="hl-1"> </span><span class="hl-2">'your-client-id'</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">clientSecret:</span><span class="hl-1"> </span><span class="hl-2">'your-client-secret'</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">withCustomDomainHeader:</span><span class="hl-1"> </span><span class="hl-2">'auth.example.com'</span><span class="hl-1">, </span><span class="hl-7">// Custom domain header logic</span><br/><span class="hl-1"> </span><span class="hl-0">fetcher</span><span class="hl-4">:</span><span class="hl-1"> </span><span class="hl-5">async</span><span class="hl-1"> (</span><span class="hl-4">args</span><span class="hl-1">) </span><span class="hl-5">=></span><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-4">console</span><span class="hl-1">.</span><span class="hl-0">log</span><span class="hl-1">(</span><span class="hl-2">'Making request:'</span><span class="hl-1">, </span><span class="hl-4">args</span><span class="hl-1">.</span><span class="hl-4">url</span><span class="hl-1">); </span><span class="hl-7">// Custom logging</span><br/><span class="hl-1"> </span><span class="hl-3">return</span><span class="hl-1"> </span><span class="hl-0">fetch</span><span class="hl-1">(</span><span class="hl-4">args</span><span class="hl-1">.</span><span class="hl-4">url</span><span class="hl-1">, { ...</span><span class="hl-4">args</span><span class="hl-1"> }); </span><span class="hl-7">// Custom fetch implementation</span><br/><span class="hl-1"> }</span><br/><span class="hl-1">});</span>
</code><button type="button">Copy</button></pre>
</div></div></section><section class="tsd-panel tsd-hierarchy" data-refl="17013"><h4>Hierarchy (<a href="../hierarchy.html#management.ManagementClient">View Summary</a>)</h4><ul class="tsd-hierarchy"><li class="tsd-hierarchy-item"><a href="management.SDK.ManagementClient.html" class="tsd-signature-type tsd-kind-class">ManagementClient</a><ul class="tsd-hierarchy"><li class="tsd-hierarchy-item"><span class="tsd-hierarchy-target">ManagementClient</span></li></ul></li></ul></section><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h5 class="tsd-index-heading uppercase">Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Management API</h3><div class="tsd-index-list"><a href="#constructor" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Constructor"><use href="../assets/icons.svg#icon-512"></use></svg><span>constructor</span></a>
</div></section><section class="tsd-index-section"><h3 class="tsd-index-heading">Accessors</h3><div class="tsd-index-list"><a href="#actions" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>actions</span></a>
<a href="#branding" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>branding</span></a>
<a href="#clientgrants" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>client<wbr/>Grants</span></a>
<a href="#clients" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>clients</span></a>
<a href="#connectionprofiles" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>connection<wbr/>Profiles</span></a>
<a href="#connections" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>connections</span></a>
<a href="#customdomains" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>custom<wbr/>Domains</span></a>
<a href="#devicecredentials" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>device<wbr/>Credentials</span></a>
<a href="#emailtemplates" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>email<wbr/>Templates</span></a>
<a href="#eventstreams" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>event<wbr/>Streams</span></a>
<a href="#events" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>events</span></a>
<a href="#flows" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>flows</span></a>
<a href="#forms" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>forms</span></a>
<a href="#usergrants" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>user<wbr/>Grants</span></a>
<a href="#groups" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>groups</span></a>
<a href="#hooks" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>hooks</span></a>
<a href="#jobs" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>jobs</span></a>
<a href="#logstreams" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>log<wbr/>Streams</span></a>
<a href="#logs" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>logs</span></a>
<a href="#networkacls" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>network<wbr/>Acls</span></a>
<a href="#organizations" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>organizations</span></a>
<a href="#prompts" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>prompts</span></a>
<a href="#refreshtokens" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>refresh<wbr/>Tokens</span></a>
<a href="#resourceservers" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>resource<wbr/>Servers</span></a>
<a href="#roles" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>roles</span></a>
<a href="#rules" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>rules</span></a>
<a href="#rulesconfigs" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>rules<wbr/>Configs</span></a>
<a href="#selfserviceprofiles" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>self<wbr/>Service<wbr/>Profiles</span></a>
<a href="#sessions" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>sessions</span></a>
<a href="#stats" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>stats</span></a>
<a href="#supplementalsignals" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>supplemental<wbr/>Signals</span></a>
<a href="#tickets" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>tickets</span></a>
<a href="#tokenexchangeprofiles" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>token<wbr/>Exchange<wbr/>Profiles</span></a>
<a href="#userattributeprofiles" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>user<wbr/>Attribute<wbr/>Profiles</span></a>
<a href="#userblocks" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>user<wbr/>Blocks</span></a>
<a href="#users" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>users</span></a>
<a href="#anomaly" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>anomaly</span></a>
<a href="#attackprotection" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>attack<wbr/>Protection</span></a>
<a href="#emails" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>emails</span></a>
<a href="#guardian" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>guardian</span></a>
<a href="#keys" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>keys</span></a>
<a href="#riskassessments" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>risk<wbr/>Assessments</span></a>
<a href="#tenants" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>tenants</span></a>
<a href="#verifiablecredentials" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>verifiable<wbr/>Credentials</span></a>
</div></section><section class="tsd-index-section"><h3 class="tsd-index-heading">Methods</h3><div class="tsd-index-list"><a href="#fetch" class="tsd-index-link tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>fetch</span></a>
</div></section><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="#_options" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>options</span></a>
<a href="#_actions" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>actions</span></a>
<a href="#_branding" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>branding</span></a>
<a href="#_clientgrants" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>client<wbr/>Grants</span></a>
<a href="#_clients" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>clients</span></a>
<a href="#_connectionprofiles" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>connection<wbr/>Profiles</span></a>
<a href="#_connections" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>connections</span></a>
<a href="#_customdomains" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>custom<wbr/>Domains</span></a>
<a href="#_devicecredentials" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>device<wbr/>Credentials</span></a>
<a href="#_emailtemplates" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>email<wbr/>Templates</span></a>
<a href="#_eventstreams" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>event<wbr/>Streams</span></a>
<a href="#_events" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>events</span></a>
<a href="#_flows" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>flows</span></a>
<a href="#_forms" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>forms</span></a>
<a href="#_usergrants" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>user<wbr/>Grants</span></a>
<a href="#_groups" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>groups</span></a>
<a href="#_hooks" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>hooks</span></a>
<a href="#_jobs" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>jobs</span></a>
<a href="#_logstreams" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>log<wbr/>Streams</span></a>
<a href="#_logs" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>logs</span></a>
<a href="#_networkacls" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>network<wbr/>Acls</span></a>
<a href="#_organizations" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>organizations</span></a>
<a href="#_prompts" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>prompts</span></a>
<a href="#_refreshtokens" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>refresh<wbr/>Tokens</span></a>
<a href="#_resourceservers" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>resource<wbr/>Servers</span></a>
<a href="#_roles" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>roles</span></a>
<a href="#_rules" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>rules</span></a>
<a href="#_rulesconfigs" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>rules<wbr/>Configs</span></a>
<a href="#_selfserviceprofiles" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>self<wbr/>Service<wbr/>Profiles</span></a>
<a href="#_sessions" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>sessions</span></a>
<a href="#_stats" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>stats</span></a>
<a href="#_supplementalsignals" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>supplemental<wbr/>Signals</span></a>
<a href="#_tickets" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>tickets</span></a>
<a href="#_tokenexchangeprofiles" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>token<wbr/>Exchange<wbr/>Profiles</span></a>
<a href="#_userattributeprofiles" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>user<wbr/>Attribute<wbr/>Profiles</span></a>
<a href="#_userblocks" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>user<wbr/>Blocks</span></a>
<a href="#_users" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>users</span></a>
<a href="#_anomaly" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>anomaly</span></a>
<a href="#_attackprotection" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>attack<wbr/>Protection</span></a>
<a href="#_emails" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>emails</span></a>
<a href="#_guardian" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>guardian</span></a>
<a href="#_keys" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>keys</span></a>
<a href="#_riskassessments" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>risk<wbr/>Assessments</span></a>
<a href="#_tenants" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>tenants</span></a>
<a href="#_verifiablecredentials" class="tsd-index-link tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>verifiable<wbr/>Credentials</span></a>
</div></section></div></details></section></section><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Management API"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>Management API</h2></summary><section><section class="tsd-panel tsd-member"><h3 class="tsd-anchor-link" id="constructor"><span>constructor</span><a href="#constructor" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class=""><div class="tsd-signature tsd-anchor-link" id="constructormanagementclient"><span class="tsd-signature-keyword">new</span> <span class="tsd-kind-constructor-signature">ManagementClient</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">_options</span><span class="tsd-signature-symbol">:</span> <a href="../types/management.SDK.ManagementClientConfig.html" class="tsd-signature-type tsd-kind-type-alias">ManagementClientConfig</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <a href="" class="tsd-signature-type tsd-kind-class">ManagementClient</a><a href="#constructormanagementclient" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Creates a new Management API client instance.</p>
</div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">_options</span>: <a href="../types/management.SDK.ManagementClientConfig.html" class="tsd-signature-type tsd-kind-type-alias">ManagementClientConfig</a></span><div class="tsd-comment tsd-typography"><p>Configuration options for the Management Client</p>
</div></li></ul></div><h4 class="tsd-returns-title">Returns <a href="" class="tsd-signature-type tsd-kind-class">ManagementClient</a></h4><aside class="tsd-sources"><p>Overrides <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#constructor">constructor</a></p></aside></div></li></ul></section></section></details><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Accessors"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>Accessors</h2></summary><section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="actions"><span>actions</span><a href="#actions" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="actionsactions"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">actions</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.ActionsClient.html" class="tsd-signature-type tsd-kind-class">ActionsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.ActionsClient.html" class="tsd-signature-type tsd-kind-class">ActionsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.actions</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="branding"><span>branding</span><a href="#branding" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="brandingbranding"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">branding</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.BrandingClient.html" class="tsd-signature-type tsd-kind-class">BrandingClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.BrandingClient.html" class="tsd-signature-type tsd-kind-class">BrandingClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.branding</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="clientgrants"><span>client<wbr/>Grants</span><a href="#clientgrants" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="clientgrantsclientgrants"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">clientGrants</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.ClientGrantsClient.html" class="tsd-signature-type tsd-kind-class">ClientGrantsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.ClientGrantsClient.html" class="tsd-signature-type tsd-kind-class">ClientGrantsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.clientGrants</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="clients"><span>clients</span><a href="#clients" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="clientsclients"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">clients</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.ClientsClient.html" class="tsd-signature-type tsd-kind-class">ClientsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.ClientsClient.html" class="tsd-signature-type tsd-kind-class">ClientsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.clients</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="connectionprofiles"><span>connection<wbr/>Profiles</span><a href="#connectionprofiles" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="connectionprofilesconnectionprofiles"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">connectionProfiles</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.ConnectionProfilesClient.html" class="tsd-signature-type tsd-kind-class">ConnectionProfilesClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.ConnectionProfilesClient.html" class="tsd-signature-type tsd-kind-class">ConnectionProfilesClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.connectionProfiles</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="connections"><span>connections</span><a href="#connections" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="connectionsconnections"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">connections</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.ConnectionsClient-1.html" class="tsd-signature-type tsd-kind-class">ConnectionsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.ConnectionsClient-1.html" class="tsd-signature-type tsd-kind-class">ConnectionsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.connections</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="customdomains"><span>custom<wbr/>Domains</span><a href="#customdomains" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="customdomainscustomdomains"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">customDomains</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.CustomDomainsClient.html" class="tsd-signature-type tsd-kind-class">CustomDomainsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.CustomDomainsClient.html" class="tsd-signature-type tsd-kind-class">CustomDomainsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.customDomains</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="devicecredentials"><span>device<wbr/>Credentials</span><a href="#devicecredentials" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="devicecredentialsdevicecredentials"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">deviceCredentials</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.DeviceCredentialsClient.html" class="tsd-signature-type tsd-kind-class">DeviceCredentialsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.DeviceCredentialsClient.html" class="tsd-signature-type tsd-kind-class">DeviceCredentialsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.deviceCredentials</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="emailtemplates"><span>email<wbr/>Templates</span><a href="#emailtemplates" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="emailtemplatesemailtemplates"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">emailTemplates</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.EmailTemplatesClient.html" class="tsd-signature-type tsd-kind-class">EmailTemplatesClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.EmailTemplatesClient.html" class="tsd-signature-type tsd-kind-class">EmailTemplatesClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.emailTemplates</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="eventstreams"><span>event<wbr/>Streams</span><a href="#eventstreams" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="eventstreamseventstreams"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">eventStreams</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.EventStreamsClient.html" class="tsd-signature-type tsd-kind-class">EventStreamsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.EventStreamsClient.html" class="tsd-signature-type tsd-kind-class">EventStreamsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.eventStreams</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="events"><span>events</span><a href="#events" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="eventsevents"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">events</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.EventsClient.html" class="tsd-signature-type tsd-kind-class">EventsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.EventsClient.html" class="tsd-signature-type tsd-kind-class">EventsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.events</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="flows"><span>flows</span><a href="#flows" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="flowsflows"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">flows</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.FlowsClient.html" class="tsd-signature-type tsd-kind-class">FlowsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.FlowsClient.html" class="tsd-signature-type tsd-kind-class">FlowsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.flows</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="forms"><span>forms</span><a href="#forms" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="formsforms"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">forms</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.FormsClient.html" class="tsd-signature-type tsd-kind-class">FormsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.FormsClient.html" class="tsd-signature-type tsd-kind-class">FormsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.forms</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="usergrants"><span>user<wbr/>Grants</span><a href="#usergrants" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="usergrantsusergrants"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">userGrants</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.UserGrantsClient.html" class="tsd-signature-type tsd-kind-class">UserGrantsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.UserGrantsClient.html" class="tsd-signature-type tsd-kind-class">UserGrantsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.userGrants</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="groups"><span>groups</span><a href="#groups" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="groupsgroups"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">groups</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.GroupsClient.html" class="tsd-signature-type tsd-kind-class">GroupsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.GroupsClient.html" class="tsd-signature-type tsd-kind-class">GroupsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.groups</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="hooks"><span>hooks</span><a href="#hooks" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="hookshooks"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">hooks</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.HooksClient.html" class="tsd-signature-type tsd-kind-class">HooksClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.HooksClient.html" class="tsd-signature-type tsd-kind-class">HooksClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.hooks</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="jobs"><span>jobs</span><a href="#jobs" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="jobsjobs"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">jobs</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.JobsClient.html" class="tsd-signature-type tsd-kind-class">JobsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.JobsClient.html" class="tsd-signature-type tsd-kind-class">JobsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.jobs</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="logstreams"><span>log<wbr/>Streams</span><a href="#logstreams" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="logstreamslogstreams"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">logStreams</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.LogStreamsClient.html" class="tsd-signature-type tsd-kind-class">LogStreamsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.LogStreamsClient.html" class="tsd-signature-type tsd-kind-class">LogStreamsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.logStreams</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="logs"><span>logs</span><a href="#logs" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="logslogs"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">logs</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.LogsClient.html" class="tsd-signature-type tsd-kind-class">LogsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.LogsClient.html" class="tsd-signature-type tsd-kind-class">LogsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.logs</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="networkacls"><span>network<wbr/>Acls</span><a href="#networkacls" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="networkaclsnetworkacls"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">networkAcls</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.NetworkAclsClient.html" class="tsd-signature-type tsd-kind-class">NetworkAclsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.NetworkAclsClient.html" class="tsd-signature-type tsd-kind-class">NetworkAclsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.networkAcls</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="organizations"><span>organizations</span><a href="#organizations" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="organizationsorganizations"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">organizations</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.OrganizationsClient-1.html" class="tsd-signature-type tsd-kind-class">OrganizationsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.OrganizationsClient-1.html" class="tsd-signature-type tsd-kind-class">OrganizationsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.organizations</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="prompts"><span>prompts</span><a href="#prompts" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="promptsprompts"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">prompts</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.PromptsClient.html" class="tsd-signature-type tsd-kind-class">PromptsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.PromptsClient.html" class="tsd-signature-type tsd-kind-class">PromptsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.prompts</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="refreshtokens"><span>refresh<wbr/>Tokens</span><a href="#refreshtokens" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="refreshtokensrefreshtokens"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">refreshTokens</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.RefreshTokensClient.html" class="tsd-signature-type tsd-kind-class">RefreshTokensClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.RefreshTokensClient.html" class="tsd-signature-type tsd-kind-class">RefreshTokensClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.refreshTokens</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="resourceservers"><span>resource<wbr/>Servers</span><a href="#resourceservers" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="resourceserversresourceservers"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">resourceServers</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.ResourceServersClient.html" class="tsd-signature-type tsd-kind-class">ResourceServersClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.ResourceServersClient.html" class="tsd-signature-type tsd-kind-class">ResourceServersClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.resourceServers</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="roles"><span>roles</span><a href="#roles" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="rolesroles"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">roles</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.RolesClient-1.html" class="tsd-signature-type tsd-kind-class">RolesClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.RolesClient-1.html" class="tsd-signature-type tsd-kind-class">RolesClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.roles</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="rules"><span>rules</span><a href="#rules" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="rulesrules"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">rules</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.RulesClient.html" class="tsd-signature-type tsd-kind-class">RulesClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.RulesClient.html" class="tsd-signature-type tsd-kind-class">RulesClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.rules</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="rulesconfigs"><span>rules<wbr/>Configs</span><a href="#rulesconfigs" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="rulesconfigsrulesconfigs"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">rulesConfigs</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.RulesConfigsClient.html" class="tsd-signature-type tsd-kind-class">RulesConfigsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.RulesConfigsClient.html" class="tsd-signature-type tsd-kind-class">RulesConfigsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.rulesConfigs</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="selfserviceprofiles"><span>self<wbr/>Service<wbr/>Profiles</span><a href="#selfserviceprofiles" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="selfserviceprofilesselfserviceprofiles"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">selfServiceProfiles</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.SelfServiceProfilesClient.html" class="tsd-signature-type tsd-kind-class">SelfServiceProfilesClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.SelfServiceProfilesClient.html" class="tsd-signature-type tsd-kind-class">SelfServiceProfilesClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.selfServiceProfiles</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="sessions"><span>sessions</span><a href="#sessions" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="sessionssessions"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">sessions</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.SessionsClient.html" class="tsd-signature-type tsd-kind-class">SessionsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.SessionsClient.html" class="tsd-signature-type tsd-kind-class">SessionsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.sessions</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="stats"><span>stats</span><a href="#stats" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="statsstats"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">stats</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.StatsClient.html" class="tsd-signature-type tsd-kind-class">StatsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.StatsClient.html" class="tsd-signature-type tsd-kind-class">StatsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.stats</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="supplementalsignals"><span>supplemental<wbr/>Signals</span><a href="#supplementalsignals" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="supplementalsignalssupplementalsignals"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">supplementalSignals</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.SupplementalSignalsClient.html" class="tsd-signature-type tsd-kind-class">SupplementalSignalsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.SupplementalSignalsClient.html" class="tsd-signature-type tsd-kind-class">SupplementalSignalsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.supplementalSignals</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="tickets"><span>tickets</span><a href="#tickets" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="ticketstickets"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">tickets</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.TicketsClient.html" class="tsd-signature-type tsd-kind-class">TicketsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.TicketsClient.html" class="tsd-signature-type tsd-kind-class">TicketsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.tickets</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="tokenexchangeprofiles"><span>token<wbr/>Exchange<wbr/>Profiles</span><a href="#tokenexchangeprofiles" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="tokenexchangeprofilestokenexchangeprofiles"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">tokenExchangeProfiles</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.TokenExchangeProfilesClient.html" class="tsd-signature-type tsd-kind-class">TokenExchangeProfilesClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.TokenExchangeProfilesClient.html" class="tsd-signature-type tsd-kind-class">TokenExchangeProfilesClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.tokenExchangeProfiles</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="userattributeprofiles"><span>user<wbr/>Attribute<wbr/>Profiles</span><a href="#userattributeprofiles" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="userattributeprofilesuserattributeprofiles"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">userAttributeProfiles</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.UserAttributeProfilesClient.html" class="tsd-signature-type tsd-kind-class">UserAttributeProfilesClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.UserAttributeProfilesClient.html" class="tsd-signature-type tsd-kind-class">UserAttributeProfilesClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.userAttributeProfiles</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="userblocks"><span>user<wbr/>Blocks</span><a href="#userblocks" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="userblocksuserblocks"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">userBlocks</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.UserBlocksClient.html" class="tsd-signature-type tsd-kind-class">UserBlocksClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.UserBlocksClient.html" class="tsd-signature-type tsd-kind-class">UserBlocksClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.userBlocks</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="users"><span>users</span><a href="#users" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="usersusers"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">users</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.UsersClient-2.html" class="tsd-signature-type tsd-kind-class">UsersClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.UsersClient-2.html" class="tsd-signature-type tsd-kind-class">UsersClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.users</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="anomaly"><span>anomaly</span><a href="#anomaly" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="anomalyanomaly"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">anomaly</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.AnomalyClient.html" class="tsd-signature-type tsd-kind-class">AnomalyClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.AnomalyClient.html" class="tsd-signature-type tsd-kind-class">AnomalyClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.anomaly</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="attackprotection"><span>attack<wbr/>Protection</span><a href="#attackprotection" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="attackprotectionattackprotection"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">attackProtection</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.AttackProtectionClient.html" class="tsd-signature-type tsd-kind-class">AttackProtectionClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.AttackProtectionClient.html" class="tsd-signature-type tsd-kind-class">AttackProtectionClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.attackProtection</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="emails"><span>emails</span><a href="#emails" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="emailsemails"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">emails</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.EmailsClient.html" class="tsd-signature-type tsd-kind-class">EmailsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.EmailsClient.html" class="tsd-signature-type tsd-kind-class">EmailsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.emails</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="guardian"><span>guardian</span><a href="#guardian" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="guardianguardian"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">guardian</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.GuardianClient.html" class="tsd-signature-type tsd-kind-class">GuardianClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.GuardianClient.html" class="tsd-signature-type tsd-kind-class">GuardianClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.guardian</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="keys"><span>keys</span><a href="#keys" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="keyskeys"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">keys</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.KeysClient-1.html" class="tsd-signature-type tsd-kind-class">KeysClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.KeysClient-1.html" class="tsd-signature-type tsd-kind-class">KeysClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.keys</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="riskassessments"><span>risk<wbr/>Assessments</span><a href="#riskassessments" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="riskassessmentsriskassessments"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">riskAssessments</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.RiskAssessmentsClient.html" class="tsd-signature-type tsd-kind-class">RiskAssessmentsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.RiskAssessmentsClient.html" class="tsd-signature-type tsd-kind-class">RiskAssessmentsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.riskAssessments</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="tenants"><span>tenants</span><a href="#tenants" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="tenantstenants"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">tenants</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.TenantsClient.html" class="tsd-signature-type tsd-kind-class">TenantsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.TenantsClient.html" class="tsd-signature-type tsd-kind-class">TenantsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.tenants</p></aside></div></li></ul></section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="verifiablecredentials"><span>verifiable<wbr/>Credentials</span><a href="#verifiablecredentials" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li><div class="tsd-signature" id="verifiablecredentialsverifiablecredentials"><span class="tsd-signature-keyword">get</span> <span class="tsd-kind-get-signature">verifiableCredentials</span><span class="tsd-signature-symbol">()</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.VerifiableCredentialsClient.html" class="tsd-signature-type tsd-kind-class">VerifiableCredentialsClient</a></div><div class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="management.SDK.VerifiableCredentialsClient.html" class="tsd-signature-type tsd-kind-class">VerifiableCredentialsClient</a></h4><aside class="tsd-sources"><p>Inherited from FernClient.verifiableCredentials</p></aside></div></li></ul></section></section></details><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Methods"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>Methods</h2></summary><section><section class="tsd-panel tsd-member tsd-is-inherited"><h3 class="tsd-anchor-link" id="fetch"><span>fetch</span><a href="#fetch" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures tsd-is-inherited"><li class="tsd-is-inherited"><div class="tsd-signature tsd-anchor-link" id="fetch-1"><span class="tsd-kind-call-signature">fetch</span><span class="tsd-signature-symbol">(</span><br/> <span class="tsd-kind-parameter">input</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">Request</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">URL</span><span class="tsd-signature-symbol">,</span><br/> <span class="tsd-kind-parameter">init</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">RequestInit</span><span class="tsd-signature-symbol">,</span><br/> <span class="tsd-kind-parameter">requestOptions</span><span class="tsd-signature-symbol">?:</span> <a href="../interfaces/management.SDK.RequestOptions.html" class="tsd-signature-type tsd-kind-interface">RequestOptions</a><span class="tsd-signature-symbol">,</span><br/><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">Response</span><span class="tsd-signature-symbol">></span><a href="#fetch-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></div><div class="tsd-description"><div class="tsd-comment tsd-typography"><p>Make a passthrough request using the SDK's configured auth, retry, logging, etc.
This is useful for making requests to endpoints not yet supported in the SDK.
The input can be a URL string, URL object, or Request object. Relative paths are resolved against the configured base URL.</p>
</div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">input</span>: <span class="tsd-signature-type">string</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">Request</span> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">URL</span></span><div class="tsd-comment tsd-typography"><p>The URL, path, or Request object.</p>
</div></li><li><span><code class="tsd-tag">Optional</code><span class="tsd-kind-parameter">init</span>: <span class="tsd-signature-type">RequestInit</span></span><div class="tsd-comment tsd-typography"><p>Standard fetch RequestInit options.</p>
</div></li><li><span><code class="tsd-tag">Optional</code><span class="tsd-kind-parameter">requestOptions</span>: <a href="../interfaces/management.SDK.RequestOptions.html" class="tsd-signature-type tsd-kind-interface">RequestOptions</a></span><div class="tsd-comment tsd-typography"><p>Per-request overrides (timeout, retries, headers, abort signal).</p>
</div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">Response</span><span class="tsd-signature-symbol">></span></h4><p>A standard Response object.</p>
<aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#fetch">fetch</a></p></aside></div></li></ul></section></section></details><details class="tsd-panel-group tsd-member-group tsd-accordion" open><summary class="tsd-accordion-summary" data-key="section-Properties"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h2>Properties</h2></summary><section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_options"><code class="tsd-tag">Protected</code> <code class="tsd-tag">Readonly</code><span>_<wbr/>options</span><a href="#_options" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_options</span><span class="tsd-signature-symbol">:</span> <a href="../types/management.SDK.NormalizedClientOptionsWithAuth.html" class="tsd-signature-type tsd-kind-type-alias">NormalizedClientOptionsWithAuth</a><span class="tsd-signature-symbol"><</span><a href="../types/management.SDK.BaseClientOptions.html" class="tsd-signature-type tsd-kind-type-alias">BaseClientOptions</a><span class="tsd-signature-symbol">></span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_options">_options</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_actions"><code class="tsd-tag">Protected</code><span>_<wbr/>actions</span><a href="#_actions" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_actions</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.ActionsClient.html" class="tsd-signature-type tsd-kind-class">ActionsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_actions">_actions</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_branding"><code class="tsd-tag">Protected</code><span>_<wbr/>branding</span><a href="#_branding" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_branding</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.BrandingClient.html" class="tsd-signature-type tsd-kind-class">BrandingClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_branding">_branding</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_clientgrants"><code class="tsd-tag">Protected</code><span>_<wbr/>client<wbr/>Grants</span><a href="#_clientgrants" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_clientGrants</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.ClientGrantsClient.html" class="tsd-signature-type tsd-kind-class">ClientGrantsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_clientgrants">_clientGrants</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_clients"><code class="tsd-tag">Protected</code><span>_<wbr/>clients</span><a href="#_clients" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_clients</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.ClientsClient.html" class="tsd-signature-type tsd-kind-class">ClientsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_clients">_clients</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_connectionprofiles"><code class="tsd-tag">Protected</code><span>_<wbr/>connection<wbr/>Profiles</span><a href="#_connectionprofiles" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_connectionProfiles</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.ConnectionProfilesClient.html" class="tsd-signature-type tsd-kind-class">ConnectionProfilesClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_connectionprofiles">_connectionProfiles</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_connections"><code class="tsd-tag">Protected</code><span>_<wbr/>connections</span><a href="#_connections" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_connections</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.ConnectionsClient-1.html" class="tsd-signature-type tsd-kind-class">ConnectionsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_connections">_connections</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_customdomains"><code class="tsd-tag">Protected</code><span>_<wbr/>custom<wbr/>Domains</span><a href="#_customdomains" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_customDomains</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.CustomDomainsClient.html" class="tsd-signature-type tsd-kind-class">CustomDomainsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_customdomains">_customDomains</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_devicecredentials"><code class="tsd-tag">Protected</code><span>_<wbr/>device<wbr/>Credentials</span><a href="#_devicecredentials" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_deviceCredentials</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.DeviceCredentialsClient.html" class="tsd-signature-type tsd-kind-class">DeviceCredentialsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_devicecredentials">_deviceCredentials</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_emailtemplates"><code class="tsd-tag">Protected</code><span>_<wbr/>email<wbr/>Templates</span><a href="#_emailtemplates" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_emailTemplates</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.EmailTemplatesClient.html" class="tsd-signature-type tsd-kind-class">EmailTemplatesClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_emailtemplates">_emailTemplates</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_eventstreams"><code class="tsd-tag">Protected</code><span>_<wbr/>event<wbr/>Streams</span><a href="#_eventstreams" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_eventStreams</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.EventStreamsClient.html" class="tsd-signature-type tsd-kind-class">EventStreamsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_eventstreams">_eventStreams</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_events"><code class="tsd-tag">Protected</code><span>_<wbr/>events</span><a href="#_events" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_events</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.EventsClient.html" class="tsd-signature-type tsd-kind-class">EventsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_events">_events</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_flows"><code class="tsd-tag">Protected</code><span>_<wbr/>flows</span><a href="#_flows" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_flows</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.FlowsClient.html" class="tsd-signature-type tsd-kind-class">FlowsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_flows">_flows</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_forms"><code class="tsd-tag">Protected</code><span>_<wbr/>forms</span><a href="#_forms" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_forms</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.FormsClient.html" class="tsd-signature-type tsd-kind-class">FormsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_forms">_forms</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_usergrants"><code class="tsd-tag">Protected</code><span>_<wbr/>user<wbr/>Grants</span><a href="#_usergrants" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_userGrants</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.UserGrantsClient.html" class="tsd-signature-type tsd-kind-class">UserGrantsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_usergrants">_userGrants</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_groups"><code class="tsd-tag">Protected</code><span>_<wbr/>groups</span><a href="#_groups" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_groups</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.GroupsClient.html" class="tsd-signature-type tsd-kind-class">GroupsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_groups">_groups</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_hooks"><code class="tsd-tag">Protected</code><span>_<wbr/>hooks</span><a href="#_hooks" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_hooks</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.HooksClient.html" class="tsd-signature-type tsd-kind-class">HooksClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_hooks">_hooks</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_jobs"><code class="tsd-tag">Protected</code><span>_<wbr/>jobs</span><a href="#_jobs" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_jobs</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.JobsClient.html" class="tsd-signature-type tsd-kind-class">JobsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_jobs">_jobs</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_logstreams"><code class="tsd-tag">Protected</code><span>_<wbr/>log<wbr/>Streams</span><a href="#_logstreams" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_logStreams</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.LogStreamsClient.html" class="tsd-signature-type tsd-kind-class">LogStreamsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_logstreams">_logStreams</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_logs"><code class="tsd-tag">Protected</code><span>_<wbr/>logs</span><a href="#_logs" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_logs</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.LogsClient.html" class="tsd-signature-type tsd-kind-class">LogsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_logs">_logs</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_networkacls"><code class="tsd-tag">Protected</code><span>_<wbr/>network<wbr/>Acls</span><a href="#_networkacls" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_networkAcls</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.NetworkAclsClient.html" class="tsd-signature-type tsd-kind-class">NetworkAclsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_networkacls">_networkAcls</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_organizations"><code class="tsd-tag">Protected</code><span>_<wbr/>organizations</span><a href="#_organizations" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_organizations</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.OrganizationsClient-1.html" class="tsd-signature-type tsd-kind-class">OrganizationsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_organizations">_organizations</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_prompts"><code class="tsd-tag">Protected</code><span>_<wbr/>prompts</span><a href="#_prompts" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_prompts</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.PromptsClient.html" class="tsd-signature-type tsd-kind-class">PromptsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_prompts">_prompts</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_refreshtokens"><code class="tsd-tag">Protected</code><span>_<wbr/>refresh<wbr/>Tokens</span><a href="#_refreshtokens" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_refreshTokens</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.RefreshTokensClient.html" class="tsd-signature-type tsd-kind-class">RefreshTokensClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_refreshtokens">_refreshTokens</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_resourceservers"><code class="tsd-tag">Protected</code><span>_<wbr/>resource<wbr/>Servers</span><a href="#_resourceservers" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_resourceServers</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.ResourceServersClient.html" class="tsd-signature-type tsd-kind-class">ResourceServersClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_resourceservers">_resourceServers</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_roles"><code class="tsd-tag">Protected</code><span>_<wbr/>roles</span><a href="#_roles" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_roles</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.RolesClient-1.html" class="tsd-signature-type tsd-kind-class">RolesClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_roles">_roles</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_rules"><code class="tsd-tag">Protected</code><span>_<wbr/>rules</span><a href="#_rules" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_rules</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.RulesClient.html" class="tsd-signature-type tsd-kind-class">RulesClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_rules">_rules</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_rulesconfigs"><code class="tsd-tag">Protected</code><span>_<wbr/>rules<wbr/>Configs</span><a href="#_rulesconfigs" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_rulesConfigs</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.RulesConfigsClient.html" class="tsd-signature-type tsd-kind-class">RulesConfigsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_rulesconfigs">_rulesConfigs</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_selfserviceprofiles"><code class="tsd-tag">Protected</code><span>_<wbr/>self<wbr/>Service<wbr/>Profiles</span><a href="#_selfserviceprofiles" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_selfServiceProfiles</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.SelfServiceProfilesClient.html" class="tsd-signature-type tsd-kind-class">SelfServiceProfilesClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_selfserviceprofiles">_selfServiceProfiles</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_sessions"><code class="tsd-tag">Protected</code><span>_<wbr/>sessions</span><a href="#_sessions" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_sessions</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.SessionsClient.html" class="tsd-signature-type tsd-kind-class">SessionsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_sessions">_sessions</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_stats"><code class="tsd-tag">Protected</code><span>_<wbr/>stats</span><a href="#_stats" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_stats</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.StatsClient.html" class="tsd-signature-type tsd-kind-class">StatsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_stats">_stats</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_supplementalsignals"><code class="tsd-tag">Protected</code><span>_<wbr/>supplemental<wbr/>Signals</span><a href="#_supplementalsignals" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_supplementalSignals</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.SupplementalSignalsClient.html" class="tsd-signature-type tsd-kind-class">SupplementalSignalsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_supplementalsignals">_supplementalSignals</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_tickets"><code class="tsd-tag">Protected</code><span>_<wbr/>tickets</span><a href="#_tickets" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_tickets</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.TicketsClient.html" class="tsd-signature-type tsd-kind-class">TicketsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_tickets">_tickets</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_tokenexchangeprofiles"><code class="tsd-tag">Protected</code><span>_<wbr/>token<wbr/>Exchange<wbr/>Profiles</span><a href="#_tokenexchangeprofiles" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_tokenExchangeProfiles</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.TokenExchangeProfilesClient.html" class="tsd-signature-type tsd-kind-class">TokenExchangeProfilesClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_tokenexchangeprofiles">_tokenExchangeProfiles</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_userattributeprofiles"><code class="tsd-tag">Protected</code><span>_<wbr/>user<wbr/>Attribute<wbr/>Profiles</span><a href="#_userattributeprofiles" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_userAttributeProfiles</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.UserAttributeProfilesClient.html" class="tsd-signature-type tsd-kind-class">UserAttributeProfilesClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_userattributeprofiles">_userAttributeProfiles</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_userblocks"><code class="tsd-tag">Protected</code><span>_<wbr/>user<wbr/>Blocks</span><a href="#_userblocks" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_userBlocks</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.UserBlocksClient.html" class="tsd-signature-type tsd-kind-class">UserBlocksClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_userblocks">_userBlocks</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_users"><code class="tsd-tag">Protected</code><span>_<wbr/>users</span><a href="#_users" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_users</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.UsersClient-2.html" class="tsd-signature-type tsd-kind-class">UsersClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_users">_users</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_anomaly"><code class="tsd-tag">Protected</code><span>_<wbr/>anomaly</span><a href="#_anomaly" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_anomaly</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.AnomalyClient.html" class="tsd-signature-type tsd-kind-class">AnomalyClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_anomaly">_anomaly</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_attackprotection"><code class="tsd-tag">Protected</code><span>_<wbr/>attack<wbr/>Protection</span><a href="#_attackprotection" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_attackProtection</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.AttackProtectionClient.html" class="tsd-signature-type tsd-kind-class">AttackProtectionClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_attackprotection">_attackProtection</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_emails"><code class="tsd-tag">Protected</code><span>_<wbr/>emails</span><a href="#_emails" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_emails</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.EmailsClient.html" class="tsd-signature-type tsd-kind-class">EmailsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_emails">_emails</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_guardian"><code class="tsd-tag">Protected</code><span>_<wbr/>guardian</span><a href="#_guardian" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_guardian</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.GuardianClient.html" class="tsd-signature-type tsd-kind-class">GuardianClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_guardian">_guardian</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_keys"><code class="tsd-tag">Protected</code><span>_<wbr/>keys</span><a href="#_keys" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_keys</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.KeysClient-1.html" class="tsd-signature-type tsd-kind-class">KeysClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_keys">_keys</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_riskassessments"><code class="tsd-tag">Protected</code><span>_<wbr/>risk<wbr/>Assessments</span><a href="#_riskassessments" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_riskAssessments</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.RiskAssessmentsClient.html" class="tsd-signature-type tsd-kind-class">RiskAssessmentsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_riskassessments">_riskAssessments</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_tenants"><code class="tsd-tag">Protected</code><span>_<wbr/>tenants</span><a href="#_tenants" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_tenants</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.TenantsClient.html" class="tsd-signature-type tsd-kind-class">TenantsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_tenants">_tenants</a></p></aside></section><section class="tsd-panel tsd-member tsd-is-protected tsd-is-inherited"><h3 class="tsd-anchor-link" id="_verifiablecredentials"><code class="tsd-tag">Protected</code><span>_<wbr/>verifiable<wbr/>Credentials</span><a href="#_verifiablecredentials" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24" aria-hidden="true"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">_verifiableCredentials</span><span class="tsd-signature-symbol">:</span> <a href="management.SDK.VerifiableCredentialsClient.html" class="tsd-signature-type tsd-kind-class">VerifiableCredentialsClient</a> <span class="tsd-signature-symbol">|</span> <span class="tsd-signature-type">undefined</span></div><aside class="tsd-sources"><p>Inherited from <a href="management.SDK.ManagementClient.html">ManagementClient</a>.<a href="management.SDK.ManagementClient.html#_verifiablecredentials">_verifiableCredentials</a></p></aside></section></section></details></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-accordion"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><span class="settings-label">Member Visibility</span><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li></ul></div><div class="tsd-theme-toggle"><label class="settings-label" for="tsd-theme">Theme</label><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg><h3>On This Page</h3></summary><div class="tsd-accordion-details"><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-Management API"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Management API</summary><div><a href="#constructor"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Constructor"><use href="../assets/icons.svg#icon-512"></use></svg><span>constructor</span></a></div></details><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-Accessors"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Accessors</summary><div><a href="#actions" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>actions</span></a><a href="#branding" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>branding</span></a><a href="#clientgrants" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>client<wbr/>Grants</span></a><a href="#clients" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>clients</span></a><a href="#connectionprofiles" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>connection<wbr/>Profiles</span></a><a href="#connections" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>connections</span></a><a href="#customdomains" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>custom<wbr/>Domains</span></a><a href="#devicecredentials" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>device<wbr/>Credentials</span></a><a href="#emailtemplates" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>email<wbr/>Templates</span></a><a href="#eventstreams" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>event<wbr/>Streams</span></a><a href="#events" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>events</span></a><a href="#flows" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>flows</span></a><a href="#forms" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>forms</span></a><a href="#usergrants" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>user<wbr/>Grants</span></a><a href="#groups" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>groups</span></a><a href="#hooks" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>hooks</span></a><a href="#jobs" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>jobs</span></a><a href="#logstreams" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>log<wbr/>Streams</span></a><a href="#logs" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>logs</span></a><a href="#networkacls" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>network<wbr/>Acls</span></a><a href="#organizations" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>organizations</span></a><a href="#prompts" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>prompts</span></a><a href="#refreshtokens" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>refresh<wbr/>Tokens</span></a><a href="#resourceservers" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>resource<wbr/>Servers</span></a><a href="#roles" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>roles</span></a><a href="#rules" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>rules</span></a><a href="#rulesconfigs" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>rules<wbr/>Configs</span></a><a href="#selfserviceprofiles" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>self<wbr/>Service<wbr/>Profiles</span></a><a href="#sessions" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>sessions</span></a><a href="#stats" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>stats</span></a><a href="#supplementalsignals" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>supplemental<wbr/>Signals</span></a><a href="#tickets" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>tickets</span></a><a href="#tokenexchangeprofiles" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>token<wbr/>Exchange<wbr/>Profiles</span></a><a href="#userattributeprofiles" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>user<wbr/>Attribute<wbr/>Profiles</span></a><a href="#userblocks" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>user<wbr/>Blocks</span></a><a href="#users" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>users</span></a><a href="#anomaly" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>anomaly</span></a><a href="#attackprotection" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>attack<wbr/>Protection</span></a><a href="#emails" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>emails</span></a><a href="#guardian" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>guardian</span></a><a href="#keys" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>keys</span></a><a href="#riskassessments" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>risk<wbr/>Assessments</span></a><a href="#tenants" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>tenants</span></a><a href="#verifiablecredentials" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Accessor"><use href="../assets/icons.svg#icon-262144"></use></svg><span>verifiable<wbr/>Credentials</span></a></div></details><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-Methods"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Methods</summary><div><a href="#fetch" class="tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Method"><use href="../assets/icons.svg#icon-2048"></use></svg><span>fetch</span></a></div></details><details open class="tsd-accordion tsd-page-navigation-section"><summary class="tsd-accordion-summary" data-key="section-Properties"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" aria-hidden="true"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Properties</summary><div><a href="#_options" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>options</span></a><a href="#_actions" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>actions</span></a><a href="#_branding" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>branding</span></a><a href="#_clientgrants" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>client<wbr/>Grants</span></a><a href="#_clients" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>clients</span></a><a href="#_connectionprofiles" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>connection<wbr/>Profiles</span></a><a href="#_connections" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>connections</span></a><a href="#_customdomains" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>custom<wbr/>Domains</span></a><a href="#_devicecredentials" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>device<wbr/>Credentials</span></a><a href="#_emailtemplates" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>email<wbr/>Templates</span></a><a href="#_eventstreams" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>event<wbr/>Streams</span></a><a href="#_events" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>events</span></a><a href="#_flows" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>flows</span></a><a href="#_forms" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>forms</span></a><a href="#_usergrants" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>user<wbr/>Grants</span></a><a href="#_groups" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>groups</span></a><a href="#_hooks" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>hooks</span></a><a href="#_jobs" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>jobs</span></a><a href="#_logstreams" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>log<wbr/>Streams</span></a><a href="#_logs" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>logs</span></a><a href="#_networkacls" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>network<wbr/>Acls</span></a><a href="#_organizations" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>organizations</span></a><a href="#_prompts" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>prompts</span></a><a href="#_refreshtokens" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>refresh<wbr/>Tokens</span></a><a href="#_resourceservers" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>resource<wbr/>Servers</span></a><a href="#_roles" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>roles</span></a><a href="#_rules" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>rules</span></a><a href="#_rulesconfigs" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>rules<wbr/>Configs</span></a><a href="#_selfserviceprofiles" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>self<wbr/>Service<wbr/>Profiles</span></a><a href="#_sessions" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>sessions</span></a><a href="#_stats" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>stats</span></a><a href="#_supplementalsignals" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>supplemental<wbr/>Signals</span></a><a href="#_tickets" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>tickets</span></a><a href="#_tokenexchangeprofiles" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>token<wbr/>Exchange<wbr/>Profiles</span></a><a href="#_userattributeprofiles" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>user<wbr/>Attribute<wbr/>Profiles</span></a><a href="#_userblocks" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>user<wbr/>Blocks</span></a><a href="#_users" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>users</span></a><a href="#_anomaly" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>anomaly</span></a><a href="#_attackprotection" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>attack<wbr/>Protection</span></a><a href="#_emails" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>emails</span></a><a href="#_guardian" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>guardian</span></a><a href="#_keys" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>keys</span></a><a href="#_riskassessments" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>risk<wbr/>Assessments</span></a><a href="#_tenants" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>tenants</span></a><a href="#_verifiablecredentials" class="tsd-is-protected tsd-is-inherited"><svg class="tsd-kind-icon" viewBox="0 0 24 24" aria-label="Property"><use href="../assets/icons.svg#icon-1024"></use></svg><span>_<wbr/>verifiable<wbr/>Credentials</span></a></div></details></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html">Auth0 Node.js SDK - v5.10.0</a><ul class="tsd-small-nested-navigation" id="tsd-nav-container"><li>Loading...</li></ul></nav></div></div></div><footer></footer><div class="overlay"></div></body></html>