mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
1.4 KiB
1.4 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2024-http-config | HttpConfig | HttpConfig | HttpConfig | pythonsdk |
|
/tools/sdk/python/v2024/models/http-config |
|
HttpConfig
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| url | str | URL of the external/custom integration. | [required] |
| http_dispatch_mode | HttpDispatchMode | [required] | |
| http_authentication_type | HttpAuthenticationType | [optional] [default to HttpAuthenticationType.NO_AUTH] | |
| basic_auth_config | BasicAuthConfig | [optional] | |
| bearer_token_auth_config | BearerTokenAuthConfig | [optional] | |
| } |
Example
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 = '', )
)