Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/SedBatchRequest.md
2025-02-20 12:59:19 -05:00

985 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-sed-batch-request SedBatchRequest SedBatchRequest SedBatchRequest pythonsdk
python
Python
sdk
SedBatchRequest
BetaSedBatchRequest
/tools/sdk/python/beta/models/sed-batch-request
SDK
Software Development Kit
SedBatchRequest
BetaSedBatchRequest

SedBatchRequest

Sed Batch Request

Properties

Name Type Description Notes
entitlements []str list of entitlement ids [optional]
seds []str list of sed ids [optional]
}

Example

from sailpoint.beta.models.sed_batch_request import SedBatchRequest

sed_batch_request = SedBatchRequest(
entitlements=[
                    '016629d1-1d25-463f-97f3-c6686846650'
                    ],
seds=[
                    '016629d1-1d25-463f-97f3-c6686846650'
                    ]
)

[Back to top]