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,57 @@
---
id: v2024-deploy-response
title: DeployResponse
pagination_label: DeployResponse
sidebar_label: DeployResponse
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'DeployResponse', 'V2024DeployResponse']
slug: /tools/sdk/powershell/v2024/models/deploy-response
tags: ['SDK', 'Software Development Kit', 'DeployResponse', 'V2024DeployResponse']
---
# DeployResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**JobId** | Pointer to **String** | Unique id assigned to this job. | [optional]
**Status** | Pointer to **Enum** [ "NOT_STARTED", "IN_PROGRESS", "COMPLETE", "CANCELLED", "FAILED" ] | Status of the job. | [optional]
**Type** | Pointer to **Enum** [ "CONFIG_DEPLOY_DRAFT" ] | Type of the job, will always be CONFIG_DEPLOY_DRAFT for this type of job. | [optional]
**Message** | Pointer to **String** | Message providing information about the outcome of the deploy process. | [optional]
**RequesterName** | Pointer to **String** | The name of the user that initiated the deploy process. | [optional]
**FileExists** | Pointer to **Boolean** | Whether or not a results file was created and stored for this deploy. | [optional] [default to $true]
**Created** | Pointer to **System.DateTime** | The time the job was started. | [optional]
**Modified** | Pointer to **System.DateTime** | The time of the last update to the job. | [optional]
**Completed** | Pointer to **System.DateTime** | The time the job was completed. | [optional]
**DraftId** | Pointer to **String** | The id of the draft that was used for this deploy. | [optional]
**DraftName** | Pointer to **String** | The name of the draft that was used for this deploy. | [optional]
**CloudStorageStatus** | Pointer to **Enum** [ "SYNCED", "NOT_SYNCED", "SYNC_FAILED" ] | Whether this deploy results file has been transferred to a customer storage location. | [optional]
## Examples
- Prepare the resource
```powershell
$DeployResponse = Initialize-PSSailpoint.V2024DeployResponse -JobId 07659d7d-2cce-47c0-9e49-185787ee565a `
-Status COMPLETE `
-Type CONFIG_DEPLOY_DRAFT `
-Message Deploy creation message `
-RequesterName requester.name `
-FileExists true `
-Created 2021-05-11T22:23:16Z `
-Modified 2021-05-11T22:23:16Z `
-Completed 2021-05-11T22:23:16Z `
-DraftId 07659d7d-2cce-47c0-9e49-185787ee565a `
-DraftName Draft Name `
-CloudStorageStatus SYNCED
```
- Convert the resource to JSON
```powershell
$DeployResponse | ConvertTo-JSON
```
[[Back to top]](#)