Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/HttpConfig.md
2025-02-03 22:09:17 +00:00

1.2 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 powershellsdk
powershell
PowerShell
sdk
HttpConfig
V2024HttpConfig
/tools/sdk/powershell/v2024/models/http-config
SDK
Software Development Kit
HttpConfig
V2024HttpConfig

HttpConfig

Properties

Name Type Description Notes
Url String URL of the external/custom integration. [required]
HttpDispatchMode HttpDispatchMode [required]
HttpAuthenticationType HttpAuthenticationType [optional]
BasicAuthConfig BasicAuthConfig [optional]
BearerTokenAuthConfig BearerTokenAuthConfig [optional]

Examples

  • Prepare the resource
$HttpConfig = Initialize-PSSailpoint.V2024HttpConfig  -Url https://www.example.com `
 -HttpDispatchMode null `
 -HttpAuthenticationType null `
 -BasicAuthConfig null `
 -BearerTokenAuthConfig null
  • Convert the resource to JSON
$HttpConfig | ConvertTo-JSON

[Back to top]