Skip to main content

Applicationitem

Properties

NameTypeDescriptionNotes
IdInt64The unique identifier of the application.[optional]
NameStringThe display name of the application.[optional]
DescriptionStringA brief description of the application and its purpose.[optional]
TypeStringThe type of the application.[optional]
Tags[]TagA list of tags associated with the application.[optional]
TestConnectionStatusStringThe status of the last connection test performed on the application.[optional]
TestConnectionDateInt64The timestamp of the last connection test performed on the application, in milliseconds since epoch.[optional]
RcClusterIdStringThe identifier of the cluster used for crawling resources.[optional]
DcClusterIdStringThe identifier of the cluster used for data classification.[optional]
PcClusterIdStringThe identifier of the cluster used for permission collection.[optional]

Examples

  • Prepare the resource
$Applicationitem = Initialize-Applicationitem  -Id 12345 `
-Name HR File Server `
-Description Stores HR documents and employee records. `
-Type OneDriveForBusiness `
-Tags [{"id":101,"name":"Confidential"}] `
-TestConnectionStatus Success `
-TestConnectionDate 1700000000000 `
-RcClusterId 459B5ABB-47BE-4069-8DB1-D6A8BE3F4D47 `
-DcClusterId B28B4B37-9E47-426B-BAFD-A1FF048B4DAC `
-PcClusterId E1304AA9-D8FA-4574-A5CD-B59A6D8CB918
  • Convert the resource to JSON
$Applicationitem | ConvertTo-JSON

[Back to top]