printConnector 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 a print connector that has been registered by using a Universal Print subscription. The printConnector resource can be used to view connector status and update properties.
Methods
Method | Return Type | Description |
---|---|---|
List | printConnector | Retrieve a list of print connectors. |
Get | printConnector | Read the properties and relationships of the connector object. |
Update | printConnector | Update the connector object. |
Delete | None | Unregister the connector from the Universal Print service. |
Properties
Property | Type | Description |
---|---|---|
id | String | Read-only. |
displayName | String | The name of the connector. |
fullyQualifiedDomainName | String | The connector machine's hostname. |
operatingSystem | String | The connector machine's operating system version. |
appVersion | String | The connector's version. |
deviceHealth | deviceHealth | The connector's device health. |
location | printerLocation | The physical and/or organizational location of the connector. |
registeredDateTime | DateTimeOffset | The DateTimeOffset when the connector was registered. |
registeredBy | userIdentity | The user who registered the connector. |
JSON representation
The following JSON representation shows the resource type.
{
"id": "String (identifier)",
"displayName": "String",
"fullyQualifiedDomainName": "String",
"operatingSystem": "String",
"appVersion": "String",
"deviceHealth": {"@odata.type": "microsoft.graph.deviceHealth"},
"location": {"@odata.type": "microsoft.graph.printerLocation"},
"registeredDateTime": "String (timestamp)",
"registeredBy": {"@odata.type": "microsoft.graph.userIdentity"}
}