adding index.md files for powershell sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-07 11:55:26 -05:00
parent 7eb93a19ec
commit f79d201b73
10 changed files with 243 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
---
id: reference
title: PowerShell SDK Reference
pagination_label: Reference
sidebar_label: Reference
sidebar_position: 1
sidebar_class_name: reference
keywords: ['reference']
description: PowerShell SDK reference.
slug: /tools/powershell/reference
tags: ['Reference']
---
Welcome to the **PowerShell SDK Reference**. This section provides detailed documentation on how to use the SDK to interact with our API, including available methods and models for each api version. Whether you're automating workflows, managing resources, or integrating with other systems, this guide will help you effectively leverage the PowerShell SDK.
### What You'll Find Here:
- **[Beta Method Reference](/docs/tools/sdk/powershell/beta/methods)** A list of available cmdlets, their parameters, and expected outputs.
- **[Beta Model Definitions](/docs/tools/sdk/powershell/beta/models)** Descriptions of objects and data structures used in the SDK.
- **[V3 Method Reference](/docs/tools/sdk/powershell/v3/methods)** A list of available cmdlets, their parameters, and expected outputs.
- **[V3 Model Definitions](/docs/tools/sdk/powershell/v3/models)** Descriptions of objects and data structures used in the SDK.
- **[V2024 Method Reference](/docs/tools/sdk/powershell/v3/methods)** A list of available cmdlets, their parameters, and expected outputs.
- **[V2024 Model Definitions](/docs/tools/sdk/powershell/v2024/models)** Descriptions of objects and data structures used in the SDK.
- **Usage Examples** Practical PowerShell scripts demonstrating common tasks.
Use this reference as a companion while scripting and automating tasks. If you're new to the SDK, check out the [Installation & Setup](/docs/tools/sdk/powershell) guide before diving in.
```mdx-code-block
import DocCardList from '@theme/DocCardList';
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
<DocCardList items={useCurrentSidebarCategory().items}/>
```