Skip to main content

Fulldiscoveredapplications

Properties

NameTypeDescriptionNotes
IdStringUnique identifier for the discovered application.[optional]
NameStringName of the discovered application.[optional]
DiscoverySourceStringSource from which the application was discovered.[optional]
DiscoveredVendorStringThe vendor associated with the discovered application.[optional]
DescriptionStringA brief description of the discovered application.[optional]
RecommendedConnectors[]StringList of recommended connectors for the application.[optional]
DiscoveredAtSystem.DateTimeThe timestamp when the application was last received via an entitlement aggregation invocation or a manual csv upload, in ISO 8601 format.[optional]
CreatedAtSystem.DateTimeThe timestamp when the application was first discovered, in ISO 8601 format.[optional]
StatusStringThe status of an application within the discovery source. By default this field is set to ""ACTIVE"" when the application is discovered. If an application has been deleted from within the discovery source, the status will be set to ""INACTIVE"".[optional]
AssociatedSources[]StringList of associated sources related to this discovered application.[optional]
OperationalStatusStringThe operational status of the application.[optional]
DiscoverySourceCategoryStringThe category of the discovery source.[optional]
LicenseCountInt32The number of licenses associated with the application.[optional]
IsSanctionedBooleanIndicates whether the application is sanctioned.[optional] [default to $false]
LogoStringURL of the application's logo.[optional]
AppUrlStringThe URL of the application.[optional]
Groups[[]SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0List of groups associated with the application.[optional]
UsersCountStringThe count of users associated with the application.[optional]
ApplicationOwner[]StringThe owners of the application.[optional]
ItApplicationOwner[]StringThe IT owners of the application.[optional]
BusinessCriticalityStringThe business criticality level of the application.[optional]
DataClassificationStringThe data classification level of the application.[optional]
BusinessUnitStringThe business unit associated with the application.[optional]
InstallTypeStringThe installation type of the application.[optional]
EnvironmentStringThe environment in which the application operates.[optional]
RiskScoreInt32The risk score of the application ranging from 0-100, 100 being highest risk.[optional]
IsBusinessBooleanIndicates whether the application is used for business purposes.[optional] [default to $true]
TotalSigninsCountInt32The total number of sign-in accounts for the application.[optional]
RiskLevelEnum [ "High", "Medium", "Low" ]The risk level of the application.[optional]
IsPrivilegedBooleanIndicates whether the application has privileged access.[optional] [default to $false]
WarrantyExpirationStringThe warranty expiration date of the application.[optional]
Attributes[SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0Additional attributes of the application useful for visibility of governance posture.[optional]

Examples

  • Prepare the resource
$Fulldiscoveredapplications = Initialize-Fulldiscoveredapplications  -Id null `
-Name ExampleApp `
-DiscoverySource csv `
-DiscoveredVendor ExampleVendor `
-Description An application for managing examples. `
-RecommendedConnectors ["ConnectorA","ConnectorB"] `
-DiscoveredAt 2023-01-01T12:00Z `
-CreatedAt 2023-01-01T12:00Z `
-Status ACTIVE `
-AssociatedSources ["e0cc5d7d-bf7f-4f81-b2af-8885b09d9923","a0303682-5e4a-44f7-bdc2-6ce6112549c1"] `
-OperationalStatus Operational `
-DiscoverySourceCategory sso `
-LicenseCount 175 `
-IsSanctioned true `
-Logo https://spdojtest1.oktapreview.com/api/v1/apps/0oaeuef9hiipHcMgR0h7/logo `
-AppUrl https://spdojtest1.oktapreview.com/home/salesforce/0oaeuef9hiipHcMgR0h7/24 `
-Groups [{"map":{"id":"id","name":"JIRA Users","nativeIdentifiers":{"map":{"distinguishedName":"CN=Engineering users,OU=Engineering,DC=corp,DC=example,DC=com","id":"nativeId","objectSid":"S-1-5-21-717838489-685202119-709183397-1177"}},"type":"EXTERNAL_GROUP|LOCAL_GROUP"}}] `
-UsersCount 175 `
-ApplicationOwner ["owner1@example.com","owner2@example.com"] `
-ItApplicationOwner ["itowner1@example.com","itowner2@example.com"] `
-BusinessCriticality High `
-DataClassification Restricted `
-BusinessUnit Finance `
-InstallType On Premise `
-Environment Production `
-RiskScore 1 `
-IsBusiness false `
-TotalSigninsCount 1 `
-RiskLevel Low `
-IsPrivileged false `
-WarrantyExpiration 2023-09-25T14:07:27.000+0000 `
-Attributes {"features":["IMPORT_PROFILE_UPDATES","IMPORT_USER_SCHEMA","IMPORT_NEW_USERS"],"identityStack":"NOT_SHARED","selfService":false,"signOnMode":"SAML_2_0"}
  • Convert the resource to JSON
$Fulldiscoveredapplications | ConvertTo-JSON

[Back to top]