starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,43 @@
---
id: v2024-workgroup-delete-item
title: WorkgroupDeleteItem
pagination_label: WorkgroupDeleteItem
sidebar_label: WorkgroupDeleteItem
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'WorkgroupDeleteItem', 'V2024WorkgroupDeleteItem']
slug: /tools/sdk/python/v2024/models/workgroup-delete-item
tags: ['SDK', 'Software Development Kit', 'WorkgroupDeleteItem', 'V2024WorkgroupDeleteItem']
---
# WorkgroupDeleteItem
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | Id of the Governance Group. | [required]
**status** | **int** | The HTTP response status code returned for an individual Governance Group that is requested for deletion during a bulk delete operation. > 204 - Governance Group deleted successfully. > 409 - Governance Group is in use,hence can not be deleted. > 404 - Governance Group not found. | [required]
**description** | **str** | Human readable status description and containing additional context information about success or failures etc. | [optional]
}
## Example
```python
from sailpoint.v2024.models.workgroup_delete_item import WorkgroupDeleteItem
workgroup_delete_item = WorkgroupDeleteItem(
id='464ae7bf791e49fdb74606a2e4a89635',
status=204,
description='
> Governance Group deleted successfully.
> Unable to delete Governance Group f80bba83-98c4-4ec2-81c8-373c00e9663b because it is in use.
> Referenced Governance Group 2b711763-ed35-42a2-a80c-8f1ce0dc4a7f was not found.
'
)
```
[[Back to top]](#)