add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
---
id: v2025-role-bulk-delete-request
title: RoleBulkDeleteRequest
pagination_label: RoleBulkDeleteRequest
sidebar_label: RoleBulkDeleteRequest
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RoleBulkDeleteRequest', 'V2025RoleBulkDeleteRequest']
slug: /tools/sdk/powershell/v2025/models/role-bulk-delete-request
tags: ['SDK', 'Software Development Kit', 'RoleBulkDeleteRequest', 'V2025RoleBulkDeleteRequest']
---
# RoleBulkDeleteRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**RoleIds** | **[]String** | List of IDs of Roles to be deleted. | [required]
## Examples
- Prepare the resource
```powershell
$RoleBulkDeleteRequest = Initialize-PSSailpoint.V2025RoleBulkDeleteRequest -RoleIds [2c9180847812e0b1017817051919ecca, 2c9180887812e0b201781e129f151816]
```
- Convert the resource to JSON
```powershell
$RoleBulkDeleteRequest | ConvertTo-JSON
```
[[Back to top]](#)