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/connections-manager.ts
+15-13
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@ import type {
13
13
PostScimToken201Response,
14
14
PostScimTokenRequest,
15
15
GetConnections200ResponseOneOf,
16
+
ConnectionForList,
16
17
DeleteConnectionsByIdRequest,
17
18
DeleteScimConfigurationRequest,
18
19
DeleteTokensByTokenIdRequest,
@@ -148,24 +149,26 @@ export class ConnectionsManager extends BaseAPI {
148
149
}
149
150
150
151
/**
151
-
* Retrieves every connection matching the specified strategy. All connections are retrieved if no strategy is being specified. Accepts a list of fields to include or exclude in the resulting list of connection objects.
152
+
* Retrieves detailed list of all <a href="https://auth0.com/docs/authenticate/identity-providers">connections</a> that match the specified strategy. If no strategy is provided, all connections within your tenant are retrieved. This action can accept a list of fields to include or exclude from the resulting list of connections.
153
+
*
152
154
* This endpoint supports two types of pagination:
153
-
* - Offset pagination
154
-
* - Checkpoint pagination
155
+
* <ul>
156
+
* <li>Offset pagination</li>
157
+
* <li>Checkpoint pagination</li>
158
+
* </ul>
155
159
*
156
-
* Checkpoint pagination should be used if you need to retrieve more than 1000 connections.
160
+
* Checkpoint pagination must be used if you need to retrieve more than 1000 connections.
157
161
*
158
162
* <h2>Checkpoint Pagination</h2>
159
163
*
160
164
* To search by checkpoint, use the following parameters:
161
-
* - from: Optional id from which to start selection.
162
-
* - take: The total amount of entries to retrieve when using the from parameter. Defaults to 50.
165
+
* <ul>
166
+
* <li><code>from</code>: Optional id from which to start selection.</li>
167
+
* <li><code>take</code>: The total amount of entries to retrieve when using the from parameter. Defaults to 50.</li>
168
+
* </ul>
163
169
*
164
-
* The first time you call this endpoint using Checkpoint Pagination, you should omit the <code>from</code> parameter.
165
-
* If there are more results, a <code>next</code> value will be included in the response. You can use this for subsequent API calls.
166
-
* When <code>next</code> is no longer included in the response, this indicates there are no more pages remaining.
170
+
* <b>Note</b>: The first time you call this endpoint using checkpoint pagination, omit the <code>from</code> parameter. If there are more results, a <code>next</code> value is included in the response. You can use this for subsequent API calls. When <code>next</code> is no longer included in the response, no pages are remaining.
167
171
*
168
-
* Note: The <code>include_totals</code> parameter is not supported when using checkpoint pagination.
169
172
* Get all connections
170
173
*
171
174
* @throws {RequiredError}
@@ -177,7 +180,7 @@ export class ConnectionsManager extends BaseAPI {
@@ -237,8 +240,7 @@ export class ConnectionsManager extends BaseAPI {
237
240
}
238
241
239
242
/**
240
-
* Retrieves a connection by its <code>ID</code>.
241
-
*
243
+
* Retrieve details for a specified <a href="https://auth0.com/docs/authenticate/identity-providers">connection</a> along with options that can be used for identity provider configuration.
* Enables showing a button for the connection in the login page (new experience only). If false, it will be usable only by HRD. (Defaults to <code>false</code>.)
3049
+
*
3050
+
*/
3051
+
show_as_button?: boolean;
3042
3052
/**
3043
3053
* Defines the realms for which the connection will be used (ie: email domains). If the array is empty or the property is not specified, the connection name will be added as realm.
* In order to return options in the response, the `read:connections_options` scope must be present
3434
+
*
3435
+
*/
3436
+
options?: {[key: string]: any};
3437
+
/**
3438
+
* The connection's identifier
3439
+
*
3440
+
*/
3441
+
id?: string;
3442
+
/**
3443
+
* The type of the connection, related to the identity provider
3444
+
*
3445
+
*/
3446
+
strategy?: string;
3447
+
/**
3448
+
* Defines the realms for which the connection will be used (ie: email domains). If the array is empty or the property is not specified, the connection name will be added as realm.
3449
+
*
3450
+
*/
3451
+
realms?: Array<string>;
3452
+
/**
3453
+
* True if the connection is domain level
3454
+
*
3455
+
*/
3456
+
is_domain_connection?: boolean;
3457
+
/**
3458
+
* Enables showing a button for the connection in the login page (new experience only). If false, it will be usable only by HRD.
3459
+
*
3460
+
*/
3461
+
show_as_button?: boolean;
3462
+
/**
3463
+
* Metadata associated with the connection in the form of an object with string values (max 255 chars). Maximum of 10 metadata properties allowed.
* Enables showing a button for the connection in the login page (new experience only). If false, it will be usable only by HRD. (Defaults to <code>false</code>.)
3495
+
*
3496
+
*/
3497
+
show_as_button?: boolean;
3433
3498
/**
3434
3499
* Metadata associated with the connection in the form of an object with string values (max 255 chars). Maximum of 10 metadata properties allowed.
0 commit comments