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: target
title: Target
pagination_label: Target
sidebar_label: Target
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'Target']
slug: /tools/sdk/powershell/beta/models/target
tags: ['SDK', 'Software Development Kit', 'Target']
---
# Target
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | Target ID | [optional]
**Type** | Pointer to **Enum** [ "APPLICATION", "IDENTITY" ] | Target type | [optional]
**Name** | Pointer to **String** | Target name | [optional]
## Examples
- Prepare the resource
```powershell
$Target = Initialize-PSSailpoint.BetaTarget -Id c6dc37bf508149b28ce5b7d90ca4bbf9 `
-Type APPLICATION `
-Name Active Directory [source]
```
- Convert the resource to JSON
```powershell
$Target | ConvertTo-JSON
```
[[Back to top]](#)