Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/HttpConfig.md
2025-01-28 13:29:29 -05:00

1.3 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
beta-http-config HttpConfig HttpConfig HttpConfig powershellsdk
powershell
PowerShell
sdk
HttpConfig
BetaHttpConfig
/tools/sdk/powershell/beta/models/http-config
SDK
Software Development Kit
HttpConfig
BetaHttpConfig

HttpConfig

Properties

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

Examples

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

[Back to top]