mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 04:19:37 +00:00
adding docs back with new ids
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
---
|
||||
id: status-response
|
||||
title: StatusResponse
|
||||
pagination_label: StatusResponse
|
||||
sidebar_label: StatusResponse
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'StatusResponse']
|
||||
slug: /tools/sdk/powershell/v2024/models/status-response
|
||||
tags: ['SDK', 'Software Development Kit', 'StatusResponse']
|
||||
---
|
||||
|
||||
|
||||
# StatusResponse
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Id** | Pointer to **String** | ID of the source | [optional] [readonly]
|
||||
**Name** | Pointer to **String** | Name of the source | [optional] [readonly]
|
||||
**Status** | Pointer to **Enum** [ "SUCCESS", "FAILURE" ] | The status of the health check. | [optional] [readonly]
|
||||
**ElapsedMillis** | Pointer to **Int32** | The number of milliseconds spent on the entire request. | [optional] [readonly]
|
||||
**Details** | Pointer to [**SystemCollectionsHashtable**]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | The document contains the results of the health check. The schema of this document depends on the type of source used. | [optional] [readonly]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$StatusResponse = Initialize-PSSailpoint.V2024StatusResponse -Id 2c91808568c529c60168cca6f90c1313 `
|
||||
-Name ODS-AD-Test [source-999999] `
|
||||
-Status SUCCESS `
|
||||
-ElapsedMillis 1000 `
|
||||
-Details {useTLSForIQService=false, IQService={TLS Port=0, .NET CLR Version=4.0.30319.42000, SecondaryServiceStatus=Running, Port=5050, Host=AUTOMATION-AD, Name=IQService, IQServiceStatus=Running, SecondaryService=IQService-Instance1-Secondary, Version=IQService Sep-2020, secondaryPort=5051, OS Architecture=AMD64, Operating System=Microsoft Windows Server 2012 R2 Standard, highestDotNetVersion=4.8 or later, Build Time=09/22/2020 06:34 AM -0500}, IQServiceClientAuthEnabled=false, requestProcessedOn=1/19/2021 1:47:14 PM}
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$StatusResponse | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user