adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
---
id: beta-audit-details
title: AuditDetails
pagination_label: AuditDetails
sidebar_label: AuditDetails
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AuditDetails', 'BetaAuditDetails']
slug: /tools/sdk/powershell/beta/models/audit-details
tags: ['SDK', 'Software Development Kit', 'AuditDetails', 'BetaAuditDetails']
---
# 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**](identity1) | | [optional]
**Modified** | Pointer to **System.DateTime** | Last modified date and time for the record | [optional]
**ModifiedBy** | Pointer to [**Identity1**](identity1) | | [optional]
## Examples
- Prepare the resource
```powershell
$AuditDetails = Initialize-PSSailpoint.BetaAuditDetails -Created 2022-07-21T11:13:12.345Z `
-CreatedBy null `
-Modified 2022-07-21T11:13:12.345Z `
-ModifiedBy null
```
- Convert the resource to JSON
```powershell
$AuditDetails | ConvertTo-JSON
```
[[Back to top]](#)