Files
developer.sailpoint.com/docs/tools/sdk/powershell/reference/v2024/Models/AuditDetails.md
2025-01-28 09:59:02 -05:00

1.1 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-audit-details AuditDetails AuditDetails AuditDetails powershellsdk
powershell
PowerShell
sdk
AuditDetails
/tools/sdk/powershell/v2024/models/audit-details
SDK
Software Development Kit
AuditDetails

AuditDetails

Properties

Name Type Description Notes
Created Pointer to System.DateTime Initial date and time when the record was created [optional]
CreatedBy Pointer to Identity1 [optional]
Modified Pointer to System.DateTime Last modified date and time for the record [optional]
ModifiedBy Pointer to Identity1 [optional]

Examples

  • Prepare the resource
$AuditDetails = Initialize-PSSailpoint.V2024AuditDetails  -Created 2022-07-21T11:13:12.345Z `
 -CreatedBy null `
 -Modified 2022-07-21T11:13:12.345Z `
 -ModifiedBy null
  • Convert the resource to JSON
$AuditDetails | ConvertTo-JSON

[Back to top]