You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/management/__generated/managers/actions-manager.ts
+11-26Lines changed: 11 additions & 26 deletions
Original file line number
Diff line number
Diff line change
@@ -36,8 +36,7 @@ const { BaseAPI } = runtime;
36
36
*/
37
37
exportclassActionsManagerextendsBaseAPI{
38
38
/**
39
-
* Deletes an action and all of its associated versions. An action must be unbound from all triggers
40
-
* before it can be deleted.
39
+
* Deletes an action and all of its associated versions. An action must be unbound from all triggers before it can be deleted.
41
40
*
42
41
* Delete an action
43
42
*
@@ -99,8 +98,7 @@ export class ActionsManager extends BaseAPI {
99
98
}
100
99
101
100
/**
102
-
* Retrieve a specific version of an action. An action version is created whenever
103
-
* an action is deployed. An action version is immutable, once created.
101
+
* Retrieve a specific version of an action. An action version is created whenever an action is deployed. An action version is immutable, once created.
104
102
*
105
103
* Get a specific version of an action
106
104
*
@@ -126,8 +124,7 @@ export class ActionsManager extends BaseAPI {
126
124
}
127
125
128
126
/**
129
-
* Retrieve all of an action's versions. An action version is created whenever
130
-
* an action is deployed. An action version is immutable, once created.
127
+
* Retrieve all of an action's versions. An action version is created whenever an action is deployed. An action version is immutable, once created.
131
128
*
132
129
* Get an action's versions
133
130
*
@@ -216,9 +213,7 @@ export class ActionsManager extends BaseAPI {
216
213
}
217
214
218
215
/**
219
-
* Retrieve the actions that are bound to a trigger. Once an action is created and deployed, it must be
220
-
* attached (i.e. bound) to a trigger so that it will be executed as part of a flow. The list of actions returned
221
-
* reflects the order in which they will be executed during the appropriate flow.
216
+
* Retrieve the actions that are bound to a trigger. Once an action is created and deployed, it must be attached (i.e. bound) to a trigger so that it will be executed as part of a flow. The list of actions returned reflects the order in which they will be executed during the appropriate flow.
222
217
*
223
218
* Get trigger bindings
224
219
*
@@ -257,8 +252,7 @@ export class ActionsManager extends BaseAPI {
257
252
}
258
253
259
254
/**
260
-
* Retrieve information about a specific execution of a trigger. Relevant execution IDs will be included in tenant logs
261
-
* generated as part of that authentication flow. Executions will only be stored for 10 days after their creation.
255
+
* Retrieve information about a specific execution of a trigger. Relevant execution IDs will be included in tenant logs generated as part of that authentication flow. Executions will only be stored for 10 days after their creation.
262
256
*
263
257
* Get an execution
264
258
*
@@ -285,8 +279,7 @@ export class ActionsManager extends BaseAPI {
285
279
}
286
280
287
281
/**
288
-
* Retrieve the set of triggers currently available within actions. A trigger is an extensibility point to which actions
289
-
* can be bound.
282
+
* Retrieve the set of triggers currently available within actions. A trigger is an extensibility point to which actions can be bound.
290
283
*
291
284
* Get triggers
292
285
*
@@ -305,8 +298,7 @@ export class ActionsManager extends BaseAPI {
305
298
}
306
299
307
300
/**
308
-
* Update an existing action. If this action is currently bound to a trigger, updating it will <strong>not</strong> affect
309
-
* any user flows until the action is deployed.
301
+
* Update an existing action. If this action is currently bound to a trigger, updating it will <strong>not</strong> affect any user flows until the action is deployed.
310
302
*
311
303
* Update an action
312
304
*
@@ -340,10 +332,7 @@ export class ActionsManager extends BaseAPI {
340
332
}
341
333
342
334
/**
343
-
* Update the actions that are bound (i.e. attached) to a trigger. Once an action is created and deployed, it must be
344
-
* attached (i.e. bound) to a trigger so that it will be executed as part of a flow. The order in which the actions are
345
-
* provided will determine the order in which they are executed.
346
-
*
335
+
* Update the actions that are bound (i.e. attached) to a trigger. Once an action is created and deployed, it must be attached (i.e. bound) to a trigger so that it will be executed as part of a flow. The order in which the actions are provided will determine the order in which they are executed.
347
336
* Update trigger bindings
348
337
*
349
338
* @throws {RequiredError}
@@ -376,8 +365,7 @@ export class ActionsManager extends BaseAPI {
376
365
}
377
366
378
367
/**
379
-
* Create an action. Once an action is created, it must be deployed, and then
380
-
* bound to a trigger before it will be executed as part of a flow.
368
+
* Create an action. Once an action is created, it must be deployed, and then bound to a trigger before it will be executed as part of a flow.
381
369
*
382
370
* Create an action
383
371
*
@@ -405,8 +393,7 @@ export class ActionsManager extends BaseAPI {
405
393
}
406
394
407
395
/**
408
-
* Deploy an action. Deploying an action will create a new immutable version of the action. If the action is
409
-
* currently bound to a trigger, then the system will begin executing the newly deployed version of the action immediately. Otherwise, the action will only be executed as a part of a flow once it is bound to that flow.
396
+
* Deploy an action. Deploying an action will create a new immutable version of the action. If the action is currently bound to a trigger, then the system will begin executing the newly deployed version of the action immediately. Otherwise, the action will only be executed as a part of a flow once it is bound to that flow.
410
397
*
411
398
* Deploy an action
412
399
*
@@ -433,9 +420,7 @@ export class ActionsManager extends BaseAPI {
433
420
}
434
421
435
422
/**
436
-
* Performs the equivalent of a roll-back of an action to an earlier, specified version. Creates a new, deployed
437
-
* action version that is identical to the specified version. If this action is currently bound to a trigger, the
438
-
* system will begin executing the newly-created version immediately.
423
+
* Performs the equivalent of a roll-back of an action to an earlier, specified version. Creates a new, deployed action version that is identical to the specified version. If this action is currently bound to a trigger, the system will begin executing the newly-created version immediately.
Copy file name to clipboardExpand all lines: src/management/__generated/managers/anomaly-manager.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ const { BaseAPI } = runtime;
9
9
*/
10
10
exportclassAnomalyManagerextendsBaseAPI{
11
11
/**
12
-
* Unblock an IP address currently blocked by the <a href="https://auth0.com/docs/configure/attack-protection/suspicious-ip-throttling">Suspicious IP Throttling</a> due to multiple suspicious attempts.
12
+
* Remove a block imposed by <a href="https://auth0.com/docs/configure/attack-protection/suspicious-ip-throttling">Suspicious IP Throttling</a> for the given IP address.
13
13
* Remove the blocked IP address
14
14
*
15
15
* @throws {RequiredError}
@@ -35,7 +35,7 @@ export class AnomalyManager extends BaseAPI {
35
35
}
36
36
37
37
/**
38
-
* Check if a given IP address is blocked via the <a href="https://auth0.com/docs/configure/attack-protection/suspicious-ip-throttling">Suspicious IP Throttling</a> due to multiple suspicious attempts.
38
+
* Check if the given IP address is blocked via the <a href="https://auth0.com/docs/configure/attack-protection/suspicious-ip-throttling">Suspicious IP Throttling</a> due to multiple suspicious attempts.
0 commit comments