mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 20:37:47 +00:00
add method and model docs for powershell and python v2025
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
---
|
||||
id: v2025-http-config
|
||||
title: HttpConfig
|
||||
pagination_label: HttpConfig
|
||||
sidebar_label: HttpConfig
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'HttpConfig', 'V2025HttpConfig']
|
||||
slug: /tools/sdk/powershell/v2025/models/http-config
|
||||
tags: ['SDK', 'Software Development Kit', 'HttpConfig', 'V2025HttpConfig']
|
||||
---
|
||||
|
||||
|
||||
# HttpConfig
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Url** | **String** | URL of the external/custom integration. | [required]
|
||||
**HttpDispatchMode** | [**HttpDispatchMode**](http-dispatch-mode) | | [required]
|
||||
**HttpAuthenticationType** | [**HttpAuthenticationType**](http-authentication-type) | | [optional]
|
||||
**BasicAuthConfig** | [**BasicAuthConfig**](basic-auth-config) | | [optional]
|
||||
**BearerTokenAuthConfig** | [**BearerTokenAuthConfig**](bearer-token-auth-config) | | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$HttpConfig = Initialize-PSSailpoint.V2025HttpConfig -Url https://www.example.com `
|
||||
-HttpDispatchMode null `
|
||||
-HttpAuthenticationType null `
|
||||
-BasicAuthConfig null `
|
||||
-BearerTokenAuthConfig null
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$HttpConfig | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user