Update to powershell SDK docs: 14132734151

This commit is contained in:
developer-relations-sp
2025-03-28 15:47:21 +00:00
parent 74a9e68543
commit 505a2245eb
31 changed files with 3035 additions and 226 deletions

View File

@@ -0,0 +1,43 @@
---
id: v2024-multi-host-integrations-accounts-file
title: MultiHostIntegrationsAccountsFile
pagination_label: MultiHostIntegrationsAccountsFile
sidebar_label: MultiHostIntegrationsAccountsFile
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'MultiHostIntegrationsAccountsFile', 'V2024MultiHostIntegrationsAccountsFile']
slug: /tools/sdk/powershell/v2024/models/multi-host-integrations-accounts-file
tags: ['SDK', 'Software Development Kit', 'MultiHostIntegrationsAccountsFile', 'V2024MultiHostIntegrationsAccountsFile']
---
# MultiHostIntegrationsAccountsFile
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Name** | **String** | Name of the accounts file. | [optional]
**Key** | **String** | The accounts file key. | [optional]
**UploadTime** | **System.DateTime** | Date-time when the file was uploaded | [optional]
**Expiry** | **System.DateTime** | Date-time when the accounts file expired. | [optional]
**Expired** | **Boolean** | If this is true, it indicates that the accounts file has expired. | [optional] [default to $false]
## Examples
- Prepare the resource
```powershell
$MultiHostIntegrationsAccountsFile = Initialize-PSSailpoint.V2024MultiHostIntegrationsAccountsFile -Name My Accounts File `
-Key 2c91808568c529c60168cca6f90c2222 `
-UploadTime 2022-02-08T14:50:03.827Z `
-Expiry 2022-02-08T14:50:03.827Z `
-Expired false
```
- Convert the resource to JSON
```powershell
$MultiHostIntegrationsAccountsFile | ConvertTo-JSON
```
[[Back to top]](#)