removing beta docs

This commit is contained in:
darrell-thobe-sp
2025-01-23 23:30:59 -05:00
parent 7194b934e8
commit befdd82384
999 changed files with 0 additions and 70946 deletions

View File

@@ -1,47 +0,0 @@
---
id: certification-task
title: CertificationTask
pagination_label: CertificationTask
sidebar_label: CertificationTask
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'CertificationTask']
slug: /tools/sdk/powershell/beta/models/certification-task
tags: ['SDK', 'Software Development Kit', 'CertificationTask']
---
# CertificationTask
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | The ID of the certification task. | [optional]
**Type** | Pointer to **Enum** [ "REASSIGN", "ADMIN_REASSIGN", "COMPLETE_CERTIFICATION", "FINISH_CERTIFICATION", "COMPLETE_CAMPAIGN", "ACTIVATE_CAMPAIGN", "CAMPAIGN_CREATE", "CAMPAIGN_DELETE" ] | The type of the certification task. More values may be added in the future. | [optional]
**TargetType** | Pointer to **Enum** [ "CERTIFICATION", "CAMPAIGN" ] | The type of item that is being operated on by this task whose ID is stored in the targetId field. | [optional]
**TargetId** | Pointer to **String** | The ID of the item being operated on by this task. | [optional]
**Status** | Pointer to **Enum** [ "QUEUED", "IN_PROGRESS", "SUCCESS", "ERROR" ] | The status of the task. | [optional]
**Errors** | Pointer to [**[]ErrorMessageDto**](error-message-dto) | | [optional]
**Created** | Pointer to **System.DateTime** | The date and time on which this task was created. | [optional]
## Examples
- Prepare the resource
```powershell
$CertificationTask = Initialize-PSSailpoint.BetaCertificationTask -Id 2c918086719eec070171a7e3355a360a `
-Type ADMIN_REASSIGN `
-TargetType CAMPAIGN `
-TargetId 2c918086719eec070171a7e3355a834c `
-Status null `
-Errors null `
-Created 2020-09-24T18:10:47.693Z
```
- Convert the resource to JSON
```powershell
$CertificationTask | ConvertTo-JSON
```
[[Back to top]](#)