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

@@ -3,7 +3,7 @@ id: reference
title: PowerShell SDK Reference title: PowerShell SDK Reference
pagination_label: Reference pagination_label: Reference
sidebar_label: Reference sidebar_label: Reference
sidebar_position: 1 sidebar_position: 9
sidebar_class_name: reference sidebar_class_name: reference
keywords: ['reference'] keywords: ['reference']
description: PowerShell SDK reference. description: PowerShell SDK reference.

View File

@@ -0,0 +1,22 @@
---
id: beta
title: Beta
pagination_label: Beta
sidebar_label: Beta
sidebar_position: 2
sidebar_class_name: beta
keywords: ['beta', 'Python']
description: Python SDK reference Beta.
slug: /tools/python/reference/beta
tags: ['beta']
---
Welcome to the Python SDK documentation for the Identity Security Cloud (ISC) Beta API. This reference guide provides an overview of both methods and models, which will help you understand how to interact with the API effectively.
```mdx-code-block
import DocCardList from '@theme/DocCardList';
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
<DocCardList items={useCurrentSidebarCategory().items}/>
```

View File

@@ -0,0 +1,22 @@
---
id: v2024
title: V2024
pagination_label: V2024
sidebar_label: V2024
sidebar_position: 2
sidebar_class_name: v2024
keywords: ['v2024', 'Python']
description: Python SDK reference V2024.
slug: /tools/python/reference/v2024
tags: ['v2024']
---
Welcome to the Python SDK documentation for the Identity Security Cloud (ISC) V2024 API. This reference guide provides an overview of both methods and models, which will help you understand how to interact with the API effectively.
```mdx-code-block
import DocCardList from '@theme/DocCardList';
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
<DocCardList items={useCurrentSidebarCategory().items}/>
```

View File

@@ -0,0 +1,21 @@
---
id: v3
title: V3
pagination_label: V3
sidebar_label: V3
sidebar_position: 2
sidebar_class_name: v3
keywords: ['v3', 'Python']
description: Python SDK reference V3.
slug: /tools/python/reference/v3
tags: ['v3']
---
Welcome to the Python SDK documentation for the Identity Security Cloud (ISC) V3 API. This reference guide provides an overview of both methods and models, which will help you understand how to interact with the API effectively.
```mdx-code-block
import DocCardList from '@theme/DocCardList';
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
<DocCardList items={useCurrentSidebarCategory().items}/>
```

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}/>
```