Update PowerShell SDK docs: 16967723041

This commit is contained in:
developer-relations-sp
2025-08-14 14:16:43 +00:00
parent 207021796c
commit d505994712
35 changed files with 2770 additions and 56 deletions

View File

@@ -0,0 +1,37 @@
---
id: v2024-launcher-request-reference
title: LauncherRequestReference
pagination_label: LauncherRequestReference
sidebar_label: LauncherRequestReference
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'LauncherRequestReference', 'V2024LauncherRequestReference']
slug: /tools/sdk/powershell/v2024/models/launcher-request-reference
tags: ['SDK', 'Software Development Kit', 'LauncherRequestReference', 'V2024LauncherRequestReference']
---
# LauncherRequestReference
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | **Enum** [ "WORKFLOW" ] | Type of Launcher reference | [required]
**Id** | **String** | ID of Launcher reference | [required]
## Examples
- Prepare the resource
```powershell
$LauncherRequestReference = Initialize-V2024LauncherRequestReference -Type WORKFLOW `
-Id 2fd6ff94-2081-4d29-acbc-83a0a2f744a5
```
- Convert the resource to JSON
```powershell
$LauncherRequestReference | ConvertTo-JSON
```
[[Back to top]](#)