Skip to main content

MultihostintegrationsAccountsFile

Reference to accounts file for the source.

Properties

NameTypeDescriptionNotes
namestrName of the accounts file.[optional]
keystrThe accounts file key.[optional]
upload_timedatetimeDate-time when the file was uploaded[optional]
expirydatetimeDate-time when the accounts file expired.[optional]
expiredboolIf this is true, it indicates that the accounts file has expired.[optional] [default to False]
}

Example

from sailpoint.multi_host_integration.models.multihostintegrations_accounts_file import MultihostintegrationsAccountsFile

multihostintegrations_accounts_file = MultihostintegrationsAccountsFile(
name='My Accounts File',
key='2c91808568c529c60168cca6f90c2222',
upload_time='2022-02-08T14:50:03.827Z',
expiry='2022-02-08T14:50:03.827Z',
expired=False
)

[Back to top]