mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
starting point for adding python sdk docs
This commit is contained in:
44
docs/tools/sdk/python/Reference/V2024/Models/HttpConfig.md
Normal file
44
docs/tools/sdk/python/Reference/V2024/Models/HttpConfig.md
Normal file
@@ -0,0 +1,44 @@
|
||||
---
|
||||
id: v2024-http-config
|
||||
title: HttpConfig
|
||||
pagination_label: HttpConfig
|
||||
sidebar_label: HttpConfig
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'HttpConfig', 'V2024HttpConfig']
|
||||
slug: /tools/sdk/python/v2024/models/http-config
|
||||
tags: ['SDK', 'Software Development Kit', 'HttpConfig', 'V2024HttpConfig']
|
||||
---
|
||||
|
||||
# HttpConfig
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**url** | **str** | URL of the external/custom integration. | [required]
|
||||
**http_dispatch_mode** | [**HttpDispatchMode**](http-dispatch-mode) | | [required]
|
||||
**http_authentication_type** | [**HttpAuthenticationType**](http-authentication-type) | | [optional] [default to HttpAuthenticationType.NO_AUTH]
|
||||
**basic_auth_config** | [**BasicAuthConfig**](basic-auth-config) | | [optional]
|
||||
**bearer_token_auth_config** | [**BearerTokenAuthConfig**](bearer-token-auth-config) | | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.v2024.models.http_config import HttpConfig
|
||||
|
||||
http_config = HttpConfig(
|
||||
url='https://www.example.com',
|
||||
http_dispatch_mode='SYNC',
|
||||
http_authentication_type='NO_AUTH',
|
||||
basic_auth_config=sailpoint.v2024.models.basic_auth_config.BasicAuthConfig(
|
||||
user_name = 'user@example.com',
|
||||
password = '', ),
|
||||
bearer_token_auth_config=sailpoint.v2024.models.bearer_token_auth_config.BearerTokenAuthConfig(
|
||||
bearer_token = '', )
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user