Skip to main content

BusinessApplication

Properties

NameTypeDescriptionNotes
IdStringBusiness Application ID. Assigned by the service on create.[optional] [readonly]
NameStringHuman-readable display name. Must be unique within the tenant.[required]
DescriptionStringFree-text description of the Business Application.[optional]
VendorStringVendor or publisher of the Business Application.[optional]
Signatures[]BusinessApplicationSignatureSignatures used to automatically correlate machine identities to this Business Application. Modifying this field requires the custom Business Application feature to be enabled.[optional]
OwnerBusinessApplicationOwner[optional]
AdditionalOwners[]BusinessApplicationAdditionalOwnersInnerAdditional (secondary) owners of the Business Application.[optional]
SanctionedStatusSanctionedStatusSanctioned status of the Business Application. Defaults to UNKNOWN.[optional]
OriginBusinessApplicationOrigin[optional] [readonly]
SourceBusinessApplicationSource[optional]
CreatedSystem.DateTimeTime the Business Application was created.[optional] [readonly]
ModifiedSystem.DateTimeTime the Business Application was last modified.[optional] [readonly]

Examples

  • Prepare the resource
$BusinessApplication = Initialize-BusinessApplication  -Id a1b2c3d4-e5f6-7890-abcd-ef1234567890 `
-Name Cursor `
-Description AI coding assistant used by the platform engineering team. `
-Vendor Cursor `
-Signatures null `
-Owner null `
-AdditionalOwners null `
-SanctionedStatus null `
-Origin null `
-Source null `
-Created 2026-01-15T13:45:12.312Z `
-Modified 2026-02-20T09:31:47.882Z
  • Convert the resource to JSON
$BusinessApplication | ConvertTo-JSON

[Back to top]