Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/MultiHostIntegrationsAccountsFile.md
2025-03-28 15:47:21 +00:00

1.5 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-multi-host-integrations-accounts-file MultiHostIntegrationsAccountsFile MultiHostIntegrationsAccountsFile MultiHostIntegrationsAccountsFile powershellsdk
powershell
PowerShell
sdk
MultiHostIntegrationsAccountsFile
V2024MultiHostIntegrationsAccountsFile
/tools/sdk/powershell/v2024/models/multi-host-integrations-accounts-file
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
$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
$MultiHostIntegrationsAccountsFile | ConvertTo-JSON

[Back to top]