adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
---
id: beta-get-launchers200-response
title: GetLaunchers200Response
pagination_label: GetLaunchers200Response
sidebar_label: GetLaunchers200Response
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'GetLaunchers200Response', 'BetaGetLaunchers200Response']
slug: /tools/sdk/powershell/beta/models/get-launchers200-response
tags: ['SDK', 'Software Development Kit', 'GetLaunchers200Response', 'BetaGetLaunchers200Response']
---
# GetLaunchers200Response
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Next** | Pointer to **String** | Pagination marker | [optional]
**Items** | Pointer to [**[]Launcher**](launcher) | | [optional]
## Examples
- Prepare the resource
```powershell
$GetLaunchers200Response = Initialize-PSSailpoint.BetaGetLaunchers200Response -Next null `
-Items null
```
- Convert the resource to JSON
```powershell
$GetLaunchers200Response | ConvertTo-JSON
```
[[Back to top]](#)