printerCreateOperation resource type

Namespace: microsoft.graph

Represents a long-running printer registration operation. Derived from printOperation.

Inherits from printOperation.

Methods

Method Return type Description
Get operation printOperation Retrieve a long-running operation within current user or app's tenant.

Properties

Property Type Description
certificate String The signed certificate created during the registration process. Read-only.
createdDateTime DateTimeOffset The DateTimeOffset when the operation was created. Read-only.
id String The operation's identifier. Read-only.
status printOperationStatus The status of the registration operation. Contains the operation's progress and whether it completed successfully. Read-only.

Relationships

Relationship Type Description
printer printer The created printer entity. Read-only.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.printerCreateOperation",
  "id": "String (identifier)",
  "status": {
    "@odata.type": "microsoft.graph.printOperationStatus"
  },
  "createdDateTime": "String (timestamp)",
  "certificate": "String"
}