Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Important
APIs under the /beta version are subject to change. Use of these APIs in production applications is not supported.
Entity that represents a Copilot package available within a tenant, containing basic metadata and configuration information for package management.
Properties
| Property | Type | Description |
|---|---|---|
availableTo |
packageStatus | Availability status of the package. |
deployedTo |
packageStatus | Deployment status of the package |
displayName |
String | Display name of the package. |
elementTypes |
String collection | Element types contained within this package. |
id |
String | Unique identifier for the Copilot package within the tenant. |
isBlocked |
Boolean | Indicates whether the package is blocked. |
lastModifiedDateTime |
DateTimeOffset | Timestamp of last modification. |
publisher |
String | Name of the publisher. |
shortDescription |
String | Brief description of the package's functionality. |
supportedHosts |
String collection | Host applications where this package can be used. |
type |
packageType | Type classification of the package. |
packageStatus enumeration
| Value | Description |
|---|---|
none |
Not available or deployed to any users |
some |
Available or deployed to some users/groups |
all |
Available or deployed to all users |
unknownFutureValue |
Evolvable sentinel value |
packageType enumeration
| Value | Description |
|---|---|
microsoft |
Built by Microsoft |
external |
Built by partners |
shared |
Shared in your organization |
custom |
Built by your organization |
unknownFutureValue |
Evolvable sentinel value |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.copilotPackage",
"id": "String",
"displayName": "String",
"type": "String",
"shortDescription": "String",
"isBlocked": "Boolean",
"availableTo": "String",
"deployedTo": "String",
"lastModifiedDateTime": "DateTimeOffset",
"supportedHosts": ["String"],
"elementTypes": ["String"],
"publisher": "String"
}