update to doc files

This commit is contained in:
darrell-thobe-sp
2025-01-24 14:40:05 -05:00
parent 19e073b551
commit 39d2297259
1001 changed files with 70946 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: identity-sync-job
title: IdentitySyncJob
pagination_label: IdentitySyncJob
sidebar_label: IdentitySyncJob
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'IdentitySyncJob']
slug: /tools/sdk/powershell/beta/models/identity-sync-job
tags: ['SDK', 'Software Development Kit', 'IdentitySyncJob']
---
# IdentitySyncJob
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **String** | Job ID. | [required]
**Status** | **Enum** [ "QUEUED", "IN_PROGRESS", "SUCCESS", "ERROR" ] | The job status. | [required]
**Payload** | [**IdentitySyncPayload**](identity-sync-payload) | | [required]
## Examples
- Prepare the resource
```powershell
$IdentitySyncJob = Initialize-PSSailpoint.BetaIdentitySyncJob -Id 0f11f2a4-7c94-4bf3-a2bd-742580fe3bde `
-Status IN_PROGRESS `
-Payload null
```
- Convert the resource to JSON
```powershell
$IdentitySyncJob | ConvertTo-JSON
```
[[Back to top]](#)