Update PowerShell SDK docs: 16633294545

This commit is contained in:
developer-relations-sp
2025-07-30 20:42:10 +00:00
parent cdd71d1f37
commit 5d76be1d9d
35 changed files with 1335 additions and 495 deletions

View File

@@ -0,0 +1,47 @@
---
id: v2025-approval-requested-target
title: ApprovalRequestedTarget
pagination_label: ApprovalRequestedTarget
sidebar_label: ApprovalRequestedTarget
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ApprovalRequestedTarget', 'V2025ApprovalRequestedTarget']
slug: /tools/sdk/powershell/v2025/models/approval-requested-target
tags: ['SDK', 'Software Development Kit', 'ApprovalRequestedTarget', 'V2025ApprovalRequestedTarget']
---
# ApprovalRequestedTarget
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ForcedAuthSignature** | **String** | Signature required for forced authentication. | [optional]
**Id** | **String** | ID of the requested target. | [optional]
**Name** | **String** | Name of the requested target. | [optional]
**ReauthRequired** | **Boolean** | Indicates if reauthentication is required. | [optional] [default to $false]
**RemovalDate** | **System.DateTime** | Date when the target will be removed. | [optional]
**RequestType** | **String** | Type of the request. | [optional]
**TargetType** | **String** | Type of the target. | [optional]
## Examples
- Prepare the resource
```powershell
$ApprovalRequestedTarget = Initialize-V2025ApprovalRequestedTarget -ForcedAuthSignature string `
-Id string `
-Name string `
-ReauthRequired true `
-RemovalDate 2025-07-07T18:10:13.687Z `
-RequestType string `
-TargetType string
```
- Convert the resource to JSON
```powershell
$ApprovalRequestedTarget | ConvertTo-JSON
```
[[Back to top]](#)