adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
---
id: beta-http-config
title: HttpConfig
pagination_label: HttpConfig
sidebar_label: HttpConfig
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'HttpConfig', 'BetaHttpConfig']
slug: /tools/sdk/powershell/beta/models/http-config
tags: ['SDK', 'Software Development Kit', 'HttpConfig', 'BetaHttpConfig']
---
# HttpConfig
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Url** | **String** | URL of the external/custom integration. | [required]
**HttpDispatchMode** | [**HttpDispatchMode**](http-dispatch-mode) | | [required]
**HttpAuthenticationType** | Pointer to [**HttpAuthenticationType**](http-authentication-type) | | [optional]
**BasicAuthConfig** | Pointer to [**BasicAuthConfig**](basic-auth-config) | | [optional]
**BearerTokenAuthConfig** | Pointer to [**BearerTokenAuthConfig**](bearer-token-auth-config) | | [optional]
## Examples
- Prepare the resource
```powershell
$HttpConfig = Initialize-PSSailpoint.BetaHttpConfig -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]](#)