Σημείωμα
Η πρόσβαση σε αυτήν τη σελίδα απαιτεί εξουσιοδότηση. Μπορείτε να δοκιμάσετε να εισέλθετε ή να αλλάξετε καταλόγους.
Η πρόσβαση σε αυτήν τη σελίδα απαιτεί εξουσιοδότηση. Μπορείτε να δοκιμάσετε να αλλάξετε καταλόγους.
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.
An abstract type that represents a pool for Cloud PC provisioning with common configurations and capabilities.
Base type of cloudPcAgentPool.
Inherits from entity.
Methods
| Method | Return type | Description |
|---|---|---|
| List | cloudPcPool collection | List the properties and relationships of the cloudPcPool objects. |
| Create | cloudPcPool | Create a new cloudPcPool object. |
| Get | cloudPcPool | Read the properties and relationships of a cloudPcPool object. |
| Update | None | Update the properties of a cloudPcPool object. |
| Delete | None | Delete a cloudPcPool object. |
| List assignments | cloudPcPoolAssignment collection | List the assignments of a cloudPcPool. |
| Create assignment | cloudPcPoolAssignment | Create a new cloudPcPoolAssignment for a cloudPcPool. |
Properties
| Property | Type | Description |
|---|---|---|
| capabilities | cloudPcPoolCapabilityConfiguration | The capabilities configuration for the pool, including single sign-on settings. |
| cloudPcConfiguration | cloudPcConfiguration | The Cloud PC specification, including image and operating system locale settings for provisioning. |
| createdDateTime | DateTimeOffset | The date and time when the pool was created. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2026 is 2026-01-01T00:00:00Z. Read-only. |
| description | String | The description of the pool. The maximum length is 512 characters. |
| displayName | String | The display name of the pool. The name is unique across Cloud PC pools in an organization. The maximum length is 60 characters. |
| id | String | The unique identifier for the pool. Read-only. Inherited from entity. |
| lastModifiedDateTime | DateTimeOffset | The date and time when the pool was last modified. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2026 is 2026-01-01T00:00:00Z. Read-only. |
| networkConfiguration | cloudPcNetworkConfiguration | The network configuration for the pool. |
Relationships
| Relationship | Type | Description |
|---|---|---|
| assignments | cloudPcPoolAssignment collection | The collection of assignments that grant user or service principal identities access to this pool. |
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.cloudPcPool",
"capabilities": {
"@odata.type": "microsoft.graph.cloudPcPoolCapabilityConfiguration"
},
"cloudPcConfiguration": {
"@odata.type": "microsoft.graph.cloudPcConfiguration"
},
"createdDateTime": "String (timestamp)",
"description": "String",
"displayName": "String",
"id": "String (identifier)",
"lastModifiedDateTime": "String (timestamp)",
"networkConfiguration": {
"@odata.type": "microsoft.graph.cloudPcNetworkConfiguration"
}
}