deployment resource type

Namespace: microsoft.graph.windowsUpdates

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 deployment of content to a set of devices.

Methods

Method Return type Description
List deployments microsoft.graph.windowsUpdates.deployment collection Get a list of the deployment objects and their properties.
Create deployment microsoft.graph.windowsUpdates.deployment Create a new deployment object.
Get deployment microsoft.graph.windowsUpdates.deployment Read the properties and relationships of a deployment object.
Update deployment microsoft.graph.windowsUpdates.deployment Update the properties of a deployment object.
Delete deployment None Deletes a deployment object.
List audience members microsoft.graph.windowsUpdates.updatableAsset collection List members of the deployment audience.
List audience exclusions microsoft.graph.windowsUpdates.updatableAsset collection List exclusions from the deployment audience.
Update audience members and exclusions None Add or remove members and exclusions of the deployment audience.

Properties

Property Type Description
content microsoft.graph.windowsUpdates.deployableContent Specifies what content to deploy. Cannot be changed. Returned by default.
createdDateTime DateTimeOffset The date and time the deployment was created. Returned by default. Read-only.
id String The unique identifier for the deployment. Returned by default. Key. Not nullable. Read-only.
lastModifiedDateTime DateTimeOffset The date and time the deployment was last modified. Returned by default. Read-only.
settings microsoft.graph.windowsUpdates.deploymentSettings Settings specified on the specific deployment governing how to deploy content. Returned by default.
state microsoft.graph.windowsUpdates.deploymentState Execution status of the deployment. Returned by default.

Relationships

Relationship Type Description
audience microsoft.graph.windowsUpdates.deploymentAudience Specifies the audience to which content is deployed.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.windowsUpdates.deployment",
  "id": "String (identifier)",
  "state": {
    "@odata.type": "microsoft.graph.windowsUpdates.deploymentState"
  },
  "content": {
    "@odata.type": "microsoft.graph.windowsUpdates.deployableContent"
  },
  "settings": {
    "@odata.type": "microsoft.graph.windowsUpdates.deploymentSettings"
  },
  "createdDateTime": "String (timestamp)",
  "lastModifiedDateTime": "String (timestamp)"
}