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,39 @@
---
id: beta-connected-object
title: ConnectedObject
pagination_label: ConnectedObject
sidebar_label: ConnectedObject
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'ConnectedObject', 'BetaConnectedObject']
slug: /tools/sdk/python/beta/models/connected-object
tags: ['SDK', 'Software Development Kit', 'ConnectedObject', 'BetaConnectedObject']
---
# ConnectedObject
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**type** | [**ConnectedObjectType**](connected-object-type) | | [optional]
**id** | **str** | ID of the object to which this reference applies | [optional]
**name** | **str** | Human-readable name of Connected object | [optional]
**description** | **str** | Description of the Connected object. | [optional]
}
## Example
```python
from sailpoint.beta.models.connected_object import ConnectedObject
connected_object = ConnectedObject(
type='ACCESS_PROFILE',
id='2c91808568c529c60168cca6f90c1313',
name='Employee-database-read-write',
description='Collection of entitlements to read/write the employee database.'
)
```
[[Back to top]](#)