adding index files for python docs and fixing order of reference for python and powershell

This commit is contained in:
darrell-thobe-sp
2025-03-26 09:58:28 -04:00
parent 7e15713eb2
commit a1ca2e9d7a
5 changed files with 99 additions and 1 deletions

View File

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