@@ -43,6 +43,7 @@ if res.app_entitlement_search_service_search_response is not None:
4343* [ create] ( docs/sdks/connector/README.md#create ) - Create
4444* [ create_delegated] ( docs/sdks/connector/README.md#create_delegated ) - Create Delegated
4545* [ delete] ( docs/sdks/connector/README.md#delete ) - Delete
46+ * [ force_sync] ( docs/sdks/connector/README.md#force_sync ) - Force Sync
4647* [ get] ( docs/sdks/connector/README.md#get ) - Get
4748* [ get_credentials] ( docs/sdks/connector/README.md#get_credentials ) - Get Credentials
4849* [ list] ( docs/sdks/connector/README.md#list ) - List
@@ -196,6 +197,15 @@ if res.app_entitlement_search_service_search_response is not None:
196197
197198* [ search] ( docs/sdks/usersearch/README.md#search ) - Search
198199
200+ ### [ aws_external_id_settings] ( docs/sdks/awsexternalidsettings/README.md )
201+
202+ * [ get] ( docs/sdks/awsexternalidsettings/README.md#get ) - Get
203+
204+ ### [ session_settings] ( docs/sdks/sessionsettings/README.md )
205+
206+ * [ get] ( docs/sdks/sessionsettings/README.md#get ) - Get
207+ * [ update] ( docs/sdks/sessionsettings/README.md#update ) - Update
208+
199209### [ task] ( docs/sdks/task/README.md )
200210
201211* [ create_grant_task] ( docs/sdks/task/README.md#create_grant_task ) - Create Grant Task
@@ -214,6 +224,10 @@ if res.app_entitlement_search_service_search_response is not None:
214224
215225* [ get] ( docs/sdks/user/README.md#get ) - Get
216226* [ list] ( docs/sdks/user/README.md#list ) - List
227+
228+ ### [ webhooks] ( docs/sdks/webhooks/README.md )
229+
230+ * [ test] ( docs/sdks/webhooks/README.md#test ) - Test
217231<!-- End Available Resources and Operations [operations] -->
218232
219233<!-- No SDK Example Usage -->
@@ -230,37 +244,34 @@ Handling errors in this SDK should largely match your expectations. All operati
230244
231245| Error Object | Status Code | Content Type |
232246| --------------- | --------------- | --------------- |
233- | errors.SDKError | 400-600 | * /* |
247+ | errors.SDKError | 4x-5xx | * /* |
234248
235249### Example
236250
237251``` python
238252import sdk
239- from sdk.models import shared
253+ from sdk.models import errors, shared
240254
241255s = sdk.SDK(
242256 security = shared.Security(
243- bearer_auth = " " ,
244- oauth = " " ,
257+ bearer_auth = " <YOUR_BEARER_TOKEN_HERE> " ,
258+ oauth = " Bearer <YOUR_ACCESS_TOKEN_HERE> " ,
245259 ),
246260)
247261
248- req = shared.CreateAppRequest(
249- owners = [
250- ' string' ,
251- ],
252- )
262+ req = shared.CreateAppRequest()
253263
254264res = None
255265try :
256266 res = s.apps.create(req)
257267except errors.SDKError as e:
258- print (e) # handle exception
268+ # handle exception
259269 raise (e)
260270
261271if res.create_app_response is not None :
262272 # handle response
263273 pass
274+
264275```
265276<!-- End Error Handling [errors] -->
266277
@@ -286,22 +297,19 @@ from sdk.models import shared
286297s = sdk.SDK(
287298 server_idx = 0 ,
288299 security = shared.Security(
289- bearer_auth = " " ,
290- oauth = " " ,
300+ bearer_auth = " <YOUR_BEARER_TOKEN_HERE> " ,
301+ oauth = " Bearer <YOUR_ACCESS_TOKEN_HERE> " ,
291302 ),
292303)
293304
294- req = shared.CreateAppRequest(
295- owners = [
296- ' string' ,
297- ],
298- )
305+ req = shared.CreateAppRequest()
299306
300307res = s.apps.create(req)
301308
302309if res.create_app_response is not None :
303310 # handle response
304311 pass
312+
305313```
306314
307315#### Variables
@@ -319,22 +327,19 @@ from sdk.models import shared
319327s = sdk.SDK(
320328 server_url = " https://{tenantDomain} .conductor.one" ,
321329 security = shared.Security(
322- bearer_auth = " " ,
323- oauth = " " ,
330+ bearer_auth = " <YOUR_BEARER_TOKEN_HERE> " ,
331+ oauth = " Bearer <YOUR_ACCESS_TOKEN_HERE> " ,
324332 ),
325333)
326334
327- req = shared.CreateAppRequest(
328- owners = [
329- ' string' ,
330- ],
331- )
335+ req = shared.CreateAppRequest()
332336
333337res = s.apps.create(req)
334338
335339if res.create_app_response is not None :
336340 # handle response
337341 pass
342+
338343```
339344<!-- End Server Selection [server] -->
340345
@@ -343,7 +348,7 @@ if res.create_app_response is not None:
343348<!-- Start Custom HTTP Client [http-client] -->
344349## Custom HTTP Client
345350
346- The Python SDK makes API calls using the (requests) [ https://pypi.org/project/requests/ ] HTTP library. In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with a custom ` requests.Session ` object.
351+ The Python SDK makes API calls using the [ requests ] ( https://pypi.org/project/requests/ ) HTTP library. In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with a custom ` requests.Session ` object.
347352
348353For example, you could specify a header for every request that this sdk makes as follows:
349354``` python
@@ -377,22 +382,19 @@ from sdk.models import shared
377382
378383s = sdk.SDK(
379384 security = shared.Security(
380- bearer_auth = " " ,
381- oauth = " " ,
385+ bearer_auth = " <YOUR_BEARER_TOKEN_HERE> " ,
386+ oauth = " Bearer <YOUR_ACCESS_TOKEN_HERE> " ,
382387 ),
383388)
384389
385- req = shared.CreateAppRequest(
386- owners = [
387- ' string' ,
388- ],
389- )
390+ req = shared.CreateAppRequest()
390391
391392res = s.apps.create(req)
392393
393394if res.create_app_response is not None :
394395 # handle response
395396 pass
397+
396398```
397399<!-- End Authentication [security] -->
398400
0 commit comments