cloudPcAuditEvent resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Represents the audit event entity.

Methods

Method Return type Description
List auditEvents cloudPcAuditEvent collection List all the cloudPcAuditEvent objects in a tenant.
Get cloudPcAuditEvent cloudPcAuditEvent Read the properties and relationships of a cloudPcAuditEvent object.
getAuditActivityTypes function String collection Get audit activity types.

Properties

Property Type Description
activity String Friendly name of the activity. Optional.
activityDateTime DateTimeOffset The date time in UTC when the activity was performed. Read-only.
activityOperationType cloudPcAuditActivityOperationType The HTTP operation type of the activity. Possible values include create, delete, patch and unknownFutureValue. Read-only.
activityResult cloudPcAuditActivityResult The result of the activity. Possible values include success, clientError, failure, timeout and unknownFutureValue. Read-only.
activityType String The type of the activity that was performed. Read-only.
actor cloudPcAuditActor Microsoft Entra user and application associated with the audit event. Read-only.
category cloudPcAuditCategory Audit category. Possible values include cloudPC and unknownFutureValue. Read-only.
componentName String Component name. Read-only.
correlationId String The client request ID that is used to correlate activity within the system. Read-only.
displayName String Event display name. Read-only.
id String Key of the audit entity. Read-only.
resources cloudPcAuditResource collection List of cloudPcAuditResource objects. Read-only.

cloudPcAuditActivityOperationType values

Member Description
create Indicates the operation used to create a target resource.
delete Indicates the operation used to delete a target resource.
patch Indicates the operation used to update a target resource.
unknownFutureValue Evolvable enumeration sentinel value. Don't use.

cloudPcAuditActivityResult values

Member Description
success Operation succeeded.
clientError Operation failed with client error.
failure Operation failed.
timeout Operation failed with timeout.
unknownFutureValue Evolvable enumeration sentinel value. Don't use.

cloudPcAuditCategory values

Member Description
cloudPC Cloud PC category.
unknownFutureValue Evolvable enumeration sentinel value. Don't use.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.cloudPcAuditEvent",
  "activity": "String",
  "activityDateTime": "String (timestamp)",
  "activityOperationType": "String",
  "activityResult": "String",
  "activityType": "String",
  "actor": {"@odata.type": "microsoft.graph.cloudPcAuditActor"},
  "category": "String",
  "componentName": "String",
  "correlationId": "String",
  "displayName": "String",
  "id": "String (identifier)",
  "resources": [{"@odata.type": "microsoft.graph.cloudPcAuditResource"}]
}