add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
---
id: v2025-certification-reference
title: CertificationReference
pagination_label: CertificationReference
sidebar_label: CertificationReference
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'CertificationReference', 'V2025CertificationReference']
slug: /tools/sdk/powershell/v2025/models/certification-reference
tags: ['SDK', 'Software Development Kit', 'CertificationReference', 'V2025CertificationReference']
---
# CertificationReference
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **String** | The id of the certification. | [optional]
**Name** | **String** | The name of the certification. | [optional]
**Type** | **Enum** [ "CERTIFICATION" ] | | [optional]
**Reviewer** | [**Reviewer**](reviewer) | | [optional]
## Examples
- Prepare the resource
```powershell
$CertificationReference = Initialize-PSSailpoint.V2025CertificationReference -Id ef38f94347e94562b5bb8424a56397d8 `
-Name Certification Name `
-Type CERTIFICATION `
-Reviewer null
```
- Convert the resource to JSON
```powershell
$CertificationReference | ConvertTo-JSON
```
[[Back to top]](#)