groupPolicyConfiguration resource type
Namespace: microsoft.graph
Important: Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.
The group policy configuration entity contains the configured values for one or more group policy definitions.
Methods
Method | Return Type | Description |
---|---|---|
List groupPolicyConfigurations | groupPolicyConfiguration collection | List properties and relationships of the groupPolicyConfiguration objects. |
Get groupPolicyConfiguration | groupPolicyConfiguration | Read properties and relationships of the groupPolicyConfiguration object. |
Create groupPolicyConfiguration | groupPolicyConfiguration | Create a new groupPolicyConfiguration object. |
Delete groupPolicyConfiguration | None | Deletes a groupPolicyConfiguration. |
Update groupPolicyConfiguration | groupPolicyConfiguration | Update the properties of a groupPolicyConfiguration object. |
assign action | groupPolicyConfigurationAssignment collection | |
updateDefinitionValues action | None |
Properties
Property | Type | Description |
---|---|---|
createdDateTime | DateTimeOffset | The date and time the object was created. |
displayName | String | User provided name for the resource object. |
description | String | User provided description for the resource object. |
roleScopeTagIds | String collection | The list of scope tags for the configuration. |
policyConfigurationIngestionType | groupPolicyConfigurationIngestionType | Type of definitions configured for this policy. Possible values are: unknown , custom , builtIn , mixed , unknownFutureValue . |
id | String | Key of the entity. |
lastModifiedDateTime | DateTimeOffset | The date and time the entity was last modified. |
Relationships
Relationship | Type | Description |
---|---|---|
definitionValues | groupPolicyDefinitionValue collection | The list of enabled or disabled group policy definition values for the configuration. |
assignments | groupPolicyConfigurationAssignment collection | The list of group assignments for the configuration. |
JSON Representation
Here is a JSON representation of the resource.
{
"@odata.type": "#microsoft.graph.groupPolicyConfiguration",
"createdDateTime": "String (timestamp)",
"displayName": "String",
"description": "String",
"roleScopeTagIds": [
"String"
],
"policyConfigurationIngestionType": "String",
"id": "String (identifier)",
"lastModifiedDateTime": "String (timestamp)"
}