Skip to main content

Account

Properties

NameTypeDescriptionNotes
IdStringSystem-generated unique ID of the Object[optional] [readonly]
NameStringName of the Object[required]
CreatedSystem.DateTimeCreation date of the Object[optional] [readonly]
ModifiedSystem.DateTimeLast modification date of the Object[optional] [readonly]
SourceIdStringThe unique ID of the source this account belongs to[required]
SourceNameStringThe display name of the source this account belongs to[required]
IdentityIdStringThe unique ID of the identity this account is correlated to[optional]
CloudLifecycleStateStringThe lifecycle state of the identity this account is correlated to[optional]
IdentityStateStringThe identity state of the identity this account is correlated to[optional]
ConnectionTypeStringThe connection type of the source this account is from[optional]
IsMachineBooleanIndicates if the account is of machine type[optional] [default to $false]
RecommendationRecommendation[optional]
Attributes[map[string]AnyType]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4The account attributes that are aggregated[required]
AuthoritativeBooleanIndicates if this account is from an authoritative source[required]
DescriptionStringA description of the account[optional]
DisabledBooleanIndicates if the account is currently disabled[required]
LockedBooleanIndicates if the account is currently locked[required]
NativeIdentityStringThe unique ID of the account generated by the source system[required]
SystemAccountBooleanIf true, this is a user account within IdentityNow. If false, this is an account from a source system.[required]
UncorrelatedBooleanIndicates if this account is not correlated to an identity[required]
UuidStringThe unique ID of the account as determined by the account schema[optional]
ManuallyCorrelatedBooleanIndicates if the account has been manually correlated to an identity[required]
HasEntitlementsBooleanIndicates if the account has entitlements[required]
IdentityBaseReferenceDto[optional]
SourceOwnerBaseReferenceDto[optional]
FeaturesStringA string list containing the owning source's features[optional]
OriginEnum [ "AGGREGATED", "PROVISIONED" ]The origin of the account either aggregated or provisioned[optional]
OwnerIdentityBaseReferenceDto[optional]

Examples

  • Prepare the resource
$Account = Initialize-PSSailpoint.V3Account  -Id id12345 `
-Name aName `
-Created 2015-05-28T14:07:17Z `
-Modified 2015-05-28T14:07:17Z `
-SourceId 2c9180835d2e5168015d32f890ca1581 `
-SourceName Employees `
-IdentityId 2c9180835d2e5168015d32f890ca1581 `
-CloudLifecycleState active `
-IdentityState ACTIVE `
-ConnectionType direct `
-IsMachine true `
-Recommendation null `
-Attributes {firstName=SailPoint, lastName=Support, displayName=SailPoint Support} `
-Authoritative false `
-Description null `
-Disabled false `
-Locked false `
-NativeIdentity 552775 `
-SystemAccount false `
-Uncorrelated false `
-Uuid {b0dce506-d6d4-44d2-8a32-d9a5b21fb175} `
-ManuallyCorrelated false `
-HasEntitlements true `
-Identity null `
-SourceOwner null `
-Features ENABLE `
-Origin AGGREGATED `
-OwnerIdentity null
  • Convert the resource to JSON
$Account | ConvertTo-JSON

[Back to top]